Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

analyse ping results 1

Status
Not open for further replies.

jono261970

Programmer
Jun 28, 2002
182
0
0
GB
Hello,

I picked two well known websites to ping and just wondered if anybody could explain what the data is after the IP. why is one 55 and the other 245?

thanks

jono


reply from 212.4.208.123: bytes=32 time=18ms ttl=55

reply from 217.12.3.11: bytes=32 time=25ms ttl=245


A good fortune may forbode a bad luck, which may in turn disguise a good fortune.
 
The TTL is the Time-to-Live. Many products will set the TTL to 64 when pinging, so your response of 55 means that there are 9 devices between you and the end point.

A response of 245 would be from a device that uses 255 as its default value for the TTL. This indicates that there are 10 devices between you and the endpoint.

The TTL is 8-bits, so it has a maximum value of 255. As a packet passes through a network node (like a router) that device will decrement the TTL by 1. If the TTL reaches 0, then an ICMP unreachable message is returned by the device that received the packet with a TTL of 1. Traceroute works by sending packets with a TTL of 1, then 2, then 3. Each time it records the source IP address of the ICMP unreachable message.


pansophic
 
Just for jollies, try a pathping to a website.

C:\pathping


Glen A. Johnson
"Fall seven times, stand up eight."
Proverb

Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top