What Is Packet Loss? Causes, Symptoms and How to Fix It for Gaming

Short answer

Packet loss is the percentage of the small data units your game sends and receives that never reach their destination. Because games use time-sensitive delivery rather than waiting for missing data to be resent, a lost packet becomes a gap in what the server knows about you — which is why loss produces rubber-banding, missed inputs and teleporting opponents rather than a simply slower game. Most of it starts inside your own home, and most of that is free to fix.

Educational guideNetworking fundamentalsVendor-neutral
17 min readReviewed Jul 2026TTML Editorial

This is chapter three of the Gaming Networking Learning Centre. If you have not read it yet, the cornerstone explainer What Is Game Route Optimization? covers how packets reach a game server in the first place, and Why Low Ping Can Still Feel Laggy explains why the number in your scoreboard hides most of this.

Disclosure: We may earn a commission if you purchase through links on this page. This never affects our reviews.

Definition

What is packet loss?

Everything your computer sends across the internet is chopped into small, individually addressed units called packets. A single movement update in a shooter might be a few dozen bytes; a voice transmission is a steady stream of small packets; a game patch is millions of them. Each packet travels independently, is handed from router to router, and is reassembled or interpreted at the far end.

Packet loss is the proportion of those packets that never arrive. It is expressed as a percentage of a sample — 0% over a thousand packets means every one was delivered, 2% means twenty went missing. Nothing about the internet guarantees delivery at the packet level. Routers are permitted to discard packets when a queue is full, when a link is degraded, or when a device decides some traffic matters less than other traffic. That is not a bug; it is the design, and higher layers of software are expected to cope with it.

The reason packet loss matters so much more in games than in the rest of your internet use is that games choose not to cope with it in the usual way. A web page that loses a packet simply waits a few milliseconds for a copy. A game cannot afford to wait, because by the time the copy arrives the moment it described is already in the past.

In plain English
Imagine describing a football match to a friend by shouting one short sentence every sixteenth of a second. Most sentences get through. Occasionally the wind swallows one. Your friend does not ask you to repeat it — they guess what happened, and when the next sentence contradicts the guess, they have to correct themselves suddenly. That correction is what rubber-banding looks like.
The technical detail
Games predominantly use UDP datagrams carrying delta-encoded state at a fixed send rate. Loss removes a delta from the stream. The client continues extrapolating from its last known state and reconciles against the next authoritative snapshot it receives, which produces a visible correction proportional to how far prediction drifted during the gap. Loss is therefore experienced as a discontinuity, not as added latency.
Packet loss
ClientServerlostlost
Ten packets sent from client to server. Two never arrive — that is packet loss, measured as a percentage over a sample window.
Fundamentals

How packet delivery actually works

When your game has something to tell the server — you moved, you fired, you changed weapon — it builds a small message, wraps it in addressing information, and hands it to your operating system. Your network adapter puts it on the wire or into the air. Your router forwards it to your ISP. From there it crosses a sequence of routers, each of which reads the destination address, consults its routing table, and passes the packet to the next device it believes is closer to the target.

No single device is responsible for the whole journey, and no device holds a copy once it has forwarded the packet on. Each hop has finite capacity: an input queue, an output queue and a scheduling policy. When a queue is full, the router has exactly two options — delay the packet or discard it. Both happen constantly across the internet, and both are invisible to you unless you measure them.

How a game packet reaches the server
Outbound pathYour PCpacket createdHome routerlast mileISP networkaccess + coreTransit routepeering hopsGame serverThe return path is measured separately and is frequently not the same sequence of networks.
Every state update your game sends crosses your own network, your ISP, one or more transit networks and finally the datacentre hosting the match. A packet can be dropped at any of these stages.

The behaviour that follows a discard depends on which transport protocol is in use. TCP, which carries web pages, downloads and most of the launcher and matchmaking traffic around a game, is reliable and ordered. The receiver acknowledges what it has received; the sender notices a missing acknowledgement, waits for a retransmission timeout or infers loss from duplicate acknowledgements, and resends the data. Nothing is ever lost from a TCP stream — but everything queued behind the missing segment waits for it, which is why a lossy connection makes a download feel like it stalls in bursts.

