Skip to main content

Mastering Network Diagnostics


Understanding network performance is crucial for maintaining smooth operations. Tools like MTR and Traceroute provide detailed insights into the path packets take, helping you pinpoint exactly where latency or packet loss occurs.
Reading TimeDifficultyLast Updated
8 minutesIntermediateJanuary 2026

Quick Navigation

SectionWhat You’ll Learn
MTR on WindowsUsing WinMTR for graphical diagnostics
MTR on LinuxUsing terminal-based MTR tools
Interpreting ReportsUnderstanding loss, sent, and latency metrics
Traceroute GuideUsing the standard tracert command

Troubleshooting with WinMTR (Windows)

Generating the Report

  1. Install WinMTR: Download WinMTR from the official GitHub repository. Extract the ZIP and run the executable.
  2. Enter the Destination: In the Host field, enter your server’s IP address or domain name.
  3. Start the Trace: Click Start. Let it run for at least 50-100 packets for accurate data.
  4. Analyze Results: View real-time statistics of each hop between your computer and the server.
MTR Start Trace

Troubleshooting with MTR (Linux)

Generating the Report

  1. Install MTR: Use your package manager to install the tool.
    sudo apt-get install mtr  # Debian/Ubuntu
    sudo yum install mtr      # CentOS/RHEL
    
  2. Run the Trace: Launch MTR towards your destination.
    mtr -rw example.com
    
  3. Report Mode: To generate a static report for support, use:
    mtr -rw -c 100 example.com > mtr_report.txt
    

Interpreting an MTR Report

MetricDescriptionWhat to Look For
Loss%Percentage of packets lostConsistent loss across multiple hops indicates a real issue.
SentTotal packets dispatchedEnsure enough packets (50+) were sent for a valid sample.
Last/AvgRound-trip time (ms)Significant jumps in latency between two hops indicate the source of lag.
WorstHighest latency recordedHelps identify intermittent “spikes” in connection.

Using Traceroute (tracert)

Traceroute is a standard tool built into most operating systems to see the path to a server.
  1. Open your Command Prompt (CMD) or Terminal.
  2. Run the command:
    tracert <IP address>
    
  3. Note: Exclude any port numbers (e.g., use 191.96.94.100 not 191.96.94.100:25565).
Traceroute

Support Channels

If you need assistance or have any questions, please contact our support team:

First Month Discount

Use code KB20 at checkout to get 20% off your first month of hosting!

Last Updated: January 2026 | Expert Tip: Run diagnostics during peak lag times for best results.