1 <1 ms <1 ms 3 ms 192.168.0.1
2 75 ms 71 ms 73 ms reserve.cableplus.com.cn [218.242.223.209]
3 61 ms 133 ms 140 ms 211.154.70.10
What does 75 ms 71 ms 73 ms mean there?
What does | |||||||
feedback
|
This question came from our site for professional and enthusiast programmers.
|
From the man page of traceroute:
So, | |||
|
feedback
|
|
Each entry is the RTT (round-trip time) for a particular probe to a particular host. I.E., the RTT times for the second hop host (reserve.cableplus.com.cn) were 75 ms, 71 ms, and 73 ms for the first, second, and third probes respectively. On Linux, you can change the number of queries/probes to each host with -q. | |||
|
feedback
|
|
They are each the result of three separate estimates for ICMP packet Round Trip Time (RTT) between your computer and the host listed. (ICMP packets are just a specialised type of IP packet, specifically for this sort of thing). The default in most traceroute implementations is three separate tests, but you can typically change this via a command line flag. To give some reference, your local gateway (or system on your local network) is typically going to have a value of between 1ms and 5ms. If you are on cable or DSL you can expect ping times anywhere between 15-30 ms, and to hosts on the internet from a DSL/cable connection typically a total time of between between 30-90 ms. The further away a host is, the higher the RTT value (from the US to the EU it's likely to be around 90ms or higher, for example). To give some context: For online gaming, for example, you would want to have a value of < 90ms, ideally <60ms if you are playing a fast paced action game (and <30 ms if you can get it), because for games you would want the network to be as responsive as possible. For things like web browsing and watching videos on line, things like over all bandwidth and connection quality (e.g. little or no packet loss) are more important. It can also be high if the line is congested (e.g. being utilised heavily, which causes IP packets to be queued on routers) or if one of the devices at either end is for some other reason having trouble passing your packets along. Satellite connections have extremely high values (> 200 ms) because of the distance data has to travel (e.g. they can be high bandwith, so they transfer data quickly, but they are not very "responsive" - they have high RTT times). In your example, the ping time to your provider cableplus.com.cn - which the first result after 192.168.0.1 (your local router/gateway) - looks a bit on the high side. | ||||
feedback
|