Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save trumant/895aac0bac63e90708e992bf4bc61922 to your computer and use it in GitHub Desktop.
Save trumant/895aac0bac63e90708e992bf4bc61922 to your computer and use it in GitHub Desktop.
OpenStack-Ansible OVS validate instance connectivity example
ssh man1.oslab
lxc-attach -n `lxc-ls | grep neutron_agents_`
# ping provider instance from the provider network namespace
ip netns exec `ip netns | grep UUID_OF_PROVIDER_NETWORK` \
ping -c 3 PROVIDER_INSTANCE_IP
# ping project instance from the project network namespace
ip netns exec `ip netns | grep UUID_OF_PROJECT_NETWORK` \
ping -c 3 PROJECT_INSTANCE_IP
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment