Questions tagged [packet-loss]

Packet loss is the failure of one or more transmitted packets to arrive at their destination. This event can cause noticeable effects in all types of digital communications.The causes of packet loss include inadequate signal strength at the destination, natural or human-made interference, excessive system noise, hardware failure, software corruption or overburdened network nodes.

Packet loss occurs when one or more packets of data travelling across a computer network fail to reach their destination.
The effects of packet loss:
In data, packet loss produces errors.
In videoconference environments it can create jitter.
In pure audio communications, such as VoIP, it can cause jitter and frequent gaps in received speech.
In the worst cases, packet loss can cause severe mutilation of received data, broken-up images, unintelligible speech or even the complete absence of a received signal.
Packet loss may be measured as frame loss rate defined as the percentage of frames that should have been forwarded by a network load were not forwarded due to lack of resources.

The amount of packet loss that is acceptable depends on the type of data being sent.Anything over 2% packet loss over a period of time is a strong indicator of problems. Most internet protocols can correct for some packet loss, so you really shouldn't expect to see a lot of impact from packet loss until that loss starts to approach 5% and higher. Anything less than this is showing a possible problem, but one that is probably not impacting your experience significantly at present (unless you're an online gamer or something similar that requires 'twitch' reflexes).

141 questions
0
votes
2 answers

Mininet network errors when configured by tc

I am trying to specify packet loss by tc command on interface (port) 1 of switch part of network I have created using mininet : sudo tc qdisc change dev s1-eth1 root netem loss 0.1% but gettring error: RTNETLINK answers: Invalid argument Any help…
sinhayash
  • 2,693
  • 4
  • 19
  • 51
0
votes
1 answer

I have a server application that gets data exactly half the time. Why/how does this happen and how do I fix it?

So my server and chat client are made from 2 different C# TCP tutorials.You may recognize 1 if not both of them and I have made my own modifications to them to fit my own style. When I tried both they worked perfectly fine with 0 loss, but my…
0
votes
1 answer

When packet drop occurs in a link with VoIP and TCP working concurrently?

Let's assume TCP Reno version I have this situation: a VoIP (UDP) stream and a TCP session on the same host. Let's say at t=10s the TCP opens the session with the TCP receiver (another host), they exchanges the max window during the 3-way handshake…
BlacK
  • 241
  • 7
  • 16
0
votes
1 answer

How to find out whether the packet transferred over UDP is lost or dropped?

I am new to networking. I have a small doubt. I am sending an alarm using SNMP to a target, but the alarm is not received at the target within the specified amount of time. I feel that the data may be lost or dropped. Now my question is : on what…
user3913114
  • 105
  • 3
  • 11
0
votes
1 answer

QT - JAVA socket loss data

i've a QT/C++ server and a Java client. The client asks a file to the server, and the server send to the client the stream. The problem is that in the TCP transmission (also in localhost) i lost some packets. Sometimes, the client receive 280705…
Salvo Parisi
  • 119
  • 1
  • 10
0
votes
1 answer

tc (netem) - reported loss is different to set loss

I'm doing some testing on some links, bench marking and I'm using the tc command to simulate packet loss across WANs. What I have found is that after issuing the command to drop 15% of packets, the reported packet loss is different for different…
user3770935
  • 298
  • 1
  • 3
  • 17
0
votes
0 answers

IIS6 lost packets

We've had an issue on and off for some time now... We have an app which sync's to a server, we know the request is getting to the server as we have been running wireshark and can see the incoming request. Now this is where I need some correcting if…
Jeffrey
  • 2,095
  • 3
  • 20
  • 36
0
votes
1 answer

Java UDP packet sending and receiving issue

I'm working on a project for class using Java and UDP senders and receivers. The premise of the problem is to read in a text file, store the contents within a packet, send the packet, receive the packet, and read out the file on screen and create a…
0
votes
1 answer

C# UDP socket check packet loss

i have udp socket that send 100 string every 1 seconds and when data Received i want to check the data is right or not and measure data packet loss source to send string : string toSend; byte[] data = Encoding.ASCII.GetBytes(toSend); as i know udp…
iboy15
  • 35
  • 1
  • 9
0
votes
1 answer

PSNR calculation in H.264 packet loss

I'm streaming H.264(libx264) videos using RTP. I would like to compare the different error resiliency methods in h.264. In some research papers, psnr was used to compare them. So I would like to know how to calculate the psnr of the h.264 video…
K07
  • 75
  • 12
0
votes
2 answers

Debug ideas to investigate on packets getting dropped?

I recently encountered a scenario where in I find that ICMP network unreachable [type-1, code-3- meaning destination unreachable, which is correct w.r.t trace route working, refer rfc link below] packet is getting dropped only when bytes sent…
smaven
  • 21
  • 3
0
votes
1 answer

command to enable packet loss

I am searching a good way to enable packet loss. I came across this command for ubuntu. This command is supposed to make the interface wlan11 to lose 10% (0.10) of the packets it receives. sudo iptables -A INPUT -i wlan11 -m statistic --mode random…
bdur
  • 341
  • 1
  • 8
  • 17
-1
votes
1 answer

TCP Packet loss after Azure load balancer

If we have one VM after the Azure load balancer (external) at first. The TCP connection will be routed to VM1. --connection1 packet--> Azure Load Balancer (20.20.20.20) --connection1 packet--> VM1 Then we add a new VM after the lb. --connection1…
-1
votes
1 answer

Bandwith loss of distance - am I being fed a line of bull or do I have research to do?

I just had a strange conversation with a man who was trying to explain to me that it is impossible for two healthy networks to communicate at each-other over the ocean without significant bandwidth loss. For example - if you have a machine…
diadem
  • 834
  • 2
  • 11
  • 24
-1
votes
1 answer

BLE on ESP32 packet Errorchecking

when transmit data from esp32 to an esp32,does the BLE's libary contain errorchecking? AKA resending packets? uses Ack-Naks? error correction also? Thanks
1 2 3
9
10