7 Fixes That Cut Your Game Ping by Up to 50ms — Tested Methods 2026

A 60ms ping and a 16ms ping are both technically connected to the server. Only one of them gets you killed first.

The difference isn’t just a number — it’s the gap between your click registering before the enemy’s or after it. Most guides tell you to switch to Ethernet and close Chrome. That’s a start, but if you’re still hitting 80ms on a wired connection or watching your ping spike the moment someone in the house starts streaming, you need to go deeper. These seven fixes target the underlying causes, not just the symptoms — including one Windows registry tweak that most guides never mention.

If you’re in a hurry: plug in a cable (Fix 1), select your nearest server region in-game (Fix 2), and kill background downloads via Task Manager (Fix 4). Run the rest once you’re stable.

What Counts as Good Ping?

Ping is the round-trip time for a data packet to travel from your PC to the game server and back, measured in milliseconds. Here’s how the ranges break down in practice:

Ping RangeRatingWhat It Feels Like
0–20msExcellentCompetitive shooters, esports — virtually imperceptible delay
21–50msGoodMost online multiplayer feels responsive
51–100msPlayableMMORPGs and casual co-op; noticeable in FPS games
100ms+ProblematicRubber-banding, missed shots, delayed ability casts

One thing most guides don’t mention: jitter matters as much as raw ping. A connection that holds steady at 30ms feels smoother than one oscillating between 10ms and 50ms. Your brain adapts to a consistent delay — it can’t adapt to an unpredictable one. If your ping reads fine on average but your gameplay stutters, jitter is the likely culprit.

Fix 1: Switch to Wired Ethernet — the Biggest Single Gain

Ethernet beats Wi-Fi on latency for a straightforward reason: Wi-Fi is a shared radio medium. Every device within range competes for airtime, and your router must negotiate access and manage collisions. A cable doesn’t have that problem.

Benchmarking by How-To Geek measured average ping at 60ms with 20ms jitter on Wi-Fi versus 16ms with 7ms jitter on a Cat6 cable — a 4× latency improvement and 3× reduction in variability on the same internet connection. That’s not a small difference; it’s the difference between dying to a delayed input and winning the exchange.

If running a cable isn’t realistic, Wi-Fi 6E narrows the gap significantly. Testing shows Wi-Fi 6E achieves 3–7ms latency in optimal conditions versus Ethernet’s 1–3ms — a 2–4ms difference that most players won’t detect outside of professional competition. If you’re still on Wi-Fi 5 or older hardware, upgrading your router is a higher priority than trying to optimize around a wireless connection.

What to do:

  • Run Cat5e or Cat6 from your router to your PC — Cat6 handles up to 10 Gbps and costs only marginally more
  • If staying wireless, use the 5 GHz or 6 GHz band, which is less congested than 2.4 GHz
  • Place your router as close to your PC as physically possible if cable runs aren’t an option

Fix 2: Set Your Game’s Server Region Manually

Data packets travel at roughly the speed of light through fiber — but they rarely take a direct path. Every routing hop between your home and the game server adds 1–5ms of processing delay, and ISPs don’t always pick the most efficient route. A server labeled “US East” might be routing you through Chicago even if you’re in Atlanta.

Most competitive games let you set your preferred region manually:

  • Valorant: Settings → General → Region (takes effect after restarting the client)
  • CS2: Add +mm_dedicated_server_dot_com_string [region] to Steam launch options
  • Fortnite: Settings → Game → Matchmaking Region → set manually instead of Auto
  • League of Legends: Client settings → region selector (top-right)

Before committing, test your actual latency to each available region. Tools like Game Server Ping (gameserverping.net) display real latency to game server clusters across all major regions so you can compare before queuing.

Fix 3: Enable QoS on Your Router

QoS (Quality of Service) is a router feature that assigns your gaming packets priority over everything else on your network. Without it, a 4K stream on the TV can spike your in-game ping from 30ms to 120ms in seconds — not because your connection got worse, but because your gaming packets got queued behind 25 Mbps of Netflix data.

QoS router settings configured to prioritize gaming traffic
QoS assigns your gaming packets the fast lane — configure it once and it works automatically whenever the network is under load

The basic setup process is consistent across most routers:

  1. Log in to your router admin panel (usually 192.168.1.1 or 192.168.0.1)
  2. Find the QoS or Traffic Manager section — check under Advanced Settings, Gaming, or Wireless
  3. Identify your PC by IP address or MAC address and assign it the highest priority
  4. Set your target bandwidth 10–15% below your tested speeds — if your plan delivers 100 Mbps, enter 85 Mbps. This prevents saturation spikes that temporarily starve all traffic including gaming packets
  5. Save settings and reboot the router

Router-specific shortcuts:

  • ASUS routers: Advanced → Traffic Manager → QoS → enable Adaptive QoS → select Gaming mode
  • Netgear Nighthawk: Advanced → Setup → QoS Setup → enable Upstream QoS → add your gaming device
  • TP-Link: Advanced → QoS → enable → assign your device to highest priority bandwidth

QoS is especially effective in shared households. It doesn’t increase your internet speed — it controls how existing bandwidth gets allocated under load.

Fix 4: Kill Background Bandwidth Hogs

Steam, Discord, game launchers, and Windows itself download updates silently while you play. Even with QoS active, a 20 Mbps background download competes with your gaming traffic during the brief moments when QoS prioritization isn’t perfectly tuned.

Identify what’s running now:

  1. Open Task Manager (Ctrl + Shift + Esc) → Performance tab → Open Resource Monitor
  2. Click the Network tab and sort by Total (B/sec) — anything above 1–2 MB/sec during gaming is a problem
  3. Right-click the offending process → End Task if it’s not critical

