Hi,
Previously I used a bunch of vlan-interfaces and a bridge for every vlan, but it become to cluttered. So since some month ago I now use the “single bridge” approach, however I can’t get it to work fully. This is my setup:
/interface bridge
add name=br0 protocol-mode=none
/interface bridge port
add bridge=br0 comment="trunk to ap2" interface=ether3
add bridge=br0 comment="trunk to sw3" interface=ether2
add bridge=br0 comment="access vlan30" interface=ether4 pvid=30
/interface bridge vlan
add bridge=br0 tagged=ether2,ether3 untagged=ether4 vlan-ids=30
add bridge=br0 tagged=ether2,ether3 vlan-ids=31-39
/interface vlan
add interface=br0 name=br0.30 vlan-id=30
add interface=br0 name=br0.35 vlan-id=35
add interface=br0 name=br0.39 vlan-id=39
/ip address
add address=192.168.30.1/24 interface=br0.30 network=192.168.30.0
add address=192.168.35.1/24 interface=br0.35 network=192.168.35.0
add address=192.168.39.1/24 interface=br0.39 network=192.168.39.0
- The access port just ether4 doesn’t work.
- When br0 gets vlan-filtering=yes, the router itself becomes unreachable by all VLAN addresses, however it seems to forward the trunk ports (?)
The hEX doesn’t have a VLAN aware switch chip (MT7621), but that can’t be the issue?
I have another bridge for the WAN side, that only has ether1 (to manually set mac-address)
What am I missing?