I using mikrotik RB750 (version 6.18) and ubiquity (versi 3.2.1)
I want to make multiple SSID
I have found thread same with my case in
Ubiquiti Unifi, Mikrotik & Vlans
I try the same and doing test
connect cable to port 2,3,4,5 all is working and give correct as DHCP.
On port 2 and 5 result same DHCP
But when I connect port 5 to ubiquity I only can get IP from SSID 1 which I connect to DHCP_LAN
when I connect to SSID 2 or 3 is not getting IP from DHCP
Maybe something need to change/wrong
My setting on phisycal port mikrotik
port 1 = ISP ( cable connect from ISP)
port 2 = LAN ( cable connect with LAN)
port 3 = cable not connect
port 4 = cable not connect
port 5 = ubiquity ( cable connect ubiquity )
And this setting of my mikrotik
/interface bridge
add l2mtu=1598 name=bridge-LAN
add l2mtu=1594 name=bridge-W2LAN
add l2mtu=1594 name=bridge-PSID_Inet
/interface ethernet
set 0 name=eth1_ISP
set 1 name=eth2_LAN
set 2 name=eth3_PSID_W2LAN
set 3 name=eth4_PSID_Inet
set 4 name=eth5_trunk
/interface vlan
add interface=bridge-LAN l2mtu=1594 name=vl-W2LAN-bridge-LAN vlan-id=101
add interface=bridge-LAN l2mtu=1594 name=vl-PSID_Inet-bridge-LAN vlan-id=102
/ip pool
add name=pool_LAN ranges=172.20.1.1-172.20.1.199
add name=pool_W2LAN ranges=172.21.52.1-172.21.52.199
add name=pool_PSID_Inet ranges=10.206.0.1-10.206.0.199
/ip dhcp-server
add address-pool=pool_LAN disabled=no interface=bridge-LAN name=DHCP_LAN
add address-pool=pool_W2LAN disabled=no interface=bridge-W2LAN name=DHCP_W2LAN
add address-pool=pool_PSID_Inet LAN disabled=no interface=bridge-PSID_Inet name=DHCP_PSID_Inet
/interface bridge port
add bridge=bridge-LAN interface=ether2-local\eth2_LAN
add bridge=bridge-LAN interface=eth5_trunk
add bridge=bridge-W2LAN interface=eth3_PSID_W2LAN
add bridge=bridge-W2LAN interface=vl-W2LAN-bridge-LAN
add bridge=bridge-PSID_Inet interface=eth4_PSID_Inet
add bridge=bridge-PSID_Inet interface=vl-PSID_Inet-bridge-LAN
/ip address
add address=172.20.1.240/24 interface=bridge-LAN
add address=172.21.52.240/24 interface=bridge-W2LAN
add address=10.206.0.240/24 interface=bridge-PSID_Inet
/ip dhcp-server network
add address=172.20.1.0/24 dns-server=172.20.1.240 gateway=172.20.1.240
add address=172.21.52.0/24 dns-server=172.21.52.240 gateway=172.21.52.240
add address=10.206.0.0/24 dns-server=10.206.0.240 gateway=10.206.0.240
/ip dns
set allow-remote-requests=yes
/ip firewall filter
add action=jump chain=input jump-target=input-guest in-interface=bridge-W2LAN
add action=jump chain=input jump-target=input-guest in-interface=bridge-PSID_Inet
add action=accept chain=input connection-state=established disabled=no
add action=accept chain=input connection-state=related disabled=no
add action=accept chain=input in-interface=bridge-LAN
add action=drop chain=input
add action=accept chain=forward out-interface=eth1_ISP
add action=drop chain=forward
add action=accept chain=input-guest dst-port=53 protocol=tcp
add action=accept chain=input-guest dst-port=53 protocol=udp
add action=accept chain=input-guest dst-port=67 protocol=udp
add action=accept chain=input-guest dst-port=68 protocol=udp
/ip firewall nat
add chain=srcnat action=masquerade out-interface=eth1_ISP
/ip neighbor discovery
set eth1_ISP discover=no
set eth3_W2LAN discover=no
set eth4_PSID_Inet discover=no
set bridge_W2LAN discover=no
set bridge_PSID_Inet discover=no
set vl-W2LAN-eth5 discover=no
set vl-PSID_Inet-eth5 discover=no
Anyone can help?