blob: c532884f4fecdd5a85835e393e9f359372b26ae2 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/proc/sys/net/ipv4/* Variables:
2
3ip_forward - BOOLEAN
4 0 - disabled (default)
Jesper Dangaard Brouere18f5fe2009-02-23 04:39:04 +00005 not 0 - enabled
Linus Torvalds1da177e2005-04-16 15:20:36 -07006
7 Forward Packets between interfaces.
8
9 This variable is special, its change resets all configuration
10 parameters to their default state (RFC1122 for hosts, RFC1812
11 for routers)
12
13ip_default_ttl - INTEGER
14 default 64
15
16ip_no_pmtu_disc - BOOLEAN
17 Disable Path MTU Discovery.
18 default FALSE
19
20min_pmtu - INTEGER
21 default 562 - minimum discovered Path MTU
22
23mtu_expires - INTEGER
24 Time, in seconds, that cached PMTU information is kept.
25
26min_adv_mss - INTEGER
27 The advertised MSS depends on the first hop route MTU, but will
28 never be lower than this setting.
29
Neil Horman1080d702008-10-27 12:28:25 -070030rt_cache_rebuild_count - INTEGER
31 The per net-namespace route cache emergency rebuild threshold.
32 Any net-namespace having its route cache rebuilt due to
33 a hash bucket chain being too long more than this many times
34 will have its route caching disabled
35
Linus Torvalds1da177e2005-04-16 15:20:36 -070036IP Fragmentation:
37
38ipfrag_high_thresh - INTEGER
Jesper Dangaard Brouere18f5fe2009-02-23 04:39:04 +000039 Maximum memory used to reassemble IP fragments. When
Linus Torvalds1da177e2005-04-16 15:20:36 -070040 ipfrag_high_thresh bytes of memory is allocated for this purpose,
41 the fragment handler will toss packets until ipfrag_low_thresh
42 is reached.
Jesper Dangaard Brouere18f5fe2009-02-23 04:39:04 +000043
Linus Torvalds1da177e2005-04-16 15:20:36 -070044ipfrag_low_thresh - INTEGER
Jesper Dangaard Brouere18f5fe2009-02-23 04:39:04 +000045 See ipfrag_high_thresh
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
47ipfrag_time - INTEGER
Jesper Dangaard Brouere18f5fe2009-02-23 04:39:04 +000048 Time in seconds to keep an IP fragment in memory.
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
50ipfrag_secret_interval - INTEGER
Jesper Dangaard Brouere18f5fe2009-02-23 04:39:04 +000051 Regeneration interval (in seconds) of the hash secret (or lifetime
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 for the hash secret) for IP fragments.
53 Default: 600
54
Herbert Xu89cee8b2005-12-13 23:14:27 -080055ipfrag_max_dist - INTEGER
Jesper Dangaard Brouere18f5fe2009-02-23 04:39:04 +000056 ipfrag_max_dist is a non-negative integer value which defines the
57 maximum "disorder" which is allowed among fragments which share a
58 common IP source address. Note that reordering of packets is
59 not unusual, but if a large number of fragments arrive from a source
60 IP address while a particular fragment queue remains incomplete, it
61 probably indicates that one or more fragments belonging to that queue
62 have been lost. When ipfrag_max_dist is positive, an additional check
63 is done on fragments before they are added to a reassembly queue - if
64 ipfrag_max_dist (or more) fragments have arrived from a particular IP
65 address between additions to any IP fragment queue using that source
66 address, it's presumed that one or more fragments in the queue are
67 lost. The existing fragment queue will be dropped, and a new one
Herbert Xu89cee8b2005-12-13 23:14:27 -080068 started. An ipfrag_max_dist value of zero disables this check.
69
70 Using a very small value, e.g. 1 or 2, for ipfrag_max_dist can
71 result in unnecessarily dropping fragment queues when normal
Jesper Dangaard Brouere18f5fe2009-02-23 04:39:04 +000072 reordering of packets occurs, which could lead to poor application
73 performance. Using a very large value, e.g. 50000, increases the
74 likelihood of incorrectly reassembling IP fragments that originate
Herbert Xu89cee8b2005-12-13 23:14:27 -080075 from different IP datagrams, which could result in data corruption.
76 Default: 64
77
Linus Torvalds1da177e2005-04-16 15:20:36 -070078INET peer storage:
79
80inet_peer_threshold - INTEGER
Jesper Dangaard Brouere18f5fe2009-02-23 04:39:04 +000081 The approximate size of the storage. Starting from this threshold
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 entries will be thrown aggressively. This threshold also determines
83 entries' time-to-live and time intervals between garbage collection
84 passes. More entries, less time-to-live, less GC interval.
85
86inet_peer_minttl - INTEGER
87 Minimum time-to-live of entries. Should be enough to cover fragment
88 time-to-live on the reassembling side. This minimum time-to-live is
89 guaranteed if the pool size is less than inet_peer_threshold.
Stephen Hemminger77a538d2008-07-01 17:22:48 -070090 Measured in seconds.
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
92inet_peer_maxttl - INTEGER
93 Maximum time-to-live of entries. Unused entries will expire after
94 this period of time if there is no memory pressure on the pool (i.e.
95 when the number of entries in the pool is very small).
Stephen Hemminger77a538d2008-07-01 17:22:48 -070096 Measured in seconds.
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
98inet_peer_gc_mintime - INTEGER
99 Minimum interval between garbage collection passes. This interval is
100 in effect under high memory pressure on the pool.
Stephen Hemminger77a538d2008-07-01 17:22:48 -0700101 Measured in seconds.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
103inet_peer_gc_maxtime - INTEGER
104 Minimum interval between garbage collection passes. This interval is
105 in effect under low (or absent) memory pressure on the pool.
Stephen Hemminger77a538d2008-07-01 17:22:48 -0700106 Measured in seconds.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
Jesper Dangaard Brouere18f5fe2009-02-23 04:39:04 +0000108TCP variables:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
Stephen Hemmingeref56e622006-11-09 16:37:26 -0800110somaxconn - INTEGER
111 Limit of socket listen() backlog, known in userspace as SOMAXCONN.
112 Defaults to 128. See also tcp_max_syn_backlog for additional tuning
113 for TCP sockets.
114
Stephen Hemminger9772efb2005-11-10 17:09:53 -0800115tcp_abc - INTEGER
Stephen Hemmingerb3a8a402006-09-13 19:51:02 -0700116 Controls Appropriate Byte Count (ABC) defined in RFC3465.
117 ABC is a way of increasing congestion window (cwnd) more slowly
118 in response to partial acknowledgments.
119 Possible values are:
120 0 increase cwnd once per acknowledgment (no ABC)
121 1 increase cwnd once per acknowledgment of full sized segment
122 2 allow increase cwnd by two if acknowledgment is
123 of two segments to compensate for delayed acknowledgments.
124 Default: 0 (off)
Stephen Hemminger9772efb2005-11-10 17:09:53 -0800125
Stephen Hemmingeref56e622006-11-09 16:37:26 -0800126tcp_abort_on_overflow - BOOLEAN
127 If listening service is too slow to accept new connections,
128 reset them. Default state is FALSE. It means that if overflow
129 occurred due to a burst, connection will recover. Enable this
130 option _only_ if you are really sure that listening daemon
131 cannot be tuned to accept connections faster. Enabling this
132 option can harm clients of your server.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
Stephen Hemmingeref56e622006-11-09 16:37:26 -0800134tcp_adv_win_scale - INTEGER
135 Count buffering overhead as bytes/2^tcp_adv_win_scale
136 (if tcp_adv_win_scale > 0) or bytes-bytes/2^(-tcp_adv_win_scale),
137 if it is <= 0.
138 Default: 2
139
140tcp_allowed_congestion_control - STRING
141 Show/set the congestion control choices available to non-privileged
142 processes. The list is a subset of those listed in
143 tcp_available_congestion_control.
144 Default is "reno" and the default setting (tcp_congestion_control).
145
146tcp_app_win - INTEGER
147 Reserve max(window/2^tcp_app_win, mss) of window for application
148 buffer. Value 0 is special, it means that nothing is reserved.
149 Default: 31
150
151tcp_available_congestion_control - STRING
152 Shows the available congestion control choices that are registered.
153 More congestion control algorithms may be available as modules,
154 but not loaded.
155
John Heffner71599cd2007-02-27 10:03:56 -0800156tcp_base_mss - INTEGER
Stephen Hemminger4edc2f32008-07-10 16:50:26 -0700157 The initial value of search_low to be used by the packetization layer
158 Path MTU discovery (MTU probing). If MTU probing is enabled,
159 this is the initial MSS used by the connection.
John Heffner71599cd2007-02-27 10:03:56 -0800160
Stephen Hemmingeref56e622006-11-09 16:37:26 -0800161tcp_congestion_control - STRING
162 Set the congestion control algorithm to be used for new
163 connections. The algorithm "reno" is always available, but
164 additional choices may be available based on kernel configuration.
165 Default is set as part of kernel configuration.
166
William Allen Simpson519855c2009-12-02 18:14:19 +0000167tcp_cookie_size - INTEGER
168 Default size of TCP Cookie Transactions (TCPCT) option, that may be
169 overridden on a per socket basis by the TCPCT socket option.
170 Values greater than the maximum (16) are interpreted as the maximum.
171 Values greater than zero and less than the minimum (8) are interpreted
172 as the minimum. Odd values are interpreted as the next even value.
173 Default: 0 (off).
174
Stephen Hemmingeref56e622006-11-09 16:37:26 -0800175tcp_dsack - BOOLEAN
176 Allows TCP to send "duplicate" SACKs.
177
178tcp_ecn - BOOLEAN
Ilpo Järvinen255cac92009-05-04 11:07:36 -0700179 Enable Explicit Congestion Notification (ECN) in TCP. ECN is only
180 used when both ends of the TCP flow support it. It is useful to
181 avoid losses due to congestion (when the bottleneck router supports
182 ECN).
183 Possible values are:
184 0 disable ECN
185 1 ECN enabled
186 2 Only server-side ECN enabled. If the other end does
187 not support ECN, behavior is like with ECN disabled.
188 Default: 2
Stephen Hemmingeref56e622006-11-09 16:37:26 -0800189
190tcp_fack - BOOLEAN
191 Enable FACK congestion avoidance and fast retransmission.
192 The value is not used, if tcp_sack is not enabled.
193
194tcp_fin_timeout - INTEGER
195 Time to hold socket in state FIN-WAIT-2, if it was closed
196 by our side. Peer can be broken and never close its side,
197 or even died unexpectedly. Default value is 60sec.
198 Usual value used in 2.2 was 180 seconds, you may restore
199 it, but remember that if your machine is even underloaded WEB server,
200 you risk to overflow memory with kilotons of dead sockets,
201 FIN-WAIT-2 sockets are less dangerous than FIN-WAIT-1,
202 because they eat maximum 1.5K of memory, but they tend
203 to live longer. Cf. tcp_max_orphans.
204
Ilpo Järvinen89808062007-02-27 10:10:55 -0800205tcp_frto - INTEGER
Ilpo Järvinencd998892007-09-20 11:35:26 -0700206 Enables Forward RTO-Recovery (F-RTO) defined in RFC4138.
207 F-RTO is an enhanced recovery algorithm for TCP retransmission
Stephen Hemmingeref56e622006-11-09 16:37:26 -0800208 timeouts. It is particularly beneficial in wireless environments
209 where packet loss is typically due to random radio interference
Ryousei Takano564262c2007-10-25 23:03:52 -0700210 rather than intermediate router congestion. F-RTO is sender-side
Stephen Hemminger4edc2f32008-07-10 16:50:26 -0700211 only modification. Therefore it does not require any support from
212 the peer.
213
Ilpo Järvinencd998892007-09-20 11:35:26 -0700214 If set to 1, basic version is enabled. 2 enables SACK enhanced
215 F-RTO if flow uses SACK. The basic version can be used also when
Ryousei Takano564262c2007-10-25 23:03:52 -0700216 SACK is in use though scenario(s) with it exists where F-RTO
Ilpo Järvinencd998892007-09-20 11:35:26 -0700217 interacts badly with the packet counting of the SACK enabled TCP
218 flow.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
Ilpo Järvinen89808062007-02-27 10:10:55 -0800220tcp_frto_response - INTEGER
221 When F-RTO has detected that a TCP retransmission timeout was
222 spurious (i.e, the timeout would have been avoided had TCP set a
223 longer retransmission timeout), TCP has several options what to do
224 next. Possible values are:
225 0 Rate halving based; a smooth and conservative response,
226 results in halved cwnd and ssthresh after one RTT
227 1 Very conservative response; not recommended because even
228 though being valid, it interacts poorly with the rest of
229 Linux TCP, halves cwnd and ssthresh immediately
230 2 Aggressive response; undoes congestion control measures
231 that are now known to be unnecessary (ignoring the
232 possibility of a lost retransmission that would require
233 TCP to be more cautious), cwnd and ssthresh are restored
234 to the values prior timeout
235 Default: 0 (rate halving based)
236
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237tcp_keepalive_time - INTEGER
238 How often TCP sends out keepalive messages when keepalive is enabled.
239 Default: 2hours.
240
241tcp_keepalive_probes - INTEGER
242 How many keepalive probes TCP sends out, until it decides that the
243 connection is broken. Default value: 9.
244
245tcp_keepalive_intvl - INTEGER
246 How frequently the probes are send out. Multiplied by
247 tcp_keepalive_probes it is time to kill not responding connection,
248 after probes started. Default value: 75sec i.e. connection
249 will be aborted after ~11 minutes of retries.
250
Stephen Hemmingeref56e622006-11-09 16:37:26 -0800251tcp_low_latency - BOOLEAN
252 If set, the TCP stack makes decisions that prefer lower
253 latency as opposed to higher throughput. By default, this
254 option is not set meaning that higher throughput is preferred.
255 An example of an application where this default should be
256 changed would be a Beowulf compute cluster.
257 Default: 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
259tcp_max_orphans - INTEGER
260 Maximal number of TCP sockets not attached to any user file handle,
261 held by system. If this number is exceeded orphaned connections are
262 reset immediately and warning is printed. This limit exists
263 only to prevent simple DoS attacks, you _must_ not rely on this
264 or lower the limit artificially, but rather increase it
265 (probably, after increasing installed memory),
266 if network conditions require more than default value,
267 and tune network services to linger and kill such states
268 more aggressively. Let me to remind again: each orphan eats
269 up to ~64K of unswappable memory.
270
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271tcp_max_syn_backlog - INTEGER
272 Maximal number of remembered connection requests, which are
273 still did not receive an acknowledgment from connecting client.
274 Default value is 1024 for systems with more than 128Mb of memory,
275 and 128 for low memory machines. If server suffers of overload,
276 try to increase this number.
277
Stephen Hemmingeref56e622006-11-09 16:37:26 -0800278tcp_max_tw_buckets - INTEGER
279 Maximal number of timewait sockets held by system simultaneously.
280 If this number is exceeded time-wait socket is immediately destroyed
281 and warning is printed. This limit exists only to prevent
282 simple DoS attacks, you _must_ not lower the limit artificially,
283 but rather increase it (probably, after increasing installed memory),
284 if network conditions require more than default value.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285
Stephen Hemmingeref56e622006-11-09 16:37:26 -0800286tcp_mem - vector of 3 INTEGERs: min, pressure, max
287 min: below this number of pages TCP is not bothered about its
288 memory appetite.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289
Stephen Hemmingeref56e622006-11-09 16:37:26 -0800290 pressure: when amount of memory allocated by TCP exceeds this number
291 of pages, TCP moderates its memory consumption and enters memory
292 pressure mode, which is exited when memory consumption falls
293 under "min".
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294
Stephen Hemmingeref56e622006-11-09 16:37:26 -0800295 max: number of pages allowed for queueing by all TCP sockets.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
Stephen Hemmingeref56e622006-11-09 16:37:26 -0800297 Defaults are calculated at boot time from amount of available
298 memory.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
John Heffner71599cd2007-02-27 10:03:56 -0800300tcp_moderate_rcvbuf - BOOLEAN
Stephen Hemminger4edc2f32008-07-10 16:50:26 -0700301 If set, TCP performs receive buffer auto-tuning, attempting to
John Heffner71599cd2007-02-27 10:03:56 -0800302 automatically size the buffer (no greater than tcp_rmem[2]) to
303 match the size required by the path for full throughput. Enabled by
304 default.
305
306tcp_mtu_probing - INTEGER
307 Controls TCP Packetization-Layer Path MTU Discovery. Takes three
308 values:
309 0 - Disabled
310 1 - Disabled by default, enabled when an ICMP black hole detected
311 2 - Always enabled, use initial MSS of tcp_base_mss.
312
313tcp_no_metrics_save - BOOLEAN
314 By default, TCP saves various connection metrics in the route cache
315 when the connection closes, so that connections established in the
316 near future can use these to set initial conditions. Usually, this
317 increases overall performance, but may sometimes cause performance
Simon Arlott0f035b82007-10-20 01:30:25 +0200318 degradation. If set, TCP will not cache metrics on closing
John Heffner71599cd2007-02-27 10:03:56 -0800319 connections.
320
Stephen Hemmingeref56e622006-11-09 16:37:26 -0800321tcp_orphan_retries - INTEGER
Damian Lukowski5d789222009-09-01 10:24:04 +0000322 This value influences the timeout of a locally closed TCP connection,
323 when RTO retransmissions remain unacknowledged.
324 See tcp_retries2 for more details.
325
326 The default value is 7.
327 If your machine is a loaded WEB server,
Stephen Hemmingeref56e622006-11-09 16:37:26 -0800328 you should think about lowering this value, such sockets
329 may consume significant resources. Cf. tcp_max_orphans.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330
331tcp_reordering - INTEGER
332 Maximal reordering of packets in a TCP stream.
Jesper Dangaard Brouere18f5fe2009-02-23 04:39:04 +0000333 Default: 3
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
335tcp_retrans_collapse - BOOLEAN
336 Bug-to-bug compatibility with some broken printers.
337 On retransmit try to send bigger packets to work around bugs in
338 certain TCP stacks.
339
Stephen Hemmingeref56e622006-11-09 16:37:26 -0800340tcp_retries1 - INTEGER
Damian Lukowski5d789222009-09-01 10:24:04 +0000341 This value influences the time, after which TCP decides, that
342 something is wrong due to unacknowledged RTO retransmissions,
343 and reports this suspicion to the network layer.
344 See tcp_retries2 for more details.
345
346 RFC 1122 recommends at least 3 retransmissions, which is the
347 default.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
Stephen Hemmingeref56e622006-11-09 16:37:26 -0800349tcp_retries2 - INTEGER
Damian Lukowski5d789222009-09-01 10:24:04 +0000350 This value influences the timeout of an alive TCP connection,
351 when RTO retransmissions remain unacknowledged.
352 Given a value of N, a hypothetical TCP connection following
353 exponential backoff with an initial RTO of TCP_RTO_MIN would
354 retransmit N times before killing the connection at the (N+1)th RTO.
355
356 The default value of 15 yields a hypothetical timeout of 924.6
357 seconds and is a lower bound for the effective timeout.
358 TCP will effectively time out at the first RTO which exceeds the
359 hypothetical timeout.
360
361 RFC 1122 recommends at least 100 seconds for the timeout,
362 which corresponds to a value of at least 8.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363
Stephen Hemmingeref56e622006-11-09 16:37:26 -0800364tcp_rfc1337 - BOOLEAN
365 If set, the TCP stack behaves conforming to RFC1337. If unset,
366 we are not conforming to RFC, but prevent TCP TIME_WAIT
367 assassination.
368 Default: 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369
370tcp_rmem - vector of 3 INTEGERs: min, default, max
371 min: Minimal size of receive buffer used by TCP sockets.
372 It is guaranteed to each TCP socket, even under moderate memory
373 pressure.
374 Default: 8K
375
J. Bruce Fields53025f52008-07-10 16:47:41 -0700376 default: initial size of receive buffer used by TCP sockets.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 This value overrides net.core.rmem_default used by other protocols.
378 Default: 87380 bytes. This value results in window of 65535 with
379 default setting of tcp_adv_win_scale and tcp_app_win:0 and a bit
380 less for default tcp_app_win. See below about these variables.
381
382 max: maximal size of receive buffer allowed for automatically
383 selected receiver buffers for TCP socket. This value does not override
J. Bruce Fields53025f52008-07-10 16:47:41 -0700384 net.core.rmem_max. Calling setsockopt() with SO_RCVBUF disables
385 automatic tuning of that socket's receive buffer size, in which
386 case this value is ignored.
387 Default: between 87380B and 4MB, depending on RAM size.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
Stephen Hemmingeref56e622006-11-09 16:37:26 -0800389tcp_sack - BOOLEAN
390 Enable select acknowledgments (SACKS).
Rick Jones15d99e02006-03-20 22:40:29 -0800391
David S. Miller35089bb2006-06-13 22:33:04 -0700392tcp_slow_start_after_idle - BOOLEAN
393 If set, provide RFC2861 behavior and time out the congestion
394 window after an idle period. An idle period is defined at
395 the current RTO. If unset, the congestion window will not
396 be timed out after an idle period.
397 Default: 1
398
Stephen Hemmingeref56e622006-11-09 16:37:26 -0800399tcp_stdurg - BOOLEAN
Stephen Hemminger4edc2f32008-07-10 16:50:26 -0700400 Use the Host requirements interpretation of the TCP urgent pointer field.
Stephen Hemmingeref56e622006-11-09 16:37:26 -0800401 Most hosts use the older BSD interpretation, so if you turn this on
402 Linux might not communicate correctly with them.
403 Default: FALSE
404
405tcp_synack_retries - INTEGER
406 Number of times SYNACKs for a passive TCP connection attempt will
407 be retransmitted. Should not be higher than 255. Default value
408 is 5, which corresponds to ~180seconds.
409
410tcp_syncookies - BOOLEAN
411 Only valid when the kernel was compiled with CONFIG_SYNCOOKIES
412 Send out syncookies when the syn backlog queue of a socket
Stephen Hemminger4edc2f32008-07-10 16:50:26 -0700413 overflows. This is to prevent against the common 'SYN flood attack'
Stephen Hemmingeref56e622006-11-09 16:37:26 -0800414 Default: FALSE
415
416 Note, that syncookies is fallback facility.
417 It MUST NOT be used to help highly loaded servers to stand
Stephen Hemminger4edc2f32008-07-10 16:50:26 -0700418 against legal connection rate. If you see SYN flood warnings
Stephen Hemmingeref56e622006-11-09 16:37:26 -0800419 in your logs, but investigation shows that they occur
420 because of overload with legal connections, you should tune
421 another parameters until this warning disappear.
422 See: tcp_max_syn_backlog, tcp_synack_retries, tcp_abort_on_overflow.
423
424 syncookies seriously violate TCP protocol, do not allow
425 to use TCP extensions, can result in serious degradation
426 of some services (f.e. SMTP relaying), visible not by you,
427 but your clients and relays, contacting you. While you see
Stephen Hemminger4edc2f32008-07-10 16:50:26 -0700428 SYN flood warnings in logs not being really flooded, your server
Stephen Hemmingeref56e622006-11-09 16:37:26 -0800429 is seriously misconfigured.
430
431tcp_syn_retries - INTEGER
432 Number of times initial SYNs for an active TCP connection attempt
433 will be retransmitted. Should not be higher than 255. Default value
434 is 5, which corresponds to ~180seconds.
435
436tcp_timestamps - BOOLEAN
437 Enable timestamps as defined in RFC1323.
438
439tcp_tso_win_divisor - INTEGER
440 This allows control over what percentage of the congestion window
441 can be consumed by a single TSO frame.
442 The setting of this parameter is a choice between burstiness and
443 building larger TSO frames.
444 Default: 3
445
446tcp_tw_recycle - BOOLEAN
447 Enable fast recycling TIME-WAIT sockets. Default value is 0.
448 It should not be changed without advice/request of technical
449 experts.
450
451tcp_tw_reuse - BOOLEAN
452 Allow to reuse TIME-WAIT sockets for new connections when it is
453 safe from protocol viewpoint. Default value is 0.
454 It should not be changed without advice/request of technical
455 experts.
456
457tcp_window_scaling - BOOLEAN
458 Enable window scaling as defined in RFC1323.
459
460tcp_wmem - vector of 3 INTEGERs: min, default, max
J. Bruce Fields53025f52008-07-10 16:47:41 -0700461 min: Amount of memory reserved for send buffers for TCP sockets.
Stephen Hemmingeref56e622006-11-09 16:37:26 -0800462 Each TCP socket has rights to use it due to fact of its birth.
463 Default: 4K
464
J. Bruce Fields53025f52008-07-10 16:47:41 -0700465 default: initial size of send buffer used by TCP sockets. This
466 value overrides net.core.wmem_default used by other protocols.
467 It is usually lower than net.core.wmem_default.
Stephen Hemmingeref56e622006-11-09 16:37:26 -0800468 Default: 16K
469
J. Bruce Fields53025f52008-07-10 16:47:41 -0700470 max: Maximal amount of memory allowed for automatically tuned
471 send buffers for TCP sockets. This value does not override
472 net.core.wmem_max. Calling setsockopt() with SO_SNDBUF disables
473 automatic tuning of that socket's send buffer size, in which case
474 this value is ignored.
475 Default: between 64K and 4MB, depending on RAM size.
Stephen Hemmingeref56e622006-11-09 16:37:26 -0800476
477tcp_workaround_signed_windows - BOOLEAN
478 If set, assume no receipt of a window scaling option means the
479 remote TCP is broken and treats the window as a signed quantity.
480 If unset, assume the remote TCP is not broken even if we do
481 not receive a window scaling option from them.
482 Default: 0
483
Chris Leech72d0b7a2007-03-08 09:57:35 -0800484tcp_dma_copybreak - INTEGER
485 Lower limit, in bytes, of the size of socket reads that will be
486 offloaded to a DMA copy engine, if one is present in the system
487 and CONFIG_NET_DMA is enabled.
488 Default: 4096
489
Hideo Aoki95766ff2007-12-31 00:29:24 -0800490UDP variables:
491
492udp_mem - vector of 3 INTEGERs: min, pressure, max
493 Number of pages allowed for queueing by all UDP sockets.
494
495 min: Below this number of pages UDP is not bothered about its
496 memory appetite. When amount of memory allocated by UDP exceeds
497 this number, UDP starts to moderate memory usage.
498
499 pressure: This value was introduced to follow format of tcp_mem.
500
501 max: Number of pages allowed for queueing by all UDP sockets.
502
503 Default is calculated at boot time from amount of available memory.
504
505udp_rmem_min - INTEGER
506 Minimal size of receive buffer used by UDP sockets in moderation.
507 Each UDP socket is able to use the size for receiving data, even if
508 total pages of UDP sockets exceed udp_mem pressure. The unit is byte.
509 Default: 4096
510
511udp_wmem_min - INTEGER
512 Minimal size of send buffer used by UDP sockets in moderation.
513 Each UDP socket is able to use the size for sending data, even if
514 total pages of UDP sockets exceed udp_mem pressure. The unit is byte.
515 Default: 4096
516
Paul Moore8802f612006-08-03 16:45:49 -0700517CIPSOv4 Variables:
518
519cipso_cache_enable - BOOLEAN
520 If set, enable additions to and lookups from the CIPSO label mapping
521 cache. If unset, additions are ignored and lookups always result in a
522 miss. However, regardless of the setting the cache is still
523 invalidated when required when means you can safely toggle this on and
524 off and the cache will always be "safe".
525 Default: 1
526
527cipso_cache_bucket_size - INTEGER
528 The CIPSO label cache consists of a fixed size hash table with each
529 hash bucket containing a number of cache entries. This variable limits
530 the number of entries in each hash bucket; the larger the value the
531 more CIPSO label mappings that can be cached. When the number of
532 entries in a given hash bucket reaches this limit adding new entries
533 causes the oldest entry in the bucket to be removed to make room.
534 Default: 10
535
536cipso_rbm_optfmt - BOOLEAN
537 Enable the "Optimized Tag 1 Format" as defined in section 3.4.2.6 of
538 the CIPSO draft specification (see Documentation/netlabel for details).
539 This means that when set the CIPSO tag will be padded with empty
540 categories in order to make the packet data 32-bit aligned.
541 Default: 0
542
543cipso_rbm_structvalid - BOOLEAN
544 If set, do a very strict check of the CIPSO option when
545 ip_options_compile() is called. If unset, relax the checks done during
546 ip_options_compile(). Either way is "safe" as errors are caught else
547 where in the CIPSO processing code but setting this to 0 (False) should
548 result in less work (i.e. it should be faster) but could cause problems
549 with other implementations that require strict checking.
550 Default: 0
551
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552IP Variables:
553
554ip_local_port_range - 2 INTEGERS
555 Defines the local port range that is used by TCP and UDP to
Jesper Dangaard Brouere18f5fe2009-02-23 04:39:04 +0000556 choose the local port. The first number is the first, the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 second the last local port number. Default value depends on
558 amount of memory available on the system:
559 > 128Mb 32768-61000
560 < 128Mb 1024-4999 or even less.
561 This number defines number of active connections, which this
562 system can issue simultaneously to systems not supporting
563 TCP extensions (timestamps). With tcp_tw_recycle enabled
564 (i.e. by default) range 1024-4999 is enough to issue up to
565 2000 connections per second to systems supporting timestamps.
566
567ip_nonlocal_bind - BOOLEAN
568 If set, allows processes to bind() to non-local IP addresses,
569 which can be quite useful - but may break some applications.
570 Default: 0
571
572ip_dynaddr - BOOLEAN
573 If set non-zero, enables support for dynamic addresses.
574 If set to a non-zero value larger than 1, a kernel log
575 message will be printed when dynamic address rewriting
576 occurs.
577 Default: 0
578
579icmp_echo_ignore_all - BOOLEAN
David S. Miller7ce312462005-10-03 16:07:30 -0700580 If set non-zero, then the kernel will ignore all ICMP ECHO
581 requests sent to it.
582 Default: 0
583
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584icmp_echo_ignore_broadcasts - BOOLEAN
David S. Miller7ce312462005-10-03 16:07:30 -0700585 If set non-zero, then the kernel will ignore all ICMP ECHO and
586 TIMESTAMP requests sent to it via broadcast/multicast.
587 Default: 1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588
589icmp_ratelimit - INTEGER
590 Limit the maximal rates for sending ICMP packets whose type matches
591 icmp_ratemask (see below) to specific targets.
Stephen Hemminger6dbf4bc2008-07-01 19:29:07 -0700592 0 to disable any limiting,
593 otherwise the minimal space between responses in milliseconds.
594 Default: 1000
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595
596icmp_ratemask - INTEGER
597 Mask made of ICMP types for which rates are being limited.
598 Significant bits: IHGFEDCBA9876543210
599 Default mask: 0000001100000011000 (6168)
600
601 Bit definitions (see include/linux/icmp.h):
602 0 Echo Reply
603 3 Destination Unreachable *
604 4 Source Quench *
605 5 Redirect
606 8 Echo Request
607 B Time Exceeded *
608 C Parameter Problem *
609 D Timestamp Request
610 E Timestamp Reply
611 F Info Request
612 G Info Reply
613 H Address Mask Request
614 I Address Mask Reply
615
616 * These are rate limited by default (see default mask above)
617
618icmp_ignore_bogus_error_responses - BOOLEAN
619 Some routers violate RFC1122 by sending bogus responses to broadcast
620 frames. Such violations are normally logged via a kernel warning.
621 If this is set to TRUE, the kernel will not give such warnings, which
622 will avoid log file clutter.
623 Default: FALSE
624
Horms95f7daf2006-02-02 17:02:25 -0800625icmp_errors_use_inbound_ifaddr - BOOLEAN
626
627 If zero, icmp error messages are sent with the primary address of
628 the exiting interface.
Jesper Dangaard Brouere18f5fe2009-02-23 04:39:04 +0000629
Horms95f7daf2006-02-02 17:02:25 -0800630 If non-zero, the message will be sent with the primary address of
631 the interface that received the packet that caused the icmp error.
632 This is the behaviour network many administrators will expect from
633 a router. And it can make debugging complicated network layouts
Jesper Dangaard Brouere18f5fe2009-02-23 04:39:04 +0000634 much easier.
Horms95f7daf2006-02-02 17:02:25 -0800635
636 Note that if no primary address exists for the interface selected,
637 then the primary address of the first non-loopback interface that
Matt LaPlanted6bc8ac2006-10-03 22:54:15 +0200638 has one will be used regardless of this setting.
Horms95f7daf2006-02-02 17:02:25 -0800639
640 Default: 0
641
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642igmp_max_memberships - INTEGER
643 Change the maximum number of multicast groups we can subscribe to.
644 Default: 20
645
Jesper Dangaard Brouere18f5fe2009-02-23 04:39:04 +0000646conf/interface/* changes special settings per interface (where "interface" is
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 the name of your network interface)
648conf/all/* is special, changes the settings for all interfaces
649
650
651log_martians - BOOLEAN
652 Log packets with impossible addresses to kernel log.
653 log_martians for the interface will be enabled if at least one of
654 conf/{all,interface}/log_martians is set to TRUE,
655 it will be disabled otherwise
656
657accept_redirects - BOOLEAN
658 Accept ICMP redirect messages.
659 accept_redirects for the interface will be enabled if:
Jesper Dangaard Brouere18f5fe2009-02-23 04:39:04 +0000660 - both conf/{all,interface}/accept_redirects are TRUE in the case
661 forwarding for the interface is enabled
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 or
Jesper Dangaard Brouere18f5fe2009-02-23 04:39:04 +0000663 - at least one of conf/{all,interface}/accept_redirects is TRUE in the
664 case forwarding for the interface is disabled
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 accept_redirects for the interface will be disabled otherwise
666 default TRUE (host)
667 FALSE (router)
668
669forwarding - BOOLEAN
670 Enable IP forwarding on this interface.
671
672mc_forwarding - BOOLEAN
673 Do multicast routing. The kernel needs to be compiled with CONFIG_MROUTE
674 and a multicast routing daemon is required.
Jesper Dangaard Brouere18f5fe2009-02-23 04:39:04 +0000675 conf/all/mc_forwarding must also be set to TRUE to enable multicast
676 routing for the interface
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677
678medium_id - INTEGER
679 Integer value used to differentiate the devices by the medium they
680 are attached to. Two devices can have different id values when
681 the broadcast packets are received only on one of them.
682 The default value 0 means that the device is the only interface
683 to its medium, value of -1 means that medium is not known.
Jesper Dangaard Brouere18f5fe2009-02-23 04:39:04 +0000684
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 Currently, it is used to change the proxy_arp behavior:
686 the proxy_arp feature is enabled for packets forwarded between
687 two devices attached to different media.
688
689proxy_arp - BOOLEAN
690 Do proxy arp.
691 proxy_arp for the interface will be enabled if at least one of
692 conf/{all,interface}/proxy_arp is set to TRUE,
693 it will be disabled otherwise
694
Jesper Dangaard Brouer65324142010-01-05 05:50:47 +0000695proxy_arp_pvlan - BOOLEAN
696 Private VLAN proxy arp.
697 Basically allow proxy arp replies back to the same interface
698 (from which the ARP request/solicitation was received).
699
700 This is done to support (ethernet) switch features, like RFC
701 3069, where the individual ports are NOT allowed to
702 communicate with each other, but they are allowed to talk to
703 the upstream router. As described in RFC 3069, it is possible
704 to allow these hosts to communicate through the upstream
705 router by proxy_arp'ing. Don't need to be used together with
706 proxy_arp.
707
708 This technology is known by different names:
709 In RFC 3069 it is called VLAN Aggregation.
710 Cisco and Allied Telesyn call it Private VLAN.
711 Hewlett-Packard call it Source-Port filtering or port-isolation.
712 Ericsson call it MAC-Forced Forwarding (RFC Draft).
713
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714shared_media - BOOLEAN
715 Send(router) or accept(host) RFC1620 shared media redirects.
716 Overrides ip_secure_redirects.
717 shared_media for the interface will be enabled if at least one of
718 conf/{all,interface}/shared_media is set to TRUE,
719 it will be disabled otherwise
720 default TRUE
721
722secure_redirects - BOOLEAN
723 Accept ICMP redirect messages only for gateways,
724 listed in default gateway list.
725 secure_redirects for the interface will be enabled if at least one of
726 conf/{all,interface}/secure_redirects is set to TRUE,
727 it will be disabled otherwise
728 default TRUE
729
730send_redirects - BOOLEAN
731 Send redirects, if router.
732 send_redirects for the interface will be enabled if at least one of
733 conf/{all,interface}/send_redirects is set to TRUE,
734 it will be disabled otherwise
735 Default: TRUE
736
737bootp_relay - BOOLEAN
738 Accept packets with source address 0.b.c.d destined
739 not to this host as local ones. It is supposed, that
740 BOOTP relay daemon will catch and forward such packets.
741 conf/all/bootp_relay must also be set to TRUE to enable BOOTP relay
742 for the interface
743 default FALSE
744 Not Implemented Yet.
745
746accept_source_route - BOOLEAN
747 Accept packets with SRR option.
748 conf/all/accept_source_route must also be set to TRUE to accept packets
749 with SRR option on the interface
750 default TRUE (router)
751 FALSE (host)
752
Patrick McHardy8153a102009-12-03 01:25:58 +0000753accept_local - BOOLEAN
754 Accept packets with local source addresses. In combination with
755 suitable routing, this can be used to direct packets between two
756 local interfaces over the wire and have them accepted properly.
757 default FALSE
758
Stephen Hemmingerc1cf8422009-02-20 08:25:36 +0000759rp_filter - INTEGER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 0 - No source validation.
Stephen Hemmingerc1cf8422009-02-20 08:25:36 +0000761 1 - Strict mode as defined in RFC3704 Strict Reverse Path
762 Each incoming packet is tested against the FIB and if the interface
763 is not the best reverse path the packet check will fail.
764 By default failed packets are discarded.
765 2 - Loose mode as defined in RFC3704 Loose Reverse Path
766 Each incoming packet's source address is also tested against the FIB
767 and if the source address is not reachable via any interface
768 the packet check will fail.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769
Jesper Dangaard Brouere18f5fe2009-02-23 04:39:04 +0000770 Current recommended practice in RFC3704 is to enable strict mode
Jesper Dangaard Brouerbf869c32009-02-23 04:37:55 +0000771 to prevent IP spoofing from DDos attacks. If using asymmetric routing
Jesper Dangaard Brouere18f5fe2009-02-23 04:39:04 +0000772 or other complicated routing, then loose mode is recommended.
Stephen Hemmingerc1cf8422009-02-20 08:25:36 +0000773
Shan Wei1f5865e2009-12-02 15:39:04 -0800774 The max value from conf/{all,interface}/rp_filter is used
775 when doing source validation on the {interface}.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776
777 Default value is 0. Note that some distributions enable it
778 in startup scripts.
779
780arp_filter - BOOLEAN
781 1 - Allows you to have multiple network interfaces on the same
782 subnet, and have the ARPs for each interface be answered
783 based on whether or not the kernel would route a packet from
784 the ARP'd IP out that interface (therefore you must use source
785 based routing for this to work). In other words it allows control
786 of which cards (usually 1) will respond to an arp request.
787
788 0 - (default) The kernel can respond to arp requests with addresses
789 from other interfaces. This may seem wrong but it usually makes
790 sense, because it increases the chance of successful communication.
791 IP addresses are owned by the complete host on Linux, not by
792 particular interfaces. Only for more complex setups like load-
793 balancing, does this behaviour cause problems.
794
795 arp_filter for the interface will be enabled if at least one of
796 conf/{all,interface}/arp_filter is set to TRUE,
797 it will be disabled otherwise
798
799arp_announce - INTEGER
800 Define different restriction levels for announcing the local
801 source IP address from IP packets in ARP requests sent on
802 interface:
803 0 - (default) Use any local address, configured on any interface
804 1 - Try to avoid local addresses that are not in the target's
805 subnet for this interface. This mode is useful when target
806 hosts reachable via this interface require the source IP
807 address in ARP requests to be part of their logical network
808 configured on the receiving interface. When we generate the
809 request we will check all our subnets that include the
810 target IP and will preserve the source address if it is from
811 such subnet. If there is no such subnet we select source
812 address according to the rules for level 2.
813 2 - Always use the best local address for this target.
814 In this mode we ignore the source address in the IP packet
815 and try to select local address that we prefer for talks with
816 the target host. Such local address is selected by looking
817 for primary IP addresses on all our subnets on the outgoing
818 interface that include the target IP address. If no suitable
819 local address is found we select the first local address
820 we have on the outgoing interface or on all other interfaces,
821 with the hope we will receive reply for our request and
822 even sometimes no matter the source IP address we announce.
823
824 The max value from conf/{all,interface}/arp_announce is used.
825
826 Increasing the restriction level gives more chance for
827 receiving answer from the resolved target while decreasing
828 the level announces more valid sender's information.
829
830arp_ignore - INTEGER
831 Define different modes for sending replies in response to
832 received ARP requests that resolve local target IP addresses:
833 0 - (default): reply for any local target IP address, configured
834 on any interface
835 1 - reply only if the target IP address is local address
836 configured on the incoming interface
837 2 - reply only if the target IP address is local address
838 configured on the incoming interface and both with the
839 sender's IP address are part from same subnet on this interface
840 3 - do not reply for local addresses configured with scope host,
841 only resolutions for global and link addresses are replied
842 4-7 - reserved
843 8 - do not reply for all local addresses
844
845 The max value from conf/{all,interface}/arp_ignore is used
846 when ARP request is received on the {interface}
847
Stephen Hemmingereefef1c2009-02-01 01:04:33 -0800848arp_notify - BOOLEAN
849 Define mode for notification of address and device changes.
850 0 - (default): do nothing
851 1 - Generate gratuitous arp replies when device is brought up
852 or hardware address changes.
853
Neil Hormanc1b1bce2006-03-20 22:40:03 -0800854arp_accept - BOOLEAN
855 Define behavior when gratuitous arp replies are received:
856 0 - drop gratuitous arp frames
857 1 - accept gratuitous arp frames
858
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859app_solicit - INTEGER
860 The maximum number of probes to send to the user space ARP daemon
861 via netlink before dropping back to multicast probes (see
862 mcast_solicit). Defaults to 0.
863
864disable_policy - BOOLEAN
865 Disable IPSEC policy (SPD) for this interface
866
867disable_xfrm - BOOLEAN
868 Disable IPSEC encryption on this interface, whatever the policy
869
870
871
872tag - INTEGER
873 Allows you to write a number, which can be used as required.
874 Default value is 0.
875
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876Alexey Kuznetsov.
877kuznet@ms2.inr.ac.ru
878
879Updated by:
880Andi Kleen
881ak@muc.de
882Nicolas Delon
883delon.nicolas@wanadoo.fr
884
885
886
887
888/proc/sys/net/ipv6/* Variables:
889
890IPv6 has no global variables such as tcp_*. tcp_* settings under ipv4/ also
891apply to IPv6 [XXX?].
892
893bindv6only - BOOLEAN
894 Default value for IPV6_V6ONLY socket option,
Jesper Dangaard Brouere18f5fe2009-02-23 04:39:04 +0000895 which restricts use of the IPv6 socket to IPv6 communication
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 only.
897 TRUE: disable IPv4-mapped address feature
898 FALSE: enable IPv4-mapped address feature
899
900 Default: FALSE (as specified in RFC2553bis)
901
902IPv6 Fragmentation:
903
904ip6frag_high_thresh - INTEGER
Jesper Dangaard Brouere18f5fe2009-02-23 04:39:04 +0000905 Maximum memory used to reassemble IPv6 fragments. When
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 ip6frag_high_thresh bytes of memory is allocated for this purpose,
907 the fragment handler will toss packets until ip6frag_low_thresh
908 is reached.
Jesper Dangaard Brouere18f5fe2009-02-23 04:39:04 +0000909
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910ip6frag_low_thresh - INTEGER
Jesper Dangaard Brouere18f5fe2009-02-23 04:39:04 +0000911 See ip6frag_high_thresh
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912
913ip6frag_time - INTEGER
914 Time in seconds to keep an IPv6 fragment in memory.
915
916ip6frag_secret_interval - INTEGER
Jesper Dangaard Brouere18f5fe2009-02-23 04:39:04 +0000917 Regeneration interval (in seconds) of the hash secret (or lifetime
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 for the hash secret) for IPv6 fragments.
919 Default: 600
920
921conf/default/*:
922 Change the interface-specific default settings.
923
924
925conf/all/*:
Jesper Dangaard Brouere18f5fe2009-02-23 04:39:04 +0000926 Change all the interface-specific settings.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927
928 [XXX: Other special features than forwarding?]
929
930conf/all/forwarding - BOOLEAN
Jesper Dangaard Brouere18f5fe2009-02-23 04:39:04 +0000931 Enable global IPv6 forwarding between all interfaces.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932
Jesper Dangaard Brouere18f5fe2009-02-23 04:39:04 +0000933 IPv4 and IPv6 work differently here; e.g. netfilter must be used
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 to control which interfaces may forward packets and which not.
935
Jesper Dangaard Brouere18f5fe2009-02-23 04:39:04 +0000936 This also sets all interfaces' Host/Router setting
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 'forwarding' to the specified value. See below for details.
938
939 This referred to as global forwarding.
940
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -0700941proxy_ndp - BOOLEAN
942 Do proxy ndp.
943
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944conf/interface/*:
945 Change special settings per interface.
946
Jesper Dangaard Brouere18f5fe2009-02-23 04:39:04 +0000947 The functional behaviour for certain settings is different
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 depending on whether local forwarding is enabled or not.
949
950accept_ra - BOOLEAN
951 Accept Router Advertisements; autoconfigure using them.
Jesper Dangaard Brouere18f5fe2009-02-23 04:39:04 +0000952
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 Functional default: enabled if local forwarding is disabled.
954 disabled if local forwarding is enabled.
955
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -0800956accept_ra_defrtr - BOOLEAN
957 Learn default router in Router Advertisement.
958
959 Functional default: enabled if accept_ra is enabled.
960 disabled if accept_ra is disabled.
961
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -0800962accept_ra_pinfo - BOOLEAN
Matt LaPlante2fe0ae72006-10-03 22:50:39 +0200963 Learn Prefix Information in Router Advertisement.
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -0800964
965 Functional default: enabled if accept_ra is enabled.
966 disabled if accept_ra is disabled.
967
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -0800968accept_ra_rt_info_max_plen - INTEGER
969 Maximum prefix length of Route Information in RA.
970
971 Route Information w/ prefix larger than or equal to this
972 variable shall be ignored.
973
974 Functional default: 0 if accept_ra_rtr_pref is enabled.
975 -1 if accept_ra_rtr_pref is disabled.
976
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -0800977accept_ra_rtr_pref - BOOLEAN
978 Accept Router Preference in RA.
979
980 Functional default: enabled if accept_ra is enabled.
981 disabled if accept_ra is disabled.
982
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983accept_redirects - BOOLEAN
984 Accept Redirects.
985
986 Functional default: enabled if local forwarding is disabled.
987 disabled if local forwarding is enabled.
988
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -0700989accept_source_route - INTEGER
990 Accept source routing (routing extension header).
991
YOSHIFUJI Hideakibb4dbf92007-07-10 22:55:49 -0700992 >= 0: Accept only routing header type 2.
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -0700993 < 0: Do not accept routing header.
994
995 Default: 0
996
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997autoconf - BOOLEAN
Jesper Dangaard Brouere18f5fe2009-02-23 04:39:04 +0000998 Autoconfigure addresses using Prefix Information in Router
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 Advertisements.
1000
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -08001001 Functional default: enabled if accept_ra_pinfo is enabled.
1002 disabled if accept_ra_pinfo is disabled.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003
1004dad_transmits - INTEGER
1005 The amount of Duplicate Address Detection probes to send.
1006 Default: 1
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007
Jesper Dangaard Brouere18f5fe2009-02-23 04:39:04 +00001008forwarding - BOOLEAN
1009 Configure interface-specific Host/Router behaviour.
1010
1011 Note: It is recommended to have the same setting on all
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 interfaces; mixed router/host scenarios are rather uncommon.
1013
1014 FALSE:
1015
1016 By default, Host behaviour is assumed. This means:
1017
1018 1. IsRouter flag is not set in Neighbour Advertisements.
1019 2. Router Solicitations are being sent when necessary.
Jesper Dangaard Brouere18f5fe2009-02-23 04:39:04 +00001020 3. If accept_ra is TRUE (default), accept Router
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 Advertisements (and do autoconfiguration).
1022 4. If accept_redirects is TRUE (default), accept Redirects.
1023
1024 TRUE:
1025
Jesper Dangaard Brouere18f5fe2009-02-23 04:39:04 +00001026 If local forwarding is enabled, Router behaviour is assumed.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 This means exactly the reverse from the above:
1028
1029 1. IsRouter flag is set in Neighbour Advertisements.
1030 2. Router Solicitations are not sent.
1031 3. Router Advertisements are ignored.
1032 4. Redirects are ignored.
1033
1034 Default: FALSE if global forwarding is disabled (default),
1035 otherwise TRUE.
1036
1037hop_limit - INTEGER
1038 Default Hop Limit to set.
1039 Default: 64
1040
1041mtu - INTEGER
1042 Default Maximum Transfer Unit
1043 Default: 1280 (IPv6 required minimum)
1044
YOSHIFUJI Hideaki52e163562006-03-20 17:05:47 -08001045router_probe_interval - INTEGER
1046 Minimum interval (in seconds) between Router Probing described
1047 in RFC4191.
1048
1049 Default: 60
1050
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051router_solicitation_delay - INTEGER
1052 Number of seconds to wait after interface is brought up
1053 before sending Router Solicitations.
1054 Default: 1
1055
1056router_solicitation_interval - INTEGER
1057 Number of seconds to wait between Router Solicitations.
1058 Default: 4
1059
1060router_solicitations - INTEGER
Jesper Dangaard Brouere18f5fe2009-02-23 04:39:04 +00001061 Number of Router Solicitations to send until assuming no
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 routers are present.
1063 Default: 3
1064
1065use_tempaddr - INTEGER
1066 Preference for Privacy Extensions (RFC3041).
1067 <= 0 : disable Privacy Extensions
1068 == 1 : enable Privacy Extensions, but prefer public
1069 addresses over temporary addresses.
1070 > 1 : enable Privacy Extensions and prefer temporary
1071 addresses over public addresses.
1072 Default: 0 (for most devices)
1073 -1 (for point-to-point devices and loopback devices)
1074
1075temp_valid_lft - INTEGER
1076 valid lifetime (in seconds) for temporary addresses.
1077 Default: 604800 (7 days)
1078
1079temp_prefered_lft - INTEGER
1080 Preferred lifetime (in seconds) for temporary addresses.
1081 Default: 86400 (1 day)
1082
1083max_desync_factor - INTEGER
1084 Maximum value for DESYNC_FACTOR, which is a random value
Jesper Dangaard Brouere18f5fe2009-02-23 04:39:04 +00001085 that ensures that clients don't synchronize with each
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 other and generate new addresses at exactly the same time.
1087 value is in seconds.
1088 Default: 600
Jesper Dangaard Brouere18f5fe2009-02-23 04:39:04 +00001089
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090regen_max_retry - INTEGER
1091 Number of attempts before give up attempting to generate
1092 valid temporary addresses.
1093 Default: 5
1094
1095max_addresses - INTEGER
1096 Number of maximum addresses per interface. 0 disables limitation.
Jesper Dangaard Brouere18f5fe2009-02-23 04:39:04 +00001097 It is recommended not set too large value (or 0) because it would
1098 be too easy way to crash kernel to allow to create too much of
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 autoconfigured addresses.
1100 Default: 16
1101
YOSHIFUJI Hideaki778d80b2008-06-28 14:17:11 +09001102disable_ipv6 - BOOLEAN
Brian Haley9bdd8d42009-03-18 18:22:48 -07001103 Disable IPv6 operation. If accept_dad is set to 2, this value
1104 will be dynamically set to TRUE if DAD fails for the link-local
1105 address.
YOSHIFUJI Hideaki778d80b2008-06-28 14:17:11 +09001106 Default: FALSE (enable IPv6 operation)
1107
Brian Haley56d417b2009-06-01 03:07:33 -07001108 When this value is changed from 1 to 0 (IPv6 is being enabled),
1109 it will dynamically create a link-local address on the given
1110 interface and start Duplicate Address Detection, if necessary.
1111
1112 When this value is changed from 0 to 1 (IPv6 is being disabled),
1113 it will dynamically delete all address on the given interface.
1114
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09001115accept_dad - INTEGER
1116 Whether to accept DAD (Duplicate Address Detection).
1117 0: Disable DAD
1118 1: Enable DAD (default)
1119 2: Enable DAD, and disable IPv6 operation if MAC-based duplicate
1120 link-local address has been found.
1121
Octavian Purdilaf7734fd2009-10-02 11:39:15 +00001122force_tllao - BOOLEAN
1123 Enable sending the target link-layer address option even when
1124 responding to a unicast neighbor solicitation.
1125 Default: FALSE
1126
1127 Quoting from RFC 2461, section 4.4, Target link-layer address:
1128
1129 "The option MUST be included for multicast solicitations in order to
1130 avoid infinite Neighbor Solicitation "recursion" when the peer node
1131 does not have a cache entry to return a Neighbor Advertisements
1132 message. When responding to unicast solicitations, the option can be
1133 omitted since the sender of the solicitation has the correct link-
1134 layer address; otherwise it would not have be able to send the unicast
1135 solicitation in the first place. However, including the link-layer
1136 address in this case adds little overhead and eliminates a potential
1137 race condition where the sender deletes the cached link-layer address
1138 prior to receiving a response to a previous solicitation."
1139
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140icmp/*:
1141ratelimit - INTEGER
1142 Limit the maximal rates for sending ICMPv6 packets.
Stephen Hemminger6dbf4bc2008-07-01 19:29:07 -07001143 0 to disable any limiting,
1144 otherwise the minimal space between responses in milliseconds.
1145 Default: 1000
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146
1147
1148IPv6 Update by:
1149Pekka Savola <pekkas@netcore.fi>
1150YOSHIFUJI Hideaki / USAGI Project <yoshfuji@linux-ipv6.org>
1151
1152
1153/proc/sys/net/bridge/* Variables:
1154
1155bridge-nf-call-arptables - BOOLEAN
1156 1 : pass bridged ARP traffic to arptables' FORWARD chain.
1157 0 : disable this.
1158 Default: 1
1159
1160bridge-nf-call-iptables - BOOLEAN
1161 1 : pass bridged IPv4 traffic to iptables' chains.
1162 0 : disable this.
1163 Default: 1
1164
1165bridge-nf-call-ip6tables - BOOLEAN
1166 1 : pass bridged IPv6 traffic to ip6tables' chains.
1167 0 : disable this.
1168 Default: 1
1169
1170bridge-nf-filter-vlan-tagged - BOOLEAN
Michael Milner516299d2007-04-12 22:14:23 -07001171 1 : pass bridged vlan-tagged ARP/IP/IPv6 traffic to {arp,ip,ip6}tables.
1172 0 : disable this.
1173 Default: 1
1174
1175bridge-nf-filter-pppoe-tagged - BOOLEAN
1176 1 : pass bridged pppoe-tagged IP/IPv6 traffic to {ip,ip6}tables.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 0 : disable this.
1178 Default: 1
1179
1180
Vlad Yasevich32e8d492008-07-08 16:43:29 -07001181proc/sys/net/sctp/* Variables:
1182
1183addip_enable - BOOLEAN
1184 Enable or disable extension of Dynamic Address Reconfiguration
1185 (ADD-IP) functionality specified in RFC5061. This extension provides
1186 the ability to dynamically add and remove new addresses for the SCTP
1187 associations.
1188
1189 1: Enable extension.
1190
1191 0: Disable extension.
1192
1193 Default: 0
1194
1195addip_noauth_enable - BOOLEAN
1196 Dynamic Address Reconfiguration (ADD-IP) requires the use of
1197 authentication to protect the operations of adding or removing new
1198 addresses. This requirement is mandated so that unauthorized hosts
1199 would not be able to hijack associations. However, older
1200 implementations may not have implemented this requirement while
1201 allowing the ADD-IP extension. For reasons of interoperability,
1202 we provide this variable to control the enforcement of the
1203 authentication requirement.
1204
1205 1: Allow ADD-IP extension to be used without authentication. This
1206 should only be set in a closed environment for interoperability
1207 with older implementations.
1208
1209 0: Enforce the authentication requirement
1210
1211 Default: 0
1212
1213auth_enable - BOOLEAN
1214 Enable or disable Authenticated Chunks extension. This extension
1215 provides the ability to send and receive authenticated chunks and is
1216 required for secure operation of Dynamic Address Reconfiguration
1217 (ADD-IP) extension.
1218
1219 1: Enable this extension.
1220 0: Disable this extension.
1221
1222 Default: 0
1223
1224prsctp_enable - BOOLEAN
1225 Enable or disable the Partial Reliability extension (RFC3758) which
1226 is used to notify peers that a given DATA should no longer be expected.
1227
1228 1: Enable extension
1229 0: Disable
1230
1231 Default: 1
1232
1233max_burst - INTEGER
1234 The limit of the number of new packets that can be initially sent. It
1235 controls how bursty the generated traffic can be.
1236
1237 Default: 4
1238
1239association_max_retrans - INTEGER
1240 Set the maximum number for retransmissions that an association can
1241 attempt deciding that the remote end is unreachable. If this value
1242 is exceeded, the association is terminated.
1243
1244 Default: 10
1245
1246max_init_retransmits - INTEGER
1247 The maximum number of retransmissions of INIT and COOKIE-ECHO chunks
1248 that an association will attempt before declaring the destination
1249 unreachable and terminating.
1250
1251 Default: 8
1252
1253path_max_retrans - INTEGER
1254 The maximum number of retransmissions that will be attempted on a given
1255 path. Once this threshold is exceeded, the path is considered
1256 unreachable, and new traffic will use a different path when the
1257 association is multihomed.
1258
1259 Default: 5
1260
1261rto_initial - INTEGER
1262 The initial round trip timeout value in milliseconds that will be used
1263 in calculating round trip times. This is the initial time interval
1264 for retransmissions.
1265
1266 Default: 3000
1267
1268rto_max - INTEGER
1269 The maximum value (in milliseconds) of the round trip timeout. This
1270 is the largest time interval that can elapse between retransmissions.
1271
1272 Default: 60000
1273
1274rto_min - INTEGER
1275 The minimum value (in milliseconds) of the round trip timeout. This
1276 is the smallest time interval the can elapse between retransmissions.
1277
1278 Default: 1000
1279
1280hb_interval - INTEGER
1281 The interval (in milliseconds) between HEARTBEAT chunks. These chunks
1282 are sent at the specified interval on idle paths to probe the state of
1283 a given path between 2 associations.
1284
1285 Default: 30000
1286
1287sack_timeout - INTEGER
1288 The amount of time (in milliseconds) that the implementation will wait
1289 to send a SACK.
1290
1291 Default: 200
1292
1293valid_cookie_life - INTEGER
1294 The default lifetime of the SCTP cookie (in milliseconds). The cookie
1295 is used during association establishment.
1296
1297 Default: 60000
1298
1299cookie_preserve_enable - BOOLEAN
1300 Enable or disable the ability to extend the lifetime of the SCTP cookie
1301 that is used during the establishment phase of SCTP association
1302
1303 1: Enable cookie lifetime extension.
1304 0: Disable
1305
1306 Default: 1
1307
1308rcvbuf_policy - INTEGER
1309 Determines if the receive buffer is attributed to the socket or to
1310 association. SCTP supports the capability to create multiple
1311 associations on a single socket. When using this capability, it is
1312 possible that a single stalled association that's buffering a lot
1313 of data may block other associations from delivering their data by
1314 consuming all of the receive buffer space. To work around this,
1315 the rcvbuf_policy could be set to attribute the receiver buffer space
1316 to each association instead of the socket. This prevents the described
1317 blocking.
1318
1319 1: rcvbuf space is per association
1320 0: recbuf space is per socket
1321
1322 Default: 0
1323
1324sndbuf_policy - INTEGER
1325 Similar to rcvbuf_policy above, this applies to send buffer space.
1326
1327 1: Send buffer is tracked per association
1328 0: Send buffer is tracked per socket.
1329
1330 Default: 0
1331
1332sctp_mem - vector of 3 INTEGERs: min, pressure, max
1333 Number of pages allowed for queueing by all SCTP sockets.
1334
1335 min: Below this number of pages SCTP is not bothered about its
1336 memory appetite. When amount of memory allocated by SCTP exceeds
1337 this number, SCTP starts to moderate memory usage.
1338
1339 pressure: This value was introduced to follow format of tcp_mem.
1340
1341 max: Number of pages allowed for queueing by all SCTP sockets.
1342
1343 Default is calculated at boot time from amount of available memory.
1344
1345sctp_rmem - vector of 3 INTEGERs: min, default, max
1346 See tcp_rmem for a description.
1347
1348sctp_wmem - vector of 3 INTEGERs: min, default, max
1349 See tcp_wmem for a description.
1350
Bhaskar Dutta72388432009-09-03 17:25:47 +05301351addr_scope_policy - INTEGER
1352 Control IPv4 address scoping - draft-stewart-tsvwg-sctp-ipv4-00
1353
1354 0 - Disable IPv4 address scoping
1355 1 - Enable IPv4 address scoping
1356 2 - Follow draft but allow IPv4 private addresses
1357 3 - Follow draft but allow IPv4 link local addresses
1358
1359 Default: 1
1360
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361
Stephen Hemminger4edc2f32008-07-10 16:50:26 -07001362/proc/sys/net/core/*
Wang Tinggong705efc32009-05-14 22:49:36 +00001363dev_weight - INTEGER
1364 The maximum number of packets that kernel can handle on a NAPI
1365 interrupt, it's a Per-CPU variable.
1366
1367 Default: 64
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368
Stephen Hemminger4edc2f32008-07-10 16:50:26 -07001369/proc/sys/net/unix/*
Wang Tinggong705efc32009-05-14 22:49:36 +00001370max_dgram_qlen - INTEGER
1371 The maximum length of dgram socket receive queue
1372
1373 Default: 10
1374
1375
1376UNDOCUMENTED:
Stephen Hemminger4edc2f32008-07-10 16:50:26 -07001377
1378/proc/sys/net/irda/*
1379 fast_poll_increase FIXME
1380 warn_noreply_time FIXME
1381 discovery_slots FIXME
1382 slot_timeout FIXME
1383 max_baud_rate FIXME
1384 discovery_timeout FIXME
1385 lap_keepalive_time FIXME
1386 max_noreply_time FIXME
1387 max_tx_data_size FIXME
1388 max_tx_window FIXME
1389 min_tx_turn_time FIXME