Kernel Runtime Configuration: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 57: Line 57:
"min" is the minimum size of the receive buffer used by each TCP socket. The default value is the system page size. This value is used to ensure that in memory pressure mode, allocations below this size will still succeed. This is not used to limit the size of the receive buffer declared using SO_RCVBUF on a socket.
"min" is the minimum size of the receive buffer used by each TCP socket. The default value is the system page size. This value is used to ensure that in memory pressure mode, allocations below this size will still succeed. This is not used to limit the size of the receive buffer declared using SO_RCVBUF on a socket.


"default" is the default size of the receive buffer for a TCP socket. This value overwrites the initial default buffer size from the generic net.core.rmem_default defined for all protocols.
"default" is the default size of the receive buffer for a TCP socket. This value overwrites the initial default buffer size from the generic [[#net.core.rmem_default|net.core.rmem_default]] defined for all protocols.


If larger receive buffer sizes are desired, this value should be increased (to affect all sockets). To employ large TCP windows, the net.ipv4.tcp_window_scaling must be enabled (default).
If larger receive buffer sizes are desired, this value should be increased (to affect all sockets). To employ large TCP windows, the net.ipv4.tcp_window_scaling must be enabled (default).

Revision as of 18:32, 8 June 2017

External

Internal

fs

kernel

kernel.hostname

kernel.pid_max

Represents the maximum number of processes allowed on the system.

net

core

net.core.rmem_default

The default setting in bytes of the socket receive buffer. This may be set by the application using SO_RCVBUF socket option, up to net.core.rmem_max bytes. This value can be changed without reboot.

net.core.rmem_max

https://wiki.mikejung.biz/Sysctl_tweaks#net.core.rmem_max

The maximum socket receive buffer size. Application can change the size of the receive buffer using SO_RCVBUF up to this limit. This value can be changed without reboot.

net.core.wmem_default

The default setting in bytes of the socket send buffer. This may be set by the application using SO_SNDBUF socket option, up to net.core.wmem_max bytes. This value can be changed without reboot.

net.core.wmem_max

https://wiki.mikejung.biz/Sysctl_tweaks#net.core.wmem_max

The maximum socket receive buffer size. The socket buffer size may be set by using the SO_SNDBUF socket option. This value can be changed without reboot.

net.core.netdev_max_backlog

https://access.redhat.com/solutions/1241943
https://wiki.mikejung.biz/Sysctl_tweaks#net.core.netdev_max_backlog

'net.core.netdev_max_backlog' determines the maximum number of packets, queued on the INPUT side, when the interface receives packets faster than kernel can process them.

ipv4

net.ipv4.tcp_rmem

https://wiki.mikejung.biz/Sysctl_tweaks#net.ipv4.tcp_rmem

'net.ipv4.tcp_rmem' is a vector of 3 integers: [min, default, max]. These parameters are used by TCP to adjust receive buffer sizes. TCP dynamically adjusts the size of the receive buffer from the defaults specified by the attribute, in the range of these values, depending on memory available in the system.

"min" is the minimum size of the receive buffer used by each TCP socket. The default value is the system page size. This value is used to ensure that in memory pressure mode, allocations below this size will still succeed. This is not used to limit the size of the receive buffer declared using SO_RCVBUF on a socket.

"default" is the default size of the receive buffer for a TCP socket. This value overwrites the initial default buffer size from the generic net.core.rmem_default defined for all protocols.

If larger receive buffer sizes are desired, this value should be increased (to affect all sockets). To employ large TCP windows, the net.ipv4.tcp_window_scaling must be enabled (default).

max The maximum size of the receive buffer used by each TCP socket. The default value is calculated using the formula: max(87380, min(4MB, tcp_mem[1]*PAGE_SIZE/128)). (On Linux 2.4, the default is 87380*2 bytes, lowered to 87380 in low-memory systems). 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.

To modify tcp_rmem min, default, and max values, edit sysctl.conf and use the following format

net.ipv4.tcp_rmem = 4096 12582912 16777216


10240 87380 12582912

net.ipv4.tcp_wmen

https://wiki.mikejung.biz/Sysctl_tweaks#net.ipv4.tcp_wmem

net.ipv4.tcp_window_scaling

1

net.ipv4.tcp_timestamps

net.ipv4.tcp_sack

net.ipv4.tcp_no_metrics_save

vm