Skip to content

Instantly share code, notes, and snippets.

@rpromyshlennikov
Last active January 31, 2017 07:52
Show Gist options
  • Save rpromyshlennikov/ff4c9f8d9ed267469fdd164224438b8c to your computer and use it in GitHub Desktop.
Save rpromyshlennikov/ff4c9f8d9ed267469fdd164224438b8c to your computer and use it in GitHub Desktop.
Create private network, nanoflavor and cirros instance
#/bin/sh
source openrc
nova flavor-create m1.nano 42 64 0 1
neutron net-create internal001; neutron subnet-create --name internal001 internal001 192.168.200.0/24
nova boot --flavor m1.nano --image cirros64 --nic net-name=internal001 cirros_server
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment