Hi there all,
I'm currently setting up a PVE node behind an ISP uplink. That node has a single physical Ethernet interface.
I will need many backend "Private Networks" to host VMs and internal networking's etc.
My question is the following; I've seen advice to use "dummy interfaces" like this:
And of course add Linux VLANs within the above mentioned vmbr999 (like vmbr999.222 etc etc etc)
Or simply through a bridge with no port bound:
Are there any advantage/disadvantage of using one or the other ?
Thanks,
Kind regards,
M.
I'm currently setting up a PVE node behind an ISP uplink. That node has a single physical Ethernet interface.
I will need many backend "Private Networks" to host VMs and internal networking's etc.
My question is the following; I've seen advice to use "dummy interfaces" like this:
Code:
auto dummy999
iface dummy999 inet manual
link-type dummy
#NIC_999_DUMMY
auto vmbr999
iface vmbr999 inet manual
bridge-ports dummy999
bridge-stp off
bridge-fd 0
bridge-vlan-aware yes
bridge-vids 2-4094
#BRI_DUMMY
And of course add Linux VLANs within the above mentioned vmbr999 (like vmbr999.222 etc etc etc)
Or simply through a bridge with no port bound:
Code:
auto vmbr1
iface vmbr1 inet manual
bridge-ports none
bridge-stp off
bridge-fd 0
bridge-vlan-aware yes
bridge-vids 2-4094
#BRI_PRIV_1
Are there any advantage/disadvantage of using one or the other ?
Thanks,
Kind regards,
M.