I have the networking running on a VM, so know that works, but using the same bridge on containers doesn't work. Not sure what I'm missing.
Host network:
auto lo
iface lo inet loopback
iface eno1 inet manual
iface eno2 inet manual
auto ens2f0
iface ens2f0 inet manual
auto ens2f1
iface ens2f1 inet manual
auto bond0
iface bond0 inet manual
bond-slaves ens2f0 ens2f1
bond-miimon 100
bond-mode balance-rr
auto vmbr0
iface vmbr0 inet static
address 10.27.6.102/24
gateway 10.27.6.254
bridge-ports eno1
bridge-stp off
bridge-fd 0
auto vmbr1
iface vmbr1 inet manual
bridge-ports bond0
bridge-stp off
bridge-fd 0
bridge-vlan-aware yes
bridge-vids 2-4094
source /etc/network/interfaces.d/*
Not sure where the file is in the container, but here's the screenshot of the container network config
And here's the config for the VM that is working
Host network:
auto lo
iface lo inet loopback
iface eno1 inet manual
iface eno2 inet manual
auto ens2f0
iface ens2f0 inet manual
auto ens2f1
iface ens2f1 inet manual
auto bond0
iface bond0 inet manual
bond-slaves ens2f0 ens2f1
bond-miimon 100
bond-mode balance-rr
auto vmbr0
iface vmbr0 inet static
address 10.27.6.102/24
gateway 10.27.6.254
bridge-ports eno1
bridge-stp off
bridge-fd 0
auto vmbr1
iface vmbr1 inet manual
bridge-ports bond0
bridge-stp off
bridge-fd 0
bridge-vlan-aware yes
bridge-vids 2-4094
source /etc/network/interfaces.d/*
Not sure where the file is in the container, but here's the screenshot of the container network config
And here's the config for the VM that is working