How Does Traceroute Work and Example's of using traceroute command

Sarath Pillai's picture
How does traceroute work

If you are working as a network administrator, system administrator, or in any system operations team, then you might have already heard about the tool named TRACEROUTE. Its a very handy tool available in most of the operating systems by default.

 

Network administrators and system administrators use this tool most commonly in their day to day activities. Its basically a network diagnostic tool that is very handy. There are three main primary objectives of traceroute tool. These objectives fulfilled by tracroute gives an insight to your network problem.

 

  1. The entire path that a packet travels through

  2. Names and identity of routers and devices in your path

  3. Network Latency or more specifically the time taken to send and receive data to each devices on the path

 

Its a tool that can be used to very the path that your data will take to reach its destination, without actually sending your data.

 

As I always say in my articles, its always good to understand how a particular tool works. Because its not the usage that helps you understand and troubleshoot an issue. But its the concept behind a tool that will always give you an insight into the problem. How to use a command can always be found out online or even inside the Linux man and info pages.

 

In this article I will explain the working of traceroute and types of traceroute tools along with their differences. We will also look at different switches available to traceroute command in Linux.

 

Basics First

 

Each IP packet that you send on the internet has got a field called as TTL. TTL stands for Time To Live. Although its called as Time To Live, its not actually the time in seconds, but its something else.

 

Related: Packet vs Segment vs Frame

 

TTL is not measured by the no of seconds but the no of hops. Its the maximum number of hops that a packet can travel through across the internet, before its discarded.

 

Hops are nothing but the computers, routers, or any devices that comes in between the source and the destination.

 

What if there was no TTL at all?. If there was no TTL in an IP packet, the packet will flow endlessly from one router to another and on and on forever searching for the destination.  TTL value is set by the sender inside his IP packet ( the person using the system, or sending the packet, is unaware of these things going on under the hood, but is automatically handled by the operating system ).

 

If the destination is not found after traveling through too many routers in between ( hops ) and TTL value becomes 0 (which means no further travel) the receiving router will drop the packet and informs the original sender.

 

Original sender is informed that the TTl value exceeded and it cannot forward the packet further.

 

Let's say i need to reach 10.1.136.23 Ip address, and my default TTL value is 30 hops. Which means i can travel a maximum of 30 hops to reach my destination, before which the packet is dropped.

 

But how will the routers in between determine the TTL value limit has reached. Each router that comes in between the source and destination will go on reducing the TTL value before sending to the next router. Which means if i have a default TTL value of 30, then my first router will reduce it to 29 and then send that to the next router across the path.

 

The receiving router will make it 28 and send to the next and so on. If a router receives a packet with TTl of 1 (which means no more further traveling, and no forwarding ), the packet is discarded. But the router which discards the packet will inform the original sender that the TTL value has exceeded.!

 

The information send by the router receiving a packet with TTL of 1 back to the original sender is called as "ICMP TTL exceeded messages". Of course in internet when you send something to a receiver, the receiver will come to know the address of the sender.

 

Hence when an ICMP TTL exceeded message is sent by a router, the original sender will come to know the address of the router.

 

Traceroute makes use of this TTL exceeded messages to find out routers that come across your path to destination(Because these exceeded messages send by the router will contain its address).

 

 

But how does Traceroute uses TTL exceeded message to find out routers/hops in between?

 

You might be thinking, TTL exceeded messages are only send by the router that receives a packet with TTL of 1. That's correct, every router in between you and your receiver will not send TTL exceeded message. Then how will you find the address of all the routers/hops in between you and your destination. Because the main purpose of Traceroute is to identify the hops between you and your destination.

 

But you can exploit this behavior of sending TTL exceeded messages by routers/hops in between by purposely sending an IP packet with a TTL value of 1.

 

 

See an example diagram of the whole process in the below diagram, where a sender does a traceroute towards one of the servers a remote location.

 

Traceroute Working Explained

 

 

So let's say i want to do a traceroute to google's publicly available DNS server(8.8.8.8). My traceroute command and its result will look something like the below.

 

