I have installed Proxmox 6 and want to set0-up the Proxmox with VLAN tagging. The example configuration on the wiki did not work, the configuration which I already tried can be found below:
If I create a bond interface with eno1 and eno2 it's working:
So my question is what am I missing to get eno1 work with VLAN tagging?
auto lo
iface lo inet loopback
iface eno1 inet manual
auto vmbr0.3043
iface vmbr0.3043 inet static
address 192.168.0.102
netmask 255.255.255.0
gateway 192.168.0.1
auto vmbr0
iface vmbr0 inet manual
bridge-ports eno1
bridge-stp off
bridge-fd 0
bridge-vlan-aware yes
If I create a bond interface with eno1 and eno2 it's working:
auto bond0
iface bond0 inet manual
slaves eno1 eno2
bond_miimon 100
bond_mode 802.3ad
bond_xmit_hash_policy layer3+4
bond-miimon 100
bond-mode 802.3ad
auto bond0.3043
iface bond0.3043 inet manual
vlan-raw-device bond0
auto vmbr3043
iface vmbr3043 inet static
address 192.168.0.102
netmask 255.255.255.0
gateway 192.168.0.1
bridge_ports bond0.3043
bridge_stp off
bridge_fd 0
So my question is what am I missing to get eno1 work with VLAN tagging?