UDP, which carries the actual gameplay traffic in almost every real-time title, makes no such promises. There are no acknowledgements, no ordering guarantees and no retransmission. If a datagram is dropped, it is gone. That sounds worse and is usually better: a positional update from 80 ms ago has no value once a newer one exists, so resending it would waste time and bandwidth to deliver stale information.

TCP retransmission versus UDP delivery under packet loss
TCP — reliable, orderedresent — costs a full round triplater data waits in orderUDP — time-sensitive, no resendgap — state corrected on the next update
TCP notices the gap and resends the missing data, which costs at least one extra round trip and delays everything queued behind it. UDP carries on, so a real-time game keeps moving with a small hole in its state — which is usually the better trade for gameplay.

In practice most engines run a hybrid. Critical events — you picked up an item, the round ended, you died — are sent with a lightweight reliability layer built on top of UDP, so they are acknowledged and resent if necessary. High-frequency positional state is sent unreliably, because the next update supersedes it anyway. This is why loss can affect games so unevenly: two titles on the same connection with the same loss percentage can feel completely different depending on how much of their traffic is protected and how aggressively they predict.

It also explains a pattern many players notice. Voice chat degrades before movement does, because a codec has no way to invent the missing audio. Movement degrades before scoreboards do, because scoreboards are reliable traffic that simply arrives a moment late. The same underlying loss produces different symptoms in different subsystems.

Symptoms

What packet loss looks like in games

Packet loss rarely announces itself. Games are deliberately built to conceal it, and they succeed often enough that players attribute the residue to their own reactions, their hardware, or the other player's connection. The signatures below are the ones worth taking seriously — with the caveat that every one of them has more than one possible cause.

Rubber-banding

You move forward and are snapped back. Your outbound updates are not reaching the server, so its authoritative position for you never advanced.

Delayed or missed inputs

A shot, ability or jump that clearly registered locally never happens in the world. The packet describing it was dropped and, if it was unreliable traffic, never resent.

Teleporting opponents

Other players jump between positions instead of moving smoothly. You are missing the inbound updates that would have filled the space between.

Hit registration that feels wrong

Shots that looked accurate do not count. Loss can contribute, but tick rate, interpolation and lag compensation design contribute at least as much — do not assume loss without measuring.

Voice chat breaking up

The most sensitive early warning in most games. Audio codecs cannot hide a gap, so loss becomes audible before it becomes visible.

Disconnects and time-outs

Sustained heavy loss eventually breaks the connection entirely, because the client and server stop hearing from each other for longer than the time-out window.

Stalled matchmaking or loading

Lobby and matchmaking traffic is usually reliable, so loss shows up as long pauses and retries rather than as gameplay artefacts.

Inconsistent movement

Movement that stutters at irregular intervals while your frame rate stays perfectly smooth. If frametimes are clean and movement is not, look at the network.

Rubber banding position correction
last confirmed positionclient sees itself hereserver snaps player back
Client moves forward while outbound packets are lost. The server never receives the movement, so it snaps the client back to its last confirmed position.

A useful discipline: separate what happens on your screen from what happens in the world. If your character animates smoothly and the world does not respond, that points at outbound loss. If your own actions land reliably and other players behave erratically, that points at inbound loss or at their connection. If everything is uniformly late but consistent, you are looking at latency, not loss — and the guide for that is why is my ping so high.

Causes

Where packet loss actually comes from

Every cause of packet loss sits in one of three zones, and knowing which zone you are in determines everything about what to do next. In our experience of reader reports, the great majority of gaming packet loss originates in the first zone — the part players control and rarely test properly.

Three zones where packet loss originates
LocalWi-Fi / cablingRouter queueyou can fix thisISP and routeAccess congestionTransit / peeringevidence, then escalateServer sideGame server loadDDoS filteringoutside your control
Loss inside your home is yours to fix. Loss inside the ISP or transit path needs evidence and escalation, and is the only category a routing product can sometimes route around. Loss at the game server is outside everyone's control but the publisher's.

Local network. Wi-Fi is the dominant cause. A wireless link shares airtime with every neighbouring network on the same channel, retransmits corrupted frames automatically, and gives up when retransmission fails. Interference from other 2.4 GHz devices, distance from the access point, walls, and the sheer density of networks in apartment buildings all reduce delivery reliability in ways no speed test will reveal. Beyond Wi-Fi: damaged or cheap Ethernet cabling, a failing port, an overheating or long-uptime router with an exhausted connection table, saturated uploads from cloud sync or streaming, and network adapter drivers with aggressive power management.

