SYSOPERATIONAL
rtt15.5ms
loss0.00%
jitter2.62ms
in794Mb/s
out621Mb/s
sessions1,226
UTC18:07:10
packetpilot.ai _
~ $
[ post · troubleshooting ]

Troubleshoot Slow Network Performance Step-by-Step

A systematic methodology for diagnosing slow networks — from end-user complaint to root cause. Covers ping, traceroute, packet capture, interface stats, and common fixes.

$ tracert 8.8.8.8

Hop  1   192.168.1.1      2ms    2ms    2ms   gateway
Hop  2   10.0.0.1         4ms    4ms    5ms   isp-edge
Hop  3   203.0.113.1    182ms  179ms  184ms   ← spike here
Hop  4   8.8.8.8        185ms  183ms  186ms   destination

[!] Latency jumped 178ms at hop 3 — ISP segment
[→] Open a ticket with your ISP. Data in hand.

To troubleshoot slow network performance, ping four destinations in sequence: 127.0.0.1 (loopback), your default gateway, 8.8.8.8 (internet IP), and then a domain name like google.com. The first destination that fails or shows high latency tells you exactly where to look. From there, check for packet loss with 50-packet pings, examine switch interface error counters, and measure WAN utilization. This guide walks each step in the order that narrows fastest.


Step 1: What Should You Find Out Before Troubleshooting Slow Network Performance?

Before touching a single device, get specifics from whoever reported the issue:

  • What is slow? A specific app, a website, file transfers, everything?
  • Where are they? On-site, remote, specific VLAN or building?
  • When did it start? Constant, or only at certain times?
  • How many people are affected? Just them, their team, everyone?

One user with slow Teams calls is a different problem than an entire floor with slow everything. The answers tell you where to start looking.


Step 2: How Do You Isolate Where on the Network the Slowness Is?

Run a quick ping test from the affected machine to progressively further destinations:

ping 127.0.0.1          # localhost — rules out the NIC driver
ping 192.168.1.1        # default gateway — tests local LAN
ping 8.8.8.8            # internet IP — tests WAN/routing
ping google.com         # DNS + internet — tests name resolution

Interpreting results:

What failsWhere the problem is
All failNIC, driver, or IP config
Gateway fails, localhost okLAN segment or switch
Internet IP fails, gateway okRouter, WAN, or ISP
Domain fails, IP okDNS
All pass but “still slow”Latency or throughput — go to Step 3

Step 3: How Do You Measure Latency and Packet Loss?

Pings that reply aren’t always healthy. Add -n 50 (Windows) or -c 50 (Linux) to run 50 pings and look for:

  • Packet loss — any loss to the gateway is a red flag
  • High average RTT — >5ms on a LAN is worth investigating
  • Jitter — wide variance between min and max RTT
# Windows — 50 pings to gateway
ping 192.168.1.1 -n 50

# Linux/Mac
ping 192.168.1.1 -c 50

If you see packet loss to the gateway, the problem is almost certainly between the host and the first switch — bad cable, duplex mismatch, or a flapping port.

If latency is high only to internet destinations, the issue is at or beyond the router.


Step 4: Run Traceroute to Find the Hop

Traceroute shows where latency spikes or where packets stop:

# Windows
tracert 8.8.8.8

# Linux/Mac
traceroute 8.8.8.8

What to look for:

  • A hop where RTT jumps significantly (e.g., 2ms → 180ms) — that’s the problem segment
  • * * * — can mean the device doesn’t respond to ICMP (not always a problem) or packets are being dropped there
  • RTT that stays high from a certain hop onwards — problem is at or before that hop

If latency spikes at hop 1 (your gateway), start there. If it spikes at hop 3 (ISP), call your ISP.


Step 5: What Switch Interface Statistics Indicate a Network Problem?

High error counts on a port are the most common cause of LAN slowness and packet loss. SSH into the switch and check:

show interfaces GigabitEthernet0/1

Look for these counters in the output:

Input errors: 0
CRC: 0
Frame: 0
Runts: 0
Giants: 0
Output errors: 0
Collisions: 0

Any non-zero value here is a problem. Common culprits:

CounterLikely cause
CRC errorsBad cable, damaged SFP, or duplex mismatch
RuntsDuplex mismatch or collision domain
Input errorsBad NIC, cable, or patch panel
CollisionsHalf-duplex device connected to full-duplex port
Output queue dropsBandwidth saturation

Also check speed and duplex:

show interfaces GigabitEthernet0/1 | include duplex|speed

You want Full-duplex, 1000Mb/s or similar. If you see Half-duplex or a mismatch between the switch and the device, fix it:

interface GigabitEthernet0/1
 duplex full
 speed 1000

Step 6: Check Bandwidth Utilization

A saturated link looks like slowness to the user but has nothing wrong with the physical layer. Check interface utilization:

show interfaces GigabitEthernet0/1 | include rate

