At present I have Device-A as the router / DHCP server and Device-B (cAP-AC) as the WAP. I want multiple SSID's each on a different VLAN with Device-A having multiple DHCP servers for the different pools. Device-A is connected to Device-B via ethernet1 port on both.
Device-A
Code: Select all
/interface vlan
add interface=ether1 name=vlan100 vlan-id=100
/interface bridge
add admin-mac=48:8F:5A:11:24:D8 auto-mac=no comment=defconf name=bridge protocol-mode=none vlan-filtering=yes
/interface bridge port
add bridge=bridge comment=defconf interface=ether1
add bridge=bridge comment=defconf interface=ether2
add bridge=bridge comment=defconf interface=ether3
add bridge=bridge comment=defconf interface=ether4
add bridge=bridge comment=defconf interface=ether5
add bridge=bridge comment=defconf interface=wlan1
add bridge=bridge comment=defconf interface=wlan2
add bridge=bridge interface=wlan3
/interface bridge vlan
add bridge=bridge tagged=ether1 vlan-ids=100
/ip address
add address=192.168.10.1/24 interface=bridge network=192.168.10.0
add address=192.168.100.1/24 interface=vlan100 network=192.168.100.0
Code: Select all
/interface bridge
add admin-mac=48:8F:5A:2D:15:F8 auto-mac=no comment=defconf name=bridgeLocal vlan-filtering=yes
/interface wireless
set [ find default-name=wlan1 ] disabled=no mode=ap-bridge ssid=MikroTik2 wireless-protocol=802.11
set [ find default-name=wlan2 ] disabled=no mode=ap-bridge ssid=MikroTik5 wireless-protocol=802.11
add disabled=no mac-address=4A:8F:5A:2D:15:FA master-interface=wlan1 name=wlan3 ssid=Mikrotik100 vlan-id=100 vlan-mode=use-tag wds-default-bridge=bridgeLocal wps-mode=disabled
/interface bridge port
add bridge=bridgeLocal comment=defconf interface=ether1
add bridge=bridgeLocal comment=defconf interface=ether2
add bridge=bridgeLocal interface=wlan2
add bridge=bridgeLocal interface=wlan1
/interface bridge vlan
add bridge=bridgeLocal tagged=wlan3,ether1 vlan-ids=100
Any help or guides would be appreciated.