ISP and routing. Beyond your router, capacity is shared with everyone around you. Local access networks are contended, and evening peaks can push a segment past the point where queues absorb the load. Further out, your ISP hands your traffic to other networks at peering points and via transit providers; an under-provisioned interconnect drops packets exactly when everybody wants to use it. Routing changes can move your traffic onto a longer or busier path overnight with no warning. And some loss is a plain line fault — water in a joint, a degraded drop cable, a failing line card — which no configuration change will address.

Server side. Your packets can arrive at the destination network and still not be processed. An overloaded game server, a datacentre incident, or DDoS mitigation filtering traffic during an attack all produce behaviour indistinguishable from network loss on your side. The distinguishing evidence is other players: if the whole lobby is affected simultaneously and your own path measurements look unremarkable, the problem is not yours.

Causes of packet loss grouped by layer, with the pattern each one produces and who is responsible for fixing it
LayerCausePattern you will seeWho fixes it
Local networkWeak or congested Wi-Fi, 2.4 GHz interference, distance from the access pointLoss appears on Wi-Fi and disappears entirely over EthernetYours to fix, usually in minutes
Local networkDamaged, kinked or cheap Ethernet cabling, or a failing portLoss follows the cable when you swap it between devicesYours to fix
Local networkOverloaded or overheating router, exhausted NAT table, ageing firmwareLoss builds over days of uptime and clears after a restartYours to fix
Local networkA saturated upload — cloud sync, a stream, a console updateLoss and latency spike together whenever the line is busyYours to fix
Local networkOutdated or misbehaving network adapter drivers, aggressive power savingLoss on one machine only, with the rest of the house unaffectedYours to fix
ISP and routingContention in the local access network at peak hoursClean at 2pm, lossy at 9pm, every eveningEvidence and escalation
ISP and routingA congested peering point or an under-provisioned transit linkLoss starts at a specific hop and continues to the destinationEscalation, or routing around it
ISP and routingA routing change that sends your traffic a longer or busier wayLatency and loss both change overnight with no local changeEscalation, or routing around it
ISP and routingA physical line fault: water ingress, a degraded drop cable, a failing line cardLoss is persistent, worsens in wet weather, and is visible at hop one or twoISP engineer visit — nothing else will fix it
Server sideThe game server is overloaded or falling behind its tick scheduleEveryone in the lobby reports the same problem simultaneouslyChange region, or wait
Server sideDDoS mitigation filtering or rate-limiting traffic during an attackSudden, widespread, and often acknowledged on the status pageOutside your control
Server sideA platform or datacentre incident affecting one regionRegional, correlated with a published incidentOutside your control
Comparison

Packet loss vs latency vs jitter

These three metrics are routinely used interchangeably and are not interchangeable at all. They describe different failures, are measured differently, and have different fixes. A connection can be excellent on two of them and unusable on the third.

Packet loss, latency and jitter compared by definition, symptoms, measurement, causes and fixes
MetricDefinitionSymptomsHow it is measuredLikely causesTypical fixes
Packet lossThe percentage of packets that never arriveRubber-banding, teleporting players, missed inputs, voice dropoutsSustained ping test, in-game netgraph, traceroute or pathpingWi-Fi, damaged cabling, saturated links, congested transit, server loadWire the PC, clear congestion, escalate with evidence
Latency (ping)How long one round trip takesEverything happens slightly late, but consistentlyPing to the region you actually play inPhysical distance, number of hops, route qualityCloser server region, shorter path, better routing
JitterHow much latency varies between packetsInconsistent duels, prediction errors, uneven movementStandard deviation across several hundred packetsWi-Fi retransmission, bufferbloat, unstable transitEthernet, smart queue management, route stability

The reason this distinction matters commercially as well as technically is that products are sold against latency while most complaints are actually about loss and jitter. A shorter path genuinely reduces latency. Whether it reduces loss depends entirely on where the loss is happening — which is the subject of the rest of this article. Jitter has its own full treatment in what is jitter.

Measurement

How to test for packet loss

