Diagnosing performance and delivery issues with Traceroute command

Traceroute is a network diagnostic tool, that our technical support use to diagnose performance and delivery issues.

Using this tool, it is possible to monitor and get information on the way that the packets travel from the computer to a specific web server.

Here are the step by step guides to using it, depending on the platform:


  1. Open the command window in Windows (+ R).
  2. Type the command cmd.
  3. Click on the OK button to see the DOS emulator window.
  4. At the command prompt, type tracert <hostname>.
  5. Press Enter to see the result of the traceroute.

  1. Open the Utilities folder.
  2. Open the Network Utility application.
  3. Click on Traceroute.
  4. Type the hostname, that you want to run the traceroute on.
  5. Click on the Trace button.

Install Traceroute

The command to install the Traceroute tool in Linux depends on the version that you are using. These are the installation commands for the main versions of Linux:

  • Red Hat/CentOS: sudo yum install traceroute -y
  • Ubuntu/Debian: sudo apt-get update -y
#sudo apt-get install traceroute

Perform a Traceroute

  1. Open the Linux terminal.
  2. At the command prompt, type traceroute <hostname>.
  3. Press Enter to see the result of the traceroute.

Contributors