diff --git a/doc/training-guides/lab003-compute-node.xml b/doc/training-guides/lab003-compute-node.xml index 6401ee6d..49503bb5 100644 --- a/doc/training-guides/lab003-compute-node.xml +++ b/doc/training-guides/lab003-compute-node.xml @@ -157,7 +157,7 @@ auth_tcp = "none" Edit /etc/neutron/plugins/openvswitch/ovs_neutron_plugin.ini #Under the database section [database] -connection = mysql://neutronUser:neutronPass@192.168.100.51/neutron +connection = mysql://neutronUser:neutronPass@10.10.10.51/neutron #Under the OVS section [ovs] tenant_network_type = gre @@ -176,10 +176,10 @@ neutron.agent.linux.iptables_firewall.OVSHybridIptablesFirewallDriver Edit /etc/neutron/neutron.conf - rabbit_host = 192.168.100.51 + rabbit_host = 10.10.10.51 #And update the keystone_authtoken section [keystone_authtoken] -auth_host = 192.168.100.51 +auth_host = 10.10.10.51 auth_port = 35357 auth_protocol = http admin_tenant_name = service @@ -209,7 +209,7 @@ connection = mysql://neutronUser:neutronPass@192.168.100.51/neutronEdit /etc/nova/api-paste.ini [filter:authtoken] paste.filter_factory = keystoneclient.middleware.auth_token:filter_factory -auth_host = 192.168.100.51 +auth_host = 10.10.10.51 auth_port = 35357 auth_protocol = http admin_tenant_name = service @@ -237,30 +237,30 @@ lock_path=/run/lock/nova verbose=True api_paste_config=/etc/nova/api-paste.ini compute_scheduler_driver=nova.scheduler.simple.SimpleScheduler -rabbit_host=192.168.100.51 -nova_url=http://192.168.100.51:8774/v1.1/ -sql_connection=mysql://novaUser:novaPass@192.168.100.51/nova +rabbit_host=10.10.10.51 +nova_url=http://10.10.10.51:8774/v1.1/ +sql_connection=mysql://novaUser:novaPass@10.10.10.51/nova root_helper=sudo nova-rootwrap /etc/nova/rootwrap.conf # Auth use_deprecated_auth=false auth_strategy=keystone # Imaging service -glance_api_servers=192.168.100.51:9292 +glance_api_servers=10.10.10.51:9292 image_service=nova.image.glance.GlanceImageService # Vnc configuration novnc_enabled=true -novncproxy_base_url=http://192.168.100.51:6080/vnc_auto.html +novncproxy_base_url=http://10.10.10.51:6080/vnc_auto.html novncproxy_port=6080 vncserver_proxyclient_address=10.10.10.53 vncserver_listen=0.0.0.0 # Network settings network_api_class=nova.network.neutronv2.api.API -neutron_url=http://192.168.100.51:9696 +neutron_url=http://10.10.10.51:9696 neutron_auth_strategy=keystone neutron_admin_tenant_name=service neutron_admin_username=neutron neutron_admin_password=service_pass -neutron_admin_auth_url=http://192.168.100.51:35357/v2.0 +neutron_admin_auth_url=http://10.10.10.51:35357/v2.0 libvirt_vif_driver=nova.virt.libvirt.vif.LibvirtHybridOVSBridgeDriver linuxnet_interface_driver=nova.network.linux_net.LinuxOVSInterfaceDriver #If you want Neutron + Nova Security groups