Ping is the round-trip time between your machine and the game server — everything above ~60 ms starts to feel sluggish in fast-paced games, and above ~100 ms you are at a structural disadvantage in any competitive title. The good news: most high-ping problems are caused by simple fixable things, not your ISP's last-mile speed. Here is every method that matters, in order of impact.
What changed in 2026
- WiFi 6E and WiFi 7 reduced WiFi latency significantly, but wired Ethernet is still measurably better for competitive play.
- Game servers multiplied — most major titles now have regional servers across NA, EU, and APAC, and selecting the right one is the single biggest lever you have.
- Windows 11 24H2 refined its network stack with Receive Segment Coalescing (RSC) improvements, marginally helping high-throughput connections.
- ISP routing quality varies wildly — "gaming ISP" marketing is mostly noise, but some ISPs have noticeably better peering to major game data centers.
Ping vs jitter — what you actually feel
| Metric |
What it means |
Acceptable threshold |
| Ping (latency) |
Round-trip time to server |
<60 ms good, <30 ms great |
| Jitter |
Variation in ping between packets |
<10 ms; spikes feel worse than high stable ping |
| Packet loss |
Packets that never arrive |
0% — even 1% is very noticeable |
Stable 50 ms ping plays better than erratic 20–80 ms ping. Fix jitter before chasing a lower average.
Fix 1 — Switch to wired Ethernet
WiFi adds 5–30 ms of latency on top of your wired ping, plus jitter that spikes during interference. A Cat 6 cable from router to PC is the single highest-impact, lowest-cost fix. If your room is far from the router, a Powerline adapter ($40–60) or MoCA adapter ($60–100) runs network over existing electrical or coax wiring.
Fix 2 — Select the nearest server region
In-game settings or matchmaking preferences almost always let you select or rank regions. A server in your region runs 10–40 ms; cross-ocean runs 100–200 ms. No hardware change on your end closes that gap.
Fix 3 — Close background bandwidth consumers
Windows Update, OneDrive/iCloud sync, Dropbox, browser tabs streaming video, Discord video, antivirus cloud scanning — all consume upload or download bandwidth and add latency. Before a session:
- Pause Windows Update (Settings → Windows Update → Pause for 1 week).
- Pause cloud backup sync.
- Close streaming tabs.
Fix 4 — Enable QoS on your router
Quality of Service (QoS) tells the router to prioritize certain traffic types. Most modern routers (ASUS, TP-Link, Netgear) have QoS under Advanced Settings. Enable gaming/real-time traffic priority, or manually prioritize your PC's MAC address.
Fix 5 — Use a fast DNS server
DNS lookup speed adds a few ms before every new connection. Switch from your ISP's default DNS:
- Cloudflare 1.1.1.1 — consistently fastest globally
- Google 8.8.8.8 — fast, widely cached
- NextDNS — fast + privacy + filtering
Set DNS in your network adapter settings (not just the browser) for system-wide effect.
Fix 6 — Update network adapter drivers
Outdated drivers can cause latency spikes and jitter. Intel and Killer network adapters in particular have firmware-level optimizations in their latest drivers. Download directly from Intel's site, not Windows Update.
Fix 7 — Disable Nagle's algorithm (for TCP games)
Nagle's algorithm batches small packets to improve efficiency — the opposite of what you want in games. On Windows, disable it via registry:
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters\Interfaces\<your adapter GUID>
TcpAckFrequency = 1
TCPNoDelay = 1
This helps in TCP-based games (many MMOs, some shooters). UDP-based games (most modern FPS) are unaffected.
How to pick where to start
- On WiFi? → Switch to Ethernet first. Everything else is noise until you do.
- Stable but high ping? → Server region selection.
- Spiking during downloads? → QoS or pause background apps.
- High jitter on Ethernet? → Driver update or cable quality.
- Everyone on the network has high ping? → ISP or router issue, not your device.
Common mistakes
Paying for a gaming VPN. Services like ExitLag or WTFast help in rare cases where your ISP has bad routing to a specific data center. For most users on most ISPs they add latency, not reduce it.
Chasing ping while on WiFi. Every other optimization is overshadowed by WiFi jitter. Ethernet first.
Overlooking packet loss. 1% loss at 30 ms ping plays worse than 0% loss at 60 ms. Run a ping test with ping -n 100 <server IP> and check for packet loss.
Gaming on a router that is also doing heavy file transfers. Even gigabit LAN generates CPU load on cheap routers. QoS or a wired-only switch for the PC helps.
What to skip
- Gaming routers with RGB — the lights do not reduce latency. The underlying chipset and firmware matter.
- "Boost" software that claims to optimize ping — most either do nothing or change settings you could change yourself.
- Upgrading to a faster ISP plan if the issue is WiFi, server region, or background bandwidth — the bottleneck is not your download speed.
FAQ
What is a good ping for gaming?
Under 30 ms is excellent. 30–60 ms is comfortable. 60–100 ms is playable in most games. Above 100 ms is noticeably laggy in competitive FPS titles.
Can my ISP cause high ping even with fast speeds?
Yes. Routing quality and peering agreements determine latency, not plan speed. A 1 Gbps plan with poor peering can have worse ping than a 100 Mbps plan with direct backbone access.
Does RAM or CPU speed affect ping?
Negligibly for network latency itself. A slow PC may have higher input-to-display lag (frame time), which feels like lag, but that is separate from network ping.
What is a good tool to test real ping?
ping <server IP> in Command Prompt for raw latency. Better: use in-game ping display. PingPlotter shows hop-by-hop latency and identifies where in the path the delay lives.
Where to go next