Or use show interfaces and look at the 5 minute input/output rate lines. If a link is consistently above 80% utilization, it needs upgrading or traffic shaping.

On a router, check WAN utilization the same way. If the WAN link is maxed, prioritize traffic with QoS or talk to your ISP about upgrading bandwidth.


Step 7: When Should You Use a Packet Capture to Diagnose Slow Network Performance?

If the previous steps don’t reveal the cause, capture traffic and look at what’s actually happening. Wireshark is your best tool here.

Run a capture filtered to the affected host:

Capture filter:

host 192.168.1.50

What to look for in the capture:

  • TCP retransmissions — packets being resent means something upstream is dropping them
  • TCP Zero Window — the receiver is overwhelmed and telling the sender to stop
  • High TCP RTT — visible in the tcp.analysis.ack_rtt field; filter with tcp.analysis.ack_rtt > 0.1 for anything over 100ms
  • DNS failures or timeouts — if name resolution is failing, apps will appear slow

The Expert Information panel in Wireshark (Analyze → Expert Information) will flag most of these automatically.


Step 8: What Are the Most Common Fixes for Slow Network Performance?

Root causeFix
Duplex mismatchForce speed/duplex on switch port and NIC
Bad cableReplace cable or SFP
DNS slownessChange DNS to 8.8.8.8 / 1.1.1.1 temporarily to test; fix DNS server if confirmed
Bandwidth saturationQoS, traffic shaping, or upgrade the link
Congested Wi-Fi channelChange AP channel, check channel utilization
Faulty switch portMove device to another port, disable bad port
ISP issueRun a speed test to confirm, open a ticket

The One-Page Cheat Sheet

User reports slow network

├─ Ping localhost → gateway → 8.8.8.8 → google.com
│  └─ Fails? → Narrow to that segment

├─ Ping with 50 packets → check loss and jitter
│  └─ Loss to gateway? → cable / switch port / duplex

├─ Traceroute → find the hop where latency spikes

├─ show interfaces → check error counters and duplex
│  └─ Errors? → cable, SFP, duplex mismatch

├─ Check interface utilization → saturation?
│  └─ > 80%? → QoS or upgrade

└─ Packet capture → TCP retransmits, zero window, DNS

Slow networks have causes. Follow the steps, and you’ll find it — every time.


Frequently Asked Questions

What’s the first thing to check when the network is slow? Ping your default gateway with 50 packets and check for loss. Any loss to the gateway is a local problem — start with the physical layer: cable, switch port, duplex setting. If the gateway is clean, run a traceroute to find where latency spikes along the path to an internet destination.

How do I tell if the slowness is DNS and not the network itself? Ping an IP address (8.8.8.8) and compare the response time to pinging a domain name (google.com). If the IP responds quickly but the domain is slow, DNS is the bottleneck. Switch the machine’s DNS temporarily to 8.8.8.8 or 1.1.1.1 to confirm — if speed improves, your internal DNS server is the problem.

What ping round-trip time is too slow on a LAN? A wired LAN connection should show sub-1ms RTT to the default gateway. Above 5ms is worth investigating. Above 20ms to the gateway almost always indicates a physical layer problem — duplex mismatch, a failing port, or a bad cable.

How do I check if my WAN link is saturated? SSH to your router and run show interfaces <WAN-interface> | include rate. Check the “5 minute output rate.” If it’s consistently above 80% of the link’s rated capacity, the link is saturated. See the WAN saturation guide for the next steps.

When should I capture packets instead of checking interface stats? Check interface stats first — they’re fast and reveal physical layer errors and bandwidth saturation without needing a capture point or span port. Move to Wireshark only when the physical layer is clean and you need to see TCP-level behavior: retransmissions, zero-window events, DNS timeouts, or application-layer failures.

[ FAQ ]

Q: How do I troubleshoot slow network performance?

A: Work the OSI stack bottom-up: check Layer 1 (cable errors, port flaps), Layer 2 (spanning tree, duplex mismatch), Layer 3 (MTU, routing loops), and Layer 4 (TCP retransmissions). Use `show interfaces` for error counters, MTR for path analysis, and Wireshark with the filter `tcp.analysis.retransmission` to confirm TCP-level loss.

Q: Why is my network slow even though the link shows 100%?

A: A link at 100% line rate does not mean no errors. Check for MTU mismatches (a common cause of TCP slowdowns), high retransmission rates visible in Wireshark, or QoS policies dropping traffic before it hits the wire. Run `show interfaces` and look at output drops and output errors — both indicate the link is congested or misconfigured.

Q: What is the most common cause of slow network performance in enterprise networks?

A: MTU mismatches and resulting TCP retransmissions are the most frequently missed root causes. A legacy interface or VPN tunnel with a 1492-byte MTU creates fragmentation overhead that shows up as general sluggishness but is invisible to basic ping tests. Test with `ping -l 1400 -f <gateway>` on Windows or `ping -M do -s 1400 <gateway>` on Linux to confirm.