9025dc72d0
Missing newlines caused incorrect rendering for code blocks TrivialFix Change-Id: I42e9ae98e925ad0236b1bf134cbd80d111098aad
46 lines
1.2 KiB
ReStructuredText
46 lines
1.2 KiB
ReStructuredText
======================
|
|
Enabling in Devstack
|
|
======================
|
|
|
|
1. Download devstack::
|
|
|
|
git clone https://opendev.org/openstack/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
|
|
> [[local|localrc]]
|
|
> enable_plugin neutron-dynamic-routing https://opendev.org/openstack/neutron-dynamic-routing
|
|
> EOF
|
|
|
|
3. run devstack::
|
|
|
|
./stack.sh
|
|
|
|
Notes:
|
|
|
|
1. In the default case, neutron-dynamic-routing is installed in allinone mode.
|
|
In multiple nodes environment, for controller node::
|
|
|
|
cd devstack
|
|
cat << EOF > local.conf
|
|
> [[local|localrc]]
|
|
> enable_plugin neutron-dynamic-routing https://opendev.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
|
|
> [[local|localrc]]
|
|
> enable_plugin neutron-dynamic-routing https://opendev.org/openstack/neutron-dynamic-routing
|
|
> DR_MODE=dr_agent
|
|
> EOF
|
|
|
|
2. In the default case, protocol BGP is enabled for neutron-dynamic-routing.
|
|
You can change "DR_SUPPORTED_PROTOCOLS" in "devstack/settings" to protocols wanted.
|
|
|