What does the output of traceroute mean

networking

  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?

Best Answer

From the man page of traceroute:

This program attempts to trace the route an IP packet would follow to some internet host by launching UDP probe packets with a small ttl (time to live) then listening for an ICMP "time exceeded" reply from a gateway. We start our probes with a ttl of one and increase by one until we get an ICMP "port unreachable" (which means we got to "host") or hit a max (which defaults to 30 hops & can be changed with the -m flag). Three probes (change with -q flag) are sent at each ttl setting and a line is printed showing the ttl, address of the gateway and round trip time of each probe.

So, 75 ms 71 ms 73 ms stands for the round trip time it took for each different probe.