neutron-dynamic-routing/devstack
Na 62cb5c4184 Fix the policy check for BGP APIs
Only admin can configure BGP, this patch add policy check
for BGP APIs.

Change-Id: I5ce602202c52542792cc5b22e58e0ed074e09d7d
Closes-Bug: #1583958
2016-06-02 16:34:03 -07:00
..
lib Fix the policy check for BGP APIs 2016-06-02 16:34:03 -07:00
README.rst Add devstack for neutron-dynamic-routing stadium project 2016-05-18 06:14:01 -05:00
plugin.sh Add "neutron-bgp-dragent" to setup.cfg 2016-05-25 15:43:57 -07:00
settings Add devstack for neutron-dynamic-routing stadium project 2016-05-18 06:14:01 -05:00

README.rst

Enabling in Devstack

  1. Download devstack:

    git clone http://git.openstack.org/openstack-dev/devstack.git
  2. Add neutron-dynamic-routing to devstack. The minimal set of critical local.conf additions are following:

    cd devstack
    cat << EOF >> local.conf
    > enable_plugin neutron-dynamic-routing http://git.openstack.org/openstack/neutron-dynamic-routing
    > EOF
  3. run devstack:

    ./stack.sh

Notes:

  1. In default case, neutron-dynamic-routing is installed in allinone mode. In multiple nodes environment, for controller node:: cd devstack cat << EOF >> local.conf > enable_plugin neutron-dynamic-routing http://git.openstack.org/openstack/neutron-dynamic-routing > DR_MODE=dr_plugin > EOF
    For the nodes where you want to run dr-agent::

    cd devstack cat << EOF >> local.conf > enable_plugin neutron-dynamic-routing http://git.openstack.org/openstack/neutron-dynamic-routing > DR_MODE=dr_agent > EOF

  2. In default case, protocol BGP is enabled for neutron-dynamic-routing. You can change "DR_SUPPORTED_PROTOCOLS" in "devstack/settings" to protocols wanted.