This consideration applies only if Oracle Fabric Manager is installed on an Oracle VM—for example, in a small 2-node install.
A management port to the management network
A data port to the Oracle Ethernet Switch, which forms an internal data network also known as a physical network
For external network connectivity, the controller node also needs:
An external port, which provides tenant networks with access to the outside world.
For more information, refer to OVM documentation at https://docs.oracle.com/cd/E38500_01/.
Determine which host data ports connect to which ports on the ES2 switches.
On each OpenStack node, in order for the OpenvSwitch (OVS) agent to properly manage the data port connected to the ES2 switch, the data port must plug into an OVS bridge, known as the physical bridge. The physical bridge name is typically the data network interface name prefixed by br-.
For instance, the physical bridge name for eth1 is br-eth1.
Each physical bridge also maps to a physical network name. You can create VLAN allocation pools based on a single physical network name to avoid using multiple actual interface names on each node.
By default, the packstack command assumes the OVS agent on all nodes have homogeneous OVS-bridge-to-physical-interface mappings. For heterogeneous deployments, these mappings can be specified manually after the packstack completes.
packstack --install-hosts=<controller IP>,<compute1 IP>,<compute2 IP... etc> --neutron-l2-plugin=ml2 --neutron-ovs-bridge-mappings=<physical network>:<ovsbridge name> --neutron-ovs-bridge-interfaces=<ovs bridge name>:<interface>
When you have installed OpenStack, use the following steps to set up bridges.
ovs-vsctl add-br br-int ovs-vsctl add-br br-eth1 ovs-vsctl add-port br-eth1 eth1
ovs-vsctl br-exists br-int ovs-vsctl br-exists br-eth1 ovs-vsctl port-to-br-eth1 eth1 ovs-vsctl show
[ovs] bridge_mappings = default:br-eth1 [SECURITYGROUP] firewall_driver=neutron.agent.linux.iptables_firewall.OVSHybridIptablesFirewallDriver enable_security_group = True
service neutron-openvswitch-agent restart