summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorLuciano Lo Giudice <luciano.logiudice@canonical.com>2021-07-21 15:00:13 -0300
committerLuciano Lo Giudice <luciano.logiudice@canonical.com>2021-07-21 15:00:13 -0300
commit1760a0cb9f46f6ee6cbbdf1f774939b5b91e55fe (patch)
tree7b86b1da0e40bba6ec32fa1cbd91f7dea667fd6b /doc
parentd739c3eba5b12ddf79ac597cc4ce80201306e72b (diff)
downloadswift-1760a0cb9f46f6ee6cbbdf1f774939b5b91e55fe.tar.gz
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
Diffstat (limited to 'doc')
-rw-r--r--doc/source/deployment_guide.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/source/deployment_guide.rst b/doc/source/deployment_guide.rst
index 5188bb895..2a8d52bed 100644
--- a/doc/source/deployment_guide.rst
+++ b/doc/source/deployment_guide.rst
@@ -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``.