First time here? Check out the FAQ!
![]() | 1 | initial version |
You must create a externel Network first:
$ neutron subnet-create ext-net --name ext-subnet \
--allocation-pool start=FLOATING_IP_START,end=FLOATING_IP_END \
--disable-dhcp --gateway EXTERNAL_NETWORK_GATEWAY EXTERNAL_NETWORK_CIDR
The allocation-pool is your Floating-IP Pool
see here: http://docs.openstack.org/icehouse/install-guide/install/apt/content/neutron_initial-external-network.html
regards, rahuk
![]() | 2 | No.2 Revision |
You must create a externel Network first:
$ # neutron net-create ext-net --shared --router:external=True
# neutron subnet-create ext-net --name ext-subnet \
--allocation-pool start=FLOATING_IP_START,end=FLOATING_IP_END \
--disable-dhcp --gateway EXTERNAL_NETWORK_GATEWAY EXTERNAL_NETWORK_CIDR
The allocation-pool is your Floating-IP Pool
see here: http://docs.openstack.org/icehouse/install-guide/install/apt/content/neutron_initial-external-network.html
regards, rahuk