Why only in tcp parallel mode it will retry a lot in same net traffic? #1526
Replies: 2 comments 8 replies
-
Hi @littlebr369, its hard to tell what may be the cause of the re-transmits without seeing the traffic log (I assume you are using Wireshark). One possible cause is that network buffers are getting filled. iperf3 TCP default packet size is 128KB (iperf3 UDP default packet is much smaller). With the |
Beta Was this translation helpful? Give feedback.
-
It's surprising to get packet loss for a couple of 10Mbps streams on a 2.5Gbps link. TCP should be segmenting the 128KB sends into 1460B packets on the wire (or 9K if doing jumbo frames). The packets should be sitting in the send-side socket buffers...wonder if those are full? Maybe try experimenting with different values of Also what version of iperf3 and what operating system is this? |
Beta Was this translation helpful? Give feedback.
-
Hi everyone.
I have a 2.5G ehternet connected through a marvell chip.
When using 'iperf3 -c 192.168.0.142 -b 20M', the tcp retry is 0.
But if using 'iperf3 -c 192.168.0.142 -b 10M -P 2', the tcp retry is about 200 times.
The weird thing is using 'iperf3 -c 192.168.0.142 -b 20M -u ' or 'iperf3 -c 192.168.0.142 -b 10M -P 2 -u', it won't lost any packets.
Can someone help with this question?
Beta Was this translation helpful? Give feedback.
All reactions