Testing badly is worse than not testing, because it produces confident conclusions from insufficient data. Four ping packets to a search engine at midday tells you nothing about your evening experience against a game server three networks away. The principles below matter more than the specific tool.

Start with the game's own network statistics. Most competitive titles expose a netgraph or connection overlay showing loss percentage against the actual server you are connected to. This is the most relevant measurement available, because it counts the real traffic on the real path. Its weakness is that it disappears when you leave the match, so record what you see.

Run a sustained ping, not a default one. A continuous test of several hundred packets against a stable address in the region you play in will report loss alongside minimum, average and maximum round-trip time. On Windows this means adding a count or continuous flag to the ping command; on macOS and Linux the default is already continuous. Let it run for at least ten minutes, and let it run while you are actually playing.

Use a trace to localise it. A traceroute shows the sequence of routers between you and the destination. It is a snapshot, and a snapshot is not enough to judge loss, but it tells you the shape of the path and where the latency steps occur. Our walkthrough is how to run a traceroute for gaming.

Use a per-hop loss tool for evidence. Windows includes pathping, which sends many probes to every hop and reports loss per hop; MTR is the equivalent on macOS and Linux and is what most network engineers will ask for. These are the tools that turn "my game feels bad" into something an ISP can act on, because they show where loss begins and whether it persists.

Check the router's own diagnostics. Most routers expose error counters, line statistics and wireless retry rates. Rising error counts, a poor signal-to-noise margin, or a high wireless retransmission rate localise the problem immediately, before you touch anything else.

Analysis

How to interpret your results

Raw numbers mislead more often than they inform. What matters is the pattern: where the loss starts, whether it continues, when it appears, and what else was happening at the time.

Loss at the first hop — your own router — is unambiguous. Nothing outside your home is involved, so the cause is Wi-Fi, cabling, a port, the router itself, or local saturation. This is good news: it is the cheapest category to fix.

Loss at an intermediate hop only, with clean hops after it, is the single most misread result in networking. Routers commonly deprioritise or rate-limit packets addressed to themselves in favour of forwarding real traffic, so a hop can report 100% loss while passing your game data flawlessly. If the destination is clean, the path is fine.

Why one hop reporting loss can be harmless
1Router0% loss2ISP0% loss3Core100% loss4Transit0% loss5Peering0% loss6Server0% lossICMP deprioritised, not dropped trafficdestination clean — path is fine
Hop 3 reports 100% loss, yet every hop after it responds normally. That pattern means the router is deprioritising the probes addressed to itself, not dropping the traffic passing through it. Loss only matters when it starts at a hop and continues to the destination.

Loss that begins at a hop and continues to the destination is the pattern that matters. That is consistent with a genuine problem at or beyond that point, and it is the evidence worth collecting and escalating. Even then, confirm it across multiple runs at different times before drawing conclusions.

Loss only at the final destination can mean the server is dropping or filtering probes rather than losing your game traffic. Many game servers do not respond to ICMP at all. Prefer the in-game loss counter over a ping to the server address when they disagree.

Intermittent versus persistent loss points at different causes. Bursts that correlate with the evening, or with someone else in the house doing something, are congestion. Steady, unchanging loss regardless of time or load is more consistent with a hardware or line fault. Weather-correlated loss on a copper line is a classic physical fault signature.

Upstream versus downstream is worth separating. Upload capacity is typically far smaller than download capacity, so a single cloud backup or stream can saturate it while a speed test still reports a fast connection. Loss that appears whenever you upload anything, and vanishes when you stop, is your own line — and queue management, not more bandwidth, is the fix. Bufferbloat is the related phenomenon and is covered in the advanced bufferbloat guide.

Troubleshooting

The diagnostic sequence

