diff --git a/doc/install-guide/section_neutron-provider-router-with-private_networks.xml b/doc/install-guide/section_neutron-provider-router-with-private_networks.xml
index bf0235e0a6..10be3626de 100644
--- a/doc/install-guide/section_neutron-provider-router-with-private_networks.xml
+++ b/doc/install-guide/section_neutron-provider-router-with-private_networks.xml
@@ -136,13 +136,17 @@ admin_password = NEUTRON_PASS
node
Install the packages:
-
- # apt-get install neutron-plugin-openvswitch-agent \
+
+ # apt-get install neutron-plugin-openvswitch-agent \
neutron-dhcp-agent neutron-l3-agent
+ # yum install openstack-neutron-openvswitch \
+openstack-neutron
Start Open vSwitch:
- # service openvswitch-switch start
+ # service openvswitch-switch start
+ # service openvswitch start
+# chkconfig openvswitch on
Add the integration bridge to the Open
@@ -153,8 +157,10 @@ neutron-dhcp-agent neutron-l3-agent
Update the OpenStack Networking
configuration file,
/etc/neutron/neutron.conf:
- rabbit_password = guest
+ rabbit_password = guest
rabbit_host = controller
+ # openstack-config --set /etc/neutron/neutron.conf \
+DEFAULT qpid_hostname controller
Update the plug-in configuration file,
@@ -210,11 +216,30 @@ admin_password = NEUTRON_PASS
and modify:
use_namespaces = True
-
+
Restart networking services:
- # service neutron-plugin-openvswitch-agent start
-# service neutron-dhcp-agent restart
-# service neutron-l3-agent restart
+ # service neutron-plugin-openvswitch-agent start
+# service neutron-dhcp-agent restart
+# service neutron-l3-agent restart
+
+
+ Start and permanently enable networking services:
+ # service neutron-openvswitch-agent start
+# service neutron-dhcp-agent start
+# service neutron-l3-agent start
+# chkconfig neutron-openvswitch-agent on
+# chkconfig neutron-dhcp-agent on
+# chkconfig neutron-l3-agent on
+
+
+
+
+ Enable the neutron-ovs-cleanup
+ service. This service starts on boot and ensures that
+ Neutron has full control over the creation and management
+ of tap devices.
+
+ # chkconfig neutron-ovs-cleanup on