hello everybody, i have some routers, but some customers detect their Ip, and the can ping them..can anybody tell me how can i block pinging to their customer just my ip address..but i must have access on it with WinBox
That would drop all ICMP destined for the router. This is not a good idea to do, but that is one way you can accomplish it. To prevent people from pinging your customers (again, I will just drop all ICMP):
If you need more explanation than that, do some reading on firewalling. If I am not understanding your question, then restate it and I will try to address that.
got it. All you have to do in that case is one rule. Something like:
/ ip firewall filter
add chain=input action=drop src-address=192.168.2.0/30 protocol=icmp icmp-options=8:0
That will stop all ping (echo request) from 192.168.2.0/30 going to the router. If you want to allow only you to ping the router (and nobody else), then you have to do a bit more, but you should get the idea from what I have provided.
This rule will drop all echo request from the 192.168.2.0/30 range of addresses. If it is not dropping the traffic, then there is another rule that is permitting the traffic above it. Read the firewall manual to understand firewalling or look at the consultants page and purchase the knowledge you can glean from the manual. Either way, the rule I gave you works. There is no question about that part. If you “tried it but it doesn’t work”, then you did not copy the rule correctly or there is another rule that is matching first. Perhaps you can paste your firewall here…use this command and paste the output: