please help.. i am newbie here..
hehehe
how to make rules like:
Client A. 192.168.1.2 can not ping to client B. 192.168.2.2 but
client B. 192.168.2.2 can ping to client A. 192.168.1.2
please help.. guys..
lan users connected throungh a switchhow are these clients connected to the router? are they wireless users, or lan users connected through a switch?
if the connections are going through on the router.., how i can control them..?in that case, their connections are not going through the router at all, you can't control them.
Client A. 192.168.1.2 can not ping to client B. 192.168.2.2 but
client B. 192.168.2.2 can ping to client A. 192.168.1.2
/ip firewall filter add chain=forward src-address=192.168.2.2/32 dst-address=192.168.1.2/32 action=accept
/ip firewall filter add chain=forward src-address=192.168.1.2/32 dst-address=192.168.2.2/32 action=drop
Sorry for typo......in the above config put disabled=no
/ip firewall filter
add action=drop chain=forward comment="ping block" disabled=yes icmp-options=8:0-255 \
protocol=icmp src-address=192.168.1.0/24
is it working?!? I would add 'connection-state=new', because if you simply accept one direction and drop opposite direction - ping won't work in both directions, no?..Code: Select all/ip firewall filter add chain=forward src-address=192.168.2.2/32 dst-address=192.168.1.2/32 action=accept /ip firewall filter add chain=forward src-address=192.168.1.2/32 dst-address=192.168.2.2/32 action=drop
is it working?!? I would add 'connection-state=new', because if you simply accept one direction and drop opposite direction - ping won't work in both directions, no?..Code: Select all/ip firewall filter add chain=forward src-address=192.168.2.2/32 dst-address=192.168.1.2/32 action=accept /ip firewall filter add chain=forward src-address=192.168.1.2/32 dst-address=192.168.2.2/32 action=drop
omg!.. http://forum.mikrotik.com/viewtopic.php ... 94#p181694by the way guys, how i can block connection between Client A. 192.168.1.2 and client B. 192.168.2.2, but client B. can connect to client A.
omg!.. http://forum.mikrotik.com/viewtopic.php ... 94#p181694by the way guys, how i can block connection between Client A. 192.168.1.2 and client B. 192.168.2.2, but client B. can connect to client A.