Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Request timeout for icmp_seq

When I try to use the sudo ping -f (URL) command on the mac terminal, I receive the message:

Request timeout for icmp_seq as a reply.

How can I fix this?

like image 219
user3541125 Avatar asked Feb 25 '15 11:02

user3541125


1 Answers

The reply means the target host is unreachable which is not an error and can happen using a plain 'ping' as well. Now, using the -f(lood) option, some firewalls or hosts can believe it's a DoS attack and drop the icmp packets silently.

Do you really need this -f option ? It can overflow the network and should be avoided as much as possible.

like image 175
Pyrophorus Avatar answered Dec 20 '22 08:12

Pyrophorus