| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /proc/sys/net/ipv4/* Variables: | 
|  | 2 |  | 
|  | 3 | ip_forward - BOOLEAN | 
|  | 4 | 0 - disabled (default) | 
| Jesper Dangaard Brouer | e18f5fe | 2009-02-23 04:39:04 +0000 | [diff] [blame] | 5 | not 0 - enabled | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 |  | 
|  | 7 | Forward Packets between interfaces. | 
|  | 8 |  | 
|  | 9 | This variable is special, its change resets all configuration | 
|  | 10 | parameters to their default state (RFC1122 for hosts, RFC1812 | 
|  | 11 | for routers) | 
|  | 12 |  | 
|  | 13 | ip_default_ttl - INTEGER | 
| Eric Dumazet | cc6f02d | 2010-12-13 12:50:49 -0800 | [diff] [blame] | 14 | Default value of TTL field (Time To Live) for outgoing (but not | 
|  | 15 | forwarded) IP packets. Should be between 1 and 255 inclusive. | 
|  | 16 | Default: 64 (as recommended by RFC1700) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 |  | 
|  | 18 | ip_no_pmtu_disc - BOOLEAN | 
|  | 19 | Disable Path MTU Discovery. | 
|  | 20 | default FALSE | 
|  | 21 |  | 
|  | 22 | min_pmtu - INTEGER | 
| Eric Dumazet | 20db93c | 2011-11-08 14:21:44 -0500 | [diff] [blame] | 23 | default 552 - minimum discovered Path MTU | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 |  | 
| Ben Greear | cbaf087 | 2010-11-08 09:13:48 +0000 | [diff] [blame] | 25 | route/max_size - INTEGER | 
|  | 26 | Maximum number of routes allowed in the kernel.  Increase | 
|  | 27 | this when using large numbers of interfaces and/or routes. | 
|  | 28 |  | 
|  | 29 | neigh/default/gc_thresh3 - INTEGER | 
|  | 30 | Maximum number of neighbor entries allowed.  Increase this | 
|  | 31 | when using large numbers of interfaces and when communicating | 
|  | 32 | with large numbers of directly-connected peers. | 
|  | 33 |  | 
| Eric Dumazet | 8b5c171 | 2011-11-09 12:07:14 +0000 | [diff] [blame] | 34 | neigh/default/unres_qlen_bytes - INTEGER | 
|  | 35 | The maximum number of bytes which may be used by packets | 
|  | 36 | queued for each	unresolved address by other network layers. | 
|  | 37 | (added in linux 3.3) | 
|  | 38 |  | 
|  | 39 | neigh/default/unres_qlen - INTEGER | 
|  | 40 | The maximum number of packets which may be queued for each | 
|  | 41 | unresolved address by other network layers. | 
|  | 42 | (deprecated in linux 3.3) : use unres_qlen_bytes instead. | 
|  | 43 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | mtu_expires - INTEGER | 
|  | 45 | Time, in seconds, that cached PMTU information is kept. | 
|  | 46 |  | 
|  | 47 | min_adv_mss - INTEGER | 
|  | 48 | The advertised MSS depends on the first hop route MTU, but will | 
|  | 49 | never be lower than this setting. | 
|  | 50 |  | 
| Neil Horman | 1080d70 | 2008-10-27 12:28:25 -0700 | [diff] [blame] | 51 | rt_cache_rebuild_count - INTEGER | 
|  | 52 | The per net-namespace route cache emergency rebuild threshold. | 
|  | 53 | Any net-namespace having its route cache rebuilt due to | 
|  | 54 | a hash bucket chain being too long more than this many times | 
|  | 55 | will have its route caching disabled | 
|  | 56 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | IP Fragmentation: | 
|  | 58 |  | 
|  | 59 | ipfrag_high_thresh - INTEGER | 
| Jesper Dangaard Brouer | e18f5fe | 2009-02-23 04:39:04 +0000 | [diff] [blame] | 60 | Maximum memory used to reassemble IP fragments. When | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | ipfrag_high_thresh bytes of memory is allocated for this purpose, | 
|  | 62 | the fragment handler will toss packets until ipfrag_low_thresh | 
|  | 63 | is reached. | 
| Jesper Dangaard Brouer | e18f5fe | 2009-02-23 04:39:04 +0000 | [diff] [blame] | 64 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | ipfrag_low_thresh - INTEGER | 
| Jesper Dangaard Brouer | e18f5fe | 2009-02-23 04:39:04 +0000 | [diff] [blame] | 66 | See ipfrag_high_thresh | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 |  | 
|  | 68 | ipfrag_time - INTEGER | 
| Jesper Dangaard Brouer | e18f5fe | 2009-02-23 04:39:04 +0000 | [diff] [blame] | 69 | Time in seconds to keep an IP fragment in memory. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 |  | 
|  | 71 | ipfrag_secret_interval - INTEGER | 
| Jesper Dangaard Brouer | e18f5fe | 2009-02-23 04:39:04 +0000 | [diff] [blame] | 72 | Regeneration interval (in seconds) of the hash secret (or lifetime | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | for the hash secret) for IP fragments. | 
|  | 74 | Default: 600 | 
|  | 75 |  | 
| Herbert Xu | 89cee8b | 2005-12-13 23:14:27 -0800 | [diff] [blame] | 76 | ipfrag_max_dist - INTEGER | 
| Jesper Dangaard Brouer | e18f5fe | 2009-02-23 04:39:04 +0000 | [diff] [blame] | 77 | ipfrag_max_dist is a non-negative integer value which defines the | 
|  | 78 | maximum "disorder" which is allowed among fragments which share a | 
|  | 79 | common IP source address. Note that reordering of packets is | 
|  | 80 | not unusual, but if a large number of fragments arrive from a source | 
|  | 81 | IP address while a particular fragment queue remains incomplete, it | 
|  | 82 | probably indicates that one or more fragments belonging to that queue | 
|  | 83 | have been lost. When ipfrag_max_dist is positive, an additional check | 
|  | 84 | is done on fragments before they are added to a reassembly queue - if | 
|  | 85 | ipfrag_max_dist (or more) fragments have arrived from a particular IP | 
|  | 86 | address between additions to any IP fragment queue using that source | 
|  | 87 | address, it's presumed that one or more fragments in the queue are | 
|  | 88 | lost. The existing fragment queue will be dropped, and a new one | 
| Herbert Xu | 89cee8b | 2005-12-13 23:14:27 -0800 | [diff] [blame] | 89 | started. An ipfrag_max_dist value of zero disables this check. | 
|  | 90 |  | 
|  | 91 | Using a very small value, e.g. 1 or 2, for ipfrag_max_dist can | 
|  | 92 | result in unnecessarily dropping fragment queues when normal | 
| Jesper Dangaard Brouer | e18f5fe | 2009-02-23 04:39:04 +0000 | [diff] [blame] | 93 | reordering of packets occurs, which could lead to poor application | 
|  | 94 | performance. Using a very large value, e.g. 50000, increases the | 
|  | 95 | likelihood of incorrectly reassembling IP fragments that originate | 
| Herbert Xu | 89cee8b | 2005-12-13 23:14:27 -0800 | [diff] [blame] | 96 | from different IP datagrams, which could result in data corruption. | 
|  | 97 | Default: 64 | 
|  | 98 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | INET peer storage: | 
|  | 100 |  | 
|  | 101 | inet_peer_threshold - INTEGER | 
| Jesper Dangaard Brouer | e18f5fe | 2009-02-23 04:39:04 +0000 | [diff] [blame] | 102 | The approximate size of the storage.  Starting from this threshold | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | entries will be thrown aggressively.  This threshold also determines | 
|  | 104 | entries' time-to-live and time intervals between garbage collection | 
|  | 105 | passes.  More entries, less time-to-live, less GC interval. | 
|  | 106 |  | 
|  | 107 | inet_peer_minttl - INTEGER | 
|  | 108 | Minimum time-to-live of entries.  Should be enough to cover fragment | 
|  | 109 | time-to-live on the reassembling side.  This minimum time-to-live  is | 
|  | 110 | guaranteed if the pool size is less than inet_peer_threshold. | 
| Stephen Hemminger | 77a538d | 2008-07-01 17:22:48 -0700 | [diff] [blame] | 111 | Measured in seconds. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 |  | 
|  | 113 | inet_peer_maxttl - INTEGER | 
|  | 114 | Maximum time-to-live of entries.  Unused entries will expire after | 
|  | 115 | this period of time if there is no memory pressure on the pool (i.e. | 
|  | 116 | when the number of entries in the pool is very small). | 
| Stephen Hemminger | 77a538d | 2008-07-01 17:22:48 -0700 | [diff] [blame] | 117 | Measured in seconds. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 |  | 
| Jesper Dangaard Brouer | e18f5fe | 2009-02-23 04:39:04 +0000 | [diff] [blame] | 119 | TCP variables: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 |  | 
| Stephen Hemminger | ef56e62 | 2006-11-09 16:37:26 -0800 | [diff] [blame] | 121 | somaxconn - INTEGER | 
|  | 122 | Limit of socket listen() backlog, known in userspace as SOMAXCONN. | 
|  | 123 | Defaults to 128.  See also tcp_max_syn_backlog for additional tuning | 
|  | 124 | for TCP sockets. | 
|  | 125 |  | 
| Stephen Hemminger | 9772efb | 2005-11-10 17:09:53 -0800 | [diff] [blame] | 126 | tcp_abc - INTEGER | 
| Stephen Hemminger | b3a8a40 | 2006-09-13 19:51:02 -0700 | [diff] [blame] | 127 | Controls Appropriate Byte Count (ABC) defined in RFC3465. | 
|  | 128 | ABC is a way of increasing congestion window (cwnd) more slowly | 
|  | 129 | in response to partial acknowledgments. | 
|  | 130 | Possible values are: | 
|  | 131 | 0 increase cwnd once per acknowledgment (no ABC) | 
|  | 132 | 1 increase cwnd once per acknowledgment of full sized segment | 
|  | 133 | 2 allow increase cwnd by two if acknowledgment is | 
|  | 134 | of two segments to compensate for delayed acknowledgments. | 
|  | 135 | Default: 0 (off) | 
| Stephen Hemminger | 9772efb | 2005-11-10 17:09:53 -0800 | [diff] [blame] | 136 |  | 
| Stephen Hemminger | ef56e62 | 2006-11-09 16:37:26 -0800 | [diff] [blame] | 137 | tcp_abort_on_overflow - BOOLEAN | 
|  | 138 | If listening service is too slow to accept new connections, | 
|  | 139 | reset them. Default state is FALSE. It means that if overflow | 
|  | 140 | occurred due to a burst, connection will recover. Enable this | 
|  | 141 | option _only_ if you are really sure that listening daemon | 
|  | 142 | cannot be tuned to accept connections faster. Enabling this | 
|  | 143 | option can harm clients of your server. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 |  | 
| Stephen Hemminger | ef56e62 | 2006-11-09 16:37:26 -0800 | [diff] [blame] | 145 | tcp_adv_win_scale - INTEGER | 
|  | 146 | Count buffering overhead as bytes/2^tcp_adv_win_scale | 
|  | 147 | (if tcp_adv_win_scale > 0) or bytes-bytes/2^(-tcp_adv_win_scale), | 
|  | 148 | if it is <= 0. | 
| Alexey Dobriyan | 0147fc0 | 2010-11-22 12:54:21 +0000 | [diff] [blame] | 149 | Possible values are [-31, 31], inclusive. | 
| Eric Dumazet | b49960a | 2012-05-02 02:28:41 +0000 | [diff] [blame] | 150 | Default: 1 | 
| Stephen Hemminger | ef56e62 | 2006-11-09 16:37:26 -0800 | [diff] [blame] | 151 |  | 
|  | 152 | tcp_allowed_congestion_control - STRING | 
|  | 153 | Show/set the congestion control choices available to non-privileged | 
|  | 154 | processes. The list is a subset of those listed in | 
|  | 155 | tcp_available_congestion_control. | 
|  | 156 | Default is "reno" and the default setting (tcp_congestion_control). | 
|  | 157 |  | 
|  | 158 | tcp_app_win - INTEGER | 
|  | 159 | Reserve max(window/2^tcp_app_win, mss) of window for application | 
|  | 160 | buffer. Value 0 is special, it means that nothing is reserved. | 
|  | 161 | Default: 31 | 
|  | 162 |  | 
|  | 163 | tcp_available_congestion_control - STRING | 
|  | 164 | Shows the available congestion control choices that are registered. | 
|  | 165 | More congestion control algorithms may be available as modules, | 
|  | 166 | but not loaded. | 
|  | 167 |  | 
| John Heffner | 71599cd | 2007-02-27 10:03:56 -0800 | [diff] [blame] | 168 | tcp_base_mss - INTEGER | 
| Stephen Hemminger | 4edc2f3 | 2008-07-10 16:50:26 -0700 | [diff] [blame] | 169 | The initial value of search_low to be used by the packetization layer | 
|  | 170 | Path MTU discovery (MTU probing).  If MTU probing is enabled, | 
|  | 171 | this is the initial MSS used by the connection. | 
| John Heffner | 71599cd | 2007-02-27 10:03:56 -0800 | [diff] [blame] | 172 |  | 
| Stephen Hemminger | ef56e62 | 2006-11-09 16:37:26 -0800 | [diff] [blame] | 173 | tcp_congestion_control - STRING | 
|  | 174 | Set the congestion control algorithm to be used for new | 
|  | 175 | connections. The algorithm "reno" is always available, but | 
|  | 176 | additional choices may be available based on kernel configuration. | 
|  | 177 | Default is set as part of kernel configuration. | 
| Eric Dumazet | d8a6e65 | 2011-11-30 01:02:41 +0000 | [diff] [blame] | 178 | For passive connections, the listener congestion control choice | 
|  | 179 | is inherited. | 
|  | 180 | [see setsockopt(listenfd, SOL_TCP, TCP_CONGESTION, "name" ...) ] | 
| Stephen Hemminger | ef56e62 | 2006-11-09 16:37:26 -0800 | [diff] [blame] | 181 |  | 
| William Allen Simpson | 519855c | 2009-12-02 18:14:19 +0000 | [diff] [blame] | 182 | tcp_cookie_size - INTEGER | 
|  | 183 | Default size of TCP Cookie Transactions (TCPCT) option, that may be | 
|  | 184 | overridden on a per socket basis by the TCPCT socket option. | 
|  | 185 | Values greater than the maximum (16) are interpreted as the maximum. | 
|  | 186 | Values greater than zero and less than the minimum (8) are interpreted | 
|  | 187 | as the minimum.  Odd values are interpreted as the next even value. | 
|  | 188 | Default: 0 (off). | 
|  | 189 |  | 
| Stephen Hemminger | ef56e62 | 2006-11-09 16:37:26 -0800 | [diff] [blame] | 190 | tcp_dsack - BOOLEAN | 
|  | 191 | Allows TCP to send "duplicate" SACKs. | 
|  | 192 |  | 
| Peter Chubb | 34a6ef3 | 2011-02-02 15:39:58 -0800 | [diff] [blame] | 193 | tcp_ecn - INTEGER | 
| Ilpo Järvinen | 255cac9 | 2009-05-04 11:07:36 -0700 | [diff] [blame] | 194 | Enable Explicit Congestion Notification (ECN) in TCP. ECN is only | 
|  | 195 | used when both ends of the TCP flow support it. It is useful to | 
|  | 196 | avoid losses due to congestion (when the bottleneck router supports | 
|  | 197 | ECN). | 
|  | 198 | Possible values are: | 
|  | 199 | 0 disable ECN | 
|  | 200 | 1 ECN enabled | 
|  | 201 | 2 Only server-side ECN enabled. If the other end does | 
|  | 202 | not support ECN, behavior is like with ECN disabled. | 
|  | 203 | Default: 2 | 
| Stephen Hemminger | ef56e62 | 2006-11-09 16:37:26 -0800 | [diff] [blame] | 204 |  | 
|  | 205 | tcp_fack - BOOLEAN | 
|  | 206 | Enable FACK congestion avoidance and fast retransmission. | 
|  | 207 | The value is not used, if tcp_sack is not enabled. | 
|  | 208 |  | 
|  | 209 | tcp_fin_timeout - INTEGER | 
|  | 210 | Time to hold socket in state FIN-WAIT-2, if it was closed | 
|  | 211 | by our side. Peer can be broken and never close its side, | 
|  | 212 | or even died unexpectedly. Default value is 60sec. | 
|  | 213 | Usual value used in 2.2 was 180 seconds, you may restore | 
|  | 214 | it, but remember that if your machine is even underloaded WEB server, | 
|  | 215 | you risk to overflow memory with kilotons of dead sockets, | 
|  | 216 | FIN-WAIT-2 sockets are less dangerous than FIN-WAIT-1, | 
|  | 217 | because they eat maximum 1.5K of memory, but they tend | 
|  | 218 | to live longer.	Cf. tcp_max_orphans. | 
|  | 219 |  | 
| Ilpo Järvinen | 8980806 | 2007-02-27 10:10:55 -0800 | [diff] [blame] | 220 | tcp_frto - INTEGER | 
| Ilpo Järvinen | cd99889 | 2007-09-20 11:35:26 -0700 | [diff] [blame] | 221 | Enables Forward RTO-Recovery (F-RTO) defined in RFC4138. | 
|  | 222 | F-RTO is an enhanced recovery algorithm for TCP retransmission | 
| Stephen Hemminger | ef56e62 | 2006-11-09 16:37:26 -0800 | [diff] [blame] | 223 | timeouts.  It is particularly beneficial in wireless environments | 
|  | 224 | where packet loss is typically due to random radio interference | 
| Ryousei Takano | 564262c | 2007-10-25 23:03:52 -0700 | [diff] [blame] | 225 | rather than intermediate router congestion.  F-RTO is sender-side | 
| Stephen Hemminger | 4edc2f3 | 2008-07-10 16:50:26 -0700 | [diff] [blame] | 226 | only modification. Therefore it does not require any support from | 
|  | 227 | the peer. | 
|  | 228 |  | 
| Ilpo Järvinen | cd99889 | 2007-09-20 11:35:26 -0700 | [diff] [blame] | 229 | If set to 1, basic version is enabled.  2 enables SACK enhanced | 
|  | 230 | F-RTO if flow uses SACK.  The basic version can be used also when | 
| Ryousei Takano | 564262c | 2007-10-25 23:03:52 -0700 | [diff] [blame] | 231 | SACK is in use though scenario(s) with it exists where F-RTO | 
| Ilpo Järvinen | cd99889 | 2007-09-20 11:35:26 -0700 | [diff] [blame] | 232 | interacts badly with the packet counting of the SACK enabled TCP | 
|  | 233 | flow. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 |  | 
| Ilpo Järvinen | 8980806 | 2007-02-27 10:10:55 -0800 | [diff] [blame] | 235 | tcp_frto_response - INTEGER | 
|  | 236 | When F-RTO has detected that a TCP retransmission timeout was | 
|  | 237 | spurious (i.e, the timeout would have been avoided had TCP set a | 
|  | 238 | longer retransmission timeout), TCP has several options what to do | 
|  | 239 | next. Possible values are: | 
|  | 240 | 0 Rate halving based; a smooth and conservative response, | 
|  | 241 | results in halved cwnd and ssthresh after one RTT | 
|  | 242 | 1 Very conservative response; not recommended because even | 
|  | 243 | though being valid, it interacts poorly with the rest of | 
|  | 244 | Linux TCP, halves cwnd and ssthresh immediately | 
|  | 245 | 2 Aggressive response; undoes congestion control measures | 
|  | 246 | that are now known to be unnecessary (ignoring the | 
|  | 247 | possibility of a lost retransmission that would require | 
|  | 248 | TCP to be more cautious), cwnd and ssthresh are restored | 
|  | 249 | to the values prior timeout | 
|  | 250 | Default: 0 (rate halving based) | 
|  | 251 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 252 | tcp_keepalive_time - INTEGER | 
|  | 253 | How often TCP sends out keepalive messages when keepalive is enabled. | 
|  | 254 | Default: 2hours. | 
|  | 255 |  | 
|  | 256 | tcp_keepalive_probes - INTEGER | 
|  | 257 | How many keepalive probes TCP sends out, until it decides that the | 
|  | 258 | connection is broken. Default value: 9. | 
|  | 259 |  | 
|  | 260 | tcp_keepalive_intvl - INTEGER | 
|  | 261 | How frequently the probes are send out. Multiplied by | 
|  | 262 | tcp_keepalive_probes it is time to kill not responding connection, | 
|  | 263 | after probes started. Default value: 75sec i.e. connection | 
|  | 264 | will be aborted after ~11 minutes of retries. | 
|  | 265 |  | 
| Stephen Hemminger | ef56e62 | 2006-11-09 16:37:26 -0800 | [diff] [blame] | 266 | tcp_low_latency - BOOLEAN | 
|  | 267 | If set, the TCP stack makes decisions that prefer lower | 
|  | 268 | latency as opposed to higher throughput.  By default, this | 
|  | 269 | option is not set meaning that higher throughput is preferred. | 
|  | 270 | An example of an application where this default should be | 
|  | 271 | changed would be a Beowulf compute cluster. | 
|  | 272 | Default: 0 | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 273 |  | 
|  | 274 | tcp_max_orphans - INTEGER | 
|  | 275 | Maximal number of TCP sockets not attached to any user file handle, | 
|  | 276 | held by system.	If this number is exceeded orphaned connections are | 
|  | 277 | reset immediately and warning is printed. This limit exists | 
|  | 278 | only to prevent simple DoS attacks, you _must_ not rely on this | 
|  | 279 | or lower the limit artificially, but rather increase it | 
|  | 280 | (probably, after increasing installed memory), | 
|  | 281 | if network conditions require more than default value, | 
|  | 282 | and tune network services to linger and kill such states | 
|  | 283 | more aggressively. Let me to remind again: each orphan eats | 
|  | 284 | up to ~64K of unswappable memory. | 
|  | 285 |  | 
| Ilpo Järvinen | 81146ec | 2011-02-19 21:52:41 +0000 | [diff] [blame] | 286 | tcp_max_ssthresh - INTEGER | 
|  | 287 | Limited Slow-Start for TCP with large congestion windows (cwnd) defined in | 
|  | 288 | RFC3742. Limited slow-start is a mechanism to limit growth of the cwnd | 
|  | 289 | on the region where cwnd is larger than tcp_max_ssthresh. TCP increases cwnd | 
|  | 290 | by at most tcp_max_ssthresh segments, and by at least tcp_max_ssthresh/2 | 
|  | 291 | segments per RTT when the cwnd is above tcp_max_ssthresh. | 
|  | 292 | If TCP connection increased cwnd to thousands (or tens of thousands) segments, | 
|  | 293 | and thousands of packets were being dropped during slow-start, you can set | 
|  | 294 | tcp_max_ssthresh to improve performance for new TCP connection. | 
|  | 295 | Default: 0 (off) | 
|  | 296 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 297 | tcp_max_syn_backlog - INTEGER | 
| Peter Pan(潘卫平) | 99b53bd | 2011-12-05 21:39:41 +0000 | [diff] [blame] | 298 | Maximal number of remembered connection requests, which have not | 
|  | 299 | received an acknowledgment from connecting client. | 
|  | 300 | The minimal value is 128 for low memory machines, and it will | 
|  | 301 | increase in proportion to the memory of machine. | 
|  | 302 | If server suffers from overload, try increasing this number. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 303 |  | 
| Stephen Hemminger | ef56e62 | 2006-11-09 16:37:26 -0800 | [diff] [blame] | 304 | tcp_max_tw_buckets - INTEGER | 
|  | 305 | Maximal number of timewait sockets held by system simultaneously. | 
|  | 306 | If this number is exceeded time-wait socket is immediately destroyed | 
|  | 307 | and warning is printed. This limit exists only to prevent | 
|  | 308 | simple DoS attacks, you _must_ not lower the limit artificially, | 
|  | 309 | but rather increase it (probably, after increasing installed memory), | 
|  | 310 | if network conditions require more than default value. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 311 |  | 
| Stephen Hemminger | ef56e62 | 2006-11-09 16:37:26 -0800 | [diff] [blame] | 312 | tcp_mem - vector of 3 INTEGERs: min, pressure, max | 
|  | 313 | min: below this number of pages TCP is not bothered about its | 
|  | 314 | memory appetite. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 315 |  | 
| Stephen Hemminger | ef56e62 | 2006-11-09 16:37:26 -0800 | [diff] [blame] | 316 | pressure: when amount of memory allocated by TCP exceeds this number | 
|  | 317 | of pages, TCP moderates its memory consumption and enters memory | 
|  | 318 | pressure mode, which is exited when memory consumption falls | 
|  | 319 | under "min". | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 320 |  | 
| Stephen Hemminger | ef56e62 | 2006-11-09 16:37:26 -0800 | [diff] [blame] | 321 | max: number of pages allowed for queueing by all TCP sockets. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 322 |  | 
| Stephen Hemminger | ef56e62 | 2006-11-09 16:37:26 -0800 | [diff] [blame] | 323 | Defaults are calculated at boot time from amount of available | 
|  | 324 | memory. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 325 |  | 
| John Heffner | 71599cd | 2007-02-27 10:03:56 -0800 | [diff] [blame] | 326 | tcp_moderate_rcvbuf - BOOLEAN | 
| Stephen Hemminger | 4edc2f3 | 2008-07-10 16:50:26 -0700 | [diff] [blame] | 327 | If set, TCP performs receive buffer auto-tuning, attempting to | 
| John Heffner | 71599cd | 2007-02-27 10:03:56 -0800 | [diff] [blame] | 328 | automatically size the buffer (no greater than tcp_rmem[2]) to | 
|  | 329 | match the size required by the path for full throughput.  Enabled by | 
|  | 330 | default. | 
|  | 331 |  | 
|  | 332 | tcp_mtu_probing - INTEGER | 
|  | 333 | Controls TCP Packetization-Layer Path MTU Discovery.  Takes three | 
|  | 334 | values: | 
|  | 335 | 0 - Disabled | 
|  | 336 | 1 - Disabled by default, enabled when an ICMP black hole detected | 
|  | 337 | 2 - Always enabled, use initial MSS of tcp_base_mss. | 
|  | 338 |  | 
|  | 339 | tcp_no_metrics_save - BOOLEAN | 
|  | 340 | By default, TCP saves various connection metrics in the route cache | 
|  | 341 | when the connection closes, so that connections established in the | 
|  | 342 | near future can use these to set initial conditions.  Usually, this | 
|  | 343 | increases overall performance, but may sometimes cause performance | 
| Simon Arlott | 0f035b8 | 2007-10-20 01:30:25 +0200 | [diff] [blame] | 344 | degradation.  If set, TCP will not cache metrics on closing | 
| John Heffner | 71599cd | 2007-02-27 10:03:56 -0800 | [diff] [blame] | 345 | connections. | 
|  | 346 |  | 
| Stephen Hemminger | ef56e62 | 2006-11-09 16:37:26 -0800 | [diff] [blame] | 347 | tcp_orphan_retries - INTEGER | 
| Damian Lukowski | 5d78922 | 2009-09-01 10:24:04 +0000 | [diff] [blame] | 348 | This value influences the timeout of a locally closed TCP connection, | 
|  | 349 | when RTO retransmissions remain unacknowledged. | 
|  | 350 | See tcp_retries2 for more details. | 
|  | 351 |  | 
| David S. Miller | 06b8fc5 | 2011-07-08 09:31:31 -0700 | [diff] [blame] | 352 | The default value is 8. | 
| Damian Lukowski | 5d78922 | 2009-09-01 10:24:04 +0000 | [diff] [blame] | 353 | If your machine is a loaded WEB server, | 
| Stephen Hemminger | ef56e62 | 2006-11-09 16:37:26 -0800 | [diff] [blame] | 354 | you should think about lowering this value, such sockets | 
|  | 355 | may consume significant resources. Cf. tcp_max_orphans. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 356 |  | 
|  | 357 | tcp_reordering - INTEGER | 
|  | 358 | Maximal reordering of packets in a TCP stream. | 
| Jesper Dangaard Brouer | e18f5fe | 2009-02-23 04:39:04 +0000 | [diff] [blame] | 359 | Default: 3 | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 360 |  | 
|  | 361 | tcp_retrans_collapse - BOOLEAN | 
|  | 362 | Bug-to-bug compatibility with some broken printers. | 
|  | 363 | On retransmit try to send bigger packets to work around bugs in | 
|  | 364 | certain TCP stacks. | 
|  | 365 |  | 
| Stephen Hemminger | ef56e62 | 2006-11-09 16:37:26 -0800 | [diff] [blame] | 366 | tcp_retries1 - INTEGER | 
| Damian Lukowski | 5d78922 | 2009-09-01 10:24:04 +0000 | [diff] [blame] | 367 | This value influences the time, after which TCP decides, that | 
|  | 368 | something is wrong due to unacknowledged RTO retransmissions, | 
|  | 369 | and reports this suspicion to the network layer. | 
|  | 370 | See tcp_retries2 for more details. | 
|  | 371 |  | 
|  | 372 | RFC 1122 recommends at least 3 retransmissions, which is the | 
|  | 373 | default. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 374 |  | 
| Stephen Hemminger | ef56e62 | 2006-11-09 16:37:26 -0800 | [diff] [blame] | 375 | tcp_retries2 - INTEGER | 
| Damian Lukowski | 5d78922 | 2009-09-01 10:24:04 +0000 | [diff] [blame] | 376 | This value influences the timeout of an alive TCP connection, | 
|  | 377 | when RTO retransmissions remain unacknowledged. | 
|  | 378 | Given a value of N, a hypothetical TCP connection following | 
|  | 379 | exponential backoff with an initial RTO of TCP_RTO_MIN would | 
|  | 380 | retransmit N times before killing the connection at the (N+1)th RTO. | 
|  | 381 |  | 
|  | 382 | The default value of 15 yields a hypothetical timeout of 924.6 | 
|  | 383 | seconds and is a lower bound for the effective timeout. | 
|  | 384 | TCP will effectively time out at the first RTO which exceeds the | 
|  | 385 | hypothetical timeout. | 
|  | 386 |  | 
|  | 387 | RFC 1122 recommends at least 100 seconds for the timeout, | 
|  | 388 | which corresponds to a value of at least 8. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 389 |  | 
| Stephen Hemminger | ef56e62 | 2006-11-09 16:37:26 -0800 | [diff] [blame] | 390 | tcp_rfc1337 - BOOLEAN | 
|  | 391 | If set, the TCP stack behaves conforming to RFC1337. If unset, | 
|  | 392 | we are not conforming to RFC, but prevent TCP TIME_WAIT | 
|  | 393 | assassination. | 
|  | 394 | Default: 0 | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 395 |  | 
|  | 396 | tcp_rmem - vector of 3 INTEGERs: min, default, max | 
|  | 397 | min: Minimal size of receive buffer used by TCP sockets. | 
|  | 398 | It is guaranteed to each TCP socket, even under moderate memory | 
|  | 399 | pressure. | 
| Max Matveev | 6539fef | 2011-06-21 21:18:13 +0000 | [diff] [blame] | 400 | Default: 1 page | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 401 |  | 
| J. Bruce Fields | 53025f5 | 2008-07-10 16:47:41 -0700 | [diff] [blame] | 402 | default: initial size of receive buffer used by TCP sockets. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 403 | This value overrides net.core.rmem_default used by other protocols. | 
|  | 404 | Default: 87380 bytes. This value results in window of 65535 with | 
|  | 405 | default setting of tcp_adv_win_scale and tcp_app_win:0 and a bit | 
|  | 406 | less for default tcp_app_win. See below about these variables. | 
|  | 407 |  | 
|  | 408 | max: maximal size of receive buffer allowed for automatically | 
|  | 409 | selected receiver buffers for TCP socket. This value does not override | 
| J. Bruce Fields | 53025f5 | 2008-07-10 16:47:41 -0700 | [diff] [blame] | 410 | net.core.rmem_max.  Calling setsockopt() with SO_RCVBUF disables | 
|  | 411 | automatic tuning of that socket's receive buffer size, in which | 
|  | 412 | case this value is ignored. | 
| Eric Dumazet | b49960a | 2012-05-02 02:28:41 +0000 | [diff] [blame] | 413 | Default: between 87380B and 6MB, depending on RAM size. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 414 |  | 
| Stephen Hemminger | ef56e62 | 2006-11-09 16:37:26 -0800 | [diff] [blame] | 415 | tcp_sack - BOOLEAN | 
|  | 416 | Enable select acknowledgments (SACKS). | 
| Rick Jones | 15d99e0 | 2006-03-20 22:40:29 -0800 | [diff] [blame] | 417 |  | 
| David S. Miller | 35089bb | 2006-06-13 22:33:04 -0700 | [diff] [blame] | 418 | tcp_slow_start_after_idle - BOOLEAN | 
|  | 419 | If set, provide RFC2861 behavior and time out the congestion | 
|  | 420 | window after an idle period.  An idle period is defined at | 
|  | 421 | the current RTO.  If unset, the congestion window will not | 
|  | 422 | be timed out after an idle period. | 
|  | 423 | Default: 1 | 
|  | 424 |  | 
| Stephen Hemminger | ef56e62 | 2006-11-09 16:37:26 -0800 | [diff] [blame] | 425 | tcp_stdurg - BOOLEAN | 
| Stephen Hemminger | 4edc2f3 | 2008-07-10 16:50:26 -0700 | [diff] [blame] | 426 | Use the Host requirements interpretation of the TCP urgent pointer field. | 
| Stephen Hemminger | ef56e62 | 2006-11-09 16:37:26 -0800 | [diff] [blame] | 427 | Most hosts use the older BSD interpretation, so if you turn this on | 
|  | 428 | Linux might not communicate correctly with them. | 
|  | 429 | Default: FALSE | 
|  | 430 |  | 
|  | 431 | tcp_synack_retries - INTEGER | 
|  | 432 | Number of times SYNACKs for a passive TCP connection attempt will | 
|  | 433 | be retransmitted. Should not be higher than 255. Default value | 
|  | 434 | is 5, which corresponds to ~180seconds. | 
|  | 435 |  | 
|  | 436 | tcp_syncookies - BOOLEAN | 
|  | 437 | Only valid when the kernel was compiled with CONFIG_SYNCOOKIES | 
|  | 438 | Send out syncookies when the syn backlog queue of a socket | 
| Stephen Hemminger | 4edc2f3 | 2008-07-10 16:50:26 -0700 | [diff] [blame] | 439 | overflows. This is to prevent against the common 'SYN flood attack' | 
| Stephen Hemminger | ef56e62 | 2006-11-09 16:37:26 -0800 | [diff] [blame] | 440 | Default: FALSE | 
|  | 441 |  | 
|  | 442 | Note, that syncookies is fallback facility. | 
|  | 443 | It MUST NOT be used to help highly loaded servers to stand | 
| Stephen Hemminger | 4edc2f3 | 2008-07-10 16:50:26 -0700 | [diff] [blame] | 444 | against legal connection rate. If you see SYN flood warnings | 
| Stephen Hemminger | ef56e62 | 2006-11-09 16:37:26 -0800 | [diff] [blame] | 445 | in your logs, but investigation	shows that they occur | 
|  | 446 | because of overload with legal connections, you should tune | 
|  | 447 | another parameters until this warning disappear. | 
|  | 448 | See: tcp_max_syn_backlog, tcp_synack_retries, tcp_abort_on_overflow. | 
|  | 449 |  | 
|  | 450 | syncookies seriously violate TCP protocol, do not allow | 
|  | 451 | to use TCP extensions, can result in serious degradation | 
|  | 452 | of some services (f.e. SMTP relaying), visible not by you, | 
|  | 453 | but your clients and relays, contacting you. While you see | 
| Stephen Hemminger | 4edc2f3 | 2008-07-10 16:50:26 -0700 | [diff] [blame] | 454 | SYN flood warnings in logs not being really flooded, your server | 
| Stephen Hemminger | ef56e62 | 2006-11-09 16:37:26 -0800 | [diff] [blame] | 455 | is seriously misconfigured. | 
|  | 456 |  | 
|  | 457 | tcp_syn_retries - INTEGER | 
|  | 458 | Number of times initial SYNs for an active TCP connection attempt | 
|  | 459 | will be retransmitted. Should not be higher than 255. Default value | 
|  | 460 | is 5, which corresponds to ~180seconds. | 
|  | 461 |  | 
|  | 462 | tcp_timestamps - BOOLEAN | 
|  | 463 | Enable timestamps as defined in RFC1323. | 
|  | 464 |  | 
|  | 465 | tcp_tso_win_divisor - INTEGER | 
|  | 466 | This allows control over what percentage of the congestion window | 
|  | 467 | can be consumed by a single TSO frame. | 
|  | 468 | The setting of this parameter is a choice between burstiness and | 
|  | 469 | building larger TSO frames. | 
|  | 470 | Default: 3 | 
|  | 471 |  | 
|  | 472 | tcp_tw_recycle - BOOLEAN | 
|  | 473 | Enable fast recycling TIME-WAIT sockets. Default value is 0. | 
|  | 474 | It should not be changed without advice/request of technical | 
|  | 475 | experts. | 
|  | 476 |  | 
|  | 477 | tcp_tw_reuse - BOOLEAN | 
|  | 478 | Allow to reuse TIME-WAIT sockets for new connections when it is | 
|  | 479 | safe from protocol viewpoint. Default value is 0. | 
|  | 480 | It should not be changed without advice/request of technical | 
|  | 481 | experts. | 
|  | 482 |  | 
|  | 483 | tcp_window_scaling - BOOLEAN | 
|  | 484 | Enable window scaling as defined in RFC1323. | 
|  | 485 |  | 
|  | 486 | tcp_wmem - vector of 3 INTEGERs: min, default, max | 
| J. Bruce Fields | 53025f5 | 2008-07-10 16:47:41 -0700 | [diff] [blame] | 487 | min: Amount of memory reserved for send buffers for TCP sockets. | 
| Stephen Hemminger | ef56e62 | 2006-11-09 16:37:26 -0800 | [diff] [blame] | 488 | Each TCP socket has rights to use it due to fact of its birth. | 
| Max Matveev | 6539fef | 2011-06-21 21:18:13 +0000 | [diff] [blame] | 489 | Default: 1 page | 
| Stephen Hemminger | ef56e62 | 2006-11-09 16:37:26 -0800 | [diff] [blame] | 490 |  | 
| J. Bruce Fields | 53025f5 | 2008-07-10 16:47:41 -0700 | [diff] [blame] | 491 | default: initial size of send buffer used by TCP sockets.  This | 
|  | 492 | value overrides net.core.wmem_default used by other protocols. | 
|  | 493 | It is usually lower than net.core.wmem_default. | 
| Stephen Hemminger | ef56e62 | 2006-11-09 16:37:26 -0800 | [diff] [blame] | 494 | Default: 16K | 
|  | 495 |  | 
| J. Bruce Fields | 53025f5 | 2008-07-10 16:47:41 -0700 | [diff] [blame] | 496 | max: Maximal amount of memory allowed for automatically tuned | 
|  | 497 | send buffers for TCP sockets. This value does not override | 
|  | 498 | net.core.wmem_max.  Calling setsockopt() with SO_SNDBUF disables | 
|  | 499 | automatic tuning of that socket's send buffer size, in which case | 
|  | 500 | this value is ignored. | 
|  | 501 | Default: between 64K and 4MB, depending on RAM size. | 
| Stephen Hemminger | ef56e62 | 2006-11-09 16:37:26 -0800 | [diff] [blame] | 502 |  | 
|  | 503 | tcp_workaround_signed_windows - BOOLEAN | 
|  | 504 | If set, assume no receipt of a window scaling option means the | 
|  | 505 | remote TCP is broken and treats the window as a signed quantity. | 
|  | 506 | If unset, assume the remote TCP is not broken even if we do | 
|  | 507 | not receive a window scaling option from them. | 
|  | 508 | Default: 0 | 
|  | 509 |  | 
| Chris Leech | 72d0b7a | 2007-03-08 09:57:35 -0800 | [diff] [blame] | 510 | tcp_dma_copybreak - INTEGER | 
|  | 511 | Lower limit, in bytes, of the size of socket reads that will be | 
|  | 512 | offloaded to a DMA copy engine, if one is present in the system | 
|  | 513 | and CONFIG_NET_DMA is enabled. | 
|  | 514 | Default: 4096 | 
|  | 515 |  | 
| Andreas Petlund | 36e31b0 | 2010-02-18 02:47:01 +0000 | [diff] [blame] | 516 | tcp_thin_linear_timeouts - BOOLEAN | 
|  | 517 | Enable dynamic triggering of linear timeouts for thin streams. | 
|  | 518 | If set, a check is performed upon retransmission by timeout to | 
|  | 519 | determine if the stream is thin (less than 4 packets in flight). | 
|  | 520 | As long as the stream is found to be thin, up to 6 linear | 
|  | 521 | timeouts may be performed before exponential backoff mode is | 
|  | 522 | initiated. This improves retransmission latency for | 
|  | 523 | non-aggressive thin streams, often found to be time-dependent. | 
|  | 524 | For more information on thin streams, see | 
|  | 525 | Documentation/networking/tcp-thin.txt | 
|  | 526 | Default: 0 | 
|  | 527 |  | 
| Andreas Petlund | 7e38017 | 2010-02-18 04:48:19 +0000 | [diff] [blame] | 528 | tcp_thin_dupack - BOOLEAN | 
|  | 529 | Enable dynamic triggering of retransmissions after one dupACK | 
|  | 530 | for thin streams. If set, a check is performed upon reception | 
|  | 531 | of a dupACK to determine if the stream is thin (less than 4 | 
|  | 532 | packets in flight). As long as the stream is found to be thin, | 
|  | 533 | data is retransmitted on the first received dupACK. This | 
|  | 534 | improves retransmission latency for non-aggressive thin | 
|  | 535 | streams, often found to be time-dependent. | 
|  | 536 | For more information on thin streams, see | 
|  | 537 | Documentation/networking/tcp-thin.txt | 
|  | 538 | Default: 0 | 
|  | 539 |  | 
| Eric Dumazet | 34fb350 | 2012-07-17 10:13:05 +0200 | [diff] [blame] | 540 | tcp_challenge_ack_limit - INTEGER | 
|  | 541 | Limits number of Challenge ACK sent per second, as recommended | 
|  | 542 | in RFC 5961 (Improving TCP's Robustness to Blind In-Window Attacks) | 
|  | 543 | Default: 100 | 
|  | 544 |  | 
| Hideo Aoki | 95766ff | 2007-12-31 00:29:24 -0800 | [diff] [blame] | 545 | UDP variables: | 
|  | 546 |  | 
|  | 547 | udp_mem - vector of 3 INTEGERs: min, pressure, max | 
|  | 548 | Number of pages allowed for queueing by all UDP sockets. | 
|  | 549 |  | 
|  | 550 | min: Below this number of pages UDP is not bothered about its | 
|  | 551 | memory appetite. When amount of memory allocated by UDP exceeds | 
|  | 552 | this number, UDP starts to moderate memory usage. | 
|  | 553 |  | 
|  | 554 | pressure: This value was introduced to follow format of tcp_mem. | 
|  | 555 |  | 
|  | 556 | max: Number of pages allowed for queueing by all UDP sockets. | 
|  | 557 |  | 
|  | 558 | Default is calculated at boot time from amount of available memory. | 
|  | 559 |  | 
|  | 560 | udp_rmem_min - INTEGER | 
|  | 561 | Minimal size of receive buffer used by UDP sockets in moderation. | 
|  | 562 | Each UDP socket is able to use the size for receiving data, even if | 
|  | 563 | total pages of UDP sockets exceed udp_mem pressure. The unit is byte. | 
| Max Matveev | 6539fef | 2011-06-21 21:18:13 +0000 | [diff] [blame] | 564 | Default: 1 page | 
| Hideo Aoki | 95766ff | 2007-12-31 00:29:24 -0800 | [diff] [blame] | 565 |  | 
|  | 566 | udp_wmem_min - INTEGER | 
|  | 567 | Minimal size of send buffer used by UDP sockets in moderation. | 
|  | 568 | Each UDP socket is able to use the size for sending data, even if | 
|  | 569 | total pages of UDP sockets exceed udp_mem pressure. The unit is byte. | 
| Max Matveev | 6539fef | 2011-06-21 21:18:13 +0000 | [diff] [blame] | 570 | Default: 1 page | 
| Hideo Aoki | 95766ff | 2007-12-31 00:29:24 -0800 | [diff] [blame] | 571 |  | 
| Paul Moore | 8802f61 | 2006-08-03 16:45:49 -0700 | [diff] [blame] | 572 | CIPSOv4 Variables: | 
|  | 573 |  | 
|  | 574 | cipso_cache_enable - BOOLEAN | 
|  | 575 | If set, enable additions to and lookups from the CIPSO label mapping | 
|  | 576 | cache.  If unset, additions are ignored and lookups always result in a | 
|  | 577 | miss.  However, regardless of the setting the cache is still | 
|  | 578 | invalidated when required when means you can safely toggle this on and | 
|  | 579 | off and the cache will always be "safe". | 
|  | 580 | Default: 1 | 
|  | 581 |  | 
|  | 582 | cipso_cache_bucket_size - INTEGER | 
|  | 583 | The CIPSO label cache consists of a fixed size hash table with each | 
|  | 584 | hash bucket containing a number of cache entries.  This variable limits | 
|  | 585 | the number of entries in each hash bucket; the larger the value the | 
|  | 586 | more CIPSO label mappings that can be cached.  When the number of | 
|  | 587 | entries in a given hash bucket reaches this limit adding new entries | 
|  | 588 | causes the oldest entry in the bucket to be removed to make room. | 
|  | 589 | Default: 10 | 
|  | 590 |  | 
|  | 591 | cipso_rbm_optfmt - BOOLEAN | 
|  | 592 | Enable the "Optimized Tag 1 Format" as defined in section 3.4.2.6 of | 
|  | 593 | the CIPSO draft specification (see Documentation/netlabel for details). | 
|  | 594 | This means that when set the CIPSO tag will be padded with empty | 
|  | 595 | categories in order to make the packet data 32-bit aligned. | 
|  | 596 | Default: 0 | 
|  | 597 |  | 
|  | 598 | cipso_rbm_structvalid - BOOLEAN | 
|  | 599 | If set, do a very strict check of the CIPSO option when | 
|  | 600 | ip_options_compile() is called.  If unset, relax the checks done during | 
|  | 601 | ip_options_compile().  Either way is "safe" as errors are caught else | 
|  | 602 | where in the CIPSO processing code but setting this to 0 (False) should | 
|  | 603 | result in less work (i.e. it should be faster) but could cause problems | 
|  | 604 | with other implementations that require strict checking. | 
|  | 605 | Default: 0 | 
|  | 606 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 607 | IP Variables: | 
|  | 608 |  | 
|  | 609 | ip_local_port_range - 2 INTEGERS | 
|  | 610 | Defines the local port range that is used by TCP and UDP to | 
| Jesper Dangaard Brouer | e18f5fe | 2009-02-23 04:39:04 +0000 | [diff] [blame] | 611 | choose the local port. The first number is the first, the | 
| Fernando Luis Vazquez Cao | 5d6bd86 | 2012-04-03 08:41:40 +0000 | [diff] [blame] | 612 | second the last local port number. The default values are | 
|  | 613 | 32768 and 61000 respectively. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 614 |  | 
| Amerigo Wang | e3826f1 | 2010-05-05 00:27:06 +0000 | [diff] [blame] | 615 | ip_local_reserved_ports - list of comma separated ranges | 
|  | 616 | Specify the ports which are reserved for known third-party | 
|  | 617 | applications. These ports will not be used by automatic port | 
|  | 618 | assignments (e.g. when calling connect() or bind() with port | 
|  | 619 | number 0). Explicit port allocation behavior is unchanged. | 
|  | 620 |  | 
|  | 621 | The format used for both input and output is a comma separated | 
|  | 622 | list of ranges (e.g. "1,2-4,10-10" for ports 1, 2, 3, 4 and | 
|  | 623 | 10). Writing to the file will clear all previously reserved | 
|  | 624 | ports and update the current list with the one given in the | 
|  | 625 | input. | 
|  | 626 |  | 
|  | 627 | Note that ip_local_port_range and ip_local_reserved_ports | 
|  | 628 | settings are independent and both are considered by the kernel | 
|  | 629 | when determining which ports are available for automatic port | 
|  | 630 | assignments. | 
|  | 631 |  | 
|  | 632 | You can reserve ports which are not in the current | 
|  | 633 | ip_local_port_range, e.g.: | 
|  | 634 |  | 
|  | 635 | $ cat /proc/sys/net/ipv4/ip_local_port_range | 
|  | 636 | 32000	61000 | 
|  | 637 | $ cat /proc/sys/net/ipv4/ip_local_reserved_ports | 
|  | 638 | 8080,9148 | 
|  | 639 |  | 
|  | 640 | although this is redundant. However such a setting is useful | 
|  | 641 | if later the port range is changed to a value that will | 
|  | 642 | include the reserved ports. | 
|  | 643 |  | 
|  | 644 | Default: Empty | 
|  | 645 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 646 | ip_nonlocal_bind - BOOLEAN | 
|  | 647 | If set, allows processes to bind() to non-local IP addresses, | 
|  | 648 | which can be quite useful - but may break some applications. | 
|  | 649 | Default: 0 | 
|  | 650 |  | 
|  | 651 | ip_dynaddr - BOOLEAN | 
|  | 652 | If set non-zero, enables support for dynamic addresses. | 
|  | 653 | If set to a non-zero value larger than 1, a kernel log | 
|  | 654 | message will be printed when dynamic address rewriting | 
|  | 655 | occurs. | 
|  | 656 | Default: 0 | 
|  | 657 |  | 
|  | 658 | icmp_echo_ignore_all - BOOLEAN | 
| David S. Miller | 7ce31246 | 2005-10-03 16:07:30 -0700 | [diff] [blame] | 659 | If set non-zero, then the kernel will ignore all ICMP ECHO | 
|  | 660 | requests sent to it. | 
|  | 661 | Default: 0 | 
|  | 662 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 663 | icmp_echo_ignore_broadcasts - BOOLEAN | 
| David S. Miller | 7ce31246 | 2005-10-03 16:07:30 -0700 | [diff] [blame] | 664 | If set non-zero, then the kernel will ignore all ICMP ECHO and | 
|  | 665 | TIMESTAMP requests sent to it via broadcast/multicast. | 
|  | 666 | Default: 1 | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 667 |  | 
|  | 668 | icmp_ratelimit - INTEGER | 
|  | 669 | Limit the maximal rates for sending ICMP packets whose type matches | 
|  | 670 | icmp_ratemask (see below) to specific targets. | 
| Stephen Hemminger | 6dbf4bc | 2008-07-01 19:29:07 -0700 | [diff] [blame] | 671 | 0 to disable any limiting, | 
|  | 672 | otherwise the minimal space between responses in milliseconds. | 
|  | 673 | Default: 1000 | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 674 |  | 
|  | 675 | icmp_ratemask - INTEGER | 
|  | 676 | Mask made of ICMP types for which rates are being limited. | 
|  | 677 | Significant bits: IHGFEDCBA9876543210 | 
|  | 678 | Default mask:     0000001100000011000 (6168) | 
|  | 679 |  | 
|  | 680 | Bit definitions (see include/linux/icmp.h): | 
|  | 681 | 0 Echo Reply | 
|  | 682 | 3 Destination Unreachable * | 
|  | 683 | 4 Source Quench * | 
|  | 684 | 5 Redirect | 
|  | 685 | 8 Echo Request | 
|  | 686 | B Time Exceeded * | 
|  | 687 | C Parameter Problem * | 
|  | 688 | D Timestamp Request | 
|  | 689 | E Timestamp Reply | 
|  | 690 | F Info Request | 
|  | 691 | G Info Reply | 
|  | 692 | H Address Mask Request | 
|  | 693 | I Address Mask Reply | 
|  | 694 |  | 
|  | 695 | * These are rate limited by default (see default mask above) | 
|  | 696 |  | 
|  | 697 | icmp_ignore_bogus_error_responses - BOOLEAN | 
|  | 698 | Some routers violate RFC1122 by sending bogus responses to broadcast | 
|  | 699 | frames.  Such violations are normally logged via a kernel warning. | 
|  | 700 | If this is set to TRUE, the kernel will not give such warnings, which | 
|  | 701 | will avoid log file clutter. | 
|  | 702 | Default: FALSE | 
|  | 703 |  | 
| Horms | 95f7daf | 2006-02-02 17:02:25 -0800 | [diff] [blame] | 704 | icmp_errors_use_inbound_ifaddr - BOOLEAN | 
|  | 705 |  | 
|  | 706 | If zero, icmp error messages are sent with the primary address of | 
|  | 707 | the exiting interface. | 
| Jesper Dangaard Brouer | e18f5fe | 2009-02-23 04:39:04 +0000 | [diff] [blame] | 708 |  | 
| Horms | 95f7daf | 2006-02-02 17:02:25 -0800 | [diff] [blame] | 709 | If non-zero, the message will be sent with the primary address of | 
|  | 710 | the interface that received the packet that caused the icmp error. | 
|  | 711 | This is the behaviour network many administrators will expect from | 
|  | 712 | a router. And it can make debugging complicated network layouts | 
| Jesper Dangaard Brouer | e18f5fe | 2009-02-23 04:39:04 +0000 | [diff] [blame] | 713 | much easier. | 
| Horms | 95f7daf | 2006-02-02 17:02:25 -0800 | [diff] [blame] | 714 |  | 
|  | 715 | Note that if no primary address exists for the interface selected, | 
|  | 716 | then the primary address of the first non-loopback interface that | 
| Matt LaPlante | d6bc8ac | 2006-10-03 22:54:15 +0200 | [diff] [blame] | 717 | has one will be used regardless of this setting. | 
| Horms | 95f7daf | 2006-02-02 17:02:25 -0800 | [diff] [blame] | 718 |  | 
|  | 719 | Default: 0 | 
|  | 720 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 721 | igmp_max_memberships - INTEGER | 
|  | 722 | Change the maximum number of multicast groups we can subscribe to. | 
|  | 723 | Default: 20 | 
|  | 724 |  | 
| Jeremy Eder | d67ef35 | 2010-11-15 05:41:31 +0000 | [diff] [blame] | 725 | Theoretical maximum value is bounded by having to send a membership | 
|  | 726 | report in a single datagram (i.e. the report can't span multiple | 
|  | 727 | datagrams, or risk confusing the switch and leaving groups you don't | 
|  | 728 | intend to). | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 729 |  | 
| Jeremy Eder | d67ef35 | 2010-11-15 05:41:31 +0000 | [diff] [blame] | 730 | The number of supported groups 'M' is bounded by the number of group | 
|  | 731 | report entries you can fit into a single datagram of 65535 bytes. | 
|  | 732 |  | 
|  | 733 | M = 65536-sizeof (ip header)/(sizeof(Group record)) | 
|  | 734 |  | 
|  | 735 | Group records are variable length, with a minimum of 12 bytes. | 
|  | 736 | So net.ipv4.igmp_max_memberships should not be set higher than: | 
|  | 737 |  | 
|  | 738 | (65536-24) / 12 = 5459 | 
|  | 739 |  | 
|  | 740 | The value 5459 assumes no IP header options, so in practice | 
|  | 741 | this number may be lower. | 
|  | 742 |  | 
|  | 743 | conf/interface/*  changes special settings per interface (where | 
|  | 744 | "interface" is the name of your network interface) | 
|  | 745 |  | 
|  | 746 | conf/all/*	  is special, changes the settings for all interfaces | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 747 |  | 
|  | 748 | log_martians - BOOLEAN | 
|  | 749 | Log packets with impossible addresses to kernel log. | 
|  | 750 | log_martians for the interface will be enabled if at least one of | 
|  | 751 | conf/{all,interface}/log_martians is set to TRUE, | 
|  | 752 | it will be disabled otherwise | 
|  | 753 |  | 
|  | 754 | accept_redirects - BOOLEAN | 
|  | 755 | Accept ICMP redirect messages. | 
|  | 756 | accept_redirects for the interface will be enabled if: | 
| Jesper Dangaard Brouer | e18f5fe | 2009-02-23 04:39:04 +0000 | [diff] [blame] | 757 | - both conf/{all,interface}/accept_redirects are TRUE in the case | 
|  | 758 | forwarding for the interface is enabled | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 759 | or | 
| Jesper Dangaard Brouer | e18f5fe | 2009-02-23 04:39:04 +0000 | [diff] [blame] | 760 | - at least one of conf/{all,interface}/accept_redirects is TRUE in the | 
|  | 761 | case forwarding for the interface is disabled | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 762 | accept_redirects for the interface will be disabled otherwise | 
|  | 763 | default TRUE (host) | 
|  | 764 | FALSE (router) | 
|  | 765 |  | 
|  | 766 | forwarding - BOOLEAN | 
|  | 767 | Enable IP forwarding on this interface. | 
|  | 768 |  | 
|  | 769 | mc_forwarding - BOOLEAN | 
|  | 770 | Do multicast routing. The kernel needs to be compiled with CONFIG_MROUTE | 
|  | 771 | and a multicast routing daemon is required. | 
| Jesper Dangaard Brouer | e18f5fe | 2009-02-23 04:39:04 +0000 | [diff] [blame] | 772 | conf/all/mc_forwarding must also be set to TRUE to enable multicast | 
|  | 773 | routing	for the interface | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 774 |  | 
|  | 775 | medium_id - INTEGER | 
|  | 776 | Integer value used to differentiate the devices by the medium they | 
|  | 777 | are attached to. Two devices can have different id values when | 
|  | 778 | the broadcast packets are received only on one of them. | 
|  | 779 | The default value 0 means that the device is the only interface | 
|  | 780 | to its medium, value of -1 means that medium is not known. | 
| Jesper Dangaard Brouer | e18f5fe | 2009-02-23 04:39:04 +0000 | [diff] [blame] | 781 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 782 | Currently, it is used to change the proxy_arp behavior: | 
|  | 783 | the proxy_arp feature is enabled for packets forwarded between | 
|  | 784 | two devices attached to different media. | 
|  | 785 |  | 
|  | 786 | proxy_arp - BOOLEAN | 
|  | 787 | Do proxy arp. | 
|  | 788 | proxy_arp for the interface will be enabled if at least one of | 
|  | 789 | conf/{all,interface}/proxy_arp is set to TRUE, | 
|  | 790 | it will be disabled otherwise | 
|  | 791 |  | 
| Jesper Dangaard Brouer | 6532414 | 2010-01-05 05:50:47 +0000 | [diff] [blame] | 792 | proxy_arp_pvlan - BOOLEAN | 
|  | 793 | Private VLAN proxy arp. | 
|  | 794 | Basically allow proxy arp replies back to the same interface | 
|  | 795 | (from which the ARP request/solicitation was received). | 
|  | 796 |  | 
|  | 797 | This is done to support (ethernet) switch features, like RFC | 
|  | 798 | 3069, where the individual ports are NOT allowed to | 
|  | 799 | communicate with each other, but they are allowed to talk to | 
|  | 800 | the upstream router.  As described in RFC 3069, it is possible | 
|  | 801 | to allow these hosts to communicate through the upstream | 
|  | 802 | router by proxy_arp'ing. Don't need to be used together with | 
|  | 803 | proxy_arp. | 
|  | 804 |  | 
|  | 805 | This technology is known by different names: | 
|  | 806 | In RFC 3069 it is called VLAN Aggregation. | 
|  | 807 | Cisco and Allied Telesyn call it Private VLAN. | 
|  | 808 | Hewlett-Packard call it Source-Port filtering or port-isolation. | 
|  | 809 | Ericsson call it MAC-Forced Forwarding (RFC Draft). | 
|  | 810 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 811 | shared_media - BOOLEAN | 
|  | 812 | Send(router) or accept(host) RFC1620 shared media redirects. | 
|  | 813 | Overrides ip_secure_redirects. | 
|  | 814 | shared_media for the interface will be enabled if at least one of | 
|  | 815 | conf/{all,interface}/shared_media is set to TRUE, | 
|  | 816 | it will be disabled otherwise | 
|  | 817 | default TRUE | 
|  | 818 |  | 
|  | 819 | secure_redirects - BOOLEAN | 
|  | 820 | Accept ICMP redirect messages only for gateways, | 
|  | 821 | listed in default gateway list. | 
|  | 822 | secure_redirects for the interface will be enabled if at least one of | 
|  | 823 | conf/{all,interface}/secure_redirects is set to TRUE, | 
|  | 824 | it will be disabled otherwise | 
|  | 825 | default TRUE | 
|  | 826 |  | 
|  | 827 | send_redirects - BOOLEAN | 
|  | 828 | Send redirects, if router. | 
|  | 829 | send_redirects for the interface will be enabled if at least one of | 
|  | 830 | conf/{all,interface}/send_redirects is set to TRUE, | 
|  | 831 | it will be disabled otherwise | 
|  | 832 | Default: TRUE | 
|  | 833 |  | 
|  | 834 | bootp_relay - BOOLEAN | 
|  | 835 | Accept packets with source address 0.b.c.d destined | 
|  | 836 | not to this host as local ones. It is supposed, that | 
|  | 837 | BOOTP relay daemon will catch and forward such packets. | 
|  | 838 | conf/all/bootp_relay must also be set to TRUE to enable BOOTP relay | 
|  | 839 | for the interface | 
|  | 840 | default FALSE | 
|  | 841 | Not Implemented Yet. | 
|  | 842 |  | 
|  | 843 | accept_source_route - BOOLEAN | 
|  | 844 | Accept packets with SRR option. | 
|  | 845 | conf/all/accept_source_route must also be set to TRUE to accept packets | 
|  | 846 | with SRR option on the interface | 
|  | 847 | default TRUE (router) | 
|  | 848 | FALSE (host) | 
|  | 849 |  | 
| Patrick McHardy | 8153a10 | 2009-12-03 01:25:58 +0000 | [diff] [blame] | 850 | accept_local - BOOLEAN | 
|  | 851 | Accept packets with local source addresses. In combination with | 
|  | 852 | suitable routing, this can be used to direct packets between two | 
|  | 853 | local interfaces over the wire and have them accepted properly. | 
|  | 854 | default FALSE | 
|  | 855 |  | 
| Stephen Hemminger | c1cf842 | 2009-02-20 08:25:36 +0000 | [diff] [blame] | 856 | rp_filter - INTEGER | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 857 | 0 - No source validation. | 
| Stephen Hemminger | c1cf842 | 2009-02-20 08:25:36 +0000 | [diff] [blame] | 858 | 1 - Strict mode as defined in RFC3704 Strict Reverse Path | 
|  | 859 | Each incoming packet is tested against the FIB and if the interface | 
|  | 860 | is not the best reverse path the packet check will fail. | 
|  | 861 | By default failed packets are discarded. | 
|  | 862 | 2 - Loose mode as defined in RFC3704 Loose Reverse Path | 
|  | 863 | Each incoming packet's source address is also tested against the FIB | 
|  | 864 | and if the source address is not reachable via any interface | 
|  | 865 | the packet check will fail. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 866 |  | 
| Jesper Dangaard Brouer | e18f5fe | 2009-02-23 04:39:04 +0000 | [diff] [blame] | 867 | Current recommended practice in RFC3704 is to enable strict mode | 
| Jesper Dangaard Brouer | bf869c3 | 2009-02-23 04:37:55 +0000 | [diff] [blame] | 868 | to prevent IP spoofing from DDos attacks. If using asymmetric routing | 
| Jesper Dangaard Brouer | e18f5fe | 2009-02-23 04:39:04 +0000 | [diff] [blame] | 869 | or other complicated routing, then loose mode is recommended. | 
| Stephen Hemminger | c1cf842 | 2009-02-20 08:25:36 +0000 | [diff] [blame] | 870 |  | 
| Shan Wei | 1f5865e | 2009-12-02 15:39:04 -0800 | [diff] [blame] | 871 | The max value from conf/{all,interface}/rp_filter is used | 
|  | 872 | when doing source validation on the {interface}. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 873 |  | 
|  | 874 | Default value is 0. Note that some distributions enable it | 
|  | 875 | in startup scripts. | 
|  | 876 |  | 
|  | 877 | arp_filter - BOOLEAN | 
|  | 878 | 1 - Allows you to have multiple network interfaces on the same | 
|  | 879 | subnet, and have the ARPs for each interface be answered | 
|  | 880 | based on whether or not the kernel would route a packet from | 
|  | 881 | the ARP'd IP out that interface (therefore you must use source | 
|  | 882 | based routing for this to work). In other words it allows control | 
|  | 883 | of which cards (usually 1) will respond to an arp request. | 
|  | 884 |  | 
|  | 885 | 0 - (default) The kernel can respond to arp requests with addresses | 
|  | 886 | from other interfaces. This may seem wrong but it usually makes | 
|  | 887 | sense, because it increases the chance of successful communication. | 
|  | 888 | IP addresses are owned by the complete host on Linux, not by | 
|  | 889 | particular interfaces. Only for more complex setups like load- | 
|  | 890 | balancing, does this behaviour cause problems. | 
|  | 891 |  | 
|  | 892 | arp_filter for the interface will be enabled if at least one of | 
|  | 893 | conf/{all,interface}/arp_filter is set to TRUE, | 
|  | 894 | it will be disabled otherwise | 
|  | 895 |  | 
|  | 896 | arp_announce - INTEGER | 
|  | 897 | Define different restriction levels for announcing the local | 
|  | 898 | source IP address from IP packets in ARP requests sent on | 
|  | 899 | interface: | 
|  | 900 | 0 - (default) Use any local address, configured on any interface | 
|  | 901 | 1 - Try to avoid local addresses that are not in the target's | 
|  | 902 | subnet for this interface. This mode is useful when target | 
|  | 903 | hosts reachable via this interface require the source IP | 
|  | 904 | address in ARP requests to be part of their logical network | 
|  | 905 | configured on the receiving interface. When we generate the | 
|  | 906 | request we will check all our subnets that include the | 
|  | 907 | target IP and will preserve the source address if it is from | 
|  | 908 | such subnet. If there is no such subnet we select source | 
|  | 909 | address according to the rules for level 2. | 
|  | 910 | 2 - Always use the best local address for this target. | 
|  | 911 | In this mode we ignore the source address in the IP packet | 
|  | 912 | and try to select local address that we prefer for talks with | 
|  | 913 | the target host. Such local address is selected by looking | 
|  | 914 | for primary IP addresses on all our subnets on the outgoing | 
|  | 915 | interface that include the target IP address. If no suitable | 
|  | 916 | local address is found we select the first local address | 
|  | 917 | we have on the outgoing interface or on all other interfaces, | 
|  | 918 | with the hope we will receive reply for our request and | 
|  | 919 | even sometimes no matter the source IP address we announce. | 
|  | 920 |  | 
|  | 921 | The max value from conf/{all,interface}/arp_announce is used. | 
|  | 922 |  | 
|  | 923 | Increasing the restriction level gives more chance for | 
|  | 924 | receiving answer from the resolved target while decreasing | 
|  | 925 | the level announces more valid sender's information. | 
|  | 926 |  | 
|  | 927 | arp_ignore - INTEGER | 
|  | 928 | Define different modes for sending replies in response to | 
|  | 929 | received ARP requests that resolve local target IP addresses: | 
|  | 930 | 0 - (default): reply for any local target IP address, configured | 
|  | 931 | on any interface | 
|  | 932 | 1 - reply only if the target IP address is local address | 
|  | 933 | configured on the incoming interface | 
|  | 934 | 2 - reply only if the target IP address is local address | 
|  | 935 | configured on the incoming interface and both with the | 
|  | 936 | sender's IP address are part from same subnet on this interface | 
|  | 937 | 3 - do not reply for local addresses configured with scope host, | 
|  | 938 | only resolutions for global and link addresses are replied | 
|  | 939 | 4-7 - reserved | 
|  | 940 | 8 - do not reply for all local addresses | 
|  | 941 |  | 
|  | 942 | The max value from conf/{all,interface}/arp_ignore is used | 
|  | 943 | when ARP request is received on the {interface} | 
|  | 944 |  | 
| Stephen Hemminger | eefef1c | 2009-02-01 01:04:33 -0800 | [diff] [blame] | 945 | arp_notify - BOOLEAN | 
|  | 946 | Define mode for notification of address and device changes. | 
|  | 947 | 0 - (default): do nothing | 
| Ian Campbell | 3f8dc23 | 2010-05-26 00:09:41 +0000 | [diff] [blame] | 948 | 1 - Generate gratuitous arp requests when device is brought up | 
| Stephen Hemminger | eefef1c | 2009-02-01 01:04:33 -0800 | [diff] [blame] | 949 | or hardware address changes. | 
|  | 950 |  | 
| Neil Horman | c1b1bce | 2006-03-20 22:40:03 -0800 | [diff] [blame] | 951 | arp_accept - BOOLEAN | 
| Octavian Purdila | 6d95518 | 2010-01-18 12:58:44 +0000 | [diff] [blame] | 952 | Define behavior for gratuitous ARP frames who's IP is not | 
|  | 953 | already present in the ARP table: | 
|  | 954 | 0 - don't create new entries in the ARP table | 
|  | 955 | 1 - create new entries in the ARP table | 
|  | 956 |  | 
|  | 957 | Both replies and requests type gratuitous arp will trigger the | 
|  | 958 | ARP table to be updated, if this setting is on. | 
|  | 959 |  | 
|  | 960 | If the ARP table already contains the IP address of the | 
|  | 961 | gratuitous arp frame, the arp table will be updated regardless | 
|  | 962 | if this setting is on or off. | 
|  | 963 |  | 
| Neil Horman | c1b1bce | 2006-03-20 22:40:03 -0800 | [diff] [blame] | 964 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 965 | app_solicit - INTEGER | 
|  | 966 | The maximum number of probes to send to the user space ARP daemon | 
|  | 967 | via netlink before dropping back to multicast probes (see | 
|  | 968 | mcast_solicit).  Defaults to 0. | 
|  | 969 |  | 
|  | 970 | disable_policy - BOOLEAN | 
|  | 971 | Disable IPSEC policy (SPD) for this interface | 
|  | 972 |  | 
|  | 973 | disable_xfrm - BOOLEAN | 
|  | 974 | Disable IPSEC encryption on this interface, whatever the policy | 
|  | 975 |  | 
|  | 976 |  | 
|  | 977 |  | 
|  | 978 | tag - INTEGER | 
|  | 979 | Allows you to write a number, which can be used as required. | 
|  | 980 | Default value is 0. | 
|  | 981 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 982 | Alexey Kuznetsov. | 
|  | 983 | kuznet@ms2.inr.ac.ru | 
|  | 984 |  | 
|  | 985 | Updated by: | 
|  | 986 | Andi Kleen | 
|  | 987 | ak@muc.de | 
|  | 988 | Nicolas Delon | 
|  | 989 | delon.nicolas@wanadoo.fr | 
|  | 990 |  | 
|  | 991 |  | 
|  | 992 |  | 
|  | 993 |  | 
|  | 994 | /proc/sys/net/ipv6/* Variables: | 
|  | 995 |  | 
|  | 996 | IPv6 has no global variables such as tcp_*.  tcp_* settings under ipv4/ also | 
|  | 997 | apply to IPv6 [XXX?]. | 
|  | 998 |  | 
|  | 999 | bindv6only - BOOLEAN | 
|  | 1000 | Default value for IPV6_V6ONLY socket option, | 
| Jesper Dangaard Brouer | e18f5fe | 2009-02-23 04:39:04 +0000 | [diff] [blame] | 1001 | which restricts use of the IPv6 socket to IPv6 communication | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1002 | only. | 
|  | 1003 | TRUE: disable IPv4-mapped address feature | 
|  | 1004 | FALSE: enable IPv4-mapped address feature | 
|  | 1005 |  | 
| Geoffrey Thomas | d5c073ca | 2011-08-22 11:28:57 -0700 | [diff] [blame] | 1006 | Default: FALSE (as specified in RFC3493) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1007 |  | 
|  | 1008 | IPv6 Fragmentation: | 
|  | 1009 |  | 
|  | 1010 | ip6frag_high_thresh - INTEGER | 
| Jesper Dangaard Brouer | e18f5fe | 2009-02-23 04:39:04 +0000 | [diff] [blame] | 1011 | Maximum memory used to reassemble IPv6 fragments. When | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1012 | ip6frag_high_thresh bytes of memory is allocated for this purpose, | 
|  | 1013 | the fragment handler will toss packets until ip6frag_low_thresh | 
|  | 1014 | is reached. | 
| Jesper Dangaard Brouer | e18f5fe | 2009-02-23 04:39:04 +0000 | [diff] [blame] | 1015 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1016 | ip6frag_low_thresh - INTEGER | 
| Jesper Dangaard Brouer | e18f5fe | 2009-02-23 04:39:04 +0000 | [diff] [blame] | 1017 | See ip6frag_high_thresh | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1018 |  | 
|  | 1019 | ip6frag_time - INTEGER | 
|  | 1020 | Time in seconds to keep an IPv6 fragment in memory. | 
|  | 1021 |  | 
|  | 1022 | ip6frag_secret_interval - INTEGER | 
| Jesper Dangaard Brouer | e18f5fe | 2009-02-23 04:39:04 +0000 | [diff] [blame] | 1023 | Regeneration interval (in seconds) of the hash secret (or lifetime | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1024 | for the hash secret) for IPv6 fragments. | 
|  | 1025 | Default: 600 | 
|  | 1026 |  | 
|  | 1027 | conf/default/*: | 
|  | 1028 | Change the interface-specific default settings. | 
|  | 1029 |  | 
|  | 1030 |  | 
|  | 1031 | conf/all/*: | 
| Jesper Dangaard Brouer | e18f5fe | 2009-02-23 04:39:04 +0000 | [diff] [blame] | 1032 | Change all the interface-specific settings. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1033 |  | 
|  | 1034 | [XXX:  Other special features than forwarding?] | 
|  | 1035 |  | 
|  | 1036 | conf/all/forwarding - BOOLEAN | 
| Jesper Dangaard Brouer | e18f5fe | 2009-02-23 04:39:04 +0000 | [diff] [blame] | 1037 | Enable global IPv6 forwarding between all interfaces. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1038 |  | 
| Jesper Dangaard Brouer | e18f5fe | 2009-02-23 04:39:04 +0000 | [diff] [blame] | 1039 | IPv4 and IPv6 work differently here; e.g. netfilter must be used | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1040 | to control which interfaces may forward packets and which not. | 
|  | 1041 |  | 
| Jesper Dangaard Brouer | e18f5fe | 2009-02-23 04:39:04 +0000 | [diff] [blame] | 1042 | This also sets all interfaces' Host/Router setting | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1043 | 'forwarding' to the specified value.  See below for details. | 
|  | 1044 |  | 
|  | 1045 | This referred to as global forwarding. | 
|  | 1046 |  | 
| YOSHIFUJI Hideaki | fbea49e | 2006-09-22 14:43:49 -0700 | [diff] [blame] | 1047 | proxy_ndp - BOOLEAN | 
|  | 1048 | Do proxy ndp. | 
|  | 1049 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1050 | conf/interface/*: | 
|  | 1051 | Change special settings per interface. | 
|  | 1052 |  | 
| Jesper Dangaard Brouer | e18f5fe | 2009-02-23 04:39:04 +0000 | [diff] [blame] | 1053 | The functional behaviour for certain settings is different | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1054 | depending on whether local forwarding is enabled or not. | 
|  | 1055 |  | 
| Roy.Li | 605b91c | 2011-09-28 19:51:54 +0000 | [diff] [blame] | 1056 | accept_ra - INTEGER | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1057 | Accept Router Advertisements; autoconfigure using them. | 
| Jesper Dangaard Brouer | e18f5fe | 2009-02-23 04:39:04 +0000 | [diff] [blame] | 1058 |  | 
| Tore Anderson | 026359b | 2011-08-28 23:47:33 +0000 | [diff] [blame] | 1059 | It also determines whether or not to transmit Router | 
|  | 1060 | Solicitations. If and only if the functional setting is to | 
|  | 1061 | accept Router Advertisements, Router Solicitations will be | 
|  | 1062 | transmitted. | 
|  | 1063 |  | 
| Thomas Graf | ae8abfa | 2010-09-03 05:47:30 +0000 | [diff] [blame] | 1064 | Possible values are: | 
|  | 1065 | 0 Do not accept Router Advertisements. | 
|  | 1066 | 1 Accept Router Advertisements if forwarding is disabled. | 
|  | 1067 | 2 Overrule forwarding behaviour. Accept Router Advertisements | 
|  | 1068 | even if forwarding is enabled. | 
|  | 1069 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1070 | Functional default: enabled if local forwarding is disabled. | 
|  | 1071 | disabled if local forwarding is enabled. | 
|  | 1072 |  | 
| YOSHIFUJI Hideaki | 65f5c7c | 2006-03-20 16:55:08 -0800 | [diff] [blame] | 1073 | accept_ra_defrtr - BOOLEAN | 
|  | 1074 | Learn default router in Router Advertisement. | 
|  | 1075 |  | 
|  | 1076 | Functional default: enabled if accept_ra is enabled. | 
|  | 1077 | disabled if accept_ra is disabled. | 
|  | 1078 |  | 
| YOSHIFUJI Hideaki | c4fd30e | 2006-03-20 16:55:26 -0800 | [diff] [blame] | 1079 | accept_ra_pinfo - BOOLEAN | 
| Matt LaPlante | 2fe0ae7 | 2006-10-03 22:50:39 +0200 | [diff] [blame] | 1080 | Learn Prefix Information in Router Advertisement. | 
| YOSHIFUJI Hideaki | c4fd30e | 2006-03-20 16:55:26 -0800 | [diff] [blame] | 1081 |  | 
|  | 1082 | Functional default: enabled if accept_ra is enabled. | 
|  | 1083 | disabled if accept_ra is disabled. | 
|  | 1084 |  | 
| YOSHIFUJI Hideaki | 09c884d | 2006-03-20 17:07:03 -0800 | [diff] [blame] | 1085 | accept_ra_rt_info_max_plen - INTEGER | 
|  | 1086 | Maximum prefix length of Route Information in RA. | 
|  | 1087 |  | 
|  | 1088 | Route Information w/ prefix larger than or equal to this | 
|  | 1089 | variable shall be ignored. | 
|  | 1090 |  | 
|  | 1091 | Functional default: 0 if accept_ra_rtr_pref is enabled. | 
|  | 1092 | -1 if accept_ra_rtr_pref is disabled. | 
|  | 1093 |  | 
| YOSHIFUJI Hideaki | 930d6ff | 2006-03-20 17:05:30 -0800 | [diff] [blame] | 1094 | accept_ra_rtr_pref - BOOLEAN | 
|  | 1095 | Accept Router Preference in RA. | 
|  | 1096 |  | 
|  | 1097 | Functional default: enabled if accept_ra is enabled. | 
|  | 1098 | disabled if accept_ra is disabled. | 
|  | 1099 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1100 | accept_redirects - BOOLEAN | 
|  | 1101 | Accept Redirects. | 
|  | 1102 |  | 
|  | 1103 | Functional default: enabled if local forwarding is disabled. | 
|  | 1104 | disabled if local forwarding is enabled. | 
|  | 1105 |  | 
| YOSHIFUJI Hideaki | 0bcbc92 | 2007-04-24 14:58:30 -0700 | [diff] [blame] | 1106 | accept_source_route - INTEGER | 
|  | 1107 | Accept source routing (routing extension header). | 
|  | 1108 |  | 
| YOSHIFUJI Hideaki | bb4dbf9 | 2007-07-10 22:55:49 -0700 | [diff] [blame] | 1109 | >= 0: Accept only routing header type 2. | 
| YOSHIFUJI Hideaki | 0bcbc92 | 2007-04-24 14:58:30 -0700 | [diff] [blame] | 1110 | < 0: Do not accept routing header. | 
|  | 1111 |  | 
|  | 1112 | Default: 0 | 
|  | 1113 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1114 | autoconf - BOOLEAN | 
| Jesper Dangaard Brouer | e18f5fe | 2009-02-23 04:39:04 +0000 | [diff] [blame] | 1115 | Autoconfigure addresses using Prefix Information in Router | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1116 | Advertisements. | 
|  | 1117 |  | 
| YOSHIFUJI Hideaki | c4fd30e | 2006-03-20 16:55:26 -0800 | [diff] [blame] | 1118 | Functional default: enabled if accept_ra_pinfo is enabled. | 
|  | 1119 | disabled if accept_ra_pinfo is disabled. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1120 |  | 
|  | 1121 | dad_transmits - INTEGER | 
|  | 1122 | The amount of Duplicate Address Detection probes to send. | 
|  | 1123 | Default: 1 | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1124 |  | 
| Roy.Li | 605b91c | 2011-09-28 19:51:54 +0000 | [diff] [blame] | 1125 | forwarding - INTEGER | 
| Jesper Dangaard Brouer | e18f5fe | 2009-02-23 04:39:04 +0000 | [diff] [blame] | 1126 | Configure interface-specific Host/Router behaviour. | 
|  | 1127 |  | 
|  | 1128 | Note: It is recommended to have the same setting on all | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1129 | interfaces; mixed router/host scenarios are rather uncommon. | 
|  | 1130 |  | 
| Thomas Graf | ae8abfa | 2010-09-03 05:47:30 +0000 | [diff] [blame] | 1131 | Possible values are: | 
|  | 1132 | 0 Forwarding disabled | 
|  | 1133 | 1 Forwarding enabled | 
| Thomas Graf | ae8abfa | 2010-09-03 05:47:30 +0000 | [diff] [blame] | 1134 |  | 
|  | 1135 | FALSE (0): | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1136 |  | 
|  | 1137 | By default, Host behaviour is assumed.  This means: | 
|  | 1138 |  | 
|  | 1139 | 1. IsRouter flag is not set in Neighbour Advertisements. | 
| Tore Anderson | 026359b | 2011-08-28 23:47:33 +0000 | [diff] [blame] | 1140 | 2. If accept_ra is TRUE (default), transmit Router | 
|  | 1141 | Solicitations. | 
| Jesper Dangaard Brouer | e18f5fe | 2009-02-23 04:39:04 +0000 | [diff] [blame] | 1142 | 3. If accept_ra is TRUE (default), accept Router | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1143 | Advertisements (and do autoconfiguration). | 
|  | 1144 | 4. If accept_redirects is TRUE (default), accept Redirects. | 
|  | 1145 |  | 
| Thomas Graf | ae8abfa | 2010-09-03 05:47:30 +0000 | [diff] [blame] | 1146 | TRUE (1): | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1147 |  | 
| Jesper Dangaard Brouer | e18f5fe | 2009-02-23 04:39:04 +0000 | [diff] [blame] | 1148 | If local forwarding is enabled, Router behaviour is assumed. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1149 | This means exactly the reverse from the above: | 
|  | 1150 |  | 
|  | 1151 | 1. IsRouter flag is set in Neighbour Advertisements. | 
| Tore Anderson | 026359b | 2011-08-28 23:47:33 +0000 | [diff] [blame] | 1152 | 2. Router Solicitations are not sent unless accept_ra is 2. | 
| Thomas Graf | ae8abfa | 2010-09-03 05:47:30 +0000 | [diff] [blame] | 1153 | 3. Router Advertisements are ignored unless accept_ra is 2. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1154 | 4. Redirects are ignored. | 
|  | 1155 |  | 
| Thomas Graf | ae8abfa | 2010-09-03 05:47:30 +0000 | [diff] [blame] | 1156 | Default: 0 (disabled) if global forwarding is disabled (default), | 
|  | 1157 | otherwise 1 (enabled). | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1158 |  | 
|  | 1159 | hop_limit - INTEGER | 
|  | 1160 | Default Hop Limit to set. | 
|  | 1161 | Default: 64 | 
|  | 1162 |  | 
|  | 1163 | mtu - INTEGER | 
|  | 1164 | Default Maximum Transfer Unit | 
|  | 1165 | Default: 1280 (IPv6 required minimum) | 
|  | 1166 |  | 
| YOSHIFUJI Hideaki | 52e1635 | 2006-03-20 17:05:47 -0800 | [diff] [blame] | 1167 | router_probe_interval - INTEGER | 
|  | 1168 | Minimum interval (in seconds) between Router Probing described | 
|  | 1169 | in RFC4191. | 
|  | 1170 |  | 
|  | 1171 | Default: 60 | 
|  | 1172 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1173 | router_solicitation_delay - INTEGER | 
|  | 1174 | Number of seconds to wait after interface is brought up | 
|  | 1175 | before sending Router Solicitations. | 
|  | 1176 | Default: 1 | 
|  | 1177 |  | 
|  | 1178 | router_solicitation_interval - INTEGER | 
|  | 1179 | Number of seconds to wait between Router Solicitations. | 
|  | 1180 | Default: 4 | 
|  | 1181 |  | 
|  | 1182 | router_solicitations - INTEGER | 
| Jesper Dangaard Brouer | e18f5fe | 2009-02-23 04:39:04 +0000 | [diff] [blame] | 1183 | Number of Router Solicitations to send until assuming no | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1184 | routers are present. | 
|  | 1185 | Default: 3 | 
|  | 1186 |  | 
|  | 1187 | use_tempaddr - INTEGER | 
|  | 1188 | Preference for Privacy Extensions (RFC3041). | 
|  | 1189 | <= 0 : disable Privacy Extensions | 
|  | 1190 | == 1 : enable Privacy Extensions, but prefer public | 
|  | 1191 | addresses over temporary addresses. | 
|  | 1192 | >  1 : enable Privacy Extensions and prefer temporary | 
|  | 1193 | addresses over public addresses. | 
|  | 1194 | Default:  0 (for most devices) | 
|  | 1195 | -1 (for point-to-point devices and loopback devices) | 
|  | 1196 |  | 
|  | 1197 | temp_valid_lft - INTEGER | 
|  | 1198 | valid lifetime (in seconds) for temporary addresses. | 
|  | 1199 | Default: 604800 (7 days) | 
|  | 1200 |  | 
|  | 1201 | temp_prefered_lft - INTEGER | 
|  | 1202 | Preferred lifetime (in seconds) for temporary addresses. | 
|  | 1203 | Default: 86400 (1 day) | 
|  | 1204 |  | 
|  | 1205 | max_desync_factor - INTEGER | 
|  | 1206 | Maximum value for DESYNC_FACTOR, which is a random value | 
| Jesper Dangaard Brouer | e18f5fe | 2009-02-23 04:39:04 +0000 | [diff] [blame] | 1207 | that ensures that clients don't synchronize with each | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1208 | other and generate new addresses at exactly the same time. | 
|  | 1209 | value is in seconds. | 
|  | 1210 | Default: 600 | 
| Jesper Dangaard Brouer | e18f5fe | 2009-02-23 04:39:04 +0000 | [diff] [blame] | 1211 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1212 | regen_max_retry - INTEGER | 
|  | 1213 | Number of attempts before give up attempting to generate | 
|  | 1214 | valid temporary addresses. | 
|  | 1215 | Default: 5 | 
|  | 1216 |  | 
|  | 1217 | max_addresses - INTEGER | 
| Brian Haley | e79dc48 | 2010-02-22 12:27:21 +0000 | [diff] [blame] | 1218 | Maximum number of autoconfigured addresses per interface.  Setting | 
|  | 1219 | to zero disables the limitation.  It is not recommended to set this | 
|  | 1220 | value too large (or to zero) because it would be an easy way to | 
|  | 1221 | crash the kernel by allowing too many addresses to be created. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1222 | Default: 16 | 
|  | 1223 |  | 
| YOSHIFUJI Hideaki | 778d80b | 2008-06-28 14:17:11 +0900 | [diff] [blame] | 1224 | disable_ipv6 - BOOLEAN | 
| Brian Haley | 9bdd8d4 | 2009-03-18 18:22:48 -0700 | [diff] [blame] | 1225 | Disable IPv6 operation.  If accept_dad is set to 2, this value | 
|  | 1226 | will be dynamically set to TRUE if DAD fails for the link-local | 
|  | 1227 | address. | 
| YOSHIFUJI Hideaki | 778d80b | 2008-06-28 14:17:11 +0900 | [diff] [blame] | 1228 | Default: FALSE (enable IPv6 operation) | 
|  | 1229 |  | 
| Brian Haley | 56d417b | 2009-06-01 03:07:33 -0700 | [diff] [blame] | 1230 | When this value is changed from 1 to 0 (IPv6 is being enabled), | 
|  | 1231 | it will dynamically create a link-local address on the given | 
|  | 1232 | interface and start Duplicate Address Detection, if necessary. | 
|  | 1233 |  | 
|  | 1234 | When this value is changed from 0 to 1 (IPv6 is being disabled), | 
|  | 1235 | it will dynamically delete all address on the given interface. | 
|  | 1236 |  | 
| YOSHIFUJI Hideaki | 1b34be7 | 2008-06-28 14:18:38 +0900 | [diff] [blame] | 1237 | accept_dad - INTEGER | 
|  | 1238 | Whether to accept DAD (Duplicate Address Detection). | 
|  | 1239 | 0: Disable DAD | 
|  | 1240 | 1: Enable DAD (default) | 
|  | 1241 | 2: Enable DAD, and disable IPv6 operation if MAC-based duplicate | 
|  | 1242 | link-local address has been found. | 
|  | 1243 |  | 
| Octavian Purdila | f7734fd | 2009-10-02 11:39:15 +0000 | [diff] [blame] | 1244 | force_tllao - BOOLEAN | 
|  | 1245 | Enable sending the target link-layer address option even when | 
|  | 1246 | responding to a unicast neighbor solicitation. | 
|  | 1247 | Default: FALSE | 
|  | 1248 |  | 
|  | 1249 | Quoting from RFC 2461, section 4.4, Target link-layer address: | 
|  | 1250 |  | 
|  | 1251 | "The option MUST be included for multicast solicitations in order to | 
|  | 1252 | avoid infinite Neighbor Solicitation "recursion" when the peer node | 
|  | 1253 | does not have a cache entry to return a Neighbor Advertisements | 
|  | 1254 | message.  When responding to unicast solicitations, the option can be | 
|  | 1255 | omitted since the sender of the solicitation has the correct link- | 
|  | 1256 | layer address; otherwise it would not have be able to send the unicast | 
|  | 1257 | solicitation in the first place. However, including the link-layer | 
|  | 1258 | address in this case adds little overhead and eliminates a potential | 
|  | 1259 | race condition where the sender deletes the cached link-layer address | 
|  | 1260 | prior to receiving a response to a previous solicitation." | 
|  | 1261 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1262 | icmp/*: | 
|  | 1263 | ratelimit - INTEGER | 
|  | 1264 | Limit the maximal rates for sending ICMPv6 packets. | 
| Stephen Hemminger | 6dbf4bc | 2008-07-01 19:29:07 -0700 | [diff] [blame] | 1265 | 0 to disable any limiting, | 
|  | 1266 | otherwise the minimal space between responses in milliseconds. | 
|  | 1267 | Default: 1000 | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1268 |  | 
|  | 1269 |  | 
|  | 1270 | IPv6 Update by: | 
|  | 1271 | Pekka Savola <pekkas@netcore.fi> | 
|  | 1272 | YOSHIFUJI Hideaki / USAGI Project <yoshfuji@linux-ipv6.org> | 
|  | 1273 |  | 
|  | 1274 |  | 
|  | 1275 | /proc/sys/net/bridge/* Variables: | 
|  | 1276 |  | 
|  | 1277 | bridge-nf-call-arptables - BOOLEAN | 
|  | 1278 | 1 : pass bridged ARP traffic to arptables' FORWARD chain. | 
|  | 1279 | 0 : disable this. | 
|  | 1280 | Default: 1 | 
|  | 1281 |  | 
|  | 1282 | bridge-nf-call-iptables - BOOLEAN | 
|  | 1283 | 1 : pass bridged IPv4 traffic to iptables' chains. | 
|  | 1284 | 0 : disable this. | 
|  | 1285 | Default: 1 | 
|  | 1286 |  | 
|  | 1287 | bridge-nf-call-ip6tables - BOOLEAN | 
|  | 1288 | 1 : pass bridged IPv6 traffic to ip6tables' chains. | 
|  | 1289 | 0 : disable this. | 
|  | 1290 | Default: 1 | 
|  | 1291 |  | 
|  | 1292 | bridge-nf-filter-vlan-tagged - BOOLEAN | 
| Michael Milner | 516299d | 2007-04-12 22:14:23 -0700 | [diff] [blame] | 1293 | 1 : pass bridged vlan-tagged ARP/IP/IPv6 traffic to {arp,ip,ip6}tables. | 
|  | 1294 | 0 : disable this. | 
|  | 1295 | Default: 1 | 
|  | 1296 |  | 
|  | 1297 | bridge-nf-filter-pppoe-tagged - BOOLEAN | 
|  | 1298 | 1 : pass bridged pppoe-tagged IP/IPv6 traffic to {ip,ip6}tables. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1299 | 0 : disable this. | 
|  | 1300 | Default: 1 | 
|  | 1301 |  | 
|  | 1302 |  | 
| Vlad Yasevich | 32e8d49 | 2008-07-08 16:43:29 -0700 | [diff] [blame] | 1303 | proc/sys/net/sctp/* Variables: | 
|  | 1304 |  | 
|  | 1305 | addip_enable - BOOLEAN | 
|  | 1306 | Enable or disable extension of  Dynamic Address Reconfiguration | 
|  | 1307 | (ADD-IP) functionality specified in RFC5061.  This extension provides | 
|  | 1308 | the ability to dynamically add and remove new addresses for the SCTP | 
|  | 1309 | associations. | 
|  | 1310 |  | 
|  | 1311 | 1: Enable extension. | 
|  | 1312 |  | 
|  | 1313 | 0: Disable extension. | 
|  | 1314 |  | 
|  | 1315 | Default: 0 | 
|  | 1316 |  | 
|  | 1317 | addip_noauth_enable - BOOLEAN | 
|  | 1318 | Dynamic Address Reconfiguration (ADD-IP) requires the use of | 
|  | 1319 | authentication to protect the operations of adding or removing new | 
|  | 1320 | addresses.  This requirement is mandated so that unauthorized hosts | 
|  | 1321 | would not be able to hijack associations.  However, older | 
|  | 1322 | implementations may not have implemented this requirement while | 
|  | 1323 | allowing the ADD-IP extension.  For reasons of interoperability, | 
|  | 1324 | we provide this variable to control the enforcement of the | 
|  | 1325 | authentication requirement. | 
|  | 1326 |  | 
|  | 1327 | 1: Allow ADD-IP extension to be used without authentication.  This | 
|  | 1328 | should only be set in a closed environment for interoperability | 
|  | 1329 | with older implementations. | 
|  | 1330 |  | 
|  | 1331 | 0: Enforce the authentication requirement | 
|  | 1332 |  | 
|  | 1333 | Default: 0 | 
|  | 1334 |  | 
|  | 1335 | auth_enable - BOOLEAN | 
|  | 1336 | Enable or disable Authenticated Chunks extension.  This extension | 
|  | 1337 | provides the ability to send and receive authenticated chunks and is | 
|  | 1338 | required for secure operation of Dynamic Address Reconfiguration | 
|  | 1339 | (ADD-IP) extension. | 
|  | 1340 |  | 
|  | 1341 | 1: Enable this extension. | 
|  | 1342 | 0: Disable this extension. | 
|  | 1343 |  | 
|  | 1344 | Default: 0 | 
|  | 1345 |  | 
|  | 1346 | prsctp_enable - BOOLEAN | 
|  | 1347 | Enable or disable the Partial Reliability extension (RFC3758) which | 
|  | 1348 | is used to notify peers that a given DATA should no longer be expected. | 
|  | 1349 |  | 
|  | 1350 | 1: Enable extension | 
|  | 1351 | 0: Disable | 
|  | 1352 |  | 
|  | 1353 | Default: 1 | 
|  | 1354 |  | 
|  | 1355 | max_burst - INTEGER | 
|  | 1356 | The limit of the number of new packets that can be initially sent.  It | 
|  | 1357 | controls how bursty the generated traffic can be. | 
|  | 1358 |  | 
|  | 1359 | Default: 4 | 
|  | 1360 |  | 
|  | 1361 | association_max_retrans - INTEGER | 
|  | 1362 | Set the maximum number for retransmissions that an association can | 
|  | 1363 | attempt deciding that the remote end is unreachable.  If this value | 
|  | 1364 | is exceeded, the association is terminated. | 
|  | 1365 |  | 
|  | 1366 | Default: 10 | 
|  | 1367 |  | 
|  | 1368 | max_init_retransmits - INTEGER | 
|  | 1369 | The maximum number of retransmissions of INIT and COOKIE-ECHO chunks | 
|  | 1370 | that an association will attempt before declaring the destination | 
|  | 1371 | unreachable and terminating. | 
|  | 1372 |  | 
|  | 1373 | Default: 8 | 
|  | 1374 |  | 
|  | 1375 | path_max_retrans - INTEGER | 
|  | 1376 | The maximum number of retransmissions that will be attempted on a given | 
|  | 1377 | path.  Once this threshold is exceeded, the path is considered | 
|  | 1378 | unreachable, and new traffic will use a different path when the | 
|  | 1379 | association is multihomed. | 
|  | 1380 |  | 
|  | 1381 | Default: 5 | 
|  | 1382 |  | 
|  | 1383 | rto_initial - INTEGER | 
|  | 1384 | The initial round trip timeout value in milliseconds that will be used | 
|  | 1385 | in calculating round trip times.  This is the initial time interval | 
|  | 1386 | for retransmissions. | 
|  | 1387 |  | 
|  | 1388 | Default: 3000 | 
|  | 1389 |  | 
|  | 1390 | rto_max - INTEGER | 
|  | 1391 | The maximum value (in milliseconds) of the round trip timeout.  This | 
|  | 1392 | is the largest time interval that can elapse between retransmissions. | 
|  | 1393 |  | 
|  | 1394 | Default: 60000 | 
|  | 1395 |  | 
|  | 1396 | rto_min - INTEGER | 
|  | 1397 | The minimum value (in milliseconds) of the round trip timeout.  This | 
|  | 1398 | is the smallest time interval the can elapse between retransmissions. | 
|  | 1399 |  | 
|  | 1400 | Default: 1000 | 
|  | 1401 |  | 
|  | 1402 | hb_interval - INTEGER | 
|  | 1403 | The interval (in milliseconds) between HEARTBEAT chunks.  These chunks | 
|  | 1404 | are sent at the specified interval on idle paths to probe the state of | 
|  | 1405 | a given path between 2 associations. | 
|  | 1406 |  | 
|  | 1407 | Default: 30000 | 
|  | 1408 |  | 
|  | 1409 | sack_timeout - INTEGER | 
|  | 1410 | The amount of time (in milliseconds) that the implementation will wait | 
|  | 1411 | to send a SACK. | 
|  | 1412 |  | 
|  | 1413 | Default: 200 | 
|  | 1414 |  | 
|  | 1415 | valid_cookie_life - INTEGER | 
|  | 1416 | The default lifetime of the SCTP cookie (in milliseconds).  The cookie | 
|  | 1417 | is used during association establishment. | 
|  | 1418 |  | 
|  | 1419 | Default: 60000 | 
|  | 1420 |  | 
|  | 1421 | cookie_preserve_enable - BOOLEAN | 
|  | 1422 | Enable or disable the ability to extend the lifetime of the SCTP cookie | 
|  | 1423 | that is used during the establishment phase of SCTP association | 
|  | 1424 |  | 
|  | 1425 | 1: Enable cookie lifetime extension. | 
|  | 1426 | 0: Disable | 
|  | 1427 |  | 
|  | 1428 | Default: 1 | 
|  | 1429 |  | 
|  | 1430 | rcvbuf_policy - INTEGER | 
|  | 1431 | Determines if the receive buffer is attributed to the socket or to | 
|  | 1432 | association.   SCTP supports the capability to create multiple | 
|  | 1433 | associations on a single socket.  When using this capability, it is | 
|  | 1434 | possible that a single stalled association that's buffering a lot | 
|  | 1435 | of data may block other associations from delivering their data by | 
|  | 1436 | consuming all of the receive buffer space.  To work around this, | 
|  | 1437 | the rcvbuf_policy could be set to attribute the receiver buffer space | 
|  | 1438 | to each association instead of the socket.  This prevents the described | 
|  | 1439 | blocking. | 
|  | 1440 |  | 
|  | 1441 | 1: rcvbuf space is per association | 
|  | 1442 | 0: recbuf space is per socket | 
|  | 1443 |  | 
|  | 1444 | Default: 0 | 
|  | 1445 |  | 
|  | 1446 | sndbuf_policy - INTEGER | 
|  | 1447 | Similar to rcvbuf_policy above, this applies to send buffer space. | 
|  | 1448 |  | 
|  | 1449 | 1: Send buffer is tracked per association | 
|  | 1450 | 0: Send buffer is tracked per socket. | 
|  | 1451 |  | 
|  | 1452 | Default: 0 | 
|  | 1453 |  | 
|  | 1454 | sctp_mem - vector of 3 INTEGERs: min, pressure, max | 
|  | 1455 | Number of pages allowed for queueing by all SCTP sockets. | 
|  | 1456 |  | 
|  | 1457 | min: Below this number of pages SCTP is not bothered about its | 
|  | 1458 | memory appetite. When amount of memory allocated by SCTP exceeds | 
|  | 1459 | this number, SCTP starts to moderate memory usage. | 
|  | 1460 |  | 
|  | 1461 | pressure: This value was introduced to follow format of tcp_mem. | 
|  | 1462 |  | 
|  | 1463 | max: Number of pages allowed for queueing by all SCTP sockets. | 
|  | 1464 |  | 
|  | 1465 | Default is calculated at boot time from amount of available memory. | 
|  | 1466 |  | 
|  | 1467 | sctp_rmem - vector of 3 INTEGERs: min, default, max | 
| Max Matveev | a6e1204 | 2011-06-19 22:08:10 +0000 | [diff] [blame] | 1468 | Only the first value ("min") is used, "default" and "max" are | 
|  | 1469 | ignored. | 
|  | 1470 |  | 
|  | 1471 | min: Minimal size of receive buffer used by SCTP socket. | 
|  | 1472 | It is guaranteed to each SCTP socket (but not association) even | 
|  | 1473 | under moderate memory pressure. | 
|  | 1474 |  | 
|  | 1475 | Default: 1 page | 
| Vlad Yasevich | 32e8d49 | 2008-07-08 16:43:29 -0700 | [diff] [blame] | 1476 |  | 
|  | 1477 | sctp_wmem  - vector of 3 INTEGERs: min, default, max | 
| Max Matveev | a6e1204 | 2011-06-19 22:08:10 +0000 | [diff] [blame] | 1478 | Currently this tunable has no effect. | 
| Vlad Yasevich | 32e8d49 | 2008-07-08 16:43:29 -0700 | [diff] [blame] | 1479 |  | 
| Bhaskar Dutta | 7238843 | 2009-09-03 17:25:47 +0530 | [diff] [blame] | 1480 | addr_scope_policy - INTEGER | 
|  | 1481 | Control IPv4 address scoping - draft-stewart-tsvwg-sctp-ipv4-00 | 
|  | 1482 |  | 
|  | 1483 | 0   - Disable IPv4 address scoping | 
|  | 1484 | 1   - Enable IPv4 address scoping | 
|  | 1485 | 2   - Follow draft but allow IPv4 private addresses | 
|  | 1486 | 3   - Follow draft but allow IPv4 link local addresses | 
|  | 1487 |  | 
|  | 1488 | Default: 1 | 
|  | 1489 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1490 |  | 
| Stephen Hemminger | 4edc2f3 | 2008-07-10 16:50:26 -0700 | [diff] [blame] | 1491 | /proc/sys/net/core/* | 
| Wang Tinggong | 705efc3 | 2009-05-14 22:49:36 +0000 | [diff] [blame] | 1492 | dev_weight - INTEGER | 
|  | 1493 | The maximum number of packets that kernel can handle on a NAPI | 
|  | 1494 | interrupt, it's a Per-CPU variable. | 
|  | 1495 |  | 
|  | 1496 | Default: 64 | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1497 |  | 
| Stephen Hemminger | 4edc2f3 | 2008-07-10 16:50:26 -0700 | [diff] [blame] | 1498 | /proc/sys/net/unix/* | 
| Wang Tinggong | 705efc3 | 2009-05-14 22:49:36 +0000 | [diff] [blame] | 1499 | max_dgram_qlen - INTEGER | 
|  | 1500 | The maximum length of dgram socket receive queue | 
|  | 1501 |  | 
|  | 1502 | Default: 10 | 
|  | 1503 |  | 
|  | 1504 |  | 
|  | 1505 | UNDOCUMENTED: | 
| Stephen Hemminger | 4edc2f3 | 2008-07-10 16:50:26 -0700 | [diff] [blame] | 1506 |  | 
|  | 1507 | /proc/sys/net/irda/* | 
|  | 1508 | fast_poll_increase FIXME | 
|  | 1509 | warn_noreply_time FIXME | 
|  | 1510 | discovery_slots FIXME | 
|  | 1511 | slot_timeout FIXME | 
|  | 1512 | max_baud_rate FIXME | 
|  | 1513 | discovery_timeout FIXME | 
|  | 1514 | lap_keepalive_time FIXME | 
|  | 1515 | max_noreply_time FIXME | 
|  | 1516 | max_tx_data_size FIXME | 
|  | 1517 | max_tx_window FIXME | 
|  | 1518 | min_tx_turn_time FIXME |