Work through these in order. Each question eliminates an entire zone, which is what stops you replacing hardware or buying software for a problem in a different layer.

  1. Step 1

    Do you still see loss over Ethernet?

    If yes. The problem is not Wi-Fi. Continue to the next question.

    If no. Wi-Fi was your packet loss. Stay wired, or fix the wireless environment before spending anything.

  2. Step 2

    Does loss appear when pinging your own router for several minutes?

    If yes. The fault is inside your home: cabling, a port, the router itself, or an overloaded local link.

    If no. Your local network is delivering cleanly. The loss is further upstream.

  3. Step 3

    Does loss disappear when nothing else is using the connection?

    If yes. You are saturating your own line. Queue management and upload control solve this without new hardware.

    If no. Congestion at home is ruled out. Move on to the path itself.

  4. Step 4

    Does a long trace show loss starting at one hop and continuing to the destination?

    If yes. That is real path loss. Record it with timestamps and escalate — and this is the one scenario where routing products are relevant.

    If no. Isolated loss at a single intermediate hop with clean hops after it is almost always ICMP deprioritisation, not a fault.

  5. Step 5

    Do other players in the same lobby report identical behaviour?

    If yes. The server or its region is the limiter. Change region or wait for the publisher.

    If no. The remaining variables are your line and the specific path to that datacentre.

If you prefer a lookup table to a sequence, the pattern you are seeing is probably in the list below, along with the test that confirms it and the action that follows.

SymptomLikely causeHow to testPossible fix
Loss appears only when you play wirelesslyWi-Fi retransmission, interference or a weak signalRun the same sustained ping over Ethernet and compare loss directlyWire the machine, or move to 5 GHz with a clear channel if wiring is impossible
Loss and latency both spike when someone uploadsA saturated upstream link and an unmanaged router queueMeasure latency and loss with the line idle, then during a large uploadEnable smart queue management (SQM, fq_codel or CAKE) and cap the offending device
Loss is present on every device in the houseThe router, the modem or the line itselfPing the router's own address for several minutes, then the first ISP hopRestart and update the router, swap cabling, then report line statistics to the ISP
Loss only between 7pm and 11pmPeak-hour congestion in the access network or at a peering pointIdentical tests at 2pm and 9pm on several consecutive daysDocument the pattern for the ISP; routing products are the fallback, not the first move
Loss begins at an intermediate hop and continues to the serverA genuinely congested or faulty hop on the transit pathA long pathping or MTR run, not a single traceroute snapshotEscalate with the trace attached; a route optimizer may bypass the segment
One game only, everything else cleanThat title's server region, netcode or a platform incidentTest a second region and check the publisher's status pageChange region if practical; otherwise there is nothing to fix locally
Practical

Fixes ranked by likely impact

Ordered by how often each one resolves the problem in practice, and free before paid. Re-measure after every step; a fix you cannot demonstrate is a fix you cannot trust.

  • Move the gaming machine from Wi-Fi to Ethernet and retest — this alone resolves a large share of cases.
  • Restart the router, then check for and apply a firmware update.
  • Stop competing uploads and downloads: cloud sync, game updates, backups, streams and uploads from other devices.
  • Enable smart queue management (SQM, fq_codel or CAKE) if the router supports it, so a busy line stops dropping game traffic.
  • Replace the Ethernet cable with a known-good one and try a different port on the router.
  • Test with a different router or by connecting a device directly to the modem, to rule the router in or out.
  • Update the network adapter driver and disable aggressive power-saving on the interface.
  • If loss persists on a wired connection with the line idle, collect timestamped evidence and open an ISP fault, quoting the per-hop results.
  • Try a different official server region to establish whether the problem follows the path or the destination.
  • Only when a path fault is confirmed and the ISP cannot resolve it, evaluate route optimization — and judge it on your own before-and-after numbers.

Two notes on that order. First, the wired test is not optional: nearly every subsequent step is uninterpretable while Wi-Fi is still in the picture. Second, contacting the ISP is far more productive with evidence than without it. Support scripts exist to filter out unsubstantiated complaints, and a per-hop loss report with timestamps skips several tiers of that script. The broader router and network playbook is how to optimise your gaming network, and the practical loss-reduction walkthrough is how to reduce packet loss in games.

Honest assessment

Can a game route optimizer fix packet loss?

Sometimes, in a specific and fairly narrow set of circumstances. The mechanism is worth understanding before deciding, because it tells you immediately whether your case qualifies. A routing product sends your game traffic through its own network of servers instead of leaving path selection to the public internet. If the segment losing your packets is one that the alternative path avoids, the loss you experience can genuinely fall. Some products additionally send duplicate copies of packets over separate routes, so an isolated drop on one path is covered by the copy on the other — at the cost of extra bandwidth, and with no benefit if both paths share the congested segment.

