From 440bfdd709d128f5db7ff500dfaafeb190ef7cdb Mon Sep 17 00:00:00 2001 From: Michael Turek Date: Thu, 5 Feb 2015 17:48:58 +0000 Subject: [PATCH] Add the subnet creation step to the install guide Currently the subnet creation step is not documented in the baremetal installation guide. This is a necessary step and should be included Change-Id: I20e5ecd982ae724d653a2bdf89ea86527df57dff Closes-bug: #1418659 --- doc/source/deploy/install-guide.rst | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/doc/source/deploy/install-guide.rst b/doc/source/deploy/install-guide.rst index 46c5115c92..5eed4d1e19 100755 --- a/doc/source/deploy/install-guide.rst +++ b/doc/source/deploy/install-guide.rst @@ -422,6 +422,12 @@ DHCP and PXE Boot configuration. An example of this is shown in the neutron net-create --tenant-id $TENANT_ID sharednet1 --shared \ --provider:network_type flat --provider:physical_network physnet1 +#. Create the subnet on the newly created network:: + + neutron subnet-create sharednet1 $NETWORK_CIDR --name $SUBNET_NAME \ + --ip-version=4 --gateway=$GATEWAY_IP --allocation-pool \ + start=$START_IP,end=$END_IP --enable-dhcp + Image Requirements ==================