Skip to content

Instantly share code, notes, and snippets.

@major
Created February 17, 2016 19:32
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 major/b8771c99e1274e89bc98 to your computer and use it in GitHub Desktop.
Save major/b8771c99e1274e89bc98 to your computer and use it in GitHub Desktop.
VLAN + VXLAN with openstack-ansible
provider_networks:
- network:
container_bridge: "br-mgmt"
container_type: "veth"
container_interface: "eth1"
ip_from_q: "container"
type: "raw"
group_binds:
- all_containers
- hosts
- glance_api
- cinder_api
- cinder_volume
- nova_compute
- swift_proxy
is_container_address: true
is_ssh_address: true
- network:
container_bridge: "br-vxlan"
container_type: "veth"
container_interface: "eth10"
ip_from_q: "tunnel"
type: "vxlan"
range: "1:1000"
net_name: "vxlan"
group_binds:
- neutron_linuxbridge_agent
- network:
container_bridge: "br-vlan"
container_type: "veth"
container_interface: "eth11"
type: "vlan"
range: "50:1000"
net_name: "vlan"
group_binds:
- neutron_linuxbridge_agent
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment