Hello, i have a CRS with a few access ports and a bunch of switched vlans, config below:
/interface bridge
add dhcp-snooping=yes name=br.test vlan-filtering=yes
/interface bridge port
add bridge=br.test interface=ether5
add bridge=br.test interface=ether6
add bridge=br.test interface=ether7 pvid=40
/interface bridge vlan
add bridge=br.test tagged=ether5,ether6,ether7 vlan-ids=60
add bridge=br.test tagged=ether5 untagged=ether7 vlan-ids=40
My problem is that i want to set traffic tagged with vlanid 60 coming from ether6 as trusted for DHCP snooping, but currently i can only set phisical bridge ports as trusted and not the vlan tagged traffic, what is the proper way to achieve this when doing vlan switching ?
Thanks.