Last year around august, i setup 3 proxmoxes, adding one today so i installed 7, and wanted to basically paste my bond config:
Which works on 3 servers currently, to no avail, eventually i got to proxmox docs and noticed
the vmbr0.141 changes to vmbr0v141 and there is now an additional bond interface for the vlan, aswell as additional lines in vmbr0v141 to set the bridge port to bond0.141
(aswell as slaves becoming bond-slaves)
so i google when this changed, no info, i check my printed instructions from a while ago and what do you know, v is there and even the seperate bond interface is there,
so i reason maybe i printed these at a later date, wayback machine says the same thing (besides the slaves, that aparently changed).
And yet, my old config is currently running without any issues on 3 proxmox 6 servers.
Am i crazy, or has this changed? Or is this some serious mandella effect right now
Code:
auto lo
iface lo inet loopback
iface eno1 inet manual
iface eno2 inet manual
iface eno3 inet manual
iface eno4 inet manual
iface ens3f0 inet manual
iface ens3f1 inet manual
auto bond0
iface bond0 inet manual
slaves ens3f0 ens3f1
bond-miimon 100
bond-mode 1
bond-xmit-hash-policy layer2+3
auto vmbr0.141
iface vmbr0.141 inet static
address 10.14.1.30
netmask 255.255.255.0
gateway 10.14.1.1
auto vmbr0
iface vmbr0 inet manual
bridge-ports bond0
bridge-stp off
bridge-fd 0
bridge-vlan-aware yes
Which works on 3 servers currently, to no avail, eventually i got to proxmox docs and noticed
the vmbr0.141 changes to vmbr0v141 and there is now an additional bond interface for the vlan, aswell as additional lines in vmbr0v141 to set the bridge port to bond0.141
Code:
auto lo
iface lo inet loopback
iface eno1 inet manual
iface eno2 inet manual
auto bond0
iface bond0 inet manual
bond-slaves eno1 eno2
bond-miimon 100
bond-mode 802.3ad
bond-xmit-hash-policy layer2+3
iface bond0.5 inet manual
auto vmbr0v5
iface vmbr0v5 inet static
address 10.10.10.2/24
gateway 10.10.10.1
bridge-ports bond0.5
bridge-stp off
bridge-fd 0
auto vmbr0
iface vmbr0 inet manual
bridge-ports bond0
bridge-stp off
bridge-fd 0
so i google when this changed, no info, i check my printed instructions from a while ago and what do you know, v is there and even the seperate bond interface is there,
so i reason maybe i printed these at a later date, wayback machine says the same thing (besides the slaves, that aparently changed).
And yet, my old config is currently running without any issues on 3 proxmox 6 servers.
Am i crazy, or has this changed? Or is this some serious mandella effect right now