Skip to content

Instantly share code, notes, and snippets.

@j-griffith
Created April 15, 2015 19:07
Show Gist options
  • Save j-griffith/6bdfb003735dded6e57f to your computer and use it in GitHub Desktop.
Save j-griffith/6bdfb003735dded6e57f to your computer and use it in GitHub Desktop.
Use "nova network-add" after your'e up and running
nova network-create data-net --bridge br200 --multi-host T --fixed-range-v4 10.10.0.0/18 --share-address T --bridge-interface p2p1
The above command SHOULD move the IP from p2p1 to br200, but this never seems to work for me. So I manually moved it:
ip addr del 10.10.60.23/255.255.192.0
ip addr del 10.10.60.23/255.255.192.0 dev p2p1
ip addr del 10.10.60.1/255.255.255.0 dev br200
ip addr add 10.10.60.23/255.255.192.0 dev br200
Next, add eth1 to /etc/network/interfaces.d on the instance
Fix up the route table:
route add -net 10.10.0.0 netmask 255.255.192.0 dev eth1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment