Questions tagged [packetloss]

Packet loss occurs when one or more packets of data travelling across a computer network fail to reach their destination.

Packet loss occurs when one or more packets of data travelling across a computer network fail to reach their destination.

Packet loss is distinguished as one of the three main error types encountered in digital communications; the other two being bit error and spurious packets caused due to noise.

Packet loss can be caused by a number of factors including signal degradation over the network medium due to multi-path fading, packet drop because of channel congestion, corrupted packets rejected in-transit, faulty networking hardware, faulty network drivers or normal routing routines (such as DSR in ad-hoc networks).

When caused by network problems, lost or dropped packets can result in highly noticeable performance issues or jitter with streaming technologies, voice over IP, online gaming and videoconferencing, and will affect all other network applications to a degree. However, it is important to note that packet loss does not always indicate a problem. If the latency and the packet loss at the destination hop are acceptable then the hops prior to that one don't matter.

Some network transport protocols such as TCP provide for reliable delivery of packets. In the event of packet loss, the receiver asks for retransmission or the sender automatically resends any segments that have not been acknowledged. Although TCP can recover from packet loss, retransmitting missing packets causes the throughput of the connection to decrease. This drop in throughput is due to the sliding window protocols used for acknowledgment of received packets. In certain variants of TCP, if a transmitted packet is lost, it will be re-sent along with every packet that had been sent after it. This retransmission causes the overall throughput of the connection to drop.

Protocols such as UDP provide no recovery for lost packets. Applications that use UDP are expected to define their own mechanisms for handling packet loss.

123 questions
4
votes
0 answers

Troubleshooting Packet Loss on pfSense + Ubiquiti UniFi (Wireshark maybe?)

I'm dealing with an annoying situation in a small network in my church, which I'm the primary volunteer IT caretaker, of about 20 PCs, give-or-take. We're in Chattanooga, home of Gigabit internet, so we have plenty of bandwidth (100mb connection).…
David W
  • 3,453
  • 5
  • 36
  • 62
4
votes
1 answer

Analysing incoming TCP packet discards on GNU/Linux

I use Ubntu 12.04 Server as a gateway/router. The server has two NetXtreme BCM5721 Gigabit Ethernet PCI Express cards for LAN and WAN interfaces. Opennms monitoring software shows incoming packet discards on the WAN (ISP) interface. The ISP…
nixnotwin
  • 1,543
  • 5
  • 35
  • 55
4
votes
2 answers

unexplainable packet drops with 5 ethernet NICs and low traffic on Ubuntu

I'm stuck on problem where my machine started to drops packets with no sign of ANY system load or high interrupt usage after an upgrade to Ubuntu 12.04. My server is a network monitoring sensor, running Ubuntu LTS 12.04, it passively collects…
jon
  • 181
  • 2
  • 9
4
votes
0 answers

Need help troubleshooting periodic wireguard packet loss

I have a VPN server with Wireguard and OpenVPN on it. Most of my tunnels are OpenVPN, but I am working on transitioning over to Wireguard. The Wireguard server is at a main location, and I have 3 clients the same remote site. Two have a Wireguard…
Zoredache
  • 130,897
  • 41
  • 276
  • 420
3
votes
1 answer

Packets drop in a Linux node

I've run dropwatch and this is the result I got: dropwatch> start Enabling monitoring... Kernel monitoring activated. Issue Ctrl-C to stop monitoring 39 drops at tcp_rcv_state_process+1b6 (0xffffffff815eeda6) 36 drops at sk_stream_kill_queues+50…
Mazzy
  • 227
  • 3
  • 11
3
votes
2 answers

constant packet loss in internal ESXI network

I am new to Vmware Esxi and im doing testing for an experiment with an Vmware ESXI 6.0.0 server. on the server there is two Ubuntu guest clients with one VMXNET3 each, both on the same Vswitch. Upon doing an IPerf3 from Ubuntu A to Ubuntu B with the…
3
votes
2 answers

OSX how to drop packets randomly

I am testing the resilience of one of our streaming applications to handle packet losses. On linux machines I normally use iptables to randomly drop packets like this: iptables -A INPUT -m statistic --mode random --probability 0.1 -j DROP I need to…
Andy
  • 163
  • 8
3
votes
1 answer

Track Source IP of dropped packets

I've got a Linux server running CentOS 7, and I've been facing an issue where the RX dropped packet count keeps increasing. I believe it may be caused by a faulty cable/connector in the network; however, I have no means of checking every connection…
3
votes
2 answers

How to anticipate spanning-tree changes to prevent packet loss during convergence?

We have a LAN with Cisco switches, redundant cabling and spanning tree. If I understand it correctly, when I pull out a redundant cable (that is currently "used" by the spanning tree) it takes several seconds until the spanning tree converges in…
Hagen von Eitzen
  • 824
  • 3
  • 17
  • 43
3
votes
1 answer

Forward Error Correction for WAN optimization

Anyone know of user-space tools providing forward error correction with/for tunnelling a stream over UDP on Linux? I found Trafficsqueezer, utunnel and toutunnel which implement TCP over UDP, but none seem to provide Forward Error Control. (for the…
symcbean
  • 21,009
  • 1
  • 31
  • 52
3
votes
1 answer

huge packet loss and checksum errors

Our 2008 server began to work very slowly within 2 weeks. Our web sites (iis 7.5) are loading very slowly and sometimes its freezing. We began testing with wireshark and saw that our packets are lost during transmission. The client demands the…
Kamil Ovacık
  • 49
  • 1
  • 2
3
votes
1 answer

Packet loss during TCP handshake

I have to implement a pseudo TCP handshake that leads into a file transfer. I have no problem doing the file transfer: simple send-acknowledge. What I can't wrap my head around is how to do the three way handshake assuming there will be packet loss…
user111658
  • 33
  • 1
  • 4
3
votes
2 answers

Racoon on Linux - Initial packet loss

I have configured two Linux boxes so they automatically use a transport-level IPSec connection whenever they need to communicate. The configuration is based on Racoon with X509 authentication and the bundle_complex option set to on, as well as…
E.Benoît
  • 135
  • 5
2
votes
1 answer

Fine tune a Remote Desktop Gateway server to tolerate packet losses

I have a Windows 2012R2 server acting as remote desktop gateway for a number of RDSH servers inside the perimeter, and have a firewall between it and the Internet allowing access from outside to that gateway. Our users report problems that their RDS…
Vesper
  • 794
  • 1
  • 9
  • 32
2
votes
1 answer

Optimize TCP connections between two Linux hosts connected by a long lossy channel

I have two distant hosts. Packet loss is always 19% until the rate exceeds 210 kB/s. The RTT is about 220 ms. The TCP congestion control algorithm is "cubic". "f_rto" is enabled. The actual speed of a TCP connection can only reach 14 kB/s. It's…
1
2
3
8 9