summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBin Hu <bh526r@att.com>2016-01-20 14:45:47 -0800
committerBin Hu <bh526r@att.com>2016-01-20 22:48:09 +0000
commit42b2b84fbf1077ff8c500cf2e7a8c55470571c0d (patch)
treeef8c6df31ce0f9ae70b9e83f4191bb7578984ba2
parenta7b717f31af4d26f8f6524bc0452834b48cc8dff (diff)
JIRA:IPVSIX-29
Change-Id: Ida0bd2f8b3059a8385b5f226c24458ad73045839 Signed-off-by: Bin Hu <bh526r@att.com> (cherry picked from commit 0076cd27083510b4ded33871d6a4f937524bdfc3)
-rw-r--r--docs/setupservicevm/4-ipv6-configguide-servicevm.rst16
1 files changed, 16 insertions, 0 deletions
diff --git a/docs/setupservicevm/4-ipv6-configguide-servicevm.rst b/docs/setupservicevm/4-ipv6-configguide-servicevm.rst
index 0cd4e34..077b091 100644
--- a/docs/setupservicevm/4-ipv6-configguide-servicevm.rst
+++ b/docs/setupservicevm/4-ipv6-configguide-servicevm.rst
@@ -117,9 +117,19 @@ Create IPv4 Subnet and Router with External Connectivity
**SETUP-SVM-6**: 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.
+
.. 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
Please note that the IP addresses in the command above are for exemplary purpose. **Please replace the IP addresses of
@@ -129,6 +139,8 @@ your actual network**.
.. 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
**SETUP-SVM-8**: Create an internal/tenant IPv4 network ``ipv4-int-network1``
@@ -166,6 +178,8 @@ IPv6 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 ipv6-router ext-net
**SETUP-SVM-13**: Create a second internal/tenant IPv4 network ``ipv4-int-network2``
@@ -375,6 +389,8 @@ We use ``floatingip`` mechanism to achieve ``SSH``.
.. 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 | \