blob: fbe427a6580cc5996a3352c4115327db371eaecc [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
167tcp_dsack - BOOLEAN
168 Allows TCP to send "duplicate" SACKs.
169
170tcp_ecn - BOOLEAN
Ilpo Järvinen255cac92009-05-04 11:07:36 -0700171 Enable Explicit Congestion Notification (ECN) in TCP. ECN is only
172 used when both ends of the TCP flow support it. It is useful to
173 avoid losses due to congestion (when the bottleneck router supports
174 ECN).
175 Possible values are:
176 0 disable ECN
177 1 ECN enabled
178 2 Only server-side ECN enabled. If the other end does
179 not support ECN, behavior is like with ECN disabled.
180 Default: 2
Stephen Hemmingeref56e622006-11-09 16:37:26 -0800181
182tcp_fack - BOOLEAN
183 Enable FACK congestion avoidance and fast retransmission.
184 The value is not used, if tcp_sack is not enabled.
185
186tcp_fin_timeout - INTEGER
187 Time to hold socket in state FIN-WAIT-2, if it was closed
188 by our side. Peer can be broken and never close its side,
189 or even died unexpectedly. Default value is 60sec.
190 Usual value used in 2.2 was 180 seconds, you may restore
191 it, but remember that if your machine is even underloaded WEB server,
192 you risk to overflow memory with kilotons of dead sockets,
193 FIN-WAIT-2 sockets are less dangerous than FIN-WAIT-1,
194 because they eat maximum 1.5K of memory, but they tend
195 to live longer. Cf. tcp_max_orphans.
196
Ilpo Järvinen89808062007-02-27 10:10:55 -0800197tcp_frto - INTEGER
Ilpo Järvinencd998892007-09-20 11:35:26 -0700198 Enables Forward RTO-Recovery (F-RTO) defined in RFC4138.
199 F-RTO is an enhanced recovery algorithm for TCP retransmission
Stephen Hemmingeref56e622006-11-09 16:37:26 -0800200 timeouts. It is particularly beneficial in wireless environments
201 where packet loss is typically due to random radio interference
Ryousei Takano564262c12007-10-25 23:03:52 -0700202 rather than intermediate router congestion. F-RTO is sender-side
Stephen Hemminger4edc2f32008-07-10 16:50:26 -0700203 only modification. Therefore it does not require any support from
204 the peer.
205
Ilpo Järvinencd998892007-09-20 11:35:26 -0700206 If set to 1, basic version is enabled. 2 enables SACK enhanced
207 F-RTO if flow uses SACK. The basic version can be used also when
Ryousei Takano564262c12007-10-25 23:03:52 -0700208 SACK is in use though scenario(s) with it exists where F-RTO
Ilpo Järvinencd998892007-09-20 11:35:26 -0700209 interacts badly with the packet counting of the SACK enabled TCP
210 flow.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
Ilpo Järvinen89808062007-02-27 10:10:55 -0800212tcp_frto_response - INTEGER
213 When F-RTO has detected that a TCP retransmission timeout was
214 spurious (i.e, the timeout would have been avoided had TCP set a
215 longer retransmission timeout), TCP has several options what to do
216 next. Possible values are:
217 0 Rate halving based; a smooth and conservative response,
218 results in halved cwnd and ssthresh after one RTT
219 1 Very conservative response; not recommended because even
220 though being valid, it interacts poorly with the rest of
221 Linux TCP, halves cwnd and ssthresh immediately
222 2 Aggressive response; undoes congestion control measures
223 that are now known to be unnecessary (ignoring the
224 possibility of a lost retransmission that would require
225 TCP to be more cautious), cwnd and ssthresh are restored
226 to the values prior timeout
227 Default: 0 (rate halving based)
228
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229tcp_keepalive_time - INTEGER
230 How often TCP sends out keepalive messages when keepalive is enabled.
231 Default: 2hours.
232
233tcp_keepalive_probes - INTEGER
234 How many keepalive probes TCP sends out, until it decides that the
235 connection is broken. Default value: 9.
236
237tcp_keepalive_intvl - INTEGER
238 How frequently the probes are send out. Multiplied by
239 tcp_keepalive_probes it is time to kill not responding connection,
240 after probes started. Default value: 75sec i.e. connection
241 will be aborted after ~11 minutes of retries.
242
Stephen Hemmingeref56e622006-11-09 16:37:26 -0800243tcp_low_latency - BOOLEAN
244 If set, the TCP stack makes decisions that prefer lower
245 latency as opposed to higher throughput. By default, this
246 option is not set meaning that higher throughput is preferred.
247 An example of an application where this default should be
248 changed would be a Beowulf compute cluster.
249 Default: 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
251tcp_max_orphans - INTEGER
252 Maximal number of TCP sockets not attached to any user file handle,
253 held by system. If this number is exceeded orphaned connections are
254 reset immediately and warning is printed. This limit exists
255 only to prevent simple DoS attacks, you _must_ not rely on this
256 or lower the limit artificially, but rather increase it
257 (probably, after increasing installed memory),
258 if network conditions require more than default value,
259 and tune network services to linger and kill such states
260 more aggressively. Let me to remind again: each orphan eats
261 up to ~64K of unswappable memory.
262
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263tcp_max_syn_backlog - INTEGER
264 Maximal number of remembered connection requests, which are
265 still did not receive an acknowledgment from connecting client.
266 Default value is 1024 for systems with more than 128Mb of memory,
267 and 128 for low memory machines. If server suffers of overload,
268 try to increase this number.
269
Stephen Hemmingeref56e622006-11-09 16:37:26 -0800270tcp_max_tw_buckets - INTEGER
271 Maximal number of timewait sockets held by system simultaneously.
272 If this number is exceeded time-wait socket is immediately destroyed
273 and warning is printed. This limit exists only to prevent
274 simple DoS attacks, you _must_ not lower the limit artificially,
275 but rather increase it (probably, after increasing installed memory),
276 if network conditions require more than default value.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277
Stephen Hemmingeref56e622006-11-09 16:37:26 -0800278tcp_mem - vector of 3 INTEGERs: min, pressure, max
279 min: below this number of pages TCP is not bothered about its
280 memory appetite.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
Stephen Hemmingeref56e622006-11-09 16:37:26 -0800282 pressure: when amount of memory allocated by TCP exceeds this number
283 of pages, TCP moderates its memory consumption and enters memory
284 pressure mode, which is exited when memory consumption falls
285 under "min".
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286
Stephen Hemmingeref56e622006-11-09 16:37:26 -0800287 max: number of pages allowed for queueing by all TCP sockets.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
Stephen Hemmingeref56e622006-11-09 16:37:26 -0800289 Defaults are calculated at boot time from amount of available
290 memory.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
John Heffner71599cd2007-02-27 10:03:56 -0800292tcp_moderate_rcvbuf - BOOLEAN
Stephen Hemminger4edc2f32008-07-10 16:50:26 -0700293 If set, TCP performs receive buffer auto-tuning, attempting to
John Heffner71599cd2007-02-27 10:03:56 -0800294 automatically size the buffer (no greater than tcp_rmem[2]) to
295 match the size required by the path for full throughput. Enabled by
296 default.
297
298tcp_mtu_probing - INTEGER
299 Controls TCP Packetization-Layer Path MTU Discovery. Takes three
300 values:
301 0 - Disabled
302 1 - Disabled by default, enabled when an ICMP black hole detected
303 2 - Always enabled, use initial MSS of tcp_base_mss.
304
305tcp_no_metrics_save - BOOLEAN
306 By default, TCP saves various connection metrics in the route cache
307 when the connection closes, so that connections established in the
308 near future can use these to set initial conditions. Usually, this
309 increases overall performance, but may sometimes cause performance
Simon Arlott0f035b82007-10-20 01:30:25 +0200310 degradation. If set, TCP will not cache metrics on closing
John Heffner71599cd2007-02-27 10:03:56 -0800311 connections.
312
Stephen Hemmingeref56e622006-11-09 16:37:26 -0800313tcp_orphan_retries - INTEGER
Damian Lukowski5d789222009-09-01 10:24:04 +0000314 This value influences the timeout of a locally closed TCP connection,
315 when RTO retransmissions remain unacknowledged.
316 See tcp_retries2 for more details.
317
318 The default value is 7.
319 If your machine is a loaded WEB server,
Stephen Hemmingeref56e622006-11-09 16:37:26 -0800320 you should think about lowering this value, such sockets
321 may consume significant resources. Cf. tcp_max_orphans.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
323tcp_reordering - INTEGER
324 Maximal reordering of packets in a TCP stream.
Jesper Dangaard Brouere18f5fe2009-02-23 04:39:04 +0000325 Default: 3
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
327tcp_retrans_collapse - BOOLEAN
328 Bug-to-bug compatibility with some broken printers.
329 On retransmit try to send bigger packets to work around bugs in
330 certain TCP stacks.
331
Stephen Hemmingeref56e622006-11-09 16:37:26 -0800332tcp_retries1 - INTEGER
Damian Lukowski5d789222009-09-01 10:24:04 +0000333 This value influences the time, after which TCP decides, that
334 something is wrong due to unacknowledged RTO retransmissions,
335 and reports this suspicion to the network layer.
336 See tcp_retries2 for more details.
337
338 RFC 1122 recommends at least 3 retransmissions, which is the
339 default.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340
Stephen Hemmingeref56e622006-11-09 16:37:26 -0800341tcp_retries2 - INTEGER
Damian Lukowski5d789222009-09-01 10:24:04 +0000342 This value influences the timeout of an alive TCP connection,
343 when RTO retransmissions remain unacknowledged.
344 Given a value of N, a hypothetical TCP connection following
345 exponential backoff with an initial RTO of TCP_RTO_MIN would
346 retransmit N times before killing the connection at the (N+1)th RTO.
347
348 The default value of 15 yields a hypothetical timeout of 924.6
349 seconds and is a lower bound for the effective timeout.
350 TCP will effectively time out at the first RTO which exceeds the
351 hypothetical timeout.
352
353 RFC 1122 recommends at least 100 seconds for the timeout,
354 which corresponds to a value of at least 8.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
Stephen Hemmingeref56e622006-11-09 16:37:26 -0800356tcp_rfc1337 - BOOLEAN
357 If set, the TCP stack behaves conforming to RFC1337. If unset,
358 we are not conforming to RFC, but prevent TCP TIME_WAIT
359 assassination.
360 Default: 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
362tcp_rmem - vector of 3 INTEGERs: min, default, max
363 min: Minimal size of receive buffer used by TCP sockets.
364 It is guaranteed to each TCP socket, even under moderate memory
365 pressure.
366 Default: 8K
367
J. Bruce Fields53025f52008-07-10 16:47:41 -0700368 default: initial size of receive buffer used by TCP sockets.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 This value overrides net.core.rmem_default used by other protocols.
370 Default: 87380 bytes. This value results in window of 65535 with
371 default setting of tcp_adv_win_scale and tcp_app_win:0 and a bit
372 less for default tcp_app_win. See below about these variables.
373
374 max: maximal size of receive buffer allowed for automatically
375 selected receiver buffers for TCP socket. This value does not override
J. Bruce Fields53025f52008-07-10 16:47:41 -0700376 net.core.rmem_max. Calling setsockopt() with SO_RCVBUF disables
377 automatic tuning of that socket's receive buffer size, in which
378 case this value is ignored.
379 Default: between 87380B and 4MB, depending on RAM size.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380
Stephen Hemmingeref56e622006-11-09 16:37:26 -0800381tcp_sack - BOOLEAN
382 Enable select acknowledgments (SACKS).
Rick Jones15d99e02006-03-20 22:40:29 -0800383
David S. Miller35089bb2006-06-13 22:33:04 -0700384tcp_slow_start_after_idle - BOOLEAN
385 If set, provide RFC2861 behavior and time out the congestion
386 window after an idle period. An idle period is defined at
387 the current RTO. If unset, the congestion window will not
388 be timed out after an idle period.
389 Default: 1
390
Stephen Hemmingeref56e622006-11-09 16:37:26 -0800391tcp_stdurg - BOOLEAN
Stephen Hemminger4edc2f32008-07-10 16:50:26 -0700392 Use the Host requirements interpretation of the TCP urgent pointer field.
Stephen Hemmingeref56e622006-11-09 16:37:26 -0800393 Most hosts use the older BSD interpretation, so if you turn this on
394 Linux might not communicate correctly with them.
395 Default: FALSE
396
397tcp_synack_retries - INTEGER
398 Number of times SYNACKs for a passive TCP connection attempt will
399 be retransmitted. Should not be higher than 255. Default value
400 is 5, which corresponds to ~180seconds.
401
402tcp_syncookies - BOOLEAN
403 Only valid when the kernel was compiled with CONFIG_SYNCOOKIES
404 Send out syncookies when the syn backlog queue of a socket
Stephen Hemminger4edc2f32008-07-10 16:50:26 -0700405 overflows. This is to prevent against the common 'SYN flood attack'
Stephen Hemmingeref56e622006-11-09 16:37:26 -0800406 Default: FALSE
407
408 Note, that syncookies is fallback facility.
409 It MUST NOT be used to help highly loaded servers to stand
Stephen Hemminger4edc2f32008-07-10 16:50:26 -0700410 against legal connection rate. If you see SYN flood warnings
Stephen Hemmingeref56e622006-11-09 16:37:26 -0800411 in your logs, but investigation shows that they occur
412 because of overload with legal connections, you should tune
413 another parameters until this warning disappear.
414 See: tcp_max_syn_backlog, tcp_synack_retries, tcp_abort_on_overflow.
415
416 syncookies seriously violate TCP protocol, do not allow
417 to use TCP extensions, can result in serious degradation
418 of some services (f.e. SMTP relaying), visible not by you,
419 but your clients and relays, contacting you. While you see
Stephen Hemminger4edc2f32008-07-10 16:50:26 -0700420 SYN flood warnings in logs not being really flooded, your server
Stephen Hemmingeref56e622006-11-09 16:37:26 -0800421 is seriously misconfigured.
422
423tcp_syn_retries - INTEGER
424 Number of times initial SYNs for an active TCP connection attempt
425 will be retransmitted. Should not be higher than 255. Default value
426 is 5, which corresponds to ~180seconds.
427
428tcp_timestamps - BOOLEAN
429 Enable timestamps as defined in RFC1323.
430
431tcp_tso_win_divisor - INTEGER
432 This allows control over what percentage of the congestion window
433 can be consumed by a single TSO frame.
434 The setting of this parameter is a choice between burstiness and
435 building larger TSO frames.
436 Default: 3
437
438tcp_tw_recycle - BOOLEAN
439 Enable fast recycling TIME-WAIT sockets. Default value is 0.
440 It should not be changed without advice/request of technical
441 experts.
442
443tcp_tw_reuse - BOOLEAN
444 Allow to reuse TIME-WAIT sockets for new connections when it is
445 safe from protocol viewpoint. Default value is 0.
446 It should not be changed without advice/request of technical
447 experts.
448
449tcp_window_scaling - BOOLEAN
450 Enable window scaling as defined in RFC1323.
451
452tcp_wmem - vector of 3 INTEGERs: min, default, max
J. Bruce Fields53025f52008-07-10 16:47:41 -0700453 min: Amount of memory reserved for send buffers for TCP sockets.
Stephen Hemmingeref56e622006-11-09 16:37:26 -0800454 Each TCP socket has rights to use it due to fact of its birth.
455 Default: 4K
456
J. Bruce Fields53025f52008-07-10 16:47:41 -0700457 default: initial size of send buffer used by TCP sockets. This
458 value overrides net.core.wmem_default used by other protocols.
459 It is usually lower than net.core.wmem_default.
Stephen Hemmingeref56e622006-11-09 16:37:26 -0800460 Default: 16K
461
J. Bruce Fields53025f52008-07-10 16:47:41 -0700462 max: Maximal amount of memory allowed for automatically tuned
463 send buffers for TCP sockets. This value does not override
464 net.core.wmem_max. Calling setsockopt() with SO_SNDBUF disables
465 automatic tuning of that socket's send buffer size, in which case
466 this value is ignored.
467 Default: between 64K and 4MB, depending on RAM size.
Stephen Hemmingeref56e622006-11-09 16:37:26 -0800468
469tcp_workaround_signed_windows - BOOLEAN
470 If set, assume no receipt of a window scaling option means the
471 remote TCP is broken and treats the window as a signed quantity.
472 If unset, assume the remote TCP is not broken even if we do
473 not receive a window scaling option from them.
474 Default: 0
475
Chris Leech72d0b7a2007-03-08 09:57:35 -0800476tcp_dma_copybreak - INTEGER
477 Lower limit, in bytes, of the size of socket reads that will be
478 offloaded to a DMA copy engine, if one is present in the system
479 and CONFIG_NET_DMA is enabled.
480 Default: 4096
481
Hideo Aoki95766ff2007-12-31 00:29:24 -0800482UDP variables:
483
484udp_mem - vector of 3 INTEGERs: min, pressure, max
485 Number of pages allowed for queueing by all UDP sockets.
486
487 min: Below this number of pages UDP is not bothered about its
488 memory appetite. When amount of memory allocated by UDP exceeds
489 this number, UDP starts to moderate memory usage.
490
491 pressure: This value was introduced to follow format of tcp_mem.
492
493 max: Number of pages allowed for queueing by all UDP sockets.
494
495 Default is calculated at boot time from amount of available memory.
496
497udp_rmem_min - INTEGER
498 Minimal size of receive buffer used by UDP sockets in moderation.
499 Each UDP socket is able to use the size for receiving data, even if
500 total pages of UDP sockets exceed udp_mem pressure. The unit is byte.
501 Default: 4096
502
503udp_wmem_min - INTEGER
504 Minimal size of send buffer used by UDP sockets in moderation.
505 Each UDP socket is able to use the size for sending data, even if
506 total pages of UDP sockets exceed udp_mem pressure. The unit is byte.
507 Default: 4096
508
Paul Moore8802f612006-08-03 16:45:49 -0700509CIPSOv4 Variables:
510
511cipso_cache_enable - BOOLEAN
512 If set, enable additions to and lookups from the CIPSO label mapping
513 cache. If unset, additions are ignored and lookups always result in a
514 miss. However, regardless of the setting the cache is still
515 invalidated when required when means you can safely toggle this on and
516 off and the cache will always be "safe".
517 Default: 1
518
519cipso_cache_bucket_size - INTEGER
520 The CIPSO label cache consists of a fixed size hash table with each
521 hash bucket containing a number of cache entries. This variable limits
522 the number of entries in each hash bucket; the larger the value the
523 more CIPSO label mappings that can be cached. When the number of
524 entries in a given hash bucket reaches this limit adding new entries
525 causes the oldest entry in the bucket to be removed to make room.
526 Default: 10
527
528cipso_rbm_optfmt - BOOLEAN
529 Enable the "Optimized Tag 1 Format" as defined in section 3.4.2.6 of
530 the CIPSO draft specification (see Documentation/netlabel for details).
531 This means that when set the CIPSO tag will be padded with empty
532 categories in order to make the packet data 32-bit aligned.
533 Default: 0
534
535cipso_rbm_structvalid - BOOLEAN
536 If set, do a very strict check of the CIPSO option when
537 ip_options_compile() is called. If unset, relax the checks done during
538 ip_options_compile(). Either way is "safe" as errors are caught else
539 where in the CIPSO processing code but setting this to 0 (False) should
540 result in less work (i.e. it should be faster) but could cause problems
541 with other implementations that require strict checking.
542 Default: 0
543
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544IP Variables:
545
546ip_local_port_range - 2 INTEGERS
547 Defines the local port range that is used by TCP and UDP to
Jesper Dangaard Brouere18f5fe2009-02-23 04:39:04 +0000548 choose the local port. The first number is the first, the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 second the last local port number. Default value depends on
550 amount of memory available on the system:
551 > 128Mb 32768-61000
552 < 128Mb 1024-4999 or even less.
553 This number defines number of active connections, which this
554 system can issue simultaneously to systems not supporting
555 TCP extensions (timestamps). With tcp_tw_recycle enabled
556 (i.e. by default) range 1024-4999 is enough to issue up to
557 2000 connections per second to systems supporting timestamps.
558
559ip_nonlocal_bind - BOOLEAN
560 If set, allows processes to bind() to non-local IP addresses,
561 which can be quite useful - but may break some applications.
562 Default: 0
563
564ip_dynaddr - BOOLEAN
565 If set non-zero, enables support for dynamic addresses.
566 If set to a non-zero value larger than 1, a kernel log
567 message will be printed when dynamic address rewriting
568 occurs.
569 Default: 0
570
571icmp_echo_ignore_all - BOOLEAN
David S. Miller7ce312462005-10-03 16:07:30 -0700572 If set non-zero, then the kernel will ignore all ICMP ECHO
573 requests sent to it.
574 Default: 0
575
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576icmp_echo_ignore_broadcasts - BOOLEAN
David S. Miller7ce312462005-10-03 16:07:30 -0700577 If set non-zero, then the kernel will ignore all ICMP ECHO and
578 TIMESTAMP requests sent to it via broadcast/multicast.
579 Default: 1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580
581icmp_ratelimit - INTEGER
582 Limit the maximal rates for sending ICMP packets whose type matches
583 icmp_ratemask (see below) to specific targets.
Stephen Hemminger6dbf4bc2008-07-01 19:29:07 -0700584 0 to disable any limiting,
585 otherwise the minimal space between responses in milliseconds.
586 Default: 1000
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587
588icmp_ratemask - INTEGER
589 Mask made of ICMP types for which rates are being limited.
590 Significant bits: IHGFEDCBA9876543210
591 Default mask: 0000001100000011000 (6168)
592
593 Bit definitions (see include/linux/icmp.h):
594 0 Echo Reply
595 3 Destination Unreachable *
596 4 Source Quench *
597 5 Redirect
598 8 Echo Request
599 B Time Exceeded *
600 C Parameter Problem *
601 D Timestamp Request
602 E Timestamp Reply
603 F Info Request
604 G Info Reply
605 H Address Mask Request
606 I Address Mask Reply
607
608 * These are rate limited by default (see default mask above)
609
610icmp_ignore_bogus_error_responses - BOOLEAN
611 Some routers violate RFC1122 by sending bogus responses to broadcast
612 frames. Such violations are normally logged via a kernel warning.
613 If this is set to TRUE, the kernel will not give such warnings, which
614 will avoid log file clutter.
615 Default: FALSE
616
Horms95f7daf2006-02-02 17:02:25 -0800617icmp_errors_use_inbound_ifaddr - BOOLEAN
618
619 If zero, icmp error messages are sent with the primary address of
620 the exiting interface.
Jesper Dangaard Brouere18f5fe2009-02-23 04:39:04 +0000621
Horms95f7daf2006-02-02 17:02:25 -0800622 If non-zero, the message will be sent with the primary address of
623 the interface that received the packet that caused the icmp error.
624 This is the behaviour network many administrators will expect from
625 a router. And it can make debugging complicated network layouts
Jesper Dangaard Brouere18f5fe2009-02-23 04:39:04 +0000626 much easier.
Horms95f7daf2006-02-02 17:02:25 -0800627
628 Note that if no primary address exists for the interface selected,
629 then the primary address of the first non-loopback interface that
Matt LaPlanted6bc8ac2006-10-03 22:54:15 +0200630 has one will be used regardless of this setting.
Horms95f7daf2006-02-02 17:02:25 -0800631
632 Default: 0
633
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634igmp_max_memberships - INTEGER
635 Change the maximum number of multicast groups we can subscribe to.
636 Default: 20
637
Jesper Dangaard Brouere18f5fe2009-02-23 04:39:04 +0000638conf/interface/* changes special settings per interface (where "interface" is
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 the name of your network interface)
640conf/all/* is special, changes the settings for all interfaces
641
642
643log_martians - BOOLEAN
644 Log packets with impossible addresses to kernel log.
645 log_martians for the interface will be enabled if at least one of
646 conf/{all,interface}/log_martians is set to TRUE,
647 it will be disabled otherwise
648
649accept_redirects - BOOLEAN
650 Accept ICMP redirect messages.
651 accept_redirects for the interface will be enabled if:
Jesper Dangaard Brouere18f5fe2009-02-23 04:39:04 +0000652 - both conf/{all,interface}/accept_redirects are TRUE in the case
653 forwarding for the interface is enabled
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 or
Jesper Dangaard Brouere18f5fe2009-02-23 04:39:04 +0000655 - at least one of conf/{all,interface}/accept_redirects is TRUE in the
656 case forwarding for the interface is disabled
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 accept_redirects for the interface will be disabled otherwise
658 default TRUE (host)
659 FALSE (router)
660
661forwarding - BOOLEAN
662 Enable IP forwarding on this interface.
663
664mc_forwarding - BOOLEAN
665 Do multicast routing. The kernel needs to be compiled with CONFIG_MROUTE
666 and a multicast routing daemon is required.
Jesper Dangaard Brouere18f5fe2009-02-23 04:39:04 +0000667 conf/all/mc_forwarding must also be set to TRUE to enable multicast
668 routing for the interface
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669
670medium_id - INTEGER
671 Integer value used to differentiate the devices by the medium they
672 are attached to. Two devices can have different id values when
673 the broadcast packets are received only on one of them.
674 The default value 0 means that the device is the only interface
675 to its medium, value of -1 means that medium is not known.
Jesper Dangaard Brouere18f5fe2009-02-23 04:39:04 +0000676
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 Currently, it is used to change the proxy_arp behavior:
678 the proxy_arp feature is enabled for packets forwarded between
679 two devices attached to different media.
680
681proxy_arp - BOOLEAN
682 Do proxy arp.
683 proxy_arp for the interface will be enabled if at least one of
684 conf/{all,interface}/proxy_arp is set to TRUE,
685 it will be disabled otherwise
686
687shared_media - BOOLEAN
688 Send(router) or accept(host) RFC1620 shared media redirects.
689 Overrides ip_secure_redirects.
690 shared_media for the interface will be enabled if at least one of
691 conf/{all,interface}/shared_media is set to TRUE,
692 it will be disabled otherwise
693 default TRUE
694
695secure_redirects - BOOLEAN
696 Accept ICMP redirect messages only for gateways,
697 listed in default gateway list.
698 secure_redirects for the interface will be enabled if at least one of
699 conf/{all,interface}/secure_redirects is set to TRUE,
700 it will be disabled otherwise
701 default TRUE
702
703send_redirects - BOOLEAN
704 Send redirects, if router.
705 send_redirects for the interface will be enabled if at least one of
706 conf/{all,interface}/send_redirects is set to TRUE,
707 it will be disabled otherwise
708 Default: TRUE
709
710bootp_relay - BOOLEAN
711 Accept packets with source address 0.b.c.d destined
712 not to this host as local ones. It is supposed, that
713 BOOTP relay daemon will catch and forward such packets.
714 conf/all/bootp_relay must also be set to TRUE to enable BOOTP relay
715 for the interface
716 default FALSE
717 Not Implemented Yet.
718
719accept_source_route - BOOLEAN
720 Accept packets with SRR option.
721 conf/all/accept_source_route must also be set to TRUE to accept packets
722 with SRR option on the interface
723 default TRUE (router)
724 FALSE (host)
725
Stephen Hemmingerc1cf8422009-02-20 08:25:36 +0000726rp_filter - INTEGER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 0 - No source validation.
Stephen Hemmingerc1cf8422009-02-20 08:25:36 +0000728 1 - Strict mode as defined in RFC3704 Strict Reverse Path
729 Each incoming packet is tested against the FIB and if the interface
730 is not the best reverse path the packet check will fail.
731 By default failed packets are discarded.
732 2 - Loose mode as defined in RFC3704 Loose Reverse Path
733 Each incoming packet's source address is also tested against the FIB
734 and if the source address is not reachable via any interface
735 the packet check will fail.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736
Jesper Dangaard Brouere18f5fe2009-02-23 04:39:04 +0000737 Current recommended practice in RFC3704 is to enable strict mode
Jesper Dangaard Brouerbf869c32009-02-23 04:37:55 +0000738 to prevent IP spoofing from DDos attacks. If using asymmetric routing
Jesper Dangaard Brouere18f5fe2009-02-23 04:39:04 +0000739 or other complicated routing, then loose mode is recommended.
Stephen Hemmingerc1cf8422009-02-20 08:25:36 +0000740
741 conf/all/rp_filter must also be set to non-zero to do source validation
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 on the interface
743
744 Default value is 0. Note that some distributions enable it
745 in startup scripts.
746
747arp_filter - BOOLEAN
748 1 - Allows you to have multiple network interfaces on the same
749 subnet, and have the ARPs for each interface be answered
750 based on whether or not the kernel would route a packet from
751 the ARP'd IP out that interface (therefore you must use source
752 based routing for this to work). In other words it allows control
753 of which cards (usually 1) will respond to an arp request.
754
755 0 - (default) The kernel can respond to arp requests with addresses
756 from other interfaces. This may seem wrong but it usually makes
757 sense, because it increases the chance of successful communication.
758 IP addresses are owned by the complete host on Linux, not by
759 particular interfaces. Only for more complex setups like load-
760 balancing, does this behaviour cause problems.
761
762 arp_filter for the interface will be enabled if at least one of
763 conf/{all,interface}/arp_filter is set to TRUE,
764 it will be disabled otherwise
765
766arp_announce - INTEGER
767 Define different restriction levels for announcing the local
768 source IP address from IP packets in ARP requests sent on
769 interface:
770 0 - (default) Use any local address, configured on any interface
771 1 - Try to avoid local addresses that are not in the target's
772 subnet for this interface. This mode is useful when target
773 hosts reachable via this interface require the source IP
774 address in ARP requests to be part of their logical network
775 configured on the receiving interface. When we generate the
776 request we will check all our subnets that include the
777 target IP and will preserve the source address if it is from
778 such subnet. If there is no such subnet we select source
779 address according to the rules for level 2.
780 2 - Always use the best local address for this target.
781 In this mode we ignore the source address in the IP packet
782 and try to select local address that we prefer for talks with
783 the target host. Such local address is selected by looking
784 for primary IP addresses on all our subnets on the outgoing
785 interface that include the target IP address. If no suitable
786 local address is found we select the first local address
787 we have on the outgoing interface or on all other interfaces,
788 with the hope we will receive reply for our request and
789 even sometimes no matter the source IP address we announce.
790
791 The max value from conf/{all,interface}/arp_announce is used.
792
793 Increasing the restriction level gives more chance for
794 receiving answer from the resolved target while decreasing
795 the level announces more valid sender's information.
796
797arp_ignore - INTEGER
798 Define different modes for sending replies in response to
799 received ARP requests that resolve local target IP addresses:
800 0 - (default): reply for any local target IP address, configured
801 on any interface
802 1 - reply only if the target IP address is local address
803 configured on the incoming interface
804 2 - reply only if the target IP address is local address
805 configured on the incoming interface and both with the
806 sender's IP address are part from same subnet on this interface
807 3 - do not reply for local addresses configured with scope host,
808 only resolutions for global and link addresses are replied
809 4-7 - reserved
810 8 - do not reply for all local addresses
811
812 The max value from conf/{all,interface}/arp_ignore is used
813 when ARP request is received on the {interface}
814
Stephen Hemmingereefef1c2009-02-01 01:04:33 -0800815arp_notify - BOOLEAN
816 Define mode for notification of address and device changes.
817 0 - (default): do nothing
818 1 - Generate gratuitous arp replies when device is brought up
819 or hardware address changes.
820
Neil Hormanc1b1bce2006-03-20 22:40:03 -0800821arp_accept - BOOLEAN
822 Define behavior when gratuitous arp replies are received:
823 0 - drop gratuitous arp frames
824 1 - accept gratuitous arp frames
825
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826app_solicit - INTEGER
827 The maximum number of probes to send to the user space ARP daemon
828 via netlink before dropping back to multicast probes (see
829 mcast_solicit). Defaults to 0.
830
831disable_policy - BOOLEAN
832 Disable IPSEC policy (SPD) for this interface
833
834disable_xfrm - BOOLEAN
835 Disable IPSEC encryption on this interface, whatever the policy
836
837
838
839tag - INTEGER
840 Allows you to write a number, which can be used as required.
841 Default value is 0.
842
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843Alexey Kuznetsov.
844kuznet@ms2.inr.ac.ru
845
846Updated by:
847Andi Kleen
848ak@muc.de
849Nicolas Delon
850delon.nicolas@wanadoo.fr
851
852
853
854
855/proc/sys/net/ipv6/* Variables:
856
857IPv6 has no global variables such as tcp_*. tcp_* settings under ipv4/ also
858apply to IPv6 [XXX?].
859
860bindv6only - BOOLEAN
861 Default value for IPV6_V6ONLY socket option,
Jesper Dangaard Brouere18f5fe2009-02-23 04:39:04 +0000862 which restricts use of the IPv6 socket to IPv6 communication
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 only.
864 TRUE: disable IPv4-mapped address feature
865 FALSE: enable IPv4-mapped address feature
866
867 Default: FALSE (as specified in RFC2553bis)
868
869IPv6 Fragmentation:
870
871ip6frag_high_thresh - INTEGER
Jesper Dangaard Brouere18f5fe2009-02-23 04:39:04 +0000872 Maximum memory used to reassemble IPv6 fragments. When
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 ip6frag_high_thresh bytes of memory is allocated for this purpose,
874 the fragment handler will toss packets until ip6frag_low_thresh
875 is reached.
Jesper Dangaard Brouere18f5fe2009-02-23 04:39:04 +0000876
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877ip6frag_low_thresh - INTEGER
Jesper Dangaard Brouere18f5fe2009-02-23 04:39:04 +0000878 See ip6frag_high_thresh
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879
880ip6frag_time - INTEGER
881 Time in seconds to keep an IPv6 fragment in memory.
882
883ip6frag_secret_interval - INTEGER
Jesper Dangaard Brouere18f5fe2009-02-23 04:39:04 +0000884 Regeneration interval (in seconds) of the hash secret (or lifetime
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 for the hash secret) for IPv6 fragments.
886 Default: 600
887
888conf/default/*:
889 Change the interface-specific default settings.
890
891
892conf/all/*:
Jesper Dangaard Brouere18f5fe2009-02-23 04:39:04 +0000893 Change all the interface-specific settings.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894
895 [XXX: Other special features than forwarding?]
896
897conf/all/forwarding - BOOLEAN
Jesper Dangaard Brouere18f5fe2009-02-23 04:39:04 +0000898 Enable global IPv6 forwarding between all interfaces.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899
Jesper Dangaard Brouere18f5fe2009-02-23 04:39:04 +0000900 IPv4 and IPv6 work differently here; e.g. netfilter must be used
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 to control which interfaces may forward packets and which not.
902
Jesper Dangaard Brouere18f5fe2009-02-23 04:39:04 +0000903 This also sets all interfaces' Host/Router setting
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 'forwarding' to the specified value. See below for details.
905
906 This referred to as global forwarding.
907
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -0700908proxy_ndp - BOOLEAN
909 Do proxy ndp.
910
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911conf/interface/*:
912 Change special settings per interface.
913
Jesper Dangaard Brouere18f5fe2009-02-23 04:39:04 +0000914 The functional behaviour for certain settings is different
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 depending on whether local forwarding is enabled or not.
916
917accept_ra - BOOLEAN
918 Accept Router Advertisements; autoconfigure using them.
Jesper Dangaard Brouere18f5fe2009-02-23 04:39:04 +0000919
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 Functional default: enabled if local forwarding is disabled.
921 disabled if local forwarding is enabled.
922
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -0800923accept_ra_defrtr - BOOLEAN
924 Learn default router in Router Advertisement.
925
926 Functional default: enabled if accept_ra is enabled.
927 disabled if accept_ra is disabled.
928
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -0800929accept_ra_pinfo - BOOLEAN
Matt LaPlante2fe0ae72006-10-03 22:50:39 +0200930 Learn Prefix Information in Router Advertisement.
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -0800931
932 Functional default: enabled if accept_ra is enabled.
933 disabled if accept_ra is disabled.
934
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -0800935accept_ra_rt_info_max_plen - INTEGER
936 Maximum prefix length of Route Information in RA.
937
938 Route Information w/ prefix larger than or equal to this
939 variable shall be ignored.
940
941 Functional default: 0 if accept_ra_rtr_pref is enabled.
942 -1 if accept_ra_rtr_pref is disabled.
943
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -0800944accept_ra_rtr_pref - BOOLEAN
945 Accept Router Preference in RA.
946
947 Functional default: enabled if accept_ra is enabled.
948 disabled if accept_ra is disabled.
949
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950accept_redirects - BOOLEAN
951 Accept Redirects.
952
953 Functional default: enabled if local forwarding is disabled.
954 disabled if local forwarding is enabled.
955
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -0700956accept_source_route - INTEGER
957 Accept source routing (routing extension header).
958
YOSHIFUJI Hideakibb4dbf92007-07-10 22:55:49 -0700959 >= 0: Accept only routing header type 2.
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -0700960 < 0: Do not accept routing header.
961
962 Default: 0
963
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964autoconf - BOOLEAN
Jesper Dangaard Brouere18f5fe2009-02-23 04:39:04 +0000965 Autoconfigure addresses using Prefix Information in Router
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 Advertisements.
967
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -0800968 Functional default: enabled if accept_ra_pinfo is enabled.
969 disabled if accept_ra_pinfo is disabled.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970
971dad_transmits - INTEGER
972 The amount of Duplicate Address Detection probes to send.
973 Default: 1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974
Jesper Dangaard Brouere18f5fe2009-02-23 04:39:04 +0000975forwarding - BOOLEAN
976 Configure interface-specific Host/Router behaviour.
977
978 Note: It is recommended to have the same setting on all
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 interfaces; mixed router/host scenarios are rather uncommon.
980
981 FALSE:
982
983 By default, Host behaviour is assumed. This means:
984
985 1. IsRouter flag is not set in Neighbour Advertisements.
986 2. Router Solicitations are being sent when necessary.
Jesper Dangaard Brouere18f5fe2009-02-23 04:39:04 +0000987 3. If accept_ra is TRUE (default), accept Router
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 Advertisements (and do autoconfiguration).
989 4. If accept_redirects is TRUE (default), accept Redirects.
990
991 TRUE:
992
Jesper Dangaard Brouere18f5fe2009-02-23 04:39:04 +0000993 If local forwarding is enabled, Router behaviour is assumed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 This means exactly the reverse from the above:
995
996 1. IsRouter flag is set in Neighbour Advertisements.
997 2. Router Solicitations are not sent.
998 3. Router Advertisements are ignored.
999 4. Redirects are ignored.
1000
1001 Default: FALSE if global forwarding is disabled (default),
1002 otherwise TRUE.
1003
1004hop_limit - INTEGER
1005 Default Hop Limit to set.
1006 Default: 64
1007
1008mtu - INTEGER
1009 Default Maximum Transfer Unit
1010 Default: 1280 (IPv6 required minimum)
1011
YOSHIFUJI Hideaki52e16352006-03-20 17:05:47 -08001012router_probe_interval - INTEGER
1013 Minimum interval (in seconds) between Router Probing described
1014 in RFC4191.
1015
1016 Default: 60
1017
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018router_solicitation_delay - INTEGER
1019 Number of seconds to wait after interface is brought up
1020 before sending Router Solicitations.
1021 Default: 1
1022
1023router_solicitation_interval - INTEGER
1024 Number of seconds to wait between Router Solicitations.
1025 Default: 4
1026
1027router_solicitations - INTEGER
Jesper Dangaard Brouere18f5fe2009-02-23 04:39:04 +00001028 Number of Router Solicitations to send until assuming no
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 routers are present.
1030 Default: 3
1031
1032use_tempaddr - INTEGER
1033 Preference for Privacy Extensions (RFC3041).
1034 <= 0 : disable Privacy Extensions
1035 == 1 : enable Privacy Extensions, but prefer public
1036 addresses over temporary addresses.
1037 > 1 : enable Privacy Extensions and prefer temporary
1038 addresses over public addresses.
1039 Default: 0 (for most devices)
1040 -1 (for point-to-point devices and loopback devices)
1041
1042temp_valid_lft - INTEGER
1043 valid lifetime (in seconds) for temporary addresses.
1044 Default: 604800 (7 days)
1045
1046temp_prefered_lft - INTEGER
1047 Preferred lifetime (in seconds) for temporary addresses.
1048 Default: 86400 (1 day)
1049
1050max_desync_factor - INTEGER
1051 Maximum value for DESYNC_FACTOR, which is a random value
Jesper Dangaard Brouere18f5fe2009-02-23 04:39:04 +00001052 that ensures that clients don't synchronize with each
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 other and generate new addresses at exactly the same time.
1054 value is in seconds.
1055 Default: 600
Jesper Dangaard Brouere18f5fe2009-02-23 04:39:04 +00001056
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057regen_max_retry - INTEGER
1058 Number of attempts before give up attempting to generate
1059 valid temporary addresses.
1060 Default: 5
1061
1062max_addresses - INTEGER
1063 Number of maximum addresses per interface. 0 disables limitation.
Jesper Dangaard Brouere18f5fe2009-02-23 04:39:04 +00001064 It is recommended not set too large value (or 0) because it would
1065 be too easy way to crash kernel to allow to create too much of
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 autoconfigured addresses.
1067 Default: 16
1068
YOSHIFUJI Hideaki778d80b2008-06-28 14:17:11 +09001069disable_ipv6 - BOOLEAN
Brian Haley9bdd8d42009-03-18 18:22:48 -07001070 Disable IPv6 operation. If accept_dad is set to 2, this value
1071 will be dynamically set to TRUE if DAD fails for the link-local
1072 address.
YOSHIFUJI Hideaki778d80b2008-06-28 14:17:11 +09001073 Default: FALSE (enable IPv6 operation)
1074
Brian Haley56d417b2009-06-01 03:07:33 -07001075 When this value is changed from 1 to 0 (IPv6 is being enabled),
1076 it will dynamically create a link-local address on the given
1077 interface and start Duplicate Address Detection, if necessary.
1078
1079 When this value is changed from 0 to 1 (IPv6 is being disabled),
1080 it will dynamically delete all address on the given interface.
1081
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09001082accept_dad - INTEGER
1083 Whether to accept DAD (Duplicate Address Detection).
1084 0: Disable DAD
1085 1: Enable DAD (default)
1086 2: Enable DAD, and disable IPv6 operation if MAC-based duplicate
1087 link-local address has been found.
1088
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089icmp/*:
1090ratelimit - INTEGER
1091 Limit the maximal rates for sending ICMPv6 packets.
Stephen Hemminger6dbf4bc2008-07-01 19:29:07 -07001092 0 to disable any limiting,
1093 otherwise the minimal space between responses in milliseconds.
1094 Default: 1000
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095
1096
1097IPv6 Update by:
1098Pekka Savola <pekkas@netcore.fi>
1099YOSHIFUJI Hideaki / USAGI Project <yoshfuji@linux-ipv6.org>
1100
1101
1102/proc/sys/net/bridge/* Variables:
1103
1104bridge-nf-call-arptables - BOOLEAN
1105 1 : pass bridged ARP traffic to arptables' FORWARD chain.
1106 0 : disable this.
1107 Default: 1
1108
1109bridge-nf-call-iptables - BOOLEAN
1110 1 : pass bridged IPv4 traffic to iptables' chains.
1111 0 : disable this.
1112 Default: 1
1113
1114bridge-nf-call-ip6tables - BOOLEAN
1115 1 : pass bridged IPv6 traffic to ip6tables' chains.
1116 0 : disable this.
1117 Default: 1
1118
1119bridge-nf-filter-vlan-tagged - BOOLEAN
Michael Milner516299d2007-04-12 22:14:23 -07001120 1 : pass bridged vlan-tagged ARP/IP/IPv6 traffic to {arp,ip,ip6}tables.
1121 0 : disable this.
1122 Default: 1
1123
1124bridge-nf-filter-pppoe-tagged - BOOLEAN
1125 1 : pass bridged pppoe-tagged IP/IPv6 traffic to {ip,ip6}tables.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 0 : disable this.
1127 Default: 1
1128
1129
Vlad Yasevich32e8d492008-07-08 16:43:29 -07001130proc/sys/net/sctp/* Variables:
1131
1132addip_enable - BOOLEAN
1133 Enable or disable extension of Dynamic Address Reconfiguration
1134 (ADD-IP) functionality specified in RFC5061. This extension provides
1135 the ability to dynamically add and remove new addresses for the SCTP
1136 associations.
1137
1138 1: Enable extension.
1139
1140 0: Disable extension.
1141
1142 Default: 0
1143
1144addip_noauth_enable - BOOLEAN
1145 Dynamic Address Reconfiguration (ADD-IP) requires the use of
1146 authentication to protect the operations of adding or removing new
1147 addresses. This requirement is mandated so that unauthorized hosts
1148 would not be able to hijack associations. However, older
1149 implementations may not have implemented this requirement while
1150 allowing the ADD-IP extension. For reasons of interoperability,
1151 we provide this variable to control the enforcement of the
1152 authentication requirement.
1153
1154 1: Allow ADD-IP extension to be used without authentication. This
1155 should only be set in a closed environment for interoperability
1156 with older implementations.
1157
1158 0: Enforce the authentication requirement
1159
1160 Default: 0
1161
1162auth_enable - BOOLEAN
1163 Enable or disable Authenticated Chunks extension. This extension
1164 provides the ability to send and receive authenticated chunks and is
1165 required for secure operation of Dynamic Address Reconfiguration
1166 (ADD-IP) extension.
1167
1168 1: Enable this extension.
1169 0: Disable this extension.
1170
1171 Default: 0
1172
1173prsctp_enable - BOOLEAN
1174 Enable or disable the Partial Reliability extension (RFC3758) which
1175 is used to notify peers that a given DATA should no longer be expected.
1176
1177 1: Enable extension
1178 0: Disable
1179
1180 Default: 1
1181
1182max_burst - INTEGER
1183 The limit of the number of new packets that can be initially sent. It
1184 controls how bursty the generated traffic can be.
1185
1186 Default: 4
1187
1188association_max_retrans - INTEGER
1189 Set the maximum number for retransmissions that an association can
1190 attempt deciding that the remote end is unreachable. If this value
1191 is exceeded, the association is terminated.
1192
1193 Default: 10
1194
1195max_init_retransmits - INTEGER
1196 The maximum number of retransmissions of INIT and COOKIE-ECHO chunks
1197 that an association will attempt before declaring the destination
1198 unreachable and terminating.
1199
1200 Default: 8
1201
1202path_max_retrans - INTEGER
1203 The maximum number of retransmissions that will be attempted on a given
1204 path. Once this threshold is exceeded, the path is considered
1205 unreachable, and new traffic will use a different path when the
1206 association is multihomed.
1207
1208 Default: 5
1209
1210rto_initial - INTEGER
1211 The initial round trip timeout value in milliseconds that will be used
1212 in calculating round trip times. This is the initial time interval
1213 for retransmissions.
1214
1215 Default: 3000
1216
1217rto_max - INTEGER
1218 The maximum value (in milliseconds) of the round trip timeout. This
1219 is the largest time interval that can elapse between retransmissions.
1220
1221 Default: 60000
1222
1223rto_min - INTEGER
1224 The minimum value (in milliseconds) of the round trip timeout. This
1225 is the smallest time interval the can elapse between retransmissions.
1226
1227 Default: 1000
1228
1229hb_interval - INTEGER
1230 The interval (in milliseconds) between HEARTBEAT chunks. These chunks
1231 are sent at the specified interval on idle paths to probe the state of
1232 a given path between 2 associations.
1233
1234 Default: 30000
1235
1236sack_timeout - INTEGER
1237 The amount of time (in milliseconds) that the implementation will wait
1238 to send a SACK.
1239
1240 Default: 200
1241
1242valid_cookie_life - INTEGER
1243 The default lifetime of the SCTP cookie (in milliseconds). The cookie
1244 is used during association establishment.
1245
1246 Default: 60000
1247
1248cookie_preserve_enable - BOOLEAN
1249 Enable or disable the ability to extend the lifetime of the SCTP cookie
1250 that is used during the establishment phase of SCTP association
1251
1252 1: Enable cookie lifetime extension.
1253 0: Disable
1254
1255 Default: 1
1256
1257rcvbuf_policy - INTEGER
1258 Determines if the receive buffer is attributed to the socket or to
1259 association. SCTP supports the capability to create multiple
1260 associations on a single socket. When using this capability, it is
1261 possible that a single stalled association that's buffering a lot
1262 of data may block other associations from delivering their data by
1263 consuming all of the receive buffer space. To work around this,
1264 the rcvbuf_policy could be set to attribute the receiver buffer space
1265 to each association instead of the socket. This prevents the described
1266 blocking.
1267
1268 1: rcvbuf space is per association
1269 0: recbuf space is per socket
1270
1271 Default: 0
1272
1273sndbuf_policy - INTEGER
1274 Similar to rcvbuf_policy above, this applies to send buffer space.
1275
1276 1: Send buffer is tracked per association
1277 0: Send buffer is tracked per socket.
1278
1279 Default: 0
1280
1281sctp_mem - vector of 3 INTEGERs: min, pressure, max
1282 Number of pages allowed for queueing by all SCTP sockets.
1283
1284 min: Below this number of pages SCTP is not bothered about its
1285 memory appetite. When amount of memory allocated by SCTP exceeds
1286 this number, SCTP starts to moderate memory usage.
1287
1288 pressure: This value was introduced to follow format of tcp_mem.
1289
1290 max: Number of pages allowed for queueing by all SCTP sockets.
1291
1292 Default is calculated at boot time from amount of available memory.
1293
1294sctp_rmem - vector of 3 INTEGERs: min, default, max
1295 See tcp_rmem for a description.
1296
1297sctp_wmem - vector of 3 INTEGERs: min, default, max
1298 See tcp_wmem for a description.
1299
Bhaskar Dutta72388432009-09-03 17:25:47 +05301300addr_scope_policy - INTEGER
1301 Control IPv4 address scoping - draft-stewart-tsvwg-sctp-ipv4-00
1302
1303 0 - Disable IPv4 address scoping
1304 1 - Enable IPv4 address scoping
1305 2 - Follow draft but allow IPv4 private addresses
1306 3 - Follow draft but allow IPv4 link local addresses
1307
1308 Default: 1
1309
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310
Stephen Hemminger4edc2f32008-07-10 16:50:26 -07001311/proc/sys/net/core/*
Wang Tinggong705efc32009-05-14 22:49:36 +00001312dev_weight - INTEGER
1313 The maximum number of packets that kernel can handle on a NAPI
1314 interrupt, it's a Per-CPU variable.
1315
1316 Default: 64
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317
Stephen Hemminger4edc2f32008-07-10 16:50:26 -07001318/proc/sys/net/unix/*
Wang Tinggong705efc32009-05-14 22:49:36 +00001319max_dgram_qlen - INTEGER
1320 The maximum length of dgram socket receive queue
1321
1322 Default: 10
1323
1324
1325UNDOCUMENTED:
Stephen Hemminger4edc2f32008-07-10 16:50:26 -07001326
1327/proc/sys/net/irda/*
1328 fast_poll_increase FIXME
1329 warn_noreply_time FIXME
1330 discovery_slots FIXME
1331 slot_timeout FIXME
1332 max_baud_rate FIXME
1333 discovery_timeout FIXME
1334 lap_keepalive_time FIXME
1335 max_noreply_time FIXME
1336 max_tx_data_size FIXME
1337 max_tx_window FIXME
1338 min_tx_turn_time FIXME