Internet dropping specifically during gaming — latency spikes, packet loss, disconnects from the game server — while everything else on the network seems fine is a specific problem. It’s different from general internet instability. Gaming connections are unusually sensitive to consistency, and brief interruptions that you’d never notice during browsing cause visible stuttering, lag spikes, or full disconnects in online games. We go deeper on the whole subject in our Complete Guide to Fixing Windows, Browser, and Software Errors.
Important context before troubleshooting: is this happening on Wi-Fi or ethernet? Ethernet drops during gaming are rare and usually point at specific issues (driver, switch, cable). Wi-Fi drops during gaming are extremely common because gaming increases Wi-Fi usage patterns in ways that stress the connection. If you’re on Wi-Fi and experiencing this, switching to ethernet is the most reliable fix available — no software change competes with removing the wireless variable.
Confirm it’s actually your connection
Run a continuous ping during gameplay to isolate where drops are happening:
ping 8.8.8.8 -tKeep this running in a Command Prompt window while gaming. When a disconnect happens, look at the ping output. If you see “Request timed out” lines: your connection to the internet dropped. If the ping stays consistent but the game disconnects: the game server had an issue, or the game’s connection handling is the problem, not your internet.
Simultaneously run ping 192.168.1.1 -t (your router’s address). If router pings fail at the same time as internet pings: the problem is between your machine and the router — Wi-Fi signal, cable, adapter. If router pings stay consistent but internet pings drop: the problem is between the router and the ISP — router configuration, modem, or ISP instability.
Network adapter power management — the most common software culprit
Windows puts the network adapter into a low-power state during “idle” periods. Gaming generates very different network traffic patterns from regular browsing — bursts of game state data followed by brief pauses — and Windows sometimes misidentifies the pause periods as idle, cutting adapter power. The result is packet loss and connection drops specifically during the lull-burst pattern of game traffic.
Device Manager → Network Adapters → right-click your adapter → Properties → Power Management → uncheck “Allow the computer to turn off this device to save power.” For Wi-Fi: Control Panel → Power Options → Change plan settings → Change advanced power settings → Wireless Adapter Settings → Power Saving Mode → Maximum Performance. Apply both for ethernet and Wi-Fi adapters regardless of which you’re using — Windows sometimes manages both even when only one is active.
QoS and traffic prioritisation
Some routers prioritise certain types of traffic. If the router has QoS enabled and gaming traffic isn’t in a high-priority category, a large file download or video stream from another device on the network can starve the game’s connection. Even a 4 Mbps cloud backup can cause noticeable gaming lag if it’s being given the same bandwidth priority as the game’s latency-sensitive packets.
Router admin panel → QoS or Traffic Management settings. Enable gaming priority or add the gaming machine’s IP address to the high-priority list. Alternatively: pause cloud backups (OneDrive, Dropbox, Google Drive) while gaming. Pausing sync on those apps takes 5 seconds and immediately removes background bandwidth competition.
Driver and adapter settings
Network adapter drivers with bugs in power management or interrupt handling cause connection drops specifically under gaming loads. The gaming traffic pattern — high frequency small packets — exercises different code paths in the driver than normal web traffic, which is why the problem is gaming-specific.
Device Manager → right-click network adapter → Properties → Advanced tab:
- Interrupt Moderation Rate: try “Low” or “Off” for gaming — this increases CPU interrupt frequency but reduces the latency variation that causes lag spikes
- Receive Buffers / Transmit Buffers: increase to 512 or higher — larger buffers handle burst traffic better
- Flow Control: disable — Flow Control can introduce pauses in transmission that manifest as lag
Also download the latest driver from the manufacturer’s support page — not Windows Update. Gaming-specific improvements appear in NIC driver changelogs more often than in generic Windows drivers.
Wi-Fi-specific causes
If you’re on Wi-Fi and can’t use ethernet: the specifics matter. Gaming generates a consistent stream of small packets, which creates a stable Wi-Fi connection pattern. But if other devices on the same network are using Wi-Fi heavily (streaming 4K, downloading), they compete for airtime on the same access point and your gaming traffic gets queued — appearing as lag spikes.
Also: dual-band routers with automatic band steering sometimes shift the gaming device from 5 GHz to 2.4 GHz mid-session, causing a brief disconnection while the device reconnects on the new band. Fix: in the router settings, disable band steering and create separate 5 GHz and 2.4 GHz SSIDs. Connect the gaming machine specifically to the 5 GHz SSID and leave it there.
ISP peak hours and shared infrastructure
Cable internet is shared infrastructure. During evening peak hours (6–10 PM), the cable node serving your area may be congested enough that packet loss and latency increase specifically during heavy use periods. Gaming during these hours is more likely to drop than gaming at off-peak times.
Confirming this pattern: drops consistently worse in the evening? Run an hourly ping test over a few days (a simple PowerShell script that logs ping results to a file) and compare the times. If drops correlate with peak hours, the cause is ISP infrastructure — not your equipment. Report the pattern (with timestamps) to the ISP; they track congestion data and the report supports infrastructure upgrades.
For the Windows-side network performance improvements that complement gaming stability, our Ethernet performance guide covers NIC offload settings and TCP tuning that also reduce gaming latency. For router-side optimisation, our router disconnecting guide covers firmware updates and QoS configuration. Microsoft’s network adapter troubleshooting covers the RSS and interrupt coalescing settings that specifically affect gaming network performance under Windows 11.
Game-specific connection issues vs actual internet drops
Many games have their own connection stability metrics visible in-game: latency bars, ping displays, packet loss indicators. If these show instability while the ping command to 8.8.8.8 is stable, the issue is between your machine and the game server specifically — not your internet connection broadly. This could be a game server issue, poor routing to that specific server, or the game using a connection method (UDP on specific ports) that your network handles differently from general ICMP ping traffic.
Games that let you select server regions: switching to a geographically closer region reduces the routing distance and often improves stability. Even a closer server with slightly higher latency (5ms more) is often more stable than a distant server with lower listed latency because there are fewer hops and less routing variety involved.
Windows Defender Firewall and game connections
Windows Firewall occasionally blocks game-specific UDP traffic on ports the game uses for its connection. The game appears to connect (TCP for initial handshake) but then drops during gameplay when UDP game state traffic is blocked. This tends to produce a specific pattern: connect fine, play for 30–60 seconds, then disconnect.
Windows Security → Firewall and network protection → Allow an app through firewall → find the game executable → confirm both Private and Public network access are checked. For games with launchers (Steam, Epic, Battle.net): add both the launcher executable and the game executable. The launcher connects to auth servers; the game connects to game servers — both need firewall permission.
Antivirus scanning game network traffic
Security software that performs deep packet inspection can interfere with the UDP traffic pattern games use. It adds latency (tens of milliseconds per packet in some cases) and occasionally drops packets that don’t match expected HTTP/HTTPS patterns. Games using proprietary UDP protocols look unusual to inspection engines designed primarily for web traffic.
Most security suites have an option to exclude specific applications from deep inspection while still scanning files they access. Adding the game executable to this exclusion list reduces the inspection overhead without eliminating antivirus protection. Temporarily disabling deep inspection (not the full antivirus) and testing during gameplay confirms whether this is the cause.
Large Send Offload and gaming
Large Send Offload (LSO) is a NIC feature that bundles multiple packets together for more efficient transmission. For high-throughput data transfers, LSO is beneficial. For gaming — which uses frequent small packets where per-packet latency matters more than throughput — LSO can actually increase latency by waiting to bundle packets before sending.
Device Manager → Network Adapter → Advanced tab → Large Send Offload (IPv4) and Large Send Offload (IPv6) → try setting both to Disabled and test gaming performance. Some competitive gamers specifically disable LSO to reduce per-packet latency. The tradeoff is higher CPU usage for packet processing, which is usually negligible on modern CPUs.
TCP vs UDP and game protocol handling
Most game traffic uses UDP — it’s faster than TCP for latency-sensitive real-time data because it doesn’t require acknowledgment for each packet. Some home routers have quirks in their UDP handling that cause specific patterns of packet loss for UDP traffic while TCP (which most other internet traffic uses) is unaffected.
This manifests as gaming dropping while web browsing, streaming, and file downloads appear completely unaffected. Router firmware update is the typical fix for UDP handling bugs. Also check the router’s NAT type for gaming devices — Open NAT type provides the most reliable UDP connection handling. In the router settings, enabling UPnP (Universal Plug and Play) allows games to automatically configure the port forwarding they need for Open NAT, which often resolves connection drops that are caused by NAT traversal issues.
Checking for driver-level packet loss
Performance Monitor can show NIC-level packet statistics in real-time. Win + R → perfmon → right-click the graph area → Add Counters → Network Interface → Packets Received Errors and Packets Outbound Errors → add → observe during a gaming session. Any non-zero error counts during the session confirm the NIC or its driver is dropping packets before they even reach the game — a strong indicator that driver update or NIC settings adjustment is the correct fix path.
VPN and gaming connectivity
A VPN routes all traffic through its server — adding latency equal to the round trip to the VPN server before the game server is even reached. For competitive gaming, VPNs almost always make connection quality worse. Disconnect any VPN before gaming and test without it.
The exception: some ISPs throttle gaming traffic specifically (detected via deep packet inspection on their end). In this case, a gaming VPN that obscures the traffic type can prevent the throttling. Services like Mudfish or ExitLag are designed specifically for gaming routing rather than general VPN use and route only the game’s traffic through optimised paths rather than all traffic through a general VPN server.
After fixing the drops — preventing recurrence
The most common reason gaming drops recur after being fixed: a Windows Update reinstalls the generic NIC driver, reverting the power management and performance settings that were configured. Set a reminder after each Windows Update to check Device Manager for driver changes and reapply the performance settings if they’ve been reset. Some enthusiasts use tools like DDU (Display Driver Uninstaller) equivalent tools for NIC drivers to prevent Windows Update from reverting driver customisations, though this prevents important security patches too — the power management and advanced settings fixes are more practical than blocking driver updates entirely.
One pattern worth knowing: drops that happen specifically when transitioning between game areas (loading screens, entering new zones) are often the game itself, not the internet connection. The load transition requests a large burst of data from the game server, and if the connection can’t handle that burst cleanly, the connection drops during the peak load. The fix there is usually a more reliable connection (ethernet over Wi-Fi) or increasing the router’s buffer size for the gaming device, not the NIC adapter settings described above. Understanding whether drops happen randomly during gameplay or specifically at high-data moments tells you which layer to investigate.
If this all feels like a lot: start with ethernet instead of Wi-Fi, then power management, then the NIC Advanced settings. Those three changes resolve the majority of gaming-specific connection drops. Everything else is for persistent issues where the first three haven’t fully solved it, or where the dual-ping test confirmed the drops are happening at the router or ISP layer rather than the Windows adapter layer. If this sounds familiar, Router Dropping Connection is worth a look.
One last check specifically for people on cable internet: the modem signal levels. Log into the modem admin page (typically 192.168.100.1) during a gaming session → check the signal levels during normal play, and if possible during a drop. Upstream power above 48 dBmV or SNR (signal-to-noise ratio) below 30 dB indicates cable plant signal issues that cause exactly the intermittent UDP packet loss that manifests as gaming disconnects. These aren’t fixable from the home side — they require a cable technician visit. But knowing the modem signal levels before calling saves the technician time and gets the issue fixed faster. Our guide on How to Fix NAT Type Strict Windows covers an adjacent issue.







