I am running iperf
measurements between two servers, connected through 10Gbit link. I am trying to correlate the maximum window size that I observe with the system configuration parameters.
In particular, I have observed that the maximum window size is 3 MiB. However, I cannot find the corresponding values in the system files.
By running sysctl -a
I get the following values:
net.ipv4.tcp_rmem = 4096 87380 6291456
net.core.rmem_max = 212992
The first value tells us that the maximum receiver window size is 6 MiB. However, TCP tends to allocate twice the requested size, so the maximum receiver window size should be 3 MiB, exactly as I have measured it. From man tcp
:
Note that TCP actually allocates twice the size of the buffer requested in the setsockopt(2) call, and so a succeeding getsockopt(2) call will not return the same size of buffer as requested in the setsockopt(2) call. TCP uses the extra space for administrative purposes and internal kernel structures, and the /proc file values reflect the larger sizes compared to the actual TCP windows.
However, the second value, net.core.rmem_max
, states that the maximum receiver window size cannot be more than 208 KiB. And this is supposed to be the hard limit, according to man tcp
:
tcp_rmem max: the maximum size of the receive buffer used by each TCP socket. This value does not override the global
net.core.rmem_max
. This is not used to limit the size of the receive buffer declared using SO_RCVBUF on a socket.
So, how come and I observe a maximum window size larger than the one specified in net.core.rmem_max
?
NB: I have also calculated the Bandwidth-Latency product: window_size = Bandwidth x RTT
which is about 3 MiB (10 Gbps @ 2 msec RTT), thus verifying my traffic capture.
... you can conclude that a bigger net.ipv4.tcp_rmem will override net.core.rmem_max in all cases except when setting SO_RCVBUF
- it's not clear to me yet whether that's happening in all cases: In the function you posted,max_t(u32, sysctl_tcp_rmem[2], sysctl_rmem_max)
determinesrcv_wscale
, which is then used to set the window sizes. So the maximum of the two values should be used thorughout. However, I cannot experimentally confirm that: Settingnet.core.rmem_max
very large does not increase the window size beyondtcp_rmem
's max. – Albaugh