Help calculate tcp retransmission rate from json result, end. sum.sent #1376
-
Hi. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
Hi, pack length is fixed size and is set by the |
Beta Was this translation helpful? Give feedback.
-
Hi, the "tcp_mss" is the socket's TCP_MAXSEG value, which is the segment size used by the TCP/IP stack for sending the data to the other side. However, it is not related to the packet size used by iperf3. To make sure, you can use the |
Beta Was this translation helpful? Give feedback.
Hi, the "tcp_mss" is the socket's TCP_MAXSEG value, which is the segment size used by the TCP/IP stack for sending the data to the other side. However, it is not related to the packet size used by iperf3.
To make sure, you can use the
-k
option to set the number of packets transmitted. E.g. set-k 10
, and if the packets=bytes/blksize is correct test results should show"bytes": 1310720
.