Blame SOURCES/vsftpd-3.0.2-docupd.patch

3cbbde
diff --git a/vsftpd.conf.5 b/vsftpd.conf.5
3cbbde
index 10e9f45..cf1ae34 100644
3cbbde
--- a/vsftpd.conf.5
3cbbde
+++ b/vsftpd.conf.5
3cbbde
@@ -653,6 +653,21 @@ change it with the setting
3cbbde
 .BR xferlog_file .
3cbbde
 
3cbbde
 Default: NO
3cbbde
+.TP
3cbbde
+.B isolate_network
3cbbde
+If enabled, use CLONE_NEWNET to isolate the untrusted processes so that
3cbbde
+they can't do arbitrary connect() and instead have to ask the privileged
3cbbde
+process for sockets (
3cbbde
+.BR port_promiscuous
3cbbde
+have to be disabled).
3cbbde
+
3cbbde
+Default: YES
3cbbde
+.TP
3cbbde
+.B isolate
3cbbde
+If enabled, use CLONE_NEWPID and CLONE_NEWIPC to isolate processes to their
3cbbde
+ipc and pid namespaces. So separated processes can not interact with each other.
3cbbde
+
3cbbde
+Default: YES
3cbbde
 
3cbbde
 .SH NUMERIC OPTIONS
3cbbde
 Below is a list of numeric options. A numeric option must be set to a non
3cbbde
@@ -750,8 +765,9 @@ Default: 077
3cbbde
 .B max_clients
3cbbde
 If vsftpd is in standalone mode, this is the maximum number of clients which
3cbbde
 may be connected. Any additional clients connecting will get an error message.
3cbbde
+The value 0 switches off the limit.
3cbbde
 
3cbbde
-Default: 0 (unlimited)
3cbbde
+Default: 2000
3cbbde
 .TP
3cbbde
 .B max_login_fails
3cbbde
 After this many login failures, the session is killed.
3cbbde
@@ -761,9 +777,9 @@ Default: 3
3cbbde
 .B max_per_ip
3cbbde
 If vsftpd is in standalone mode, this is the maximum number of clients which
3cbbde
 may be connected from the same source internet address. A client will get an
3cbbde
-error message if they go over this limit.
3cbbde
+error message if they go over this limit. The value 0 switches off the limit.
3cbbde
 
3cbbde
-Default: 0 (unlimited)
3cbbde
+Default: 50
3cbbde
 .TP
3cbbde
 .B pasv_max_port
3cbbde
 The maximum port to allocate for PASV style data connections. Can be used to