diff --git a/doc/install-guide/section_neutron-per-tenant-routers-with-private-networks.xml b/doc/install-guide/section_neutron-per-tenant-routers-with-private-networks.xml index e73e6e3f20..abb56992cc 100644 --- a/doc/install-guide/section_neutron-per-tenant-routers-with-private-networks.xml +++ b/doc/install-guide/section_neutron-per-tenant-routers-with-private-networks.xml @@ -115,8 +115,8 @@ Identity is installed, configured, and running. A Networking user named neutron should be created on tenant servicetenant with password servicepassword. + >service with password NEUTRON_PASS. Additional services: @@ -156,9 +156,9 @@ rabbit_host = controller notification_driver = neutron.openstack.common.notifier.rabbit_notifier [keystone_authtoken] -admin_tenant_name=servicetenant +admin_tenant_name=service admin_user=neutron -admin_password=servicepassword +admin_password=NEUTRON_PASS @@ -195,10 +195,10 @@ enable_tunneling = True network_api_class=nova.network.neutronv2.api.API neutron_admin_username=neutron -neutron_admin_password=servicepassword +neutron_admin_password=NEUTRON_PASS neutron_admin_auth_url=http://controlnode:35357/v2.0/ neutron_auth_strategy=keystone -neutron_admin_tenant_name=servicetenant +neutron_admin_tenant_name=service neutron_url=http://controlnode:9696/ libvirt_vif_driver=nova.virt.libvirt.vif.LibvirtHybridOVSBridgeDriver 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 cda8cf4b6c..bf0235e0a6 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 @@ -5,7 +5,7 @@ xml:id="section_networking-provider-router_with-provate-networks"> Provider router with private networks This section describes how to install the OpenStack Networking service and its components - for a single router use case—a provider router with private networks. + for a single router use case: a provider router with private networks. The following figure shows the setup: Because you run the DHCP agent and L3 agent on one node, you must set @@ -86,7 +86,9 @@ node Run the following command: - # apt-get install neutron-server + # apt-get install neutron-server + # yum install openstack-neutron + # zypper install openstack-neutron Configure Neutron services: @@ -105,7 +107,7 @@ rabbit_password = guest /etc/neutron/plugins/openvswitch/ovs_neutron_plugin.ini and modify: [database] -connection = mysql://neutron:password@localhost:3306/neutron +connection = mysql://neutron:NEUTRON_DBPASS@localhost:3306/neutron [ovs] tenant_network_type = vlan network_vlan_ranges = physnet1:100:2999 @@ -116,7 +118,7 @@ network_vlan_ranges = physnet1:100:2999 and modify: admin_tenant_name = service admin_user = neutron -admin_password = password +admin_password = NEUTRON_PASS @@ -134,6 +136,7 @@ admin_password = password node Install the packages: + # apt-get install neutron-plugin-openvswitch-agent \ neutron-dhcp-agent neutron-l3-agent @@ -159,7 +162,7 @@ rabbit_host = controller /etc/neutron/plugins/openvswitch/ovs_neutron_plugin.ini : [database] -connection = mysql://neutron:password@192.168.0.1:3306/neutron +connection = mysql://neutron:NEUTRON_DBPASS@controller:3306/neutron [ovs] tenant_network_type=vlan network_vlan_ranges = physnet1:1:4094 @@ -184,11 +187,11 @@ bridge_mappings = physnet1:br-eth1 /etc/neutron/l3_agent.ini and modify: [DEFAULT] -auth_url = http://192.168.0.1:35357/v2.0 +auth_url = http://controller:35357/v2.0 admin_tenant_name = service admin_user = neutron -admin_password = password -metadata_ip = 192.168.0.1 +admin_password = NEUTRON_PASS +metadata_ip = controller use_namespaces = True @@ -196,10 +199,10 @@ use_namespaces = True /etc/neutron/api-paste.ini and modify: [DEFAULT] -auth_host = 192.168.0.1 +auth_host = controller admin_tenant_name = service admin_user = neutron -admin_password = password +admin_password = NEUTRON_PASS Edit the file @@ -221,6 +224,7 @@ admin_password = password To install and configure the compute node + Install the packages:# apt-get install openvswitch-switch neutron-plugin-openvswitch-agent @@ -251,7 +255,7 @@ rabbit_host = controller Update the file /etc/neutron/plugins/openvswitch/ovs_neutron_plugin.ini: [database] -connection = mysql://neutron:password@192.168.0.1:3306/neutron +connection = mysql://neutron:NEUTRON_DBPASS@controller:3306/neutron [ovs] tenant_network_type = vlan network_vlan_ranges = physnet1:1:4094 @@ -279,8 +283,8 @@ bridge_mappings = physnet1:br-eth1 export OS_TENANT_NAME=provider_tenant export OS_USERNAME=admin export OS_PASSWORD=password -export OS_AUTH_URL="http://192.168.0.1:5000/v2.0/" -export SERVICE_ENDPOINT="http://192.168.0.1:35357/v2.0" +export OS_AUTH_URL="http://controller:5000/v2.0/" +export SERVICE_ENDPOINT="http://controller:35357/v2.0" export SERVICE_TOKEN=password diff --git a/doc/install-guide/section_neutron-single-flat.xml b/doc/install-guide/section_neutron-single-flat.xml index 4e8476c605..10d6964be8 100644 --- a/doc/install-guide/section_neutron-single-flat.xml +++ b/doc/install-guide/section_neutron-single-flat.xml @@ -35,7 +35,7 @@ are required to deploy VMs (nova-api, nova-scheduler, for example). The node must have at least one network interface, which is connected to the - "Management Network". The hostname is 'controlnode', which every other node + "Management Network". The hostname is 'controller', which every other node resolve to the controller node's IP. Note The nova-network service should not be running. This is replaced by Networking. @@ -77,8 +77,8 @@ OpenStack Identity is installed, configured and running. A Networking user neutron should be created on tenant servicetenant with password servicepassword. + role="bold">service with password NEUTRON_PASS. Additional services: @@ -103,7 +103,7 @@ - Controller node—Networking server + Controller node - Networking server Install the Networking server. @@ -122,16 +122,16 @@ rabbit_host = controller notification_driver = neutron.openstack.common.notifier.rabbit_notifier [keystone_authtoken] -admin_tenant_name=servicetenant +admin_tenant_name=service admin_user=neutron -admin_password=servicepassword +admin_password=NEUTRON_PASS Update the plugin configuration file, /etc/neutron/plugins/openvswitch/ovs_neutron_plugin.ini: [database] -connection = mysql://root:root@controlnode:3306/ovs_neutron?charset=utf8 +connection = mysql://root:root@controller:3306/ovs_neutron?charset=utf8 [ovs] network_vlan_ranges = physnet1 bridge_mappings = physnet1:br-eth0 @@ -143,7 +143,7 @@ bridge_mappings = physnet1:br-eth0 - Compute node—Compute + Compute node - Compute Install the nova-compute service. @@ -155,11 +155,11 @@ bridge_mappings = physnet1:br-eth0 network_api_class=nova.network.neutronv2.api.API neutron_admin_username=neutron -neutron_admin_password=servicepassword -neutron_admin_auth_url=http://controlnode:35357/v2.0/ +neutron_admin_password=NEUTRON_PASS +neutron_admin_auth_url=http://controller:35357/v2.0/ neutron_auth_strategy=keystone -neutron_admin_tenant_name=servicetenant -neutron_url=http://controlnode:9696/ +neutron_admin_tenant_name=service +neutron_url=http://controller:9696/ libvirt_vif_driver=nova.virt.libvirt.vif.LibvirtHybridOVSBridgeDriver @@ -194,7 +194,7 @@ notification_driver = neutron.openstack.common.notifier.rabbit_notifierUpdate the plugin configuration file, /etc/neutron/plugins/openvswitch/ovs_neutron_plugin.ini: [database] -connection = mysql://root:root@controlnode:3306/ovs_neutron?charset=utf8 +connection = mysql://root:root@controller:3306/ovs_neutron?charset=utf8 [ovs] network_vlan_ranges = physnet1 bridge_mappings = physnet1:br-eth0