Hi all
We are installing Open vSwitch in some of our hypervisors, so now we have an heterogeneous conf, some hyps are still using linux bridges with the dummy driver and the new ones are using OVS with ovswitch driver. In our case linux bridges are called “br100” and OVS ones “ovsbr0”. OpenNebula documentation says that it is possible to use different bridge names for OpenvSwitch and linux bridges (and that’s great ) [1] . So our OpenNebula 4.10.2 vnet conf looks like this:
BRIDGE="br100"
BRIDGE_OVS="ovsbr0"
...
but when the xml is generated in our ovswitch node looks like this:
<interface type='bridge'>
<virtualport type='openvswitch'/>
<source bridge='br100'/>
<mac address='aa:01:00:80:04:00'/>
<model type='virtio'/>
</interface>
source bridge is still pointing to the BRIDGE value instead of BRIDGE_OVS… everything else is ok, but the VM is not instantiated because the name is wrong.
Is this an known issue? or something is missing in the documentation?
Thanks in advance!
Álvaro