Bridge and VLAN Filtering Issue

Hi,

I have this config in my network.

/interface bridge
add name=BRIDGE-225-227 vlan-filtering=no
/interface bridge port
add bridge=BRIDGE-225-227 interface=ether1
add bridge=BRIDGE-225-227 interface=wlan1
add bridge=BRIDGE-225-227 interface=ether5 pvid=15 comment=“Dell 1320c”
/interface bridge vlan
add bridge=BRIDGE-225-227 tagged=ether1,wlan1,BRIDGE-225-227 vlan-ids=9,15
/interface vlan
add name=VLAN_LAN_MGMT interface=BRIDGE-225-227 vlan-id=9
add name=VLAN_WLAN_IOT interface=BRIDGE-225-227 vlan-id=15

I have set vlan-filtering to no
Than every thing is working only not for interface ether2.
I want interface ether2 untagged on vlan 15
If I set vlan-filterng to yes that only interface ether2 is working and all other is not working.

What do wrong?

  • clarify whether you have in mind ether2 or ether5 as you mention ether2 everywhere in the text and there is only ether5 in the confguration export
  • tell us the RouterBoard model, it may be related
  • with ****
vlan-filtering=yes

, you have to list also untagged ports in

/interface bridge vlan

, which means you cannot have a single line for more than one VLAN ID should any of the ports be untagged for any of the VLANs. So if you want VLAN ID 15 untagged on

ether2

, your configuration must look like


/interface bridge vlan
add bridge=BRIDGE-225-227 tagged=ether1,wlan1,BRIDGE-225-227 vlan-ids=9
add bridge=BRIDGE-225-227 tagged=ether1,wlan1,BRIDGE-225-227 untagged=ether2 vlan-ids=15