Community discussions

MikroTik App
 
Vitor
newbie
Topic Author
Posts: 40
Joined: Fri Mar 22, 2013 4:09 pm

Stop communication inter SSID

Tue Jun 21, 2016 6:28 pm

Hi guys,

Recently I bought a mikrotik wAP ac, and i have configured two virtual AP (client and guest) on interface WLAN1, and 
another two virtual AP (client and guest) on WLAN2 interface.

WLAN1 192.168.20.0/24
WLAN2 192.168.25.0/24

After some tests i can connect to all SSID´s, and i can get out to the web, and also can ping from 192.168.20.1(client on wlan1) the 192.168.25.1 (client on WLAN2) but I do not want that to happen.

How can i block the communication between SSID´s??

Thanks in advance.
 
pe1chl
Forum Guru
Forum Guru
Posts: 10619
Joined: Mon Jun 08, 2015 12:09 pm

Re: Stop communication inter SSID

Tue Jun 21, 2016 6:37 pm

Configure the same horizon value on the two port entries for wlan1 and wlan2 in the bridge.
 
Vitor
newbie
Topic Author
Posts: 40
Joined: Fri Mar 22, 2013 4:09 pm

Re: Stop communication inter SSID

Tue Jun 21, 2016 9:51 pm

Configure the same horizon value on the two port entries for wlan1 and wlan2 in the bridge.
Thanks for tip pe1chl.
I will try, then post the result.
 
User avatar
cdiedrich
Forum Veteran
Forum Veteran
Posts: 997
Joined: Thu Feb 13, 2014 2:03 pm
Location: Basel, Switzerland // Bremen, Germany
Contact:

Re: Stop communication inter SSID

Wed Jun 22, 2016 10:03 am

So you don't want the two networks to communicate with each other - no matter if wired or wreless.

/ip firewall filter
add chain=forward action=drop src-address=192.168.20.0/24 dst-adddress=192.168.25.0/24
add chain=forward action=drop src-address=192.168.25.0/24 dst-adddress=192.168.20.0/24
-Chris
 
pe1chl
Forum Guru
Forum Guru
Posts: 10619
Joined: Mon Jun 08, 2015 12:09 pm

Re: Stop communication inter SSID

Wed Jun 22, 2016 11:12 am

When it is a routing setup that is indeed the correct method.  It appears I misread the IP addresses and believed it was a bridged setup.
 
Vitor
newbie
Topic Author
Posts: 40
Joined: Fri Mar 22, 2013 4:09 pm

Re: Stop communication inter SSID

Wed Jun 22, 2016 11:04 pm

So you don't want the two networks to communicate with each other - no matter if wired or wreless.

/ip firewall filter
add chain=forward action=drop src-address=192.168.20.0/24 dst-adddress=192.168.25.0/24
add chain=forward action=drop src-address=192.168.25.0/24 dst-adddress=192.168.20.0/24
-Chris
Thanks for the help Chris!