Hi!
We have several CAPs in place and we are using a couple of CRS112 among a few CRS318 as switches between them.
With the CRS112, I’d like to use the switch features for HW offloading of course but I can’t get things running as needed.
What works but does not use HW offloading is the following:
/interface bridge add name=bridge vlan-filtering=yes
/interface bridge port
add bridge=bridge interface=ether1
add bridge=bridge interface=ether2
...
add bridge=bridge interface=sfp12
/interface bridge vlan
add bridge=bridge tagged=ether1,ether2,...,sfp12,bridge vlan-ids=1000 comment="management"
add bridge=bridge tagged=ether1,ether2,...,sfp12 vlan-ids=2000 comment="members"
add bridge=bridge tagged=ether1,ether2,...,sfp12 vlan-ids=2300 comment="guests"
/interface vlan add interface=bridge name=management vlan-id=1000
/ip dhcp-client add interface=management
We are using VLANs 1000 for management and 2000 and 2300 for WIFI users on the CAPs.
My expectation was that the following configuration would achieve the same switching with tagged VLANs on all ports and only the management VLAN routed to the switches CPU for management - but the configuration does not work.
/interface bridge add name=bridge vlan-filtering=no
/interface bridge port
add bridge=bridge interface=ether1
add bridge=bridge interface=ether2
...
add bridge=bridge interface=sfp12
/interface ethernet switch vlan
add ports=ether1,ether2,...,sfp12,switch1-cpu vlan-id=1000 comment="management"
add ports=ether1,ether2,...,sfp12 vlan-id=2000 comment="members"
add ports=ether1,ether2,...,sfp12 vlan-id=2300 comment="guests"
/interface ethernet switch egress-vlan-tag
add tagged-ports=ether1,ether2,...,sfp12,switch1-cpu vlan-id=1000 comment="management"
add tagged-ports=ether1,ether2,...,sfp12 vlan-id=2000 comment="members"
add tagged-ports=ether1,ether2,...,sfp12 vlan-id=2300 comment="guests"
/interface vlan add interface=bridge name=management vlan-id=1000
/ip dhcp-client add interface=management
Management traffic appears to reach the switch and also the CAPs but the switching of tagged user traffic does not work.
Can you give me an indication what I’d rather do to achive the same as I did with the first configuration if I’d like to use the WH offloading mechanism?
Thanks!
Florian