IB/umad: Add P_Key index support
[linux-2.6-block.git] / Documentation / networking / ip-sysctl.txt
CommitLineData
1da177e4
LT
1/proc/sys/net/ipv4/* Variables:
2
3ip_forward - BOOLEAN
4 0 - disabled (default)
5 not 0 - enabled
6
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
30IP Fragmentation:
31
32ipfrag_high_thresh - INTEGER
33 Maximum memory used to reassemble IP fragments. When
34 ipfrag_high_thresh bytes of memory is allocated for this purpose,
35 the fragment handler will toss packets until ipfrag_low_thresh
36 is reached.
37
38ipfrag_low_thresh - INTEGER
39 See ipfrag_high_thresh
40
41ipfrag_time - INTEGER
42 Time in seconds to keep an IP fragment in memory.
43
44ipfrag_secret_interval - INTEGER
45 Regeneration interval (in seconds) of the hash secret (or lifetime
46 for the hash secret) for IP fragments.
47 Default: 600
48
89cee8b1
HX
49ipfrag_max_dist - INTEGER
50 ipfrag_max_dist is a non-negative integer value which defines the
51 maximum "disorder" which is allowed among fragments which share a
52 common IP source address. Note that reordering of packets is
53 not unusual, but if a large number of fragments arrive from a source
54 IP address while a particular fragment queue remains incomplete, it
55 probably indicates that one or more fragments belonging to that queue
56 have been lost. When ipfrag_max_dist is positive, an additional check
57 is done on fragments before they are added to a reassembly queue - if
58 ipfrag_max_dist (or more) fragments have arrived from a particular IP
59 address between additions to any IP fragment queue using that source
60 address, it's presumed that one or more fragments in the queue are
61 lost. The existing fragment queue will be dropped, and a new one
62 started. An ipfrag_max_dist value of zero disables this check.
63
64 Using a very small value, e.g. 1 or 2, for ipfrag_max_dist can
65 result in unnecessarily dropping fragment queues when normal
66 reordering of packets occurs, which could lead to poor application
67 performance. Using a very large value, e.g. 50000, increases the
68 likelihood of incorrectly reassembling IP fragments that originate
69 from different IP datagrams, which could result in data corruption.
70 Default: 64
71
1da177e4
LT
72INET peer storage:
73
74inet_peer_threshold - INTEGER
75 The approximate size of the storage. Starting from this threshold
76 entries will be thrown aggressively. This threshold also determines
77 entries' time-to-live and time intervals between garbage collection
78 passes. More entries, less time-to-live, less GC interval.
79
80inet_peer_minttl - INTEGER
81 Minimum time-to-live of entries. Should be enough to cover fragment
82 time-to-live on the reassembling side. This minimum time-to-live is
83 guaranteed if the pool size is less than inet_peer_threshold.
84 Measured in jiffies(1).
85
86inet_peer_maxttl - INTEGER
87 Maximum time-to-live of entries. Unused entries will expire after
88 this period of time if there is no memory pressure on the pool (i.e.
89 when the number of entries in the pool is very small).
90 Measured in jiffies(1).
91
92inet_peer_gc_mintime - INTEGER
93 Minimum interval between garbage collection passes. This interval is
94 in effect under high memory pressure on the pool.
95 Measured in jiffies(1).
96
97inet_peer_gc_maxtime - INTEGER
98 Minimum interval between garbage collection passes. This interval is
99 in effect under low (or absent) memory pressure on the pool.
100 Measured in jiffies(1).
101
102TCP variables:
103
ef56e622
SH
104somaxconn - INTEGER
105 Limit of socket listen() backlog, known in userspace as SOMAXCONN.
106 Defaults to 128. See also tcp_max_syn_backlog for additional tuning
107 for TCP sockets.
108
9772efb9 109tcp_abc - INTEGER
b3a8a40d
SH
110 Controls Appropriate Byte Count (ABC) defined in RFC3465.
111 ABC is a way of increasing congestion window (cwnd) more slowly
112 in response to partial acknowledgments.
113 Possible values are:
114 0 increase cwnd once per acknowledgment (no ABC)
115 1 increase cwnd once per acknowledgment of full sized segment
116 2 allow increase cwnd by two if acknowledgment is
117 of two segments to compensate for delayed acknowledgments.
118 Default: 0 (off)
9772efb9 119
ef56e622
SH
120tcp_abort_on_overflow - BOOLEAN
121 If listening service is too slow to accept new connections,
122 reset them. Default state is FALSE. It means that if overflow
123 occurred due to a burst, connection will recover. Enable this
124 option _only_ if you are really sure that listening daemon
125 cannot be tuned to accept connections faster. Enabling this
126 option can harm clients of your server.
1da177e4 127
ef56e622
SH
128tcp_adv_win_scale - INTEGER
129 Count buffering overhead as bytes/2^tcp_adv_win_scale
130 (if tcp_adv_win_scale > 0) or bytes-bytes/2^(-tcp_adv_win_scale),
131 if it is <= 0.
132 Default: 2
1da177e4 133
ef56e622
SH
134tcp_allowed_congestion_control - STRING
135 Show/set the congestion control choices available to non-privileged
136 processes. The list is a subset of those listed in
137 tcp_available_congestion_control.
138 Default is "reno" and the default setting (tcp_congestion_control).
1da177e4 139
ef56e622
SH
140tcp_app_win - INTEGER
141 Reserve max(window/2^tcp_app_win, mss) of window for application
142 buffer. Value 0 is special, it means that nothing is reserved.
143 Default: 31
1da177e4 144
ef56e622
SH
145tcp_available_congestion_control - STRING
146 Shows the available congestion control choices that are registered.
147 More congestion control algorithms may be available as modules,
148 but not loaded.
1da177e4 149
71599cd1
JH
150tcp_base_mss - INTEGER
151 The initial value of search_low to be used by Packetization Layer
152 Path MTU Discovery (MTU probing). If MTU probing is enabled,
153 this is the inital MSS used by the connection.
154
ef56e622
SH
155tcp_congestion_control - STRING
156 Set the congestion control algorithm to be used for new
157 connections. The algorithm "reno" is always available, but
158 additional choices may be available based on kernel configuration.
159 Default is set as part of kernel configuration.
1da177e4 160
ef56e622
SH
161tcp_dsack - BOOLEAN
162 Allows TCP to send "duplicate" SACKs.
1da177e4 163
ef56e622
SH
164tcp_ecn - BOOLEAN
165 Enable Explicit Congestion Notification in TCP.
166
167tcp_fack - BOOLEAN
168 Enable FACK congestion avoidance and fast retransmission.
169 The value is not used, if tcp_sack is not enabled.
1da177e4
LT
170
171tcp_fin_timeout - INTEGER
172 Time to hold socket in state FIN-WAIT-2, if it was closed
173 by our side. Peer can be broken and never close its side,
174 or even died unexpectedly. Default value is 60sec.
175 Usual value used in 2.2 was 180 seconds, you may restore
176 it, but remember that if your machine is even underloaded WEB server,
177 you risk to overflow memory with kilotons of dead sockets,
178 FIN-WAIT-2 sockets are less dangerous than FIN-WAIT-1,
179 because they eat maximum 1.5K of memory, but they tend
180 to live longer. Cf. tcp_max_orphans.
181
89808060 182tcp_frto - INTEGER
ef56e622
SH
183 Enables F-RTO, an enhanced recovery algorithm for TCP retransmission
184 timeouts. It is particularly beneficial in wireless environments
185 where packet loss is typically due to random radio interference
127af0c4 186 rather than intermediate router congestion. If set to 1, basic
89808060 187 version is enabled. 2 enables SACK enhanced F-RTO, which is
127af0c4
IJ
188 EXPERIMENTAL. The basic version can be used also when SACK is
189 enabled for a flow through tcp_sack sysctl.
1da177e4 190
89808060
IJ
191tcp_frto_response - INTEGER
192 When F-RTO has detected that a TCP retransmission timeout was
193 spurious (i.e, the timeout would have been avoided had TCP set a
194 longer retransmission timeout), TCP has several options what to do
195 next. Possible values are:
196 0 Rate halving based; a smooth and conservative response,
197 results in halved cwnd and ssthresh after one RTT
198 1 Very conservative response; not recommended because even
199 though being valid, it interacts poorly with the rest of
200 Linux TCP, halves cwnd and ssthresh immediately
201 2 Aggressive response; undoes congestion control measures
202 that are now known to be unnecessary (ignoring the
203 possibility of a lost retransmission that would require
204 TCP to be more cautious), cwnd and ssthresh are restored
205 to the values prior timeout
206 Default: 0 (rate halving based)
207
ef56e622
SH
208tcp_keepalive_time - INTEGER
209 How often TCP sends out keepalive messages when keepalive is enabled.
210 Default: 2hours.
1da177e4 211
ef56e622
SH
212tcp_keepalive_probes - INTEGER
213 How many keepalive probes TCP sends out, until it decides that the
214 connection is broken. Default value: 9.
215
216tcp_keepalive_intvl - INTEGER
217 How frequently the probes are send out. Multiplied by
218 tcp_keepalive_probes it is time to kill not responding connection,
219 after probes started. Default value: 75sec i.e. connection
220 will be aborted after ~11 minutes of retries.
221
222tcp_low_latency - BOOLEAN
223 If set, the TCP stack makes decisions that prefer lower
224 latency as opposed to higher throughput. By default, this
225 option is not set meaning that higher throughput is preferred.
226 An example of an application where this default should be
227 changed would be a Beowulf compute cluster.
228 Default: 0
1da177e4
LT
229
230tcp_max_orphans - INTEGER
231 Maximal number of TCP sockets not attached to any user file handle,
232 held by system. If this number is exceeded orphaned connections are
233 reset immediately and warning is printed. This limit exists
234 only to prevent simple DoS attacks, you _must_ not rely on this
235 or lower the limit artificially, but rather increase it
236 (probably, after increasing installed memory),
237 if network conditions require more than default value,
238 and tune network services to linger and kill such states
239 more aggressively. Let me to remind again: each orphan eats
240 up to ~64K of unswappable memory.
241
1da177e4
LT
242tcp_max_syn_backlog - INTEGER
243 Maximal number of remembered connection requests, which are
244 still did not receive an acknowledgment from connecting client.
245 Default value is 1024 for systems with more than 128Mb of memory,
246 and 128 for low memory machines. If server suffers of overload,
247 try to increase this number.
248
ef56e622
SH
249tcp_max_tw_buckets - INTEGER
250 Maximal number of timewait sockets held by system simultaneously.
251 If this number is exceeded time-wait socket is immediately destroyed
252 and warning is printed. This limit exists only to prevent
253 simple DoS attacks, you _must_ not lower the limit artificially,
254 but rather increase it (probably, after increasing installed memory),
255 if network conditions require more than default value.
1da177e4 256
ef56e622
SH
257tcp_mem - vector of 3 INTEGERs: min, pressure, max
258 min: below this number of pages TCP is not bothered about its
259 memory appetite.
1da177e4 260
ef56e622
SH
261 pressure: when amount of memory allocated by TCP exceeds this number
262 of pages, TCP moderates its memory consumption and enters memory
263 pressure mode, which is exited when memory consumption falls
264 under "min".
1da177e4 265
ef56e622 266 max: number of pages allowed for queueing by all TCP sockets.
1da177e4 267
ef56e622
SH
268 Defaults are calculated at boot time from amount of available
269 memory.
1da177e4 270
71599cd1
JH
271tcp_moderate_rcvbuf - BOOLEAN
272 If set, TCP performs receive buffer autotuning, attempting to
273 automatically size the buffer (no greater than tcp_rmem[2]) to
274 match the size required by the path for full throughput. Enabled by
275 default.
276
277tcp_mtu_probing - INTEGER
278 Controls TCP Packetization-Layer Path MTU Discovery. Takes three
279 values:
280 0 - Disabled
281 1 - Disabled by default, enabled when an ICMP black hole detected
282 2 - Always enabled, use initial MSS of tcp_base_mss.
283
284tcp_no_metrics_save - BOOLEAN
285 By default, TCP saves various connection metrics in the route cache
286 when the connection closes, so that connections established in the
287 near future can use these to set initial conditions. Usually, this
288 increases overall performance, but may sometimes cause performance
289 degredation. If set, TCP will not cache metrics on closing
290 connections.
291
ef56e622
SH
292tcp_orphan_retries - INTEGER
293 How may times to retry before killing TCP connection, closed
294 by our side. Default value 7 corresponds to ~50sec-16min
295 depending on RTO. If you machine is loaded WEB server,
296 you should think about lowering this value, such sockets
297 may consume significant resources. Cf. tcp_max_orphans.
1da177e4
LT
298
299tcp_reordering - INTEGER
300 Maximal reordering of packets in a TCP stream.
301 Default: 3
302
303tcp_retrans_collapse - BOOLEAN
304 Bug-to-bug compatibility with some broken printers.
305 On retransmit try to send bigger packets to work around bugs in
306 certain TCP stacks.
307
ef56e622
SH
308tcp_retries1 - INTEGER
309 How many times to retry before deciding that something is wrong
310 and it is necessary to report this suspicion to network layer.
311 Minimal RFC value is 3, it is default, which corresponds
312 to ~3sec-8min depending on RTO.
1da177e4 313
ef56e622
SH
314tcp_retries2 - INTEGER
315 How may times to retry before killing alive TCP connection.
316 RFC1122 says that the limit should be longer than 100 sec.
317 It is too small number. Default value 15 corresponds to ~13-30min
318 depending on RTO.
1da177e4 319
ef56e622
SH
320tcp_rfc1337 - BOOLEAN
321 If set, the TCP stack behaves conforming to RFC1337. If unset,
322 we are not conforming to RFC, but prevent TCP TIME_WAIT
323 assassination.
324 Default: 0
1da177e4
LT
325
326tcp_rmem - vector of 3 INTEGERs: min, default, max
327 min: Minimal size of receive buffer used by TCP sockets.
328 It is guaranteed to each TCP socket, even under moderate memory
329 pressure.
330 Default: 8K
331
332 default: default size of receive buffer used by TCP sockets.
333 This value overrides net.core.rmem_default used by other protocols.
334 Default: 87380 bytes. This value results in window of 65535 with
335 default setting of tcp_adv_win_scale and tcp_app_win:0 and a bit
336 less for default tcp_app_win. See below about these variables.
337
338 max: maximal size of receive buffer allowed for automatically
339 selected receiver buffers for TCP socket. This value does not override
340 net.core.rmem_max, "static" selection via SO_RCVBUF does not use this.
341 Default: 87380*2 bytes.
342
ef56e622
SH
343tcp_sack - BOOLEAN
344 Enable select acknowledgments (SACKS).
1da177e4 345
ef56e622
SH
346tcp_slow_start_after_idle - BOOLEAN
347 If set, provide RFC2861 behavior and time out the congestion
348 window after an idle period. An idle period is defined at
349 the current RTO. If unset, the congestion window will not
350 be timed out after an idle period.
351 Default: 1
1da177e4 352
ef56e622
SH
353tcp_stdurg - BOOLEAN
354 Use the Host requirements interpretation of the TCP urg pointer field.
355 Most hosts use the older BSD interpretation, so if you turn this on
356 Linux might not communicate correctly with them.
357 Default: FALSE
1da177e4 358
ef56e622
SH
359tcp_synack_retries - INTEGER
360 Number of times SYNACKs for a passive TCP connection attempt will
361 be retransmitted. Should not be higher than 255. Default value
362 is 5, which corresponds to ~180seconds.
1da177e4 363
ef56e622
SH
364tcp_syncookies - BOOLEAN
365 Only valid when the kernel was compiled with CONFIG_SYNCOOKIES
366 Send out syncookies when the syn backlog queue of a socket
367 overflows. This is to prevent against the common 'syn flood attack'
368 Default: FALSE
1da177e4 369
ef56e622
SH
370 Note, that syncookies is fallback facility.
371 It MUST NOT be used to help highly loaded servers to stand
372 against legal connection rate. If you see synflood warnings
373 in your logs, but investigation shows that they occur
374 because of overload with legal connections, you should tune
375 another parameters until this warning disappear.
376 See: tcp_max_syn_backlog, tcp_synack_retries, tcp_abort_on_overflow.
1da177e4 377
ef56e622
SH
378 syncookies seriously violate TCP protocol, do not allow
379 to use TCP extensions, can result in serious degradation
380 of some services (f.e. SMTP relaying), visible not by you,
381 but your clients and relays, contacting you. While you see
382 synflood warnings in logs not being really flooded, your server
383 is seriously misconfigured.
1da177e4 384
ef56e622
SH
385tcp_syn_retries - INTEGER
386 Number of times initial SYNs for an active TCP connection attempt
387 will be retransmitted. Should not be higher than 255. Default value
388 is 5, which corresponds to ~180seconds.
389
390tcp_timestamps - BOOLEAN
391 Enable timestamps as defined in RFC1323.
1da177e4 392
1da177e4 393tcp_tso_win_divisor - INTEGER
ef56e622
SH
394 This allows control over what percentage of the congestion window
395 can be consumed by a single TSO frame.
396 The setting of this parameter is a choice between burstiness and
397 building larger TSO frames.
398 Default: 3
1da177e4 399
ef56e622
SH
400tcp_tw_recycle - BOOLEAN
401 Enable fast recycling TIME-WAIT sockets. Default value is 0.
402 It should not be changed without advice/request of technical
403 experts.
1da177e4 404
ef56e622
SH
405tcp_tw_reuse - BOOLEAN
406 Allow to reuse TIME-WAIT sockets for new connections when it is
407 safe from protocol viewpoint. Default value is 0.
408 It should not be changed without advice/request of technical
409 experts.
ce7bc3bf 410
ef56e622
SH
411tcp_window_scaling - BOOLEAN
412 Enable window scaling as defined in RFC1323.
3ff825b2 413
ef56e622
SH
414tcp_wmem - vector of 3 INTEGERs: min, default, max
415 min: Amount of memory reserved for send buffers for TCP socket.
416 Each TCP socket has rights to use it due to fact of its birth.
417 Default: 4K
9d7bcfc6 418
ef56e622
SH
419 default: Amount of memory allowed for send buffers for TCP socket
420 by default. This value overrides net.core.wmem_default used
421 by other protocols, it is usually lower than net.core.wmem_default.
422 Default: 16K
423
424 max: Maximal amount of memory allowed for automatically selected
425 send buffers for TCP socket. This value does not override
426 net.core.wmem_max, "static" selection via SO_SNDBUF does not use this.
427 Default: 128K
1da177e4 428
15d99e02
RJ
429tcp_workaround_signed_windows - BOOLEAN
430 If set, assume no receipt of a window scaling option means the
431 remote TCP is broken and treats the window as a signed quantity.
432 If unset, assume the remote TCP is not broken even if we do
433 not receive a window scaling option from them.
434 Default: 0
435
72d0b7a8
CL
436tcp_dma_copybreak - INTEGER
437 Lower limit, in bytes, of the size of socket reads that will be
438 offloaded to a DMA copy engine, if one is present in the system
439 and CONFIG_NET_DMA is enabled.
440 Default: 4096
441
8802f616
PM
442CIPSOv4 Variables:
443
444cipso_cache_enable - BOOLEAN
445 If set, enable additions to and lookups from the CIPSO label mapping
446 cache. If unset, additions are ignored and lookups always result in a
447 miss. However, regardless of the setting the cache is still
448 invalidated when required when means you can safely toggle this on and
449 off and the cache will always be "safe".
450 Default: 1
451
452cipso_cache_bucket_size - INTEGER
453 The CIPSO label cache consists of a fixed size hash table with each
454 hash bucket containing a number of cache entries. This variable limits
455 the number of entries in each hash bucket; the larger the value the
456 more CIPSO label mappings that can be cached. When the number of
457 entries in a given hash bucket reaches this limit adding new entries
458 causes the oldest entry in the bucket to be removed to make room.
459 Default: 10
460
461cipso_rbm_optfmt - BOOLEAN
462 Enable the "Optimized Tag 1 Format" as defined in section 3.4.2.6 of
463 the CIPSO draft specification (see Documentation/netlabel for details).
464 This means that when set the CIPSO tag will be padded with empty
465 categories in order to make the packet data 32-bit aligned.
466 Default: 0
467
468cipso_rbm_structvalid - BOOLEAN
469 If set, do a very strict check of the CIPSO option when
470 ip_options_compile() is called. If unset, relax the checks done during
471 ip_options_compile(). Either way is "safe" as errors are caught else
472 where in the CIPSO processing code but setting this to 0 (False) should
473 result in less work (i.e. it should be faster) but could cause problems
474 with other implementations that require strict checking.
475 Default: 0
476
1da177e4
LT
477IP Variables:
478
479ip_local_port_range - 2 INTEGERS
480 Defines the local port range that is used by TCP and UDP to
481 choose the local port. The first number is the first, the
482 second the last local port number. Default value depends on
483 amount of memory available on the system:
484 > 128Mb 32768-61000
485 < 128Mb 1024-4999 or even less.
486 This number defines number of active connections, which this
487 system can issue simultaneously to systems not supporting
488 TCP extensions (timestamps). With tcp_tw_recycle enabled
489 (i.e. by default) range 1024-4999 is enough to issue up to
490 2000 connections per second to systems supporting timestamps.
491
492ip_nonlocal_bind - BOOLEAN
493 If set, allows processes to bind() to non-local IP addresses,
494 which can be quite useful - but may break some applications.
495 Default: 0
496
497ip_dynaddr - BOOLEAN
498 If set non-zero, enables support for dynamic addresses.
499 If set to a non-zero value larger than 1, a kernel log
500 message will be printed when dynamic address rewriting
501 occurs.
502 Default: 0
503
504icmp_echo_ignore_all - BOOLEAN
7ce31246
DM
505 If set non-zero, then the kernel will ignore all ICMP ECHO
506 requests sent to it.
507 Default: 0
508
1da177e4 509icmp_echo_ignore_broadcasts - BOOLEAN
7ce31246
DM
510 If set non-zero, then the kernel will ignore all ICMP ECHO and
511 TIMESTAMP requests sent to it via broadcast/multicast.
512 Default: 1
1da177e4
LT
513
514icmp_ratelimit - INTEGER
515 Limit the maximal rates for sending ICMP packets whose type matches
516 icmp_ratemask (see below) to specific targets.
517 0 to disable any limiting, otherwise the maximal rate in jiffies(1)
518 Default: 100
519
520icmp_ratemask - INTEGER
521 Mask made of ICMP types for which rates are being limited.
522 Significant bits: IHGFEDCBA9876543210
523 Default mask: 0000001100000011000 (6168)
524
525 Bit definitions (see include/linux/icmp.h):
526 0 Echo Reply
527 3 Destination Unreachable *
528 4 Source Quench *
529 5 Redirect
530 8 Echo Request
531 B Time Exceeded *
532 C Parameter Problem *
533 D Timestamp Request
534 E Timestamp Reply
535 F Info Request
536 G Info Reply
537 H Address Mask Request
538 I Address Mask Reply
539
540 * These are rate limited by default (see default mask above)
541
542icmp_ignore_bogus_error_responses - BOOLEAN
543 Some routers violate RFC1122 by sending bogus responses to broadcast
544 frames. Such violations are normally logged via a kernel warning.
545 If this is set to TRUE, the kernel will not give such warnings, which
546 will avoid log file clutter.
547 Default: FALSE
548
95f7daf1
H
549icmp_errors_use_inbound_ifaddr - BOOLEAN
550
551 If zero, icmp error messages are sent with the primary address of
552 the exiting interface.
553
554 If non-zero, the message will be sent with the primary address of
555 the interface that received the packet that caused the icmp error.
556 This is the behaviour network many administrators will expect from
557 a router. And it can make debugging complicated network layouts
558 much easier.
559
560 Note that if no primary address exists for the interface selected,
561 then the primary address of the first non-loopback interface that
d6bc8ac9 562 has one will be used regardless of this setting.
95f7daf1
H
563
564 Default: 0
565
1da177e4
LT
566igmp_max_memberships - INTEGER
567 Change the maximum number of multicast groups we can subscribe to.
568 Default: 20
569
570conf/interface/* changes special settings per interface (where "interface" is
571 the name of your network interface)
572conf/all/* is special, changes the settings for all interfaces
573
574
575log_martians - BOOLEAN
576 Log packets with impossible addresses to kernel log.
577 log_martians for the interface will be enabled if at least one of
578 conf/{all,interface}/log_martians is set to TRUE,
579 it will be disabled otherwise
580
581accept_redirects - BOOLEAN
582 Accept ICMP redirect messages.
583 accept_redirects for the interface will be enabled if:
584 - both conf/{all,interface}/accept_redirects are TRUE in the case forwarding
585 for the interface is enabled
586 or
587 - at least one of conf/{all,interface}/accept_redirects is TRUE in the case
588 forwarding for the interface is disabled
589 accept_redirects for the interface will be disabled otherwise
590 default TRUE (host)
591 FALSE (router)
592
593forwarding - BOOLEAN
594 Enable IP forwarding on this interface.
595
596mc_forwarding - BOOLEAN
597 Do multicast routing. The kernel needs to be compiled with CONFIG_MROUTE
598 and a multicast routing daemon is required.
599 conf/all/mc_forwarding must also be set to TRUE to enable multicast routing
600 for the interface
601
602medium_id - INTEGER
603 Integer value used to differentiate the devices by the medium they
604 are attached to. Two devices can have different id values when
605 the broadcast packets are received only on one of them.
606 The default value 0 means that the device is the only interface
607 to its medium, value of -1 means that medium is not known.
608
609 Currently, it is used to change the proxy_arp behavior:
610 the proxy_arp feature is enabled for packets forwarded between
611 two devices attached to different media.
612
613proxy_arp - BOOLEAN
614 Do proxy arp.
615 proxy_arp for the interface will be enabled if at least one of
616 conf/{all,interface}/proxy_arp is set to TRUE,
617 it will be disabled otherwise
618
619shared_media - BOOLEAN
620 Send(router) or accept(host) RFC1620 shared media redirects.
621 Overrides ip_secure_redirects.
622 shared_media for the interface will be enabled if at least one of
623 conf/{all,interface}/shared_media is set to TRUE,
624 it will be disabled otherwise
625 default TRUE
626
627secure_redirects - BOOLEAN
628 Accept ICMP redirect messages only for gateways,
629 listed in default gateway list.
630 secure_redirects for the interface will be enabled if at least one of
631 conf/{all,interface}/secure_redirects is set to TRUE,
632 it will be disabled otherwise
633 default TRUE
634
635send_redirects - BOOLEAN
636 Send redirects, if router.
637 send_redirects for the interface will be enabled if at least one of
638 conf/{all,interface}/send_redirects is set to TRUE,
639 it will be disabled otherwise
640 Default: TRUE
641
642bootp_relay - BOOLEAN
643 Accept packets with source address 0.b.c.d destined
644 not to this host as local ones. It is supposed, that
645 BOOTP relay daemon will catch and forward such packets.
646 conf/all/bootp_relay must also be set to TRUE to enable BOOTP relay
647 for the interface
648 default FALSE
649 Not Implemented Yet.
650
651accept_source_route - BOOLEAN
652 Accept packets with SRR option.
653 conf/all/accept_source_route must also be set to TRUE to accept packets
654 with SRR option on the interface
655 default TRUE (router)
656 FALSE (host)
657
658rp_filter - BOOLEAN
659 1 - do source validation by reversed path, as specified in RFC1812
660 Recommended option for single homed hosts and stub network
661 routers. Could cause troubles for complicated (not loop free)
662 networks running a slow unreliable protocol (sort of RIP),
663 or using static routes.
664
665 0 - No source validation.
666
667 conf/all/rp_filter must also be set to TRUE to do source validation
668 on the interface
669
670 Default value is 0. Note that some distributions enable it
671 in startup scripts.
672
673arp_filter - BOOLEAN
674 1 - Allows you to have multiple network interfaces on the same
675 subnet, and have the ARPs for each interface be answered
676 based on whether or not the kernel would route a packet from
677 the ARP'd IP out that interface (therefore you must use source
678 based routing for this to work). In other words it allows control
679 of which cards (usually 1) will respond to an arp request.
680
681 0 - (default) The kernel can respond to arp requests with addresses
682 from other interfaces. This may seem wrong but it usually makes
683 sense, because it increases the chance of successful communication.
684 IP addresses are owned by the complete host on Linux, not by
685 particular interfaces. Only for more complex setups like load-
686 balancing, does this behaviour cause problems.
687
688 arp_filter for the interface will be enabled if at least one of
689 conf/{all,interface}/arp_filter is set to TRUE,
690 it will be disabled otherwise
691
692arp_announce - INTEGER
693 Define different restriction levels for announcing the local
694 source IP address from IP packets in ARP requests sent on
695 interface:
696 0 - (default) Use any local address, configured on any interface
697 1 - Try to avoid local addresses that are not in the target's
698 subnet for this interface. This mode is useful when target
699 hosts reachable via this interface require the source IP
700 address in ARP requests to be part of their logical network
701 configured on the receiving interface. When we generate the
702 request we will check all our subnets that include the
703 target IP and will preserve the source address if it is from
704 such subnet. If there is no such subnet we select source
705 address according to the rules for level 2.
706 2 - Always use the best local address for this target.
707 In this mode we ignore the source address in the IP packet
708 and try to select local address that we prefer for talks with
709 the target host. Such local address is selected by looking
710 for primary IP addresses on all our subnets on the outgoing
711 interface that include the target IP address. If no suitable
712 local address is found we select the first local address
713 we have on the outgoing interface or on all other interfaces,
714 with the hope we will receive reply for our request and
715 even sometimes no matter the source IP address we announce.
716
717 The max value from conf/{all,interface}/arp_announce is used.
718
719 Increasing the restriction level gives more chance for
720 receiving answer from the resolved target while decreasing
721 the level announces more valid sender's information.
722
723arp_ignore - INTEGER
724 Define different modes for sending replies in response to
725 received ARP requests that resolve local target IP addresses:
726 0 - (default): reply for any local target IP address, configured
727 on any interface
728 1 - reply only if the target IP address is local address
729 configured on the incoming interface
730 2 - reply only if the target IP address is local address
731 configured on the incoming interface and both with the
732 sender's IP address are part from same subnet on this interface
733 3 - do not reply for local addresses configured with scope host,
734 only resolutions for global and link addresses are replied
735 4-7 - reserved
736 8 - do not reply for all local addresses
737
738 The max value from conf/{all,interface}/arp_ignore is used
739 when ARP request is received on the {interface}
740
c1b1bce8
NH
741arp_accept - BOOLEAN
742 Define behavior when gratuitous arp replies are received:
743 0 - drop gratuitous arp frames
744 1 - accept gratuitous arp frames
745
1da177e4
LT
746app_solicit - INTEGER
747 The maximum number of probes to send to the user space ARP daemon
748 via netlink before dropping back to multicast probes (see
749 mcast_solicit). Defaults to 0.
750
751disable_policy - BOOLEAN
752 Disable IPSEC policy (SPD) for this interface
753
754disable_xfrm - BOOLEAN
755 Disable IPSEC encryption on this interface, whatever the policy
756
757
758
759tag - INTEGER
760 Allows you to write a number, which can be used as required.
761 Default value is 0.
762
763(1) Jiffie: internal timeunit for the kernel. On the i386 1/100s, on the
764Alpha 1/1024s. See the HZ define in /usr/include/asm/param.h for the exact
765value on your system.
766
767Alexey Kuznetsov.
768kuznet@ms2.inr.ac.ru
769
770Updated by:
771Andi Kleen
772ak@muc.de
773Nicolas Delon
774delon.nicolas@wanadoo.fr
775
776
777
778
779/proc/sys/net/ipv6/* Variables:
780
781IPv6 has no global variables such as tcp_*. tcp_* settings under ipv4/ also
782apply to IPv6 [XXX?].
783
784bindv6only - BOOLEAN
785 Default value for IPV6_V6ONLY socket option,
786 which restricts use of the IPv6 socket to IPv6 communication
787 only.
788 TRUE: disable IPv4-mapped address feature
789 FALSE: enable IPv4-mapped address feature
790
791 Default: FALSE (as specified in RFC2553bis)
792
793IPv6 Fragmentation:
794
795ip6frag_high_thresh - INTEGER
796 Maximum memory used to reassemble IPv6 fragments. When
797 ip6frag_high_thresh bytes of memory is allocated for this purpose,
798 the fragment handler will toss packets until ip6frag_low_thresh
799 is reached.
800
801ip6frag_low_thresh - INTEGER
802 See ip6frag_high_thresh
803
804ip6frag_time - INTEGER
805 Time in seconds to keep an IPv6 fragment in memory.
806
807ip6frag_secret_interval - INTEGER
808 Regeneration interval (in seconds) of the hash secret (or lifetime
809 for the hash secret) for IPv6 fragments.
810 Default: 600
811
812conf/default/*:
813 Change the interface-specific default settings.
814
815
816conf/all/*:
817 Change all the interface-specific settings.
818
819 [XXX: Other special features than forwarding?]
820
821conf/all/forwarding - BOOLEAN
822 Enable global IPv6 forwarding between all interfaces.
823
824 IPv4 and IPv6 work differently here; e.g. netfilter must be used
825 to control which interfaces may forward packets and which not.
826
827 This also sets all interfaces' Host/Router setting
828 'forwarding' to the specified value. See below for details.
829
830 This referred to as global forwarding.
831
fbea49e1
YH
832proxy_ndp - BOOLEAN
833 Do proxy ndp.
834
1da177e4
LT
835conf/interface/*:
836 Change special settings per interface.
837
838 The functional behaviour for certain settings is different
839 depending on whether local forwarding is enabled or not.
840
841accept_ra - BOOLEAN
842 Accept Router Advertisements; autoconfigure using them.
843
844 Functional default: enabled if local forwarding is disabled.
845 disabled if local forwarding is enabled.
846
65f5c7c1
YH
847accept_ra_defrtr - BOOLEAN
848 Learn default router in Router Advertisement.
849
850 Functional default: enabled if accept_ra is enabled.
851 disabled if accept_ra is disabled.
852
c4fd30eb 853accept_ra_pinfo - BOOLEAN
2fe0ae78 854 Learn Prefix Information in Router Advertisement.
c4fd30eb
YH
855
856 Functional default: enabled if accept_ra is enabled.
857 disabled if accept_ra is disabled.
858
09c884d4
YH
859accept_ra_rt_info_max_plen - INTEGER
860 Maximum prefix length of Route Information in RA.
861
862 Route Information w/ prefix larger than or equal to this
863 variable shall be ignored.
864
865 Functional default: 0 if accept_ra_rtr_pref is enabled.
866 -1 if accept_ra_rtr_pref is disabled.
867
930d6ff2
YH
868accept_ra_rtr_pref - BOOLEAN
869 Accept Router Preference in RA.
870
871 Functional default: enabled if accept_ra is enabled.
872 disabled if accept_ra is disabled.
873
1da177e4
LT
874accept_redirects - BOOLEAN
875 Accept Redirects.
876
877 Functional default: enabled if local forwarding is disabled.
878 disabled if local forwarding is enabled.
879
0bcbc926
YH
880accept_source_route - INTEGER
881 Accept source routing (routing extension header).
882
bb4dbf9e 883 >= 0: Accept only routing header type 2.
0bcbc926
YH
884 < 0: Do not accept routing header.
885
886 Default: 0
887
1da177e4
LT
888autoconf - BOOLEAN
889 Autoconfigure addresses using Prefix Information in Router
890 Advertisements.
891
c4fd30eb
YH
892 Functional default: enabled if accept_ra_pinfo is enabled.
893 disabled if accept_ra_pinfo is disabled.
1da177e4
LT
894
895dad_transmits - INTEGER
896 The amount of Duplicate Address Detection probes to send.
897 Default: 1
898
899forwarding - BOOLEAN
900 Configure interface-specific Host/Router behaviour.
901
902 Note: It is recommended to have the same setting on all
903 interfaces; mixed router/host scenarios are rather uncommon.
904
905 FALSE:
906
907 By default, Host behaviour is assumed. This means:
908
909 1. IsRouter flag is not set in Neighbour Advertisements.
910 2. Router Solicitations are being sent when necessary.
911 3. If accept_ra is TRUE (default), accept Router
912 Advertisements (and do autoconfiguration).
913 4. If accept_redirects is TRUE (default), accept Redirects.
914
915 TRUE:
916
917 If local forwarding is enabled, Router behaviour is assumed.
918 This means exactly the reverse from the above:
919
920 1. IsRouter flag is set in Neighbour Advertisements.
921 2. Router Solicitations are not sent.
922 3. Router Advertisements are ignored.
923 4. Redirects are ignored.
924
925 Default: FALSE if global forwarding is disabled (default),
926 otherwise TRUE.
927
928hop_limit - INTEGER
929 Default Hop Limit to set.
930 Default: 64
931
932mtu - INTEGER
933 Default Maximum Transfer Unit
934 Default: 1280 (IPv6 required minimum)
935
52e16356
YH
936router_probe_interval - INTEGER
937 Minimum interval (in seconds) between Router Probing described
938 in RFC4191.
939
940 Default: 60
941
1da177e4
LT
942router_solicitation_delay - INTEGER
943 Number of seconds to wait after interface is brought up
944 before sending Router Solicitations.
945 Default: 1
946
947router_solicitation_interval - INTEGER
948 Number of seconds to wait between Router Solicitations.
949 Default: 4
950
951router_solicitations - INTEGER
952 Number of Router Solicitations to send until assuming no
953 routers are present.
954 Default: 3
955
956use_tempaddr - INTEGER
957 Preference for Privacy Extensions (RFC3041).
958 <= 0 : disable Privacy Extensions
959 == 1 : enable Privacy Extensions, but prefer public
960 addresses over temporary addresses.
961 > 1 : enable Privacy Extensions and prefer temporary
962 addresses over public addresses.
963 Default: 0 (for most devices)
964 -1 (for point-to-point devices and loopback devices)
965
966temp_valid_lft - INTEGER
967 valid lifetime (in seconds) for temporary addresses.
968 Default: 604800 (7 days)
969
970temp_prefered_lft - INTEGER
971 Preferred lifetime (in seconds) for temporary addresses.
972 Default: 86400 (1 day)
973
974max_desync_factor - INTEGER
975 Maximum value for DESYNC_FACTOR, which is a random value
976 that ensures that clients don't synchronize with each
977 other and generate new addresses at exactly the same time.
978 value is in seconds.
979 Default: 600
980
981regen_max_retry - INTEGER
982 Number of attempts before give up attempting to generate
983 valid temporary addresses.
984 Default: 5
985
986max_addresses - INTEGER
987 Number of maximum addresses per interface. 0 disables limitation.
988 It is recommended not set too large value (or 0) because it would
989 be too easy way to crash kernel to allow to create too much of
990 autoconfigured addresses.
991 Default: 16
992
993icmp/*:
994ratelimit - INTEGER
995 Limit the maximal rates for sending ICMPv6 packets.
996 0 to disable any limiting, otherwise the maximal rate in jiffies(1)
997 Default: 100
998
999
1000IPv6 Update by:
1001Pekka Savola <pekkas@netcore.fi>
1002YOSHIFUJI Hideaki / USAGI Project <yoshfuji@linux-ipv6.org>
1003
1004
1005/proc/sys/net/bridge/* Variables:
1006
1007bridge-nf-call-arptables - BOOLEAN
1008 1 : pass bridged ARP traffic to arptables' FORWARD chain.
1009 0 : disable this.
1010 Default: 1
1011
1012bridge-nf-call-iptables - BOOLEAN
1013 1 : pass bridged IPv4 traffic to iptables' chains.
1014 0 : disable this.
1015 Default: 1
1016
1017bridge-nf-call-ip6tables - BOOLEAN
1018 1 : pass bridged IPv6 traffic to ip6tables' chains.
1019 0 : disable this.
1020 Default: 1
1021
1022bridge-nf-filter-vlan-tagged - BOOLEAN
516299d2
MM
1023 1 : pass bridged vlan-tagged ARP/IP/IPv6 traffic to {arp,ip,ip6}tables.
1024 0 : disable this.
1025 Default: 1
1026
1027bridge-nf-filter-pppoe-tagged - BOOLEAN
1028 1 : pass bridged pppoe-tagged IP/IPv6 traffic to {ip,ip6}tables.
1da177e4
LT
1029 0 : disable this.
1030 Default: 1
1031
1032
1033UNDOCUMENTED:
1034
1035dev_weight FIXME
1036discovery_slots FIXME
1037discovery_timeout FIXME
1038fast_poll_increase FIXME
1039ip6_queue_maxlen FIXME
1040lap_keepalive_time FIXME
1041lo_cong FIXME
1042max_baud_rate FIXME
1043max_dgram_qlen FIXME
1044max_noreply_time FIXME
1045max_tx_data_size FIXME
1046max_tx_window FIXME
1047min_tx_turn_time FIXME
1048mod_cong FIXME
1049no_cong FIXME
1050no_cong_thresh FIXME
1051slot_timeout FIXME
1052warn_noreply_time FIXME
1053