Skip to content

Instantly share code, notes, and snippets.

@rpromyshlennikov
Created January 31, 2017 07:42
Show Gist options
  • Save rpromyshlennikov/ece8422e4735e7f0cd1e34120107ad41 to your computer and use it in GitHub Desktop.
Save rpromyshlennikov/ece8422e4735e7f0cd1e34120107ad41 to your computer and use it in GitHub Desktop.
Semi-external network creation
#/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