Потеря пакетов
Embed This Widget
Add the script tag and a data attribute to embed this widget.
Embed via iframe for maximum compatibility.
<iframe src="https://ipfyi.com/iframe/glossary/packet-loss/" width="420" height="400" frameborder="0" style="border:0;border-radius:10px;max-width:100%" loading="lazy"></iframe>
Paste this URL in WordPress, Medium, or any oEmbed-compatible platform.
https://ipfyi.com/glossary/packet-loss/
Add a dynamic SVG badge to your README or docs.
[](https://ipfyi.com/glossary/packet-loss/)
Use the native HTML custom element.
Определение
Доля пакетов данных, не достигающих места назначения, обычно вызванная перегрузкой сети, неисправным оборудованием или беспроводными помехами. Даже 1–2% потери пакетов могут заметно ухудшить качество голоса и видео.
What Causes Packets to Disappear
Packets are discarded when a RouterA network device that forwards data packets between different networks by examining destination IP addresses and consulting its routing table. Routers operate at Layer 3 (Network) of the OSI model. or switch output queue fills to capacity — the buffer overflow condition known as tail-drop. This is the most common cause of packet loss on congested paths. Hardware errors on wireless links, damaged cables, or failing transceivers cause random bit errors that fail CRC checks, triggering silent discard. Misconfigured FirewallA network security device or software that monitors and filters incoming and outgoing traffic based on predefined rules. Firewalls can block traffic by IP address, port number, protocol, or application-layer content. rules or broken NATNetwork Address Translation. A method of remapping private IP addresses to a single public IP address (and vice versa) at a router, allowing multiple devices to share one public IP. A key technique for mitigating IPv4 address exhaustion. entries silently drop packets that match no forwarding rule. BGP HijackAn attack or misconfiguration where a network falsely announces ownership of IP prefixes it does not control, causing internet traffic to be rerouted through the attacker's network. Can be used for surveillance, traffic interception, or denial of service. or routing loops cause packets to circulate until their TTL (Time to Live)A field in an IP packet header that limits the packet's lifespan by specifying the maximum number of hops it can traverse. Each router decrements the TTL by one; when it reaches zero, the packet is discarded to prevent routing loops. expires and they are discarded with an ICMP Time Exceeded message.
How TCP and UDP Respond Differently
TCPTransmission Control Protocol. A reliable, connection-oriented transport protocol that guarantees ordered, error-checked delivery of data through three-way handshakes, acknowledgments, and retransmission. The foundation of HTTP, SSH, and most internet services. detects packet loss through timeout or duplicate ACK detection and retransmits the missing segment. The congestion control algorithm then reduces the sending window, cutting ThroughputThe actual rate of successful data transfer over a network, measured in bits per second. Unlike bandwidth (theoretical maximum), throughput reflects real-world performance after accounting for latency, packet loss, and protocol overhead. dramatically even for small loss rates — 1% packet loss can reduce TCP throughput by 50% or more on a high-LatencyThe time delay for a data packet to travel from source to destination, typically measured in milliseconds (ms). Lower latency is critical for real-time applications like video calls, gaming, and financial trading. path. UDPUser Datagram Protocol. A connectionless transport protocol that sends datagrams without establishing a connection or guaranteeing delivery. Faster than TCP, it is preferred for real-time applications like DNS queries, VoIP, gaming, and streaming. has no built-in recovery; applications built on UDP such as VoIP and video conferencing must implement their own loss concealment or accept degraded quality.
Detecting and Locating Loss
Ping Test sends multiple ICMPInternet Control Message Protocol. A network-layer protocol used for diagnostic and error-reporting purposes. Ping (echo request/reply) and traceroute both rely on ICMP messages. packets and reports the percentage that received no reply — a direct packet-loss measurement. Comparing loss at each HopOne segment of a network path between a source and destination, representing the passage of a packet through a single router or intermediate device. The total number of hops affects latency and is visible via traceroute. using TracerouteA network diagnostic tool that maps the path packets take from source to destination by sending probes with incrementing TTL values. Each responding router reveals one hop in the route, along with its latency. isolates whether loss occurs at a specific router or is end-to-end. Loss only at intermediate hops with no end-to-end loss typically means that router rate-limits ICMP, not genuine packet loss in the path.