Fix the sysctl parameter used to tune connections

The documentation currently uses the sysctl parameter:
'net.ipv4.netfilter.ip_conntrack_max', but it's been deprecated
for a long time. This patch switches it to:
'net.netfilter.nf_conntrack_max', which is the modern equivalent.

Change-Id: I3fd5d4060840092bca53af7da7dbaaa600e936a3
This commit is contained in:
Luciano Lo Giudice 2021-07-21 15:00:13 -03:00
parent d739c3eba5
commit 1760a0cb9f
1 changed files with 1 additions and 1 deletions

View File

@ -668,7 +668,7 @@ The following settings should be in ``/etc/sysctl.conf``::
net.ipv4.tcp_syncookies = 0
# double amount of allowed conntrack
net.ipv4.netfilter.ip_conntrack_max = 262144
net.netfilter.nf_conntrack_max = 262144
To load the updated sysctl settings, run ``sudo sysctl -p``.