I've started with
Code: Select all
/interface bridge port
add interface=ether1 bridge=bridge-secure
Then created VLANs and bridged those:
Code: Select all
/interface vlan
add interface=ether1 vlan=10 name=vlan-10-unsecure
add interface=ether1 vlan=20 name=vlan-20-secure
add interface=ether1 vlan=50 name=vlan-50-guest
/interface bridge port
add interface=ether1 bridge=bridge-secure
add interface=vlan-10-unsecure bridge=bridge-unsecure
add interface=vlan-20-secure bridge=bridge-secure
add interface=vlan-50-guest bridge=bridge-guest
Summary: how do I bridge both tagged and untagged traffic on ether1?
I've configured a DHCP server for each bridge (works fine).