I’m setting up a network where my Mikrotik will have two network connections plugged into it, both of which will be trunks containing the same 3 VLAN’s.
As I need an AP in the space where the Mikrotik will be, I thought I should use the built in function instead of buying another device. The tricky bit seems to be that I want to bridge the traffic from the WLAN with one of the VLAN’s that’s going down each trunk.
I can’t see a way to bridge the WLAN to the VLAN I’ve set up under the Switch config, is there a way of doing that?
My optimal config would end up having two SSID’s, each bridged to a different VLAN.
Bits of the config I think are relevant:
/interface wireless
set 0 band=2ghz-b/g/n disabled=no distance=indoors ht-rxchains=0,1 ht-txchains=0,1 l2mtu=2290 ssid=BDX wireless-protocol=802.11
/interface ethernet
set 0 name=ether1-trunk
set 4 name=ether5-trunk
/interface ethernet switch port
set 0 vlan-mode=secure
set 4 vlan-mode=secure
/interface ethernet switch vlan
add independent-learning=no ports=ether1-trunk,ether5-trunk switch=switch1 vlan-id=1
add independent-learning=no ports=ether1-trunk,ether5-trunk switch=switch1 vlan-id=2
add independent-learning=no ports=ether1-trunk,ether5-trunk switch=switch1 vlan-id=10
I come from the Cisco side of the networking world, so if there’s any resources out there for learning RouterOS relating the functions and structure to IOS that would help me greatly.