Skip to content

Instantly share code, notes, and snippets.

@larsks
Last active January 3, 2016 06:18
Show Gist options
  • Save larsks/8421395 to your computer and use it in GitHub Desktop.
Save larsks/8421395 to your computer and use it in GitHub Desktop.
neutron net-list
neutron subnet-list
neutron router-list
For each router:
neutron router-port-list <router_id>
On the network controller (the system where neutron-server is
running):
ovs-vsctl show
ip netns | while read ns; do
echo === $ns ===
ip netns exec $ns ip addr
ip netns exec $ns ip route
ip netns exec $ns iptables -S
ip netns exec $ns iptables -t nat -S
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment