1 | initial version |
You can not add a physical NIC directly.
You need to create a VMSwitch on top of the physical NIC.
I.E. New-VMSwitch external -AllowManagementOS $true -NetAdapterName Ethernet1
Enable the extension on the created visual switch:
Enable-VMSwitchExtension openvswitch external
And than add the VMSwitch to the bridge:
ovs-vsctl.exe add-br br0
ovs-vsctl.exe add-port br0 external
2 | No.2 Revision |
You can notcannot add a physical NIC directly.
You need to create a VMSwitch on top of the physical NIC.
I.E. New-VMSwitch external -AllowManagementOS $true -NetAdapterName Ethernet1
Enable the extension on the created visual switch:
Enable-VMSwitchExtension openvswitch external
And than add the VMSwitch to the bridge:
ovs-vsctl.exe add-br br0
ovs-vsctl.exe add-port br0 external