how to create two provider networks
Hi team,
i want to know how to create two provider networks in openstack queens. br-ex should map eth0 Physical interface if br-ex1 create's should map eth1 Physical interface
Thanks in advance
Prasanth
See https://docs.openstack.org/neutron/la... for a single network based on OVS. Assuming you don't use VLAN, configure both provider networks as
flat_networks = net0,net1
. Map them to interfaces:bridge_mappings = net0:br-ex,net1:br-ex1
.You must create OVS bridges br-ex and br-ex1 and include eth0 and eth1 in them, respectively. I think that's it. The config is slightly different for the Linuxbridge mechanism driver.
Then use
openstack network create
to create the two external networks.