I'm trying to convert over from a native vlan to a native vlan + tagged vlan and I can't seem to make it work. Right now my /etc/network/interfaces looks like this:
auto lo
iface lo inet loopback
auto eno1
iface eno1 inet manual
auto eno2
iface eno2 inet manual
auto bond0
iface bond0 inet manual
bond-slaves eno1 eno2
bond-miimon 100
bond-mode 802.3ad
bond-xmit-hash-policy layer2+3
auto vmbr0
iface vmbr0 inet static
address 192.168.15.2/24
gateway 192.168.15.1
bridge-ports bond0
bridge-stp off
bridge-fd 0
bridge-vlan-aware yes
bridge-vids 2-4094
On the switch side, it's set to vlan15 (native vlan), and none of the instances have any vlan tags on them. When I move the LAG on the switch over to a port profile of "vlan15+tagged vlan 25" (unifi, if anyone is interested), I immediately lose access to PVE itself (192.168.15.2). My assumption was that I didn't need to tag the bond itself (looking over https://pve.proxmox.com/wiki/Network_Configuration) since vlan15 is still the native vlan and I could just tag the VM's that I wanted to use vlan25.
What am I missing here?
auto lo
iface lo inet loopback
auto eno1
iface eno1 inet manual
auto eno2
iface eno2 inet manual
auto bond0
iface bond0 inet manual
bond-slaves eno1 eno2
bond-miimon 100
bond-mode 802.3ad
bond-xmit-hash-policy layer2+3
auto vmbr0
iface vmbr0 inet static
address 192.168.15.2/24
gateway 192.168.15.1
bridge-ports bond0
bridge-stp off
bridge-fd 0
bridge-vlan-aware yes
bridge-vids 2-4094
On the switch side, it's set to vlan15 (native vlan), and none of the instances have any vlan tags on them. When I move the LAG on the switch over to a port profile of "vlan15+tagged vlan 25" (unifi, if anyone is interested), I immediately lose access to PVE itself (192.168.15.2). My assumption was that I didn't need to tag the bond itself (looking over https://pve.proxmox.com/wiki/Network_Configuration) since vlan15 is still the native vlan and I could just tag the VM's that I wanted to use vlan25.
What am I missing here?