From a7b717f31af4d26f8f6524bc0452834b48cc8dff Mon Sep 17 00:00:00 2001 From: Bin Hu Date: Wed, 20 Jan 2016 14:39:46 -0800 Subject: JIRA:IPVSIX-29 Change-Id: Icf2a620d40966d316112f2b3756c60050c875400 Signed-off-by: Bin Hu (cherry picked from commit bf35205d2dc6b3c21fa2b366eab2548c42d9974d) --- .../5-ipv6-configguide-scenario-1-native-os.rst | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'docs') diff --git a/docs/setupservicevm/5-ipv6-configguide-scenario-1-native-os.rst b/docs/setupservicevm/5-ipv6-configguide-scenario-1-native-os.rst index f7ae344..dc27d15 100644 --- a/docs/setupservicevm/5-ipv6-configguide-scenario-1-native-os.rst +++ b/docs/setupservicevm/5-ipv6-configguide-scenario-1-native-os.rst @@ -245,9 +245,21 @@ connectivity. **OS-NATIVE-SETUP-7**: Create an external network/subnet ``ext-net`` using the appropriate values based on the data-center physical network setup. +Please **NOTE** that if you use a different installer, i.e. NOT ``devstack``, your installer +may have already created an external network during installation. Under this circumstance, +you may only need to create the subnet of ``ext-net``. When you create the subnet, you must +use the same name of external network that your installer creates. + +**Please refer to the documentation of your installer if there is any issue** + .. code-block:: bash + # If you use a different installer and it has already created an external work, + # Please skip this command "net-create" neutron net-create --router:external ext-net + + # If you use a different installer and it has already created an external work, + # Change the name "ext-net" to match the name of external network that your installer has created neutron subnet-create --disable-dhcp --allocation-pool start=198.59.156.251,end=198.59.156.254 --gateway 198.59.156.1 ext-net 198.59.156.0/24 **OS-NATIVE-SETUP-8**: Create Neutron networks ``ipv4-int-network1`` and ``ipv6-int-network2`` @@ -270,6 +282,8 @@ and associate it to ``ipv4-router``. .. code-block:: bash + # If you use a different installer and it has already created an external work, + # Change the name "ext-net" to match the name of external network that your installer has created neutron router-gateway-set ipv4-router ext-net neutron router-gateway-set ipv6-router ext-net @@ -335,6 +349,8 @@ to know the IPv6 addresses that would be assigned to the port). .. code-block:: bash # 1. Create a floatingip and associate it with VM1, VM2 and vRouter (to the port id that is passed). + # If you use a different installer and it has already created an external work, + # Change the name "ext-net" to match the name of external network that your installer has created neutron floatingip-create --port-id $(neutron port-list | grep -w eth0-VM1 | \ awk '{print $2}') ext-net neutron floatingip-create --port-id $(neutron port-list | grep -w eth0-VM2 | \ -- cgit 1.2.3-korg