It may help when loss is caused by: unstable or flapping routing, congested transit links, a poor peering relationship between your ISP and the game's host, awkward international paths where the default route takes a long way round, or a specific problem hop that the alternative path does not traverse.

It cannot repair: weak or interference-ridden Wi-Fi, damaged cabling, a failing router, a home network saturated by your own uploads, a game server that is overloaded or under attack, or a fault on your ISP line before the optimized route even begins. In all of those cases your packets are already lost before the product's network sees them, and adding a hop can make results marginally worse.

The honest summary is that route optimization is a targeted tool for a transit-path problem, not a general remedy for a bad connection. If your own diagnostics have not identified loss that begins outside your network and persists to the destination, the category has nothing to work with. If they have, a trial with before-and-after measurements is a reasonable next step — and the measurements, not the marketing, should decide it.

The mechanics of alternative routing are covered in the cornerstone, what is game route optimization. If you reach the point of evaluating products, our comparison of the category is best gaming network boosters, the category distinction is set out in gaming VPN vs gaming route optimizer, and the packet-duplication approach specifically is examined in our ExitLag review.

Caveats

Limitations and common misconceptions

More bandwidth fixes packet loss

It does not, unless you were saturating your line. Games use very little bandwidth; upgrading a package that was never the constraint changes nothing.

Any loss in a traceroute is a fault

Intermediate hops routinely deprioritise probes addressed to them. Loss only counts when it continues to the destination.

Zero loss means a perfect connection

Loss, latency and jitter are independent. A connection with no loss can still be unplayable because of variance.

Packet loss explains every bad game

Netcode, tick rate, interpolation, matchmaking region and frame pacing all shape how a game feels. Measure before attributing.

A VPN always reduces loss

It changes the path and adds overhead. That helps only when the original path was the problem.

Restarting the router is a real fix

It is a diagnostic. If loss returns days later, something is degrading — find out what rather than restarting weekly.

One further limitation applies to this entire article. Game behaviour under loss varies by engine, netcode and server design. A title with generous client-side prediction and a wide lag compensation window can absorb loss that would make a stricter, server-authoritative title unplayable. Comparing your experience in one game to a friend's experience in another, at the same loss percentage, is not a meaningful comparison.

Summary

Key takeaways

  1. 1Packet loss is data that never arrives, not data that arrives late — a different failure from latency and jitter.
  2. 2Games use time-sensitive delivery for gameplay traffic, so lost updates are not resent; the client corrects instead, which you see as rubber-banding.
  3. 31% loss is enough to feel in a fast competitive title, and it never appears in your ping average.
  4. 4Most gaming packet loss starts inside the home, and Wi-Fi is the single most common cause.
  5. 5A wired test is the first diagnostic; without it, everything after it is uninterpretable.
  6. 6One hop showing loss with clean hops after it is normal probe deprioritisation, not a fault.
  7. 7Loss that starts at a hop and continues to the destination is the pattern worth escalating, with timestamped evidence.
  8. 8Route optimization can help with transit-path loss and cannot repair local hardware, home congestion or server-side problems.
  9. 9Symptoms overlap heavily between loss, jitter, tick rate and rendering — measure before you conclude.
FAQ

Packet loss questions, answered directly

