I have a server with my WAN interface for my Proxmox server where I also have routed subnet on for my VM's.
The issue I run into is that this works for the IP's fine but I have trouble with the bridge-ports as a bridge doesn't start without any but also complains when it doesn't exist of you use "none" twice, so that is why I now use none1 and none2
Am I overseeing something here ?
The issue I run into is that this works for the IP's fine but I have trouble with the bridge-ports as a bridge doesn't start without any but also complains when it doesn't exist of you use "none" twice, so that is why I now use none1 and none2
Am I overseeing something here ?
Code:
auto lo
iface lo inet loopback
iface lo inet6 loopback
auto eth0
iface eth0 inet static
address 172.16.0.1
netmask 255.255.255.0
gateway 172.16.0.254
auto eth1
iface eth1 inet manual
auto eth2
iface eth2 inet manual
auto bond0
iface bond0 inet manual
bond-slaves eth1 eth2
bond-miimon 100
bond-mode balance-rr
auto vmbr11
iface vmbr11 inet static
address 10.0.0.1
netmask 255.255.255.0
bridge-ports none1
bridge-stp off
bridge-fd 0
auto vmbr101
iface vmbr101 inet manual
bridge-ports bond0
bridge-stp off
bridge-fd 0
auto vmbr1001
iface vmbr1001 inet manual
bridge-ports none2
bridge-stp off
bridge-fd 0
bridge-vlan-aware yes
bridge-vids 2-4094