Hello everyone, VMware refugee here trying to learn/play with Proxmox. I'm confused about how Linux bridges that are VLAN aware work with the default VLAN.
If I configure a Linux bridge and assign it an IP both the host and a guest/VM using the bridge work great (config below):
auto vmbr1
iface vmbr1 inet static
address 192.168.140.50/24
gateway 192.168.140.253
bridge-ports bond0
bridge-stp off
bridge-fd 0
I turn on the checkbox to make it VLAN aware the host becomes isolated but the guest/VM using the bridge continues to work (config below):
auto vmbr1
iface vmbr1 inet static
address 192.168.140.50/24
gateway 192.168.140.253
bridge-ports bond0
bridge-stp off
bridge-fd 0
bridge-vlan-aware yes
bridge-vids 2-4094
What am I missing to allow the host to use the default VLAN on a Linux bridge that is VLAN aware?
If I configure a Linux bridge and assign it an IP both the host and a guest/VM using the bridge work great (config below):
auto vmbr1
iface vmbr1 inet static
address 192.168.140.50/24
gateway 192.168.140.253
bridge-ports bond0
bridge-stp off
bridge-fd 0
I turn on the checkbox to make it VLAN aware the host becomes isolated but the guest/VM using the bridge continues to work (config below):
auto vmbr1
iface vmbr1 inet static
address 192.168.140.50/24
gateway 192.168.140.253
bridge-ports bond0
bridge-stp off
bridge-fd 0
bridge-vlan-aware yes
bridge-vids 2-4094
What am I missing to allow the host to use the default VLAN on a Linux bridge that is VLAN aware?