Enabling only VLAN on a linux bridge

torchilidae

New Member
Feb 7, 2022
6
4
3
33
Hi,

I am new to the proxmox and the networking. I am trying to setup a VLAN/Linux Bridge dedicated for the VMs aside from management network.

I was able to created a Linux bridge and was able to connect to the VLAN using the VLAN ID in the VMs. Is there any way that I can restrict the Linux bridge only to that VLAN completely separating it from the management network?
 
Last edited:
You could create a Linux vlan interface and attach a vlan unaware bridge to it. Then every guest attached to that bridge will be only using this VLAN.

What does your /etc/netwotk/interfaces look like?
 
You could create a Linux vlan interface and attach a vlan unaware bridge to it. Then every guest attached to that bridge will be only using this VLAN.

What does your /etc/netwotk/interfaces look like?
Its just a simple configuration. I have not modified it. I am using a different pfsense firewall that is not a Virtual machine to create the VLAN. Below are the details

Code:
auto lo
iface lo inet loopback

iface eno1 inet manual

iface eno2 inet manual

iface eno3 inet manual

iface eno4 inet manual

auto vmbr0
iface vmbr0 inet static
        address 192.168.24.101/24
        gateway 192.168.24.1
        bridge-ports eno1
        bridge-stp off
        bridge-fd 0

auto vmbr1
iface vmbr1 inet manual
        bridge-ports eno2
        bridge-stp off
        bridge-fd 0
        bridge-vlan-aware yes
        bridge-vids 2-4094
#VM Network