OpenvSwitch new OVSIntPort without reboot?

tomstephens89

Renowned Member
Mar 10, 2014
202
11
83
Kingsclere, United Kingdom
Hi guys,

I need to add a few new VLAN's to my infrastructure, one of which will be for backups that each of my 16 proxmox hosts will need to talk on. Therefore I need to add a new OVSIntPort to each host.

I want to know if it is OK to make the new port in the GUI and then run the following command instead of having to reboot all my hosts?

Code:
[COLOR=#333333]/etc/init.d/pvenetcommit start[/COLOR]

Thanks
 
I need to add a few new VLAN's to my infrastructure, one of which will be for backups that each of my 16 proxmox hosts will need to talk on. Therefore I need to add a new OVSIntPort to each host.

I want to know if it is OK to make the new port in the GUI and then run the following command instead of having to reboot all my hosts?

Code:
/etc/init.d/pvenetcommit start

No. The above procedure is dedicated for to be called in the startup phase.

Suggestion: Make temporary changes (until the next reboot, in addition to the change in GUI), using ovs-vsctl command, e.g.

Code:
ovs-vsctl add-port vmbr5 iport99 tag=999 -- set interface iport99 type=internal
 
No. The above procedure is dedicated for to be called in the startup phase.

Suggestion: Make temporary changes (until the next reboot, in addition to the change in GUI), using ovs-vsctl command, e.g.

Code:
ovs-vsctl add-port vmbr5 iport99 tag=999 -- set interface iport99 type=internal

Ok so a reboot is required for a simple network change. Whilst I can acomodate this, I would suggest this functionality be added in the future since making live changes to the network configuration is possible in the other commercial hypervisors such as ESXi and HyperV.