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:
1 changed files with 1 additions and 1 deletions
@@ -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``.
Reference in New Issue
Block a user
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.