root@workstation:~# traceroute -n 8.8.8.8
traceroute to 8.8.8.8 (8.8.8.8), 30 hops max, 60 byte packets
 1  192.168.0.1  6.768 ms  6.462 ms  6.223 ms
 2  183.83.192.1  5.842 ms  5.543 ms  5.288 ms
 3  183.82.14.5  5.078 ms  6.755 ms  6.468 ms
 4  183.82.14.57  20.789 ms  27.609 ms  27.931 ms
 5  72.14.194.18  17.821 ms  17.652 ms  17.465 ms
 6  66.249.94.170  19.378 ms  15.975 ms  23.017 ms
 7  209.85.241.21  16.633 ms  16.607 ms  17.428 ms
 8  8.8.8.8  17.144 ms  17.662 ms  17.228 ms

 

 

Let's see what's happening under the hood. When i fire that command of traceroute -n 8.8.8.8, what my computer does is to make a UDP packet (Yeah its UDP. Don't worry we will be discussing this in detail ). This UDP packet will contain the following things.

 

  • My Source Address (Which is my IP address)
  • Destination address (Which is 8.8.8.8)
  • And A destination UDP port number which is invalid. Means the traceroute utility will send packet to a UDP port in the range of 33434 to 33534, Which is normally unused.

 

So Let's see how this thing works.

 

Step 1: My Source address will make a packet with destination ip address of 8.8.8.8 and a destination port number between 33434 to 33534. And the important thing it does it to make the TTL Value 1

 

Step 2: Of course my packet will reach my gateway server. On seeing receiving the packet my gateway server will reduce the TTL by 1 (All routers/hops in between does this job of reducing the TTL value by 1). Once the TTL is reduced by the value of 1 (1-1= 0), the TTL value becomes zero. Hence my gateway server will send me back a TTL Time exceeded message. Please remember that when my gateway server sends a TTL exceeded message back to me, it will send the first 28 byte header of the initial packet i send.

 

Step 3:  On receiving this TTL Time exceeded message, my traceroute program will come to know the source address and other details about the first hop (Which is my gateway server.).

 

Step 4: Now the traceroute program will again send the same UDP packet with the destination of 8.8.8.8, and a random UDP destination port between 33434 to 33534. But this time i will make the initial TTL 2.  This is because my gateway router will reduce it by 1 and then forwards that same packet which send to the next hop/router (the packet send by my gateway to its next hop will have a TTL value of 1).

 

Step 5: On receiving UDP packet, the next hop to my gateway server will once again reduce it to 1 which means now the TTL has once again become 0. Hence it will send me back a ICMP Time exceeded message with its source address, and also the first 28 byte header of the packet which i send.

 

Step 6: On receiving that message of TTL Time Exceeded, my traceroute program will come to know about that hop/routers IP address and it will show that on my screen.

 

Step 7: Now again my traceroute program will make a similar UDP packet with again a random udp port with the destination address of 8.8.8.8. But this time the ttl value is made to 3, so that the ttl will automatically become 0, when it reaches the third hop/router(Please remember that my gateway and the next hop to it, will reduce it by 1 ). So that it will reply me with a TTL Time exceeded message, and my traceroute program will come to know about that hop/routers IP  address.

Step 8: On receiving that reply, the traceroute program will once again make a UDP packet with TTL value of 4 this time. If i gets a TTL Time exceeded for that also, then my traceroute program will send a UDP packet with TTL of 5 and so on.

 

But how will my traceroute program come to know that the final destination of 8.8.8.8 has reached. The traceroute program will come to know about that because, when the original receiver of the packet 8.8.8.8 (remember that all UDP packet had a destination address of 8.8.8.8) gets the request it will send me a message that will be completely different from all the messages of "TTL Time exceeded".

 

When the original receiver (8.8.8.8) gets my UDP packet, it will send me a "ICMP Destination/PORT Unreachable" message. This is bound to happen because we are always sending a random UDP port between 33434 to 33534. Hence my Traceroute program will come to know that we have reached the final destination and will stop sending any further packets.

 

Now anything described in words is called a theory. We need to confirm this, by doing a tcpdump while doing a traceroute. Let's see the tcpdump output. Please note that i will not show you the entire output of tcpdump because it too long.

 

Related: TCPDUMP command in Linux with Examples

 

Run traceroute on one terminal of your linux machine. And on another terminal run the below tcpdump command to see what happens.

 

root@workstation:~# tcpdump -n '(icmp or udp)' -vvv
12:13:06.585187 IP (tos 0x0, ttl 1, id 37285, offset 0, flags [none], proto UDP (17), length 60)
    192.168.0.102.43143 > 8.8.8.8.33434: [bad udp cksum 0xd157 -> 0x0e59!] UDP, length 32
12:13:06.585218 IP (tos 0x0, ttl 1, id 37286, offset 0, flags [none], proto UDP (17), length 60)
    192.168.0.102.38682 > 8.8.8.8.33435: [bad udp cksum 0xd157 -> 0x1fc5!] UDP, length 32
12:13:06.585228 IP (tos 0x0, ttl 1, id 37287, offset 0, flags [none], proto UDP (17), length 60)
    192.168.0.102.48381 > 8.8.8.8.33436: [bad udp cksum 0xd157 -> 0xf9e0!] UDP, length 32
12:13:06.585237 IP (tos 0x0, ttl 2, id 37288, offset 0, flags [none], proto UDP (17), length 60)
    192.168.0.102.57602 > 8.8.8.8.33437: [bad udp cksum 0xd157 -> 0xd5da!] UDP, length 32
12:13:06.585247 IP (tos 0x0, ttl 2, id 37289, offset 0, flags [none], proto UDP (17), length 60)
    192.168.0.102.39195 > 8.8.8.8.33438: [bad udp cksum 0xd157 -> 0x1dc1!] UDP, length 32
12:13:06.585256 IP (tos 0x0, ttl 2, id 37290, offset 0, flags [none], proto UDP (17), length 60)
    192.168.0.102.47823 > 8.8.8.8.33439: [bad udp cksum 0xd157 -> 0xfc0b!] UDP, length 32
12:13:06.585264 IP (tos 0x0, ttl 3, id 37291, offset 0, flags [none], proto UDP (17), length 60)
    192.168.0.102.52815 > 8.8.8.8.33440: [bad udp cksum 0xd157 -> 0xe88a!] UDP, length 32
12:13:06.585273 IP (tos 0x0, ttl 3, id 37292, offset 0, flags [none], proto UDP (17), length 60)
    192.168.0.102.51780 > 8.8.8.8.33441: [bad udp cksum 0xd157 -> 0xec94!] UDP, length 32
12:13:06.585281 IP (tos 0x0, ttl 3, id 37293, offset 0, flags [none], proto UDP (17), length 60)
    192.168.0.102.34782 > 8.8.8.8.33442: [bad udp cksum 0xd157 -> 0x2efa!] UDP, length 32
12:13:06.585290 IP (tos 0x0, ttl 4, id 37294, offset 0, flags [none], proto UDP (17), length 60)
    192.168.0.102.53015 > 8.8.8.8.33443: [bad udp cksum 0xd157 -> 0xe7bf!] UDP, length 32
12:13:06.585299 IP (tos 0x0, ttl 4, id 37295, offset 0, flags [none], proto UDP (17), length 60)
    192.168.0.102.58417 > 8.8.8.8.33444: [bad udp cksum 0xd157 -> 0xd2a4!] UDP, length 32
12:13:06.585308 IP (tos 0x0, ttl 4, id 37296, offset 0, flags [none], proto UDP (17), length 60)
    192.168.0.102.55943 > 8.8.8.8.33445: [bad udp cksum 0xd157 -> 0xdc4d!] UDP, length 32
12:13:06.585318 IP (tos 0x0, ttl 5, id 37297, offset 0, flags [none], proto UDP (17), length 60)
    192.168.0.102.33265 > 8.8.8.8.33446: [bad udp cksum 0xd157 -> 0x34e3!] UDP, length 32
12:13:06.585327 IP (tos 0x0, ttl 5, id 37298, offset 0, flags [none], proto UDP (17), length 60)
    192.168.0.102.53485 > 8.8.8.8.33447: [bad udp cksum 0xd157 -> 0xe5e5!] UDP, length 32
12:13:06.585335 IP (tos 0x0, ttl 5, id 37299, offset 0, flags [none], proto UDP (17), length 60)
    192.168.0.102.40992 > 8.8.8.8.33448: [bad udp cksum 0xd157 -> 0x16b2!] UDP, length 32
12:13:06.585344 IP (tos 0x0, ttl 6, id 37300, offset 0, flags [none], proto UDP (17), length 60)
    192.168.0.102.41538 > 8.8.8.8.33449: [bad udp cksum 0xd157 -> 0x148f!] UDP, length 32

 

The above output only shows the UDP packets my machine send.. I will show the reply messages seperate to make this more clear.

Notice the TTL value on each line. It starts from TTL of 1 and then 2, and then 3 till TTL 6. But you might be wondering why my server is sending 3 UDP messages with TTL value of 1 and then 2 and then 3.?

 

The reason behind this is to calculate an average Round Trip Time. Traceroute program sends three UDP packets to each hop to measure the exact average round trip time. Round trip time is nothing but the time it took to send and then receive the reply in milliseconds. I purposely didn't mention about this in the beginning to avoid confusion.

 

So the bottom line is my traceroute program sends three UDP packets to each hop to simply calculate the round trip average. because the traceroute output shows you those three values in its output. Please see the traceroute output more closely. It shows three millisecond values for each hop. To get a clear idea about the round trip time.

 

 

Now let's see the reply we got from all the hops through TCPDUMP. Please note that the reply messages am showing below are part of the same tcpdump i did above, but showing you seperately to make this more clear.

 

One more interesting thing to note is that each time my traceroute program is sending a different random UDP port number. This is to identify the reply belonged to which packet. As told before the reply messages send by the hops and destination contains the header of original packet we send, hence traceroute program can accurately calculate the round trip time (For each three UDP packets send to each hop), as it can easily identify the reply and correlate. The random port numbers are sort of identifiers to identify the reply.

 

The reply messages looks like the below.

 

192.168.0.1 > 192.168.0.102: ICMP time exceeded in-transit, length 68
        IP (tos 0x0, ttl 1, id 37285, offset 0, flags [none], proto UDP (17), le                                                                                        ngth 60)
    192.168.0.1 > 192.168.0.102: ICMP time exceeded in-transit, length 68
        IP (tos 0x0, ttl 1, id 37286, offset 0, flags [none], proto UDP (17), le                                                                                        ngth 60)
    183.83.192.1 > 192.168.0.102: ICMP time exceeded in-transit, length 60
        IP (tos 0x0, id 37288, offset 0, flags [none], proto UDP (17), length 60                                                                                        )
    192.168.0.1 > 192.168.0.102: ICMP time exceeded in-transit, length 68
        IP (tos 0x0, ttl 1, id 37287, offset 0, flags [none], proto UDP (17), le                                                                                        ngth 60)

 

 

Please note the ICMP time exceeded messages in the reply shown above (I have not shown all reply messages).

 

Now let me show the final message which is different than the ICMP time exceeded message. This messages is a destination port unreachable, as told before. And my traceroute program will come to know that our destination has reached.

 

8.8.8.8 > 192.168.0.102: ICMP 8.8.8.8 udp port 33458 unreachable, length 68
        IP (tos 0x80, ttl 2, id 37309, offset 0, flags [none], proto UDP (17), l                                                                                        ength 60)
    8.8.8.8 > 192.168.0.102: ICMP 8.8.8.8 udp port 33457 unreachable, length 68
        IP (tos 0x80, ttl 1, id 37308, offset 0, flags [none], proto UDP (17), l                                                                                        ength 60)
    8.8.8.8 > 192.168.0.102: ICMP 8.8.8.8 udp port 33459 unreachable, length 68
        IP (tos 0x80, ttl 2, id 37310, offset 0, flags [none], proto UDP (17), l                                                                                        ength 60)

 

 

Note that there are three replies from 8.8.8.8 to my traceroute program. As told before traceroute sends three similar UDP packets with different ports to simply calculate the round trip time. The final destination is nothing different.

 

Different types of Traceroute program

 

There are different types of traceroute programs. Each of them works slightly differently. But the overall concept behind each of them is the same. All of them uses the TTL value.

 

Why different implementations? That because you can use the one which is applicable to your environment. If suppose A firewall block the UDP traffic then you can use another traceroute for this purpose.  The different types are mentioned below.

 

  • UDP Traceroute
  • ICMP traceroute
  • TCP Traceroute

 

Related: How Does UDP work if it is Not Connection Oriented

 

The one we used previously is UDP traceroute. Its the default protocol used by linux traceroute program. However you can ask our traceroute utility in linux to use ICMP instead of UDP by the below command.

 

root@workstation:~# traceroute -I -n 8.8.8.8

 

ICMP for traceroute works the same way as UDP traceroute. Traceroute program will send ICMP Echo Request messages and the hops in between will reply with a ICMP Time exceeded messages. But the final destination will reply with ICMP Echo reply.

 

Tracert command available in windows operating system by default uses ICMP traceroute method.

 

Now the last is the most interesting one. Its called TCP traceroute. Its used because almost all firewall and routers in between allows you to send TCP traffic. And if the packet is toward port 80, which is the web traffic then most of the routers allow that packet. TCPTRACEROUTE by default sends TCP SYN requests to port 80.

 

Read: How a TCP connection is established

 

All routers in between the source and destination will send a TTL time exceeded message and the destination will send either a RST packet if port 80 is closed or will send a SYN/ACK packet(But tcptraceroute does not make a tcp connection, on receiving the SYN/ACK packet, traceroute program will send a RST packet to close the connection). Hence the traceroute program comes to know that the destination has reached.

 

Please note the fact that the -n option i have used in the previously shown traceroute command will not do a DNS name resolution. Otherwise traceroute will send dns queries for all the hops it finds on the way.

 

Read: How DNS works

 

Now the main question is which one should i use from icmp, udp, and tcp traceroutes?

 

It all depends on the environment. If suppose the routers in between blocks a particular protocol then you must try using the other.

Rate this article: 
Average: 3.7 (2677 votes)

Comments

Very well explained..

Bro,

Tried studying about "how traceroute work" in various links , but nothing impressed me like this .

Great article.........!!!!!!!!!!

excellent explanation

Hello,

I would really appreciate this artical as its well explained.
But i would like to know some synario where we have any server unreachable & or some problem in network for any server ! What & where could be the traceroute output needs to be checked in this situation.
I mean a real example with the explanation !!!!

Thanks

Sarath Pillai's picture

Hi,

I am glad to know that you liked the article!!

Traceroute is basically used to trace the path to your required destination. Its basically used to find the hosts/devices that comes in between you and the destination, and to detect the amount of packet drops between you and each hops that come in between. So its not ideal to use traceroute to troubleshoot whether a target server is reachable or not.

But it is more suited to find where the problem lies, between you and your target server(if it lies in the path, you can find easily using traceroute.). There are situations when one of your server is not reachable to you, but reachable for rest of the world(from different locations). Those situations indicate that there is a problem in the path (basically the path your particular ISP is taking to reach the target). And you can find where the problem lies using traceroute.

So the bottom line is reachability test must not be done using traceroute command, but must be done using a direct ping to your target, or connect to any known port on your target if the target block's icmp(PING).

There are multiple reasons for this(why traceroute must not be used for reach-ability test)
1. sometimes the hops in between blocks icmp or does not reveal its own information.
2. Some times the hops in between are configured to never reply to a TTL exceeded message (this is done for privacy reasons)

In those cases, traceroute can infact confuse you. Please let me know..

Thanks

Hello
would you please explain what exactly does tracrt -j host_list does.
I read it is used to loose the list and take a different route to the destination but when i run this command.Most of the requests are timed out.

Hi sarath,

your content infact is simple & understanding the basics of networking.
Would like to have more of this.

Regards,
Srram S.

Very good explanation.. Gr8 job!!

the article was very nice salute your effort.

This was an awesome description. Thanks you a lot !

Awesome brother you are the gift of god to me kind of
beginners in networking. My best wishes for ur service.

Great Explanation bro...Keep posting such real geek stuffs.

wow. its really great expkanation.....
thank u

first of all a big thanks for u guys..

UDP traceroute uses destination ports of 33434-33523

correct me if am wrong

Nice explanation, could you also let us know how many pkts does trace route send ?

I think 3 , correct me if i am wrong ?

Regards
Samrat Sharma

Thanks for the information ,made very simple and comprehensible...Request you to make more posts!!!

Thanks for the information ,made very simple and comprehensible...Request you to make more posts!!!

Nice explanation

The explanation is really good and in deep and clear.However I would like to ask you if tracert works like this than why there is default TTL values in windows 128 and 64 in linux. I know this is really silly question but I really want to clear my doubt here.

Thanks in advance.

GREAT EXPLANATION.

nice article with good explanation..

Thank YOU!!!!!

It's really very clear about traceroute.

Well described....Thanks

Clear explanation...

I have a question here. Let's say when the UDP packets reaches the second hop, the TTL value is decremented from 2 to 0 and the second router sends a Time Exceeded Message to the source. But while sending a Time Exceeded message what will be the TTL value from the second Router to the source? Does it send the TEM directly to the source without reaching the 1st router and with what TTL value in the header???

Thanks,
Girish

Hi Sarath,

you have helped a lot with crisp and clear explanation.

thanks a lot.

Bro,

Great expkanation

Food explaination for beginners for better understanding

can you explain to me what is the difference between tracert jaring.my and tracert www.google.my?

Thank you...

awesome post man..

Hi,

Would like to thank you for the excelent quality of your publications. Rarely I come across combination of in dept knowledge explained in such a grate way.

Hi,

Would like to thank you for the excelent quality of your publications. Rarely I come across combination of in dept knowledge explained in such a grate way.

Excellent article, i never came across such a great explanation.

Well Thanks for sharing your knowledge. NO One has explained in the way that You HAVE...!! God Bless You.

for example, suppose that we want to run trace route program to a server which we do not know the number of hops in between. how does the program determine the default value for TTL to ensure that we will eventually reach the destination ?

great ....No one can explain about this topic beteer than you.

Good article. Worth reading it!!

Kudos Man. Very nice and simple explanation. Starting from scratch and taking it to the top level.

Wow. Beautifully explained. Thanks a lot :-)

One of the best traceroute explanation, I appreciate that

Awesome explanation. Enjoyed it!
Thorough one. Thanks.

perfect explanation of the concept..!!!!

Very well done... good job !!

Hi,
This is a good post. However I'd like to draw your attention that, according to my knowledge, the reply does not contain 28 bytes. It contains 8 bytes of the UDP probe packet.

http://www.keyboardbanger.com

You have great patience, precision and explanation skills. You are a great engineer, no doubt.

I follow and understand the content of article well. But, when I tested some traceroute, when destination system (8.8.8.8) reply, it had more than three responses from destination system, so I saw more from tcpdump'output and noticed that each the these responses represent different request (eg, request have ttl = 11, then request have ttl = 12 ...)

So how many hop count exacly is?

Terrific explanation. As simple and effective as it gets.

thanks for the article.. it is well explained.

Pages

Add new comment

Plain text

  • No HTML tags allowed.
  • Web page addresses and e-mail addresses turn into links automatically.
  • Lines and paragraphs break automatically.
CAPTCHA
This question is for testing whether or not you are a human visitor and to prevent automated spam submissions.