PageRenderTime 59ms CodeModel.GetById 21ms RepoModel.GetById 1ms app.codeStats 0ms

/Documentation/networking/ip-sysctl.txt

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