Reading the Result of Traceroute

2

When you use tracert www.example.com in the command prompt, what exactly does the returned information tell you, and how does it go about getting that information. Up until now I have only used traceroute to get the I.P. address of a website without really thinking about the bigger purpose of traceroute.

DaveTheMinion

Posted 2014-03-05T02:32:32.487

Reputation: 4 578

Answers

5

The output from traceroute shows you each 'hop' between the source host (where you issued the command) and the destination host (the one specified on the commandline). for each hop, it will show the distance (number of hops), the IP address and/or associated hostname (hostname determined using reverse resolution), and the delay / latency between the source host and the specific hop host.

You may see some odd things. For example, you may see more than one host listed at a given distance. Another example is that you may see no hosts listed at a given distance, but hosts listed further on. These are artifacts of the method used to perform the traceroute.

The tool gets this information by sending a series of UDP packets constructed with an artificial 'time to live' (TTL). The TTL of a packet is used to ensure that routing loops don't result in endless traffic. As a packet passes through a router, it will decrement the TTL for that packet. The TTL will eventually reach zero, at which point the packet will be discarded. When this happens, most routers will also send a special packet to the source of the discarded packet indicating that it is impossible to reach the destination, just to help out. This packet is an ICMP (Internet Control Message Protocol) destination unreachable message.

Traceroute starts with a TTL of 1, and sends three UDP packets with this TTL. It then listens for the destination unreachable messages. It will show you where the message came from (the host), how long it took for that host to respond (latency), and what the TTL was when that host indicated that your target couldn't be reached with such a low TTL. It then repeats until it gets a different message indicating that there is nothing listening at that UDP port on the target host.

Slartibartfast

Posted 2014-03-05T02:32:32.487

Reputation: 6 899

Thanks for the wonderful description. Some of the terminology you used is foreign to me, but after looking up things such as UDP and TTL on Google, I believe I understand. Thanks again! – DaveTheMinion – 2014-03-05T11:55:06.447

0

From this article:

Traceroute is a utility that records the route (the specific gateway computers at each hop) through the Internet between your computer and a specified destination computer. It also calculates and displays the amount of time each hop took. Traceroute is a handy tool both for understanding where problems are in the Internet network and for getting a detailed sense of the Internet itself. Another utility, PING, is often used prior to using traceroute to see whether a host is present on the network.

To put it simply, trace route, maps the (current) path from your IP to the destination IP and all the devices in between. It also gives you the time it takes to get from one hop to another. It is a tool that useful for troubleshooting network issues. If you see one hop that says unreachable, or has an excessively high response time, there may be an issue.

Keltari

Posted 2014-03-05T02:32:32.487

Reputation: 57 019