ip-sysctl.txt 43 KB

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