ip-sysctl.txt 43 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268
  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,
  456. otherwise the minimal space between responses in milliseconds.
  457. Default: 1000
  458. icmp_ratemask - INTEGER
  459. Mask made of ICMP types for which rates are being limited.
  460. Significant bits: IHGFEDCBA9876543210
  461. Default mask: 0000001100000011000 (6168)
  462. Bit definitions (see include/linux/icmp.h):
  463. 0 Echo Reply
  464. 3 Destination Unreachable *
  465. 4 Source Quench *
  466. 5 Redirect
  467. 8 Echo Request
  468. B Time Exceeded *
  469. C Parameter Problem *
  470. D Timestamp Request
  471. E Timestamp Reply
  472. F Info Request
  473. G Info Reply
  474. H Address Mask Request
  475. I Address Mask Reply
  476. * These are rate limited by default (see default mask above)
  477. icmp_ignore_bogus_error_responses - BOOLEAN
  478. Some routers violate RFC1122 by sending bogus responses to broadcast
  479. frames. Such violations are normally logged via a kernel warning.
  480. If this is set to TRUE, the kernel will not give such warnings, which
  481. will avoid log file clutter.
  482. Default: FALSE
  483. icmp_errors_use_inbound_ifaddr - BOOLEAN
  484. If zero, icmp error messages are sent with the primary address of
  485. the exiting interface.
  486. If non-zero, the message will be sent with the primary address of
  487. the interface that received the packet that caused the icmp error.
  488. This is the behaviour network many administrators will expect from
  489. a router. And it can make debugging complicated network layouts
  490. much easier.
  491. Note that if no primary address exists for the interface selected,
  492. then the primary address of the first non-loopback interface that
  493. has one will be used regardless of this setting.
  494. Default: 0
  495. igmp_max_memberships - INTEGER
  496. Change the maximum number of multicast groups we can subscribe to.
  497. Default: 20
  498. conf/interface/* changes special settings per interface (where "interface" is
  499. the name of your network interface)
  500. conf/all/* is special, changes the settings for all interfaces
  501. log_martians - BOOLEAN
  502. Log packets with impossible addresses to kernel log.
  503. log_martians for the interface will be enabled if at least one of
  504. conf/{all,interface}/log_martians is set to TRUE,
  505. it will be disabled otherwise
  506. accept_redirects - BOOLEAN
  507. Accept ICMP redirect messages.
  508. accept_redirects for the interface will be enabled if:
  509. - both conf/{all,interface}/accept_redirects are TRUE in the case forwarding
  510. for the interface is enabled
  511. or
  512. - at least one of conf/{all,interface}/accept_redirects is TRUE in the case
  513. forwarding for the interface is disabled
  514. accept_redirects for the interface will be disabled otherwise
  515. default TRUE (host)
  516. FALSE (router)
  517. forwarding - BOOLEAN
  518. Enable IP forwarding on this interface.
  519. mc_forwarding - BOOLEAN
  520. Do multicast routing. The kernel needs to be compiled with CONFIG_MROUTE
  521. and a multicast routing daemon is required.
  522. conf/all/mc_forwarding must also be set to TRUE to enable multicast routing
  523. for the interface
  524. medium_id - INTEGER
  525. Integer value used to differentiate the devices by the medium they
  526. are attached to. Two devices can have different id values when
  527. the broadcast packets are received only on one of them.
  528. The default value 0 means that the device is the only interface
  529. to its medium, value of -1 means that medium is not known.
  530. Currently, it is used to change the proxy_arp behavior:
  531. the proxy_arp feature is enabled for packets forwarded between
  532. two devices attached to different media.
  533. proxy_arp - BOOLEAN
  534. Do proxy arp.
  535. proxy_arp for the interface will be enabled if at least one of
  536. conf/{all,interface}/proxy_arp is set to TRUE,
  537. it will be disabled otherwise
  538. shared_media - BOOLEAN
  539. Send(router) or accept(host) RFC1620 shared media redirects.
  540. Overrides ip_secure_redirects.
  541. shared_media for the interface will be enabled if at least one of
  542. conf/{all,interface}/shared_media is set to TRUE,
  543. it will be disabled otherwise
  544. default TRUE
  545. secure_redirects - BOOLEAN
  546. Accept ICMP redirect messages only for gateways,
  547. listed in default gateway list.
  548. secure_redirects for the interface will be enabled if at least one of
  549. conf/{all,interface}/secure_redirects is set to TRUE,
  550. it will be disabled otherwise
  551. default TRUE
  552. send_redirects - BOOLEAN
  553. Send redirects, if router.
  554. send_redirects for the interface will be enabled if at least one of
  555. conf/{all,interface}/send_redirects is set to TRUE,
  556. it will be disabled otherwise
  557. Default: TRUE
  558. bootp_relay - BOOLEAN
  559. Accept packets with source address 0.b.c.d destined
  560. not to this host as local ones. It is supposed, that
  561. BOOTP relay daemon will catch and forward such packets.
  562. conf/all/bootp_relay must also be set to TRUE to enable BOOTP relay
  563. for the interface
  564. default FALSE
  565. Not Implemented Yet.
  566. accept_source_route - BOOLEAN
  567. Accept packets with SRR option.
  568. conf/all/accept_source_route must also be set to TRUE to accept packets
  569. with SRR option on the interface
  570. default TRUE (router)
  571. FALSE (host)
  572. rp_filter - BOOLEAN
  573. 1 - do source validation by reversed path, as specified in RFC1812
  574. Recommended option for single homed hosts and stub network
  575. routers. Could cause troubles for complicated (not loop free)
  576. networks running a slow unreliable protocol (sort of RIP),
  577. or using static routes.
  578. 0 - No source validation.
  579. conf/all/rp_filter must also be set to TRUE to do source validation
  580. on the interface
  581. Default value is 0. Note that some distributions enable it
  582. in startup scripts.
  583. arp_filter - BOOLEAN
  584. 1 - Allows you to have multiple network interfaces on the same
  585. subnet, and have the ARPs for each interface be answered
  586. based on whether or not the kernel would route a packet from
  587. the ARP'd IP out that interface (therefore you must use source
  588. based routing for this to work). In other words it allows control
  589. of which cards (usually 1) will respond to an arp request.
  590. 0 - (default) The kernel can respond to arp requests with addresses
  591. from other interfaces. This may seem wrong but it usually makes
  592. sense, because it increases the chance of successful communication.
  593. IP addresses are owned by the complete host on Linux, not by
  594. particular interfaces. Only for more complex setups like load-
  595. balancing, does this behaviour cause problems.
  596. arp_filter for the interface will be enabled if at least one of
  597. conf/{all,interface}/arp_filter is set to TRUE,
  598. it will be disabled otherwise
  599. arp_announce - INTEGER
  600. Define different restriction levels for announcing the local
  601. source IP address from IP packets in ARP requests sent on
  602. interface:
  603. 0 - (default) Use any local address, configured on any interface
  604. 1 - Try to avoid local addresses that are not in the target's
  605. subnet for this interface. This mode is useful when target
  606. hosts reachable via this interface require the source IP
  607. address in ARP requests to be part of their logical network
  608. configured on the receiving interface. When we generate the
  609. request we will check all our subnets that include the
  610. target IP and will preserve the source address if it is from
  611. such subnet. If there is no such subnet we select source
  612. address according to the rules for level 2.
  613. 2 - Always use the best local address for this target.
  614. In this mode we ignore the source address in the IP packet
  615. and try to select local address that we prefer for talks with
  616. the target host. Such local address is selected by looking
  617. for primary IP addresses on all our subnets on the outgoing
  618. interface that include the target IP address. If no suitable
  619. local address is found we select the first local address
  620. we have on the outgoing interface or on all other interfaces,
  621. with the hope we will receive reply for our request and
  622. even sometimes no matter the source IP address we announce.
  623. The max value from conf/{all,interface}/arp_announce is used.
  624. Increasing the restriction level gives more chance for
  625. receiving answer from the resolved target while decreasing
  626. the level announces more valid sender's information.
  627. arp_ignore - INTEGER
  628. Define different modes for sending replies in response to
  629. received ARP requests that resolve local target IP addresses:
  630. 0 - (default): reply for any local target IP address, configured
  631. on any interface
  632. 1 - reply only if the target IP address is local address
  633. configured on the incoming interface
  634. 2 - reply only if the target IP address is local address
  635. configured on the incoming interface and both with the
  636. sender's IP address are part from same subnet on this interface
  637. 3 - do not reply for local addresses configured with scope host,
  638. only resolutions for global and link addresses are replied
  639. 4-7 - reserved
  640. 8 - do not reply for all local addresses
  641. The max value from conf/{all,interface}/arp_ignore is used
  642. when ARP request is received on the {interface}
  643. arp_accept - BOOLEAN
  644. Define behavior when gratuitous arp replies are received:
  645. 0 - drop gratuitous arp frames
  646. 1 - accept gratuitous arp frames
  647. app_solicit - INTEGER
  648. The maximum number of probes to send to the user space ARP daemon
  649. via netlink before dropping back to multicast probes (see
  650. mcast_solicit). Defaults to 0.
  651. disable_policy - BOOLEAN
  652. Disable IPSEC policy (SPD) for this interface
  653. disable_xfrm - BOOLEAN
  654. Disable IPSEC encryption on this interface, whatever the policy
  655. tag - INTEGER
  656. Allows you to write a number, which can be used as required.
  657. Default value is 0.
  658. Alexey Kuznetsov.
  659. kuznet@ms2.inr.ac.ru
  660. Updated by:
  661. Andi Kleen
  662. ak@muc.de
  663. Nicolas Delon
  664. delon.nicolas@wanadoo.fr
  665. /proc/sys/net/ipv6/* Variables:
  666. IPv6 has no global variables such as tcp_*. tcp_* settings under ipv4/ also
  667. apply to IPv6 [XXX?].
  668. bindv6only - BOOLEAN
  669. Default value for IPV6_V6ONLY socket option,
  670. which restricts use of the IPv6 socket to IPv6 communication
  671. only.
  672. TRUE: disable IPv4-mapped address feature
  673. FALSE: enable IPv4-mapped address feature
  674. Default: FALSE (as specified in RFC2553bis)
  675. IPv6 Fragmentation:
  676. ip6frag_high_thresh - INTEGER
  677. Maximum memory used to reassemble IPv6 fragments. When
  678. ip6frag_high_thresh bytes of memory is allocated for this purpose,
  679. the fragment handler will toss packets until ip6frag_low_thresh
  680. is reached.
  681. ip6frag_low_thresh - INTEGER
  682. See ip6frag_high_thresh
  683. ip6frag_time - INTEGER
  684. Time in seconds to keep an IPv6 fragment in memory.
  685. ip6frag_secret_interval - INTEGER
  686. Regeneration interval (in seconds) of the hash secret (or lifetime
  687. for the hash secret) for IPv6 fragments.
  688. Default: 600
  689. conf/default/*:
  690. Change the interface-specific default settings.
  691. conf/all/*:
  692. Change all the interface-specific settings.
  693. [XXX: Other special features than forwarding?]
  694. conf/all/forwarding - BOOLEAN
  695. Enable global IPv6 forwarding between all interfaces.
  696. IPv4 and IPv6 work differently here; e.g. netfilter must be used
  697. to control which interfaces may forward packets and which not.
  698. This also sets all interfaces' Host/Router setting
  699. 'forwarding' to the specified value. See below for details.
  700. This referred to as global forwarding.
  701. proxy_ndp - BOOLEAN
  702. Do proxy ndp.
  703. conf/interface/*:
  704. Change special settings per interface.
  705. The functional behaviour for certain settings is different
  706. depending on whether local forwarding is enabled or not.
  707. accept_ra - BOOLEAN
  708. Accept Router Advertisements; autoconfigure using them.
  709. Functional default: enabled if local forwarding is disabled.
  710. disabled if local forwarding is enabled.
  711. accept_ra_defrtr - BOOLEAN
  712. Learn default router in Router Advertisement.
  713. Functional default: enabled if accept_ra is enabled.
  714. disabled if accept_ra is disabled.
  715. accept_ra_pinfo - BOOLEAN
  716. Learn Prefix Information in Router Advertisement.
  717. Functional default: enabled if accept_ra is enabled.
  718. disabled if accept_ra is disabled.
  719. accept_ra_rt_info_max_plen - INTEGER
  720. Maximum prefix length of Route Information in RA.
  721. Route Information w/ prefix larger than or equal to this
  722. variable shall be ignored.
  723. Functional default: 0 if accept_ra_rtr_pref is enabled.
  724. -1 if accept_ra_rtr_pref is disabled.
  725. accept_ra_rtr_pref - BOOLEAN
  726. Accept Router Preference in RA.
  727. Functional default: enabled if accept_ra is enabled.
  728. disabled if accept_ra is disabled.
  729. accept_redirects - BOOLEAN
  730. Accept Redirects.
  731. Functional default: enabled if local forwarding is disabled.
  732. disabled if local forwarding is enabled.
  733. accept_source_route - INTEGER
  734. Accept source routing (routing extension header).
  735. >= 0: Accept only routing header type 2.
  736. < 0: Do not accept routing header.
  737. Default: 0
  738. autoconf - BOOLEAN
  739. Autoconfigure addresses using Prefix Information in Router
  740. Advertisements.
  741. Functional default: enabled if accept_ra_pinfo is enabled.
  742. disabled if accept_ra_pinfo is disabled.
  743. dad_transmits - INTEGER
  744. The amount of Duplicate Address Detection probes to send.
  745. Default: 1
  746. forwarding - BOOLEAN
  747. Configure interface-specific Host/Router behaviour.
  748. Note: It is recommended to have the same setting on all
  749. interfaces; mixed router/host scenarios are rather uncommon.
  750. FALSE:
  751. By default, Host behaviour is assumed. This means:
  752. 1. IsRouter flag is not set in Neighbour Advertisements.
  753. 2. Router Solicitations are being sent when necessary.
  754. 3. If accept_ra is TRUE (default), accept Router
  755. Advertisements (and do autoconfiguration).
  756. 4. If accept_redirects is TRUE (default), accept Redirects.
  757. TRUE:
  758. If local forwarding is enabled, Router behaviour is assumed.
  759. This means exactly the reverse from the above:
  760. 1. IsRouter flag is set in Neighbour Advertisements.
  761. 2. Router Solicitations are not sent.
  762. 3. Router Advertisements are ignored.
  763. 4. Redirects are ignored.
  764. Default: FALSE if global forwarding is disabled (default),
  765. otherwise TRUE.
  766. hop_limit - INTEGER
  767. Default Hop Limit to set.
  768. Default: 64
  769. mtu - INTEGER
  770. Default Maximum Transfer Unit
  771. Default: 1280 (IPv6 required minimum)
  772. router_probe_interval - INTEGER
  773. Minimum interval (in seconds) between Router Probing described
  774. in RFC4191.
  775. Default: 60
  776. router_solicitation_delay - INTEGER
  777. Number of seconds to wait after interface is brought up
  778. before sending Router Solicitations.
  779. Default: 1
  780. router_solicitation_interval - INTEGER
  781. Number of seconds to wait between Router Solicitations.
  782. Default: 4
  783. router_solicitations - INTEGER
  784. Number of Router Solicitations to send until assuming no
  785. routers are present.
  786. Default: 3
  787. use_tempaddr - INTEGER
  788. Preference for Privacy Extensions (RFC3041).
  789. <= 0 : disable Privacy Extensions
  790. == 1 : enable Privacy Extensions, but prefer public
  791. addresses over temporary addresses.
  792. > 1 : enable Privacy Extensions and prefer temporary
  793. addresses over public addresses.
  794. Default: 0 (for most devices)
  795. -1 (for point-to-point devices and loopback devices)
  796. temp_valid_lft - INTEGER
  797. valid lifetime (in seconds) for temporary addresses.
  798. Default: 604800 (7 days)
  799. temp_prefered_lft - INTEGER
  800. Preferred lifetime (in seconds) for temporary addresses.
  801. Default: 86400 (1 day)
  802. max_desync_factor - INTEGER
  803. Maximum value for DESYNC_FACTOR, which is a random value
  804. that ensures that clients don't synchronize with each
  805. other and generate new addresses at exactly the same time.
  806. value is in seconds.
  807. Default: 600
  808. regen_max_retry - INTEGER
  809. Number of attempts before give up attempting to generate
  810. valid temporary addresses.
  811. Default: 5
  812. max_addresses - INTEGER
  813. Number of maximum addresses per interface. 0 disables limitation.
  814. It is recommended not set too large value (or 0) because it would
  815. be too easy way to crash kernel to allow to create too much of
  816. autoconfigured addresses.
  817. Default: 16
  818. disable_ipv6 - BOOLEAN
  819. Disable IPv6 operation.
  820. Default: FALSE (enable IPv6 operation)
  821. accept_dad - INTEGER
  822. Whether to accept DAD (Duplicate Address Detection).
  823. 0: Disable DAD
  824. 1: Enable DAD (default)
  825. 2: Enable DAD, and disable IPv6 operation if MAC-based duplicate
  826. link-local address has been found.
  827. icmp/*:
  828. ratelimit - INTEGER
  829. Limit the maximal rates for sending ICMPv6 packets.
  830. 0 to disable any limiting,
  831. otherwise the minimal space between responses in milliseconds.
  832. Default: 1000
  833. IPv6 Update by:
  834. Pekka Savola <pekkas@netcore.fi>
  835. YOSHIFUJI Hideaki / USAGI Project <yoshfuji@linux-ipv6.org>
  836. /proc/sys/net/bridge/* Variables:
  837. bridge-nf-call-arptables - BOOLEAN
  838. 1 : pass bridged ARP traffic to arptables' FORWARD chain.
  839. 0 : disable this.
  840. Default: 1
  841. bridge-nf-call-iptables - BOOLEAN
  842. 1 : pass bridged IPv4 traffic to iptables' chains.
  843. 0 : disable this.
  844. Default: 1
  845. bridge-nf-call-ip6tables - BOOLEAN
  846. 1 : pass bridged IPv6 traffic to ip6tables' chains.
  847. 0 : disable this.
  848. Default: 1
  849. bridge-nf-filter-vlan-tagged - BOOLEAN
  850. 1 : pass bridged vlan-tagged ARP/IP/IPv6 traffic to {arp,ip,ip6}tables.
  851. 0 : disable this.
  852. Default: 1
  853. bridge-nf-filter-pppoe-tagged - BOOLEAN
  854. 1 : pass bridged pppoe-tagged IP/IPv6 traffic to {ip,ip6}tables.
  855. 0 : disable this.
  856. Default: 1
  857. proc/sys/net/sctp/* Variables:
  858. addip_enable - BOOLEAN
  859. Enable or disable extension of Dynamic Address Reconfiguration
  860. (ADD-IP) functionality specified in RFC5061. This extension provides
  861. the ability to dynamically add and remove new addresses for the SCTP
  862. associations.
  863. 1: Enable extension.
  864. 0: Disable extension.
  865. Default: 0
  866. addip_noauth_enable - BOOLEAN
  867. Dynamic Address Reconfiguration (ADD-IP) requires the use of
  868. authentication to protect the operations of adding or removing new
  869. addresses. This requirement is mandated so that unauthorized hosts
  870. would not be able to hijack associations. However, older
  871. implementations may not have implemented this requirement while
  872. allowing the ADD-IP extension. For reasons of interoperability,
  873. we provide this variable to control the enforcement of the
  874. authentication requirement.
  875. 1: Allow ADD-IP extension to be used without authentication. This
  876. should only be set in a closed environment for interoperability
  877. with older implementations.
  878. 0: Enforce the authentication requirement
  879. Default: 0
  880. auth_enable - BOOLEAN
  881. Enable or disable Authenticated Chunks extension. This extension
  882. provides the ability to send and receive authenticated chunks and is
  883. required for secure operation of Dynamic Address Reconfiguration
  884. (ADD-IP) extension.
  885. 1: Enable this extension.
  886. 0: Disable this extension.
  887. Default: 0
  888. prsctp_enable - BOOLEAN
  889. Enable or disable the Partial Reliability extension (RFC3758) which
  890. is used to notify peers that a given DATA should no longer be expected.
  891. 1: Enable extension
  892. 0: Disable
  893. Default: 1
  894. max_burst - INTEGER
  895. The limit of the number of new packets that can be initially sent. It
  896. controls how bursty the generated traffic can be.
  897. Default: 4
  898. association_max_retrans - INTEGER
  899. Set the maximum number for retransmissions that an association can
  900. attempt deciding that the remote end is unreachable. If this value
  901. is exceeded, the association is terminated.
  902. Default: 10
  903. max_init_retransmits - INTEGER
  904. The maximum number of retransmissions of INIT and COOKIE-ECHO chunks
  905. that an association will attempt before declaring the destination
  906. unreachable and terminating.
  907. Default: 8
  908. path_max_retrans - INTEGER
  909. The maximum number of retransmissions that will be attempted on a given
  910. path. Once this threshold is exceeded, the path is considered
  911. unreachable, and new traffic will use a different path when the
  912. association is multihomed.
  913. Default: 5
  914. rto_initial - INTEGER
  915. The initial round trip timeout value in milliseconds that will be used
  916. in calculating round trip times. This is the initial time interval
  917. for retransmissions.
  918. Default: 3000
  919. rto_max - INTEGER
  920. The maximum value (in milliseconds) of the round trip timeout. This
  921. is the largest time interval that can elapse between retransmissions.
  922. Default: 60000
  923. rto_min - INTEGER
  924. The minimum value (in milliseconds) of the round trip timeout. This
  925. is the smallest time interval the can elapse between retransmissions.
  926. Default: 1000
  927. hb_interval - INTEGER
  928. The interval (in milliseconds) between HEARTBEAT chunks. These chunks
  929. are sent at the specified interval on idle paths to probe the state of
  930. a given path between 2 associations.
  931. Default: 30000
  932. sack_timeout - INTEGER
  933. The amount of time (in milliseconds) that the implementation will wait
  934. to send a SACK.
  935. Default: 200
  936. valid_cookie_life - INTEGER
  937. The default lifetime of the SCTP cookie (in milliseconds). The cookie
  938. is used during association establishment.
  939. Default: 60000
  940. cookie_preserve_enable - BOOLEAN
  941. Enable or disable the ability to extend the lifetime of the SCTP cookie
  942. that is used during the establishment phase of SCTP association
  943. 1: Enable cookie lifetime extension.
  944. 0: Disable
  945. Default: 1
  946. rcvbuf_policy - INTEGER
  947. Determines if the receive buffer is attributed to the socket or to
  948. association. SCTP supports the capability to create multiple
  949. associations on a single socket. When using this capability, it is
  950. possible that a single stalled association that's buffering a lot
  951. of data may block other associations from delivering their data by
  952. consuming all of the receive buffer space. To work around this,
  953. the rcvbuf_policy could be set to attribute the receiver buffer space
  954. to each association instead of the socket. This prevents the described
  955. blocking.
  956. 1: rcvbuf space is per association
  957. 0: recbuf space is per socket
  958. Default: 0
  959. sndbuf_policy - INTEGER
  960. Similar to rcvbuf_policy above, this applies to send buffer space.
  961. 1: Send buffer is tracked per association
  962. 0: Send buffer is tracked per socket.
  963. Default: 0
  964. sctp_mem - vector of 3 INTEGERs: min, pressure, max
  965. Number of pages allowed for queueing by all SCTP sockets.
  966. min: Below this number of pages SCTP is not bothered about its
  967. memory appetite. When amount of memory allocated by SCTP exceeds
  968. this number, SCTP starts to moderate memory usage.
  969. pressure: This value was introduced to follow format of tcp_mem.
  970. max: Number of pages allowed for queueing by all SCTP sockets.
  971. Default is calculated at boot time from amount of available memory.
  972. sctp_rmem - vector of 3 INTEGERs: min, default, max
  973. See tcp_rmem for a description.
  974. sctp_wmem - vector of 3 INTEGERs: min, default, max
  975. See tcp_wmem for a description.
  976. UNDOCUMENTED:
  977. /proc/sys/net/core/*
  978. dev_weight FIXME
  979. /proc/sys/net/unix/*
  980. max_dgram_qlen FIXME
  981. /proc/sys/net/irda/*
  982. fast_poll_increase FIXME
  983. warn_noreply_time FIXME
  984. discovery_slots FIXME
  985. slot_timeout FIXME
  986. max_baud_rate FIXME
  987. discovery_timeout FIXME
  988. lap_keepalive_time FIXME
  989. max_noreply_time FIXME
  990. max_tx_data_size FIXME
  991. max_tx_window FIXME
  992. min_tx_turn_time FIXME