Created
January 31, 2017 07:42
-
-
Save rpromyshlennikov/ece8422e4735e7f0cd1e34120107ad41 to your computer and use it in GitHub Desktop.
Semi-external network creation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#/bin/bash | |
source openrc | |
neutron net-create ext-net --router:external True | |
neutron subnet-create ext-net --name ext-subnet --allocation-pool start=171.100.1.3,end=171.100.1.100 --disable-dhcp --gateway 171.100.1.1 171.100.1.0/24 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment