0

when i try ping google server takes only 30ms.

PING google.com (172.217.26.174) 56(84) bytes of data.
64 bytes from google.com (172.217.26.174): icmp_seq=1 ttl=56 time=31.2 ms
64 bytes from google.com (172.217.26.174): icmp_seq=2 ttl=56 time=32.3 ms

I did this from cochin,Kerala,India to a google server located in california, US. The minimum distance from this two places is 14,560 km.

So, light can do this two way trip in just 97ms.

(14,560 * 2 ) / c =~ 97ms

So how pinging google server can exceed the light speed? What is wrong in the assumptions/calculations?

EDIT

Hi i have found similar question here, Ping faster than light

But ping does not shows any cdn domain there, also iplocation of server belongs to the US. If server located nearby why ping is not showing the that nearby ip address?

JITHIN JOSE
  • 107
  • 3

1 Answers1

1

We do know that we (has Google?) haven't yet achieved FTL communications, we can safely assume that one of the data items we're relying on is the source of inaccuracy.

IP GeoLocation records are notoriously inaccurate. So the first suspicion goes there. I would go with the hostname indication (maa03s22-in-f174...) as posted by @davidpostill.

Theoretically there could be other points of inaccuracy too (your OS clock, your OS network stack, a bug in ping, ...) but those are far less likely than the IP geolocation possibility.

[edit]

One simple explanation for IP location inaccuracies: IP Address blocks are often reallocated within large corporates and equally often leased out to others for revenue. In such cases, public records may not always be updated.

Sas3
  • 279