Can I ping a host that has disabled the ICMP Ping option?

1

I need to know if it's possible to compare and test how fast is an IP (ie: any web or game server) relative to my location (in terms of network latency), even if they have disabled ICMP/Ping requests from their firewall ?

Heidi

Posted 2014-11-22T11:51:03.230

Reputation: 33

The firewall will actively refuse the attempt to ping so you'll get inaccurate results as the response time will take into consideration the network hardware and even the network hardware may experience problems and congestion at times so your results will not be accurate... – Kinnectus – 2014-11-22T11:57:15.843

1

@OP: What do you precisely mean by 'fast'. Throughput or latency? I guess latency. Can you please edit your post to clarify that?

– Hennes – 2014-11-22T12:01:14.417

Do I understand correctly the following? - You want to measure the ping round trip time. By "IP" you mean communication over IP. "They" is your Internet services provider (ISP).

– pabouk – 2014-11-22T12:03:30.247

@Hennes and pabouk: I have updated my post. I just need for instance to compare two or three servers and see which of them has the fastest ping relative to my location, even if they both don't answer ping commands. – Heidi – 2014-11-22T12:07:17.263

Answers

2

You can with hping3 for example by sending a SYN Package to the host:

hping3 -S -V host

If it is a Webserver you know that port 80 would be open and can send SYN packets to that port

hping3 -S -V -p 80 host

Or scan the host for any open ports to which you could send packets and he will reply.

ap0

Posted 2014-11-22T11:51:03.230

Reputation: 1 180