I've got my network currently setup as follows:
Currently all management traffic is going through vmbr1 and all VM traffic is going over vmbr0 using vlan tags on the VMs themselves. I'd like to setup an active-backup bond using enp2s0 as active and eno1 as backup. I tried the following setup and am able to still access Proxmox management on vmbr1, but none of the VMs on vmbr0 using vlan tags in the VM config.
Any ideas or help is greatly appreciated. Thanks!
Code:
auto lo
iface lo inet loopback
auto eno1
iface eno1 inet manual
iface enp1s0 inet manual
iface enp3s0 inet manual
auto enp2s0
iface enp2s0 inet manual
auto vmbr0
iface vmbr0 inet manual
bridge-ports enp2s0
bridge-stp off
bridge-fd 0
bridge-vlan-aware yes
bridge-vids 2-4094
auto vmbr1
iface vmbr1 inet static
address 192.168.15.50/24
gateway 192.168.15.1
bridge-ports eno1.15
bridge-stp off
bridge-fd 0
Currently all management traffic is going through vmbr1 and all VM traffic is going over vmbr0 using vlan tags on the VMs themselves. I'd like to setup an active-backup bond using enp2s0 as active and eno1 as backup. I tried the following setup and am able to still access Proxmox management on vmbr1, but none of the VMs on vmbr0 using vlan tags in the VM config.
Code:
auto lo
iface lo inet loopback
auto eno1
iface eno1 inet manual
iface enp1s0 inet manual
iface enp3s0 inet manual
auto enp2s0
iface enp2s0 inet manual
auto bond0
iface bond0 inet manual
bond-slaves eno1 enp2s0
bond-miimon 100
bond-mode active-backup
bond-primary enp2s0
auto vmbr0
iface vmbr0 inet manual
bridge-ports bond0
bridge-stp off
bridge-fd 0
bridge-vlan-aware yes
bridge-vids 2-4094
auto vmbr1
iface vmbr1 inet static
address 192.168.15.50/24
gateway 192.168.15.1
bridge-ports bond0.15
bridge-stp off
bridge-fd 0
Any ideas or help is greatly appreciated. Thanks!