| 1. |
I Want To Troubleshoot My Network But I Don’t Know How Does The Traceroute Command Work Exactly? |
|
Answer» Traceroute is a program that shows you the route taken by packets through a network. It TRACES the route of packets from source to destination. It is commonly used when your network doesn’t work as well and you want to EXAMINE where can be the problem. Traceroute sends a UDP packet to the destination TAKING advantage of ICMP’s messages. ICMP has two types of messages: error-reporting messages and query messages. Query messages are generally used to diagnose network problems (the ping tool uses ICMP’s query messages). The error-reporting messages as the name suggest report errors if any in the IP packet; it uses Destination unreachable and Time exceeded errors message. It works by theses steps:
Traceroute is a program that shows you the route taken by packets through a network. It traces the route of packets from source to destination. It is commonly used when your network doesn’t work as well and you want to examine where can be the problem. Traceroute sends a UDP packet to the destination taking advantage of ICMP’s messages. ICMP has two types of messages: error-reporting messages and query messages. Query messages are generally used to diagnose network problems (the ping tool uses ICMP’s query messages). The error-reporting messages as the name suggest report errors if any in the IP packet; it uses Destination unreachable and Time exceeded errors message. It works by theses steps: |
|