Is 1% packet loss bad for gaming?
It is enough to notice in a fast-paced competitive title. At 60 updates per second, 1% loss means roughly one missing state update every one and a half seconds, and those gaps tend to cluster rather than spread evenly. For turn-based or slower games it is usually irrelevant. As a practical target, sustained loss to your game region should be 0%, and anything consistently above 1% is worth investigating.
Is 2% packet loss noticeable?
In most action games, yes. At 2% you will typically see occasional position corrections, brief unresponsive moments and voice-chat artefacts. Whether it feels catastrophic depends on the game's netcode: titles with generous client-side prediction hide loss better than those that rely on frequent authoritative corrections.
Can packet loss cause lag?
It causes something players describe as lag, though the mechanism differs from high latency. With loss, the data is not late — it is gone. For TCP traffic the missing data is resent, which adds at least one round trip of real delay. For a game's UDP traffic there is no resend, so the client runs on a stale picture until the next update arrives, which feels like a freeze followed by a jump.
Can packet loss cause rubber-banding?
It is one of the most common causes. If your movement updates never reach the server, the server keeps simulating you at your last confirmed position and eventually corrects the client, which snaps you backwards. Rubber-banding can also be produced by severe jitter or an overloaded server, so loss should be confirmed by measurement rather than assumed.
Can packet loss affect hit registration?
It can contribute, but it is not the only explanation and often not the main one. Hit registration depends on the server's reconciliation of your reported shot against its own history, which is affected by tick rate, interpolation, lag compensation windows and engine design as well as by loss. Treat poor hit registration as a symptom to investigate, not as proof of packet loss.
Why do I have packet loss with fast internet?
Bandwidth and reliability are different properties. A gigabit line can drop packets because of a bad Wi-Fi link, a damaged cable, an overloaded router queue or congestion on a transit network far from your house. Games need only a few hundred kilobits per second; what they need is consistent delivery, which no amount of headline speed guarantees.
Can Wi-Fi cause packet loss?
Yes, and it is the single most common cause in home networks. Wireless links share airtime with neighbours, suffer interference from other devices, and retransmit corrupted frames invisibly. When retransmission fails, the packet is lost. Testing over Ethernet is the fastest way to rule this in or out.
Can an Ethernet cable cause packet loss?
It can. A crushed, kinked, poorly terminated or very long run can produce errors that show up as loss, and so can a failing port on the router or the PC. Swapping in a known-good cable and trying a different port is a two-minute test that regularly resolves problems people had blamed on their ISP.
Can my ISP fix packet loss?
When the loss originates inside their network or on your line, yes — but they need evidence. Timestamped sustained ping results and traces showing loss beginning at a hop they operate are far more effective than a description of how the game felt. Loss caused by your Wi-Fi or your own congestion is not something they can act on.
Does a VPN fix packet loss?
Sometimes, and by accident rather than design. If the loss is caused by a specific congested segment of the public path, tunnelling through a different network can avoid it. A VPN adds encryption overhead and at least one extra hop, so if the loss is local — Wi-Fi, cabling, your own router — it will make things slightly worse, not better.
Can a game route optimizer reduce packet loss?
It can when the loss is genuinely in transit: an unstable route, a congested peering point or a poor international path. Some products also send duplicate packets over separate routes, which conceals isolated drops at the cost of extra bandwidth. None of that repairs loss occurring on your own network or at the game server.
Why does packet loss happen only at night?
Because that is when the network is busiest. Contention in the local access network and congestion at peering points peak in the evening, and links that have just enough capacity at midday begin queueing and dropping packets at 9pm. A clean daytime test and a lossy evening test on the same path is strong evidence of congestion rather than a fault.
Why does one traceroute hop show 100% loss?
Almost always because that router deprioritises or rate-limits the probe packets addressed directly to it, while forwarding your real traffic normally. The give-away is that the hops after it respond cleanly. Loss only indicates a problem when it begins at a hop and persists all the way to the destination.
Is packet loss the same as ping?
No. Ping measures how long the packets that arrive took to make the round trip. Packet loss counts the packets that never arrived at all — they are simply absent from the average. A connection can show an excellent ping and still be dropping traffic, which is exactly why both numbers need to be recorded together.
Is packet loss the same as jitter?
No. Jitter is variation in the arrival timing of packets that do arrive; loss is the complete absence of some packets. They frequently share a root cause — a congested queue produces both — but they are measured separately and can occur independently.
Can DNS cause packet loss?
Not in the sense people usually mean. DNS resolves names to addresses before a connection starts; once you are in a match, it is not involved in packet delivery. Slow or failing DNS can delay launching a game or connecting to a service, but it will not cause loss mid-game, and changing DNS provider is not a packet-loss fix.
Can game servers cause packet loss?
Yes. An overloaded instance, aggressive DDoS filtering, or a datacentre incident can all mean your packets arrive at the destination network and are still not processed. The diagnostic signal is that the whole lobby is affected at once while your own measurements to that region look ordinary.
How long should a packet loss test run?
Long enough to capture the behaviour you are complaining about. A four-packet default test proves nothing. Several hundred packets over at least ten minutes, run during your worst play hour rather than a quiet afternoon, is the minimum for a result worth acting on.
Definitions

Terms used in this chapter

Each links to its definition in the gaming networking glossary.