does anyone know if it's possible to mix vlans and bonds ? Say I have the following:
Would it works? The idea is beeing able to run corosync on 2 different networks while usin the bound for VM networking
Code:
iface eno1 inet manual
auto eno1.100
iface eno1.100 inet static
address 10.100.1.101/24
iface eno1 inet manual
auto eno2.100
iface eno2.100 inet static
address 10.100.1.101/24
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.102 inet manual
auto vmbr0
iface vmbr0 inet static
address 10.102.1.2/24
gateway 10.1002.1.1
bridge-ports bond0.102
bridge-stp off
bridge-fd 0
Would it works? The idea is beeing able to run corosync on 2 different networks while usin the bound for VM networking