Hi,
I have a question about open vSwitch boot persistence in Proxmox VE 5
My open vSwitch config looks as follows;
I then run a command such as
and the config changes to;
Reflecting the change I made in the
portion, however on reboot this is lost.
What is the recommended way to achieve boot persistence for these sort of commands? (The equivalent of "copy running config startup config" on a regular switch, but in the context of running Proxmox and open vSwitch).
Thanks
Liam
I have a question about open vSwitch boot persistence in Proxmox VE 5
My open vSwitch config looks as follows;
Code:
root@mdr-pve1:~# ovs-vsctl show
2466b09a-459b-4350-9c8c-139c21d30f9a
Bridge "vmbr0"
Port "enp11s0f1"
Interface "enp11s0f1"
Port "enp6s0f0"
Interface "enp6s0f0"
Port "enp13s0f0"
Interface "enp13s0f0"
Port "vmbr0"
Interface "vmbr0"
type: internal
Port "tap100i0"
Interface "tap100i0"
Port "enp13s0f1"
Interface "enp13s0f1"
Port "enp4s0f0"
tag: 1
Interface "enp4s0f0"
Port "enp6s0f1"
Interface "enp6s0f1"
Port "enp11s0f0"
Interface "enp11s0f0"
Port "enp4s0f1"
Interface "enp4s0f1"
Port "vlan1"
tag: 1
Interface "vlan1"
type: internal
ovs_version: "2.7.0
I then run a command such as
Code:
ovs-vsctl set port tap100i0 trunks=1
Code:
root@mdr-pve1:~# ovs-vsctl show
2466b09a-459b-4350-9c8c-139c21d30f9a
Bridge "vmbr0"
Port "enp11s0f1"
Interface "enp11s0f1"
Port "enp6s0f0"
Interface "enp6s0f0"
Port "enp13s0f0"
Interface "enp13s0f0"
Port "vmbr0"
Interface "vmbr0"
type: internal
Port "tap100i0"
trunks: [1]
Interface "tap100i0"
Port "enp13s0f1"
Interface "enp13s0f1"
Port "enp4s0f0"
tag: 1
Interface "enp4s0f0"
Port "enp6s0f1"
Interface "enp6s0f1"
Port "enp11s0f0"
Interface "enp11s0f0"
Port "enp4s0f1"
Interface "enp4s0f1"
Port "vlan1"
tag: 1
Interface "vlan1"
type: internal
ovs_version: "2.7.0"
Reflecting the change I made in the
Code:
Port "tap100i0"
trunks: [1]
Interface "tap100i0"
What is the recommended way to achieve boot persistence for these sort of commands? (The equivalent of "copy running config startup config" on a regular switch, but in the context of running Proxmox and open vSwitch).
Thanks
Liam