Have a small lab environment running with an NUC which have 3 different NIC's which:
And were I've assigned VLAN 200 to Eth01 and VLAN 210, 205 and 215 to Eth02:
The issue that I have is that whenever I choose Eth02/vmbr2 and try to assign specific VLAN Tag 205/215 it doesn't work, meaning no network connectivity. If I set the config to eth2 and vmbr2 without vlan Tag it's assigned correctly and network connectivity works. But, I just can't get it to accept running with VLAN 205/215.
What is it that I've overlooked here to get it to work as intended with regads separating the VLAN's between two NIC's (near future 3 as I've going to add a admin VLAN to Eth00)?
Here is how it looks from the Proxmox GUI:
Code:
iface enp88s0 inet manual
#Eth00: Intel I225-LM (2.5GbE)
iface enx6c1ff7046396 inet manual
#Eth01: Realtek RTL8156BG (2.5GbE)
iface enx6c1ff704695a inet manual
#Eth02: Realtek RTL8156BG (2.5GbE)
And were I've assigned VLAN 200 to Eth01 and VLAN 210, 205 and 215 to Eth02:
Code:
auto vmbr0
iface vmbr0 inet static
address 192.168.202.10/24
gateway 192.168.202.254
bridge-ports enp88s0
bridge-stp off
bridge-fd 0
bridge-vlan-aware yes
bridge-vids 2-4094
auto vmbr1
iface vmbr1 inet static
address 10.46.200.10/24
bridge-ports enx6c1ff7046396
bridge-stp off
bridge-fd 0
bridge-vlan-aware yes
bridge-vids 2-4094
#VL200: Extranet Backend
auto vmbr2
iface vmbr2 inet static
address 10.46.210.10/24
bridge-ports enx6c1ff704695a
bridge-stp off
bridge-fd 0
bridge-vlan-aware yes
bridge-vids 2-4094
#VL210: Extranet Public
auto vmbr2.215
iface vmbr2.215 inet static
address 10.46.215.10/24
#VL215: Extranet Proxy
auto vmbr2.205
iface vmbr2.205 inet static
address 10.46.205.10/24
#VL205: Extranet Secure
The issue that I have is that whenever I choose Eth02/vmbr2 and try to assign specific VLAN Tag 205/215 it doesn't work, meaning no network connectivity. If I set the config to eth2 and vmbr2 without vlan Tag it's assigned correctly and network connectivity works. But, I just can't get it to accept running with VLAN 205/215.
What is it that I've overlooked here to get it to work as intended with regads separating the VLAN's between two NIC's (near future 3 as I've going to add a admin VLAN to Eth00)?
Here is how it looks from the Proxmox GUI:
Last edited: