Page 1 of 1

ROS Code for blocking ICMP

Posted: Wed Sep 17, 2014 9:12 am
by netboyzin
Hi

Can anybody help me with the ros code to block all ICMP requests from internal network to Internet , except only one destination in Internet ( for example 4.2.2.2 ) to be allowed .

Abhishek

Re: ROS Code for blocking ICMP

Posted: Wed Sep 17, 2014 9:17 am
by cdiedrich

ros code

/ip firewall filter
add action=drop chain=forward dst-address=!4.2.2.2 protocol=icmp src-address=192.168.88.0/24
-Chris

Re: ROS Code for blocking ICMP

Posted: Wed Sep 17, 2014 10:24 am
by netboyzin
Thanks.

Abhishek