Metadata-Version: 2.0
Name: networking-bgpvpn
Version: 3.0.0
Summary: API and Framework to interconnect bgpvpn to neutron networks
Home-page: http://www.openstack.org/
Author: OpenStack
Author-email: openstack-dev@lists.openstack.org
License: UNKNOWN
Platform: UNKNOWN
Classifier: Environment :: OpenStack
Classifier: Intended Audience :: Information Technology
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Requires-Dist: pbr (>=1.6)
Requires-Dist: Babel (>=1.3)
Requires-Dist: oslo.config (>=2.3.0)
Requires-Dist: oslo.db (>=2.4.1)
Requires-Dist: oslo.log (>=1.8.0)
Requires-Dist: oslo.utils (>=2.0.0)
Requires-Dist: sphinxcontrib-blockdiag
Requires-Dist: sphinxcontrib-seqdiag

===============================================
BGP-MPLS VPN Extension for OpenStack Networking
===============================================

This project provides an API and Framework to interconnect BGP/MPLS VPNs
to Openstack Neutron networks, routers and ports.

The Border Gateway Protocol and Multi-Protocol Label Switching are widely
used Wide Area Networking technologies. The primary purpose of this project
is to allow attachment of Neutron networks and/or routers to carrier
provided WANs using these standard protocols. An additional purpose of this
project is to enable the use of these technologies within the Neutron
networking environment.

A vendor neutral API and data model are provided such that multiple backends
may be "plugged in" while offering the same tenant facing API. A reference
implementation based on an Open Source BGP implementation is also provided.

* Free software: Apache license
* Source: http://git.openstack.org/cgit/openstack/networking-bgpvpn
* Bugs: http://bugs.launchpad.net/bgpvpn
* Doc: http://docs.openstack.org/developer/networking-bgpvpn

Devstack Quick start
--------------------

To test this framework with the **dummy** driver (not doing any real interaction with BGP nor
the forwarding plane) you can:

* install devstack

* add the devstack plugin for the BGPVPN service plugin to your ``local.conf``: ::

	[[local|localrc]]
	enable_plugin networking-bgpvpn git://git.openstack.org/openstack/networking-bgpvpn.git

* bgpvpn-create/update/associate/delete/show/list commands will be available with
  the neutron client, for example: ::

	source openrc admin admin
	neutron bgpvpn-create --route-targets 64512:1 --tenant-id b954279e1e064dc9b8264474cb3e6bd2
	neutron bgpvpn-list
	neutron bgpvpn-update 1009a0f326b6403180c18f3caa1430de --name myBGPVPN
	neutron bgpvpn-net-assoc-create myBGPVPN --network 828cddad3b834e79b79abc1b87b6cca0
	# returns <net-assoc-uuid>
	neutron bgpvpn-net-assoc-list myBGPVPN
	neutron bgpvpn-net-assoc-show <net-assoc-uuid> myBGPVPN 
	neutron bgpvpn-net-assoc-delete <net-assoc-uuid> myBGPVPN



