Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • watch ./sjekkBGP.sh

Network-nodes



Code Block
# Get ID's of the neutronnet nodes
openstack network agent list --agent-type l3

# List routers on a neutronnet node
openstack router list --agent <ID from previous command>

# Get ip from a router
openstack router show <id of router found from previous command>
ping <ip>

# Move a router
cd admintools/networking
./migrate-router.sh <id of router> <neutronet node>

# Move all routers from a neutronnet node. It will cause a bit downtime on the network if it's many routers.
./migrate-routers.sh <source neutronnet node> <destination neutronnet node>


Placement

The placement API is just a simple API, and it only needs simple tests like:

...