summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuy Streeter <streeter@redhat.com>2014-08-28 14:03:32 -0500
committerJiri Kastner <jkastner@redhat.com>2015-06-24 16:30:54 +0200
commit756e762eaccb12d277890cfee6cc9eec4a8eba3e (patch)
tree180f4173c236432459a5c8fef55789b10723f810
parentec96958e2f004bcf1be8adc8ebff5720be508263 (diff)
downloadtuna-756e762eaccb12d277890cfee6cc9eec4a8eba3e.tar.gz
Correct a typo in the net.ipv4.ipfrag_time help string
What should be "\n" is just "\" Signed-off-by: Guy Streeter <streeter@redhat.com> Signed-off-by: Jiri Kastner <jkastner@redhat.com>
-rw-r--r--tuna/help.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tuna/help.py b/tuna/help.py
index 44d4fe3..fa47ae8 100644
--- a/tuna/help.py
+++ b/tuna/help.py
@@ -75,7 +75,7 @@ PROC_SYS_HELP = {
'net.ipv4.ipfrag_low_thresh':N_('Minimum memory used to reassemble IP fragments. When ipfrag_high_thresh bytes of memory is allocated for this purpose, the fragment handler will toss packets until ipfrag_low_thresh is reached.'),
'net.ipv4.ipfrag_max_dist':N_('Ipfrag_max_dist is a non-negative integer value which defines the maximum "disorder" which is allowed among fragments which share a common IP source address. Note that reordering of packets is not unusual, but if a large number of fragments arrive from a source IP address while a particular fragment queue remains incomplete, it probably indicates that one or more fragments belonging to that queue have been lost. When ipfrag_max_dist is positive, an additional check is done on fragments before they are added to a reassembly queue - if ipfrag_max_dist (or more) fragments have arrived from a particular IP address between additions to any IP fragment queue using that source address, it\'s presumed that one or more fragments in the queue are lost. The existing fragment queue will be dropped, and a new one started. An ipfrag_max_dist value of zero disables this check.\n\nUsing a very small value, e.g. 1 or 2, for ipfrag_max_dist can result in unnecessarily dropping fragment queues when normal reordering of packets occurs, which could lead to poor application performance. Using a very large value, e.g. 50000, increases the likelihood of incorrectly reassembling IP fragments that originate from different IP datagrams, which could result in data corruption.\nDefault: 64'),
'net.ipv4.ipfrag_secret_interval':N_('Regeneration interval of the hash secret (or lifetime for the hash secret) for IP fragments.\nDefault: 600\nUnit: second'),
- 'net.ipv4.ipfrag_time':N_('Time to keep an IP fragment in memory.\Unit: second'),
+ 'net.ipv4.ipfrag_time':N_('Time to keep an IP fragment in memory.\nUnit: second'),
'net.ipv4.ip_local_port_range':N_('Defines the local port range that is used by TCP and UDP to choose the local port. The first number is the first, the second the last local port number.\nDefault value depends on amount of memory available on the system:\n - > 128Mb 32768-61000\n - < 128Mb 1024-4999 or even less.\nThis number defines number of active connections, which this system can issue simultaneously to systems not supporting TCP extensions (timestamps). With tcp_tw_recycle enabled (i.e. by default) range 1024-4999 is enough to issue up to 2000 connections per second to systems supporting timestamps.'),
'net.ipv4.ip_local_reserved_ports':N_('Specify the ports which are reserved for known third-party applications. These ports will not be used by automatic port assignments (e.g. when calling connect() or bind() with port number 0). Explicit port allocation behavior is unchanged.\nThe format used for both input and output is a comma separated list of ranges (e.g. "1,2-4,10-10" for ports 1, 2, 3, 4 and 10). Writing to the file will clear all previously reserved ports and update the current list with the one given in the input.\nDefault: Empty'),
'net.ipv4.ip_nonlocal_bind':N_('If set, allows processes to bind() to non-local IP addresses, which can be quite useful - but may break some applications.\nDefault: 0'),