Hidden bandwidth drain most players miss: Windows Delivery Optimization uploads system updates to other users on your network and the internet by default. To disable it: Settings → Windows Update → Advanced Options → Delivery Optimization → turn off “Allow downloads from other PCs.” This alone can eliminate unexplained ping spikes on shared connections.

Per-app bandwidth caps help long-term. In Steam: Settings → Downloads → Limit bandwidth during gameplay. Battle.net and Epic have equivalent settings in their preferences menus.

Fix 5: Disable Nagle’s Algorithm (5–15ms on TCP Games)

This is the fix that most guides skip entirely. Windows includes a default networking behavior called Nagle’s Algorithm, designed to improve general network efficiency by bundling small TCP data packets together before sending them. For web browsing, this is a reasonable trade-off. For real-time gaming, it’s a problem: your action gets held in a queue waiting for more data to bundle with, adding 5–15ms of latency before the packet even leaves your machine.

Disabling it tells Windows to transmit each packet immediately, as soon as it’s ready.

Steps (Windows 10 and Windows 11):

  1. Open Command Prompt and run ipconfig — note your IPv4 address
  2. Press Win + R, type regedit, and run as Administrator
  3. Navigate to: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters\Interfaces
  4. Find the subfolder whose DhcpIPAddress or IPAddress matches your IPv4 address
  5. Right-click → New → DWORD (32-bit) Value, name it TcpAckFrequency, set value to 1
  6. Repeat to create TCPNoDelay, set value to 1
  7. Restart your PC for the changes to take effect

Important limitation: This only affects TCP-based game connections. Most modern shooters — Valorant, CS2, Apex Legends — use UDP, which is unaffected by Nagle’s Algorithm. Where it makes a measurable difference: older MMORPGs, certain strategy games, and titles that route match data over TCP. If you’re not sure, check whether your game uses TCP or UDP before expecting results. Worst case, you undo the registry edit with no harm done.

Fix 6: Update Your Network Adapter Drivers

Outdated network adapter drivers cause intermittent latency spikes that look identical to an ISP problem — random 200ms+ jumps during otherwise stable gameplay. A driver update is one of the most underrated fixes for this pattern.

Steps:

  1. Right-click the Start menu → Device Manager
  2. Expand Network Adapters → right-click your Ethernet or Wi-Fi adapter
  3. Click Update driver → Search automatically for updated driver software
  4. For more current versions than Windows Update carries, download directly from your adapter manufacturer: Intel (intel.com/networkadapters), Realtek (realtek.com), or Killer (killernetworking.com)

Intel and Killer NICs in particular lag 6–12 months behind their latest driver versions in Windows Update. Downloading direct from the manufacturer is worth the extra step if you have either brand.

Fix 7: The DNS and VPN Truth

Here’s something most guides won’t say directly: changing your DNS server does not lower your in-game ping. Once you’re connected to a match, game traffic routes directly to the server’s IP address — DNS isn’t involved in that process. DNS only handles the initial name lookup during matchmaking. Switching to Cloudflare (1.1.1.1) can make matchmaking queue a fraction faster, but it won’t touch your ping once you’re in-game.

VPNs are a more important myth to address because they actively make things worse in almost every case. A VPN routes your traffic through an additional server, extending the round trip. Testing shows a nearby VPN server adds roughly 4ms → 20ms to local connections. Overseas VPN servers jump to 200ms or higher, with extreme cases reaching 800ms.

The narrow exception: if your ISP is actively throttling gaming traffic or using an inefficient routing path to a specific game’s servers, a VPN might reduce latency on that specific route. This is uncommon and hard to confirm without testing. To check: run tracert [game-server-IP] in Command Prompt. More than 10–12 hops, or a single hop adding 40ms+, points to an ISP routing issue — that’s a call to your ISP’s support line, not a VPN purchase.

Which Fixes to Prioritize — by Player Type

Player TypePriority OrderExpected Gain
Competitive / FPSEthernet → Server region → QoS20–50ms reduction
Casual multiplayerBackground apps → Server region10–30ms reduction
MMO / older gamesNagle’s Algorithm → Ethernet → Drivers5–20ms reduction
Shared householdQoS → Background apps → Ethernet15–40ms during peak hours

Frequently Asked Questions

Does faster internet speed mean lower ping?

No. Ping measures round-trip time, not bandwidth. A 1 Gbps fiber connection can still return 80ms if the server is physically far away or your ISP routes inefficiently. More bandwidth reduces ping only when your connection is already saturated — it doesn’t shorten the physical distance between you and the server.

Why does my ping spike randomly mid-match?

Random spikes usually come from one of three places: a background download triggering at a scheduled interval (Windows Update, Steam, game launchers), another device on your network starting a high-bandwidth activity, or packet loss at a specific routing hop between you and the server. Open Resource Monitor’s Network tab during a spike to check local bandwidth first. If that’s clean, run a continuous ping test with ping [server-IP] -t to isolate whether spikes are consistent or random.

Will a gaming router actually lower my ping?

The QoS features built into gaming routers (Fix 3) help when multiple devices share your connection. The hardware itself — a more expensive router — doesn’t reduce latency on its own. Your ISP’s routing quality and physical distance to servers are the binding constraints. A mid-range router with good QoS beats an expensive router with no QoS configuration in a busy household.

Sources

Michael R.
Michael R.

I've been playing video games for over 20 years, spanning everything from early PC titles to modern open-world games. I started Switchblade Gaming to publish the kind of accurate, well-researched guides I always wanted to find — built on primary sources, tested in-game, and kept up to date after patches. I currently focus on Minecraft and Pokémon GO.