xref: /linux/Documentation/networking/ip-sysctl.rst (revision b0249c0d41b306ddd79de58ca7fea543ab5e7a2e)
1.. SPDX-License-Identifier: GPL-2.0
2
3=========
4IP Sysctl
5=========
6
7/proc/sys/net/ipv4/* Variables
8==============================
9
10ip_forward - BOOLEAN
11	Forward Packets between interfaces.
12
13	This variable is special, its change resets all configuration
14	parameters to their default state (RFC1122 for hosts, RFC1812
15	for routers)
16
17	Possible values:
18
19	- 0 (disabled)
20	- 1 (enabled)
21
22	Default: 0 (disabled)
23
24ip_default_ttl - INTEGER
25	Default value of TTL field (Time To Live) for outgoing (but not
26	forwarded) IP packets. Should be between 1 and 255 inclusive.
27	Default: 64 (as recommended by RFC1700)
28
29ip_no_pmtu_disc - INTEGER
30	Disable Path MTU Discovery. If enabled in mode 1 and a
31	fragmentation-required ICMP is received, the PMTU to this
32	destination will be set to the smallest of the old MTU to
33	this destination and min_pmtu (see below). You will need
34	to raise min_pmtu to the smallest interface MTU on your system
35	manually if you want to avoid locally generated fragments.
36
37	In mode 2 incoming Path MTU Discovery messages will be
38	discarded. Outgoing frames are handled the same as in mode 1,
39	implicitly setting IP_PMTUDISC_DONT on every created socket.
40
41	Mode 3 is a hardened pmtu discover mode. The kernel will only
42	accept fragmentation-needed errors if the underlying protocol
43	can verify them besides a plain socket lookup. Current
44	protocols for which pmtu events will be honored are TCP and
45	SCTP as they verify e.g. the sequence number or the
46	association. This mode should not be enabled globally but is
47	only intended to secure e.g. name servers in namespaces where
48	TCP path mtu must still work but path MTU information of other
49	protocols should be discarded. If enabled globally this mode
50	could break other protocols.
51
52	Possible values: 0-3
53
54	Default: FALSE
55
56min_pmtu - INTEGER
57	default 552 - minimum Path MTU. Unless this is changed manually,
58	each cached pmtu will never be lower than this setting.
59
60ip_forward_use_pmtu - BOOLEAN
61	By default we don't trust protocol path MTUs while forwarding
62	because they could be easily forged and can lead to unwanted
63	fragmentation by the router.
64	You only need to enable this if you have user-space software
65	which tries to discover path mtus by itself and depends on the
66	kernel honoring this information. This is normally not the
67	case.
68
69	Possible values:
70
71	- 0 (disabled)
72	- 1 (enabled)
73
74	Default: 0 (disabled)
75
76fwmark_reflect - BOOLEAN
77	Controls the fwmark of kernel-generated IPv4 reply packets that are not
78	associated with a socket for example, TCP RSTs or ICMP echo replies).
79	If disabled, these packets have a fwmark of zero. If enabled, they have the
80	fwmark of the packet they are replying to.
81
82	Possible values:
83
84	- 0 (disabled)
85	- 1 (enabled)
86
87	Default: 0 (disabled)
88
89fib_multipath_use_neigh - BOOLEAN
90	Use status of existing neighbor entry when determining nexthop for
91	multipath routes. If disabled, neighbor information is not used and
92	packets could be directed to a failed nexthop. Only valid for kernels
93	built with CONFIG_IP_ROUTE_MULTIPATH enabled.
94
95	Possible values:
96
97	- 0 (disabled)
98	- 1 (enabled)
99
100	Default: 0 (disabled)
101
102fib_multipath_hash_policy - INTEGER
103	Controls which hash policy to use for multipath routes. Only valid
104	for kernels built with CONFIG_IP_ROUTE_MULTIPATH enabled.
105
106	Default: 0 (Layer 3)
107
108	Possible values:
109
110	- 0 - Layer 3
111	- 1 - Layer 4
112	- 2 - Layer 3 or inner Layer 3 if present
113	- 3 - Custom multipath hash. Fields used for multipath hash calculation
114	  are determined by fib_multipath_hash_fields sysctl
115
116fib_multipath_hash_fields - UNSIGNED INTEGER
117	When fib_multipath_hash_policy is set to 3 (custom multipath hash), the
118	fields used for multipath hash calculation are determined by this
119	sysctl.
120
121	This value is a bitmask which enables various fields for multipath hash
122	calculation.
123
124	Possible fields are:
125
126	====== ============================
127	0x0001 Source IP address
128	0x0002 Destination IP address
129	0x0004 IP protocol
130	0x0008 Unused (Flow Label)
131	0x0010 Source port
132	0x0020 Destination port
133	0x0040 Inner source IP address
134	0x0080 Inner destination IP address
135	0x0100 Inner IP protocol
136	0x0200 Inner Flow Label
137	0x0400 Inner source port
138	0x0800 Inner destination port
139	====== ============================
140
141	Default: 0x0007 (source IP, destination IP and IP protocol)
142
143fib_multipath_hash_seed - UNSIGNED INTEGER
144	The seed value used when calculating hash for multipath routes. Applies
145	to both IPv4 and IPv6 datapath. Only present for kernels built with
146	CONFIG_IP_ROUTE_MULTIPATH enabled.
147
148	When set to 0, the seed value used for multipath routing defaults to an
149	internal random-generated one.
150
151	The actual hashing algorithm is not specified -- there is no guarantee
152	that a next hop distribution effected by a given seed will keep stable
153	across kernel versions.
154
155	Default: 0 (random)
156
157fib_sync_mem - UNSIGNED INTEGER
158	Amount of dirty memory from fib entries that can be backlogged before
159	synchronize_rcu is forced.
160
161	Default: 512kB   Minimum: 64kB   Maximum: 64MB
162
163ip_forward_update_priority - INTEGER
164	Whether to update SKB priority from "TOS" field in IPv4 header after it
165	is forwarded. The new SKB priority is mapped from TOS field value
166	according to an rt_tos2priority table (see e.g. man tc-prio).
167
168	Default: 1 (Update priority.)
169
170	Possible values:
171
172	- 0 - Do not update priority.
173	- 1 - Update priority.
174
175route/max_size - INTEGER
176	Maximum number of routes allowed in the kernel.  Increase
177	this when using large numbers of interfaces and/or routes.
178
179	From linux kernel 3.6 onwards, this is deprecated for ipv4
180	as route cache is no longer used.
181
182	From linux kernel 6.3 onwards, this is deprecated for ipv6
183	as garbage collection manages cached route entries.
184
185neigh/default/gc_thresh1 - INTEGER
186	Minimum number of entries to keep.  Garbage collector will not
187	purge entries if there are fewer than this number.
188
189	Default: 128
190
191neigh/default/gc_thresh2 - INTEGER
192	Threshold when garbage collector becomes more aggressive about
193	purging entries. Entries older than 5 seconds will be cleared
194	when over this number.
195
196	Default: 512
197
198neigh/default/gc_thresh3 - INTEGER
199	Maximum number of non-PERMANENT neighbor entries allowed.  Increase
200	this when using large numbers of interfaces and when communicating
201	with large numbers of directly-connected peers.
202
203	Default: 1024
204
205neigh/default/gc_stale_time - INTEGER
206	Determines how long a neighbor entry can remain unused before it is
207	considered stale and eligible for garbage collection. Entries that have
208	not been used for longer than this time will be removed by the garbage
209	collector, unless they have active references, are marked as PERMANENT,
210	or carry the NTF_EXT_LEARNED or NTF_EXT_VALIDATED flag. Stale entries
211	are only removed by the periodic GC when there are at least gc_thresh1
212	neighbors in the table.
213
214	Default: 60 seconds
215
216neigh/default/unres_qlen_bytes - INTEGER
217	The maximum number of bytes which may be used by packets
218	queued for each	unresolved address by other network layers.
219	(added in linux 3.3)
220
221	Setting negative value is meaningless and will return error.
222
223	Default: SK_WMEM_DEFAULT, (same as net.core.wmem_default).
224
225		Exact value depends on architecture and kernel options,
226		but should be enough to allow queuing 256 packets
227		of medium size.
228
229neigh/default/unres_qlen - INTEGER
230	The maximum number of packets which may be queued for each
231	unresolved address by other network layers.
232
233	(deprecated in linux 3.3) : use unres_qlen_bytes instead.
234
235	Prior to linux 3.3, the default value is 3 which may cause
236	unexpected packet loss. The current default value is calculated
237	according to default value of unres_qlen_bytes and true size of
238	packet.
239
240	Default: 101
241
242neigh/default/interval_probe_time_ms - INTEGER
243	The probe interval for neighbor entries with NTF_MANAGED flag,
244	the min value is 1.
245
246	Default: 5000
247
248mtu_expires - INTEGER
249	Time, in seconds, that cached PMTU information is kept.
250
251min_adv_mss - INTEGER
252	The advertised MSS depends on the first hop route MTU, but will
253	never be lower than this setting.
254
255fib_notify_on_flag_change - INTEGER
256        Whether to emit RTM_NEWROUTE notifications whenever RTM_F_OFFLOAD/
257        RTM_F_TRAP/RTM_F_OFFLOAD_FAILED flags are changed.
258
259        After installing a route to the kernel, user space receives an
260        acknowledgment, which means the route was installed in the kernel,
261        but not necessarily in hardware.
262        It is also possible for a route already installed in hardware to change
263        its action and therefore its flags. For example, a host route that is
264        trapping packets can be "promoted" to perform decapsulation following
265        the installation of an IPinIP/VXLAN tunnel.
266        The notifications will indicate to user-space the state of the route.
267
268        Default: 0 (Do not emit notifications.)
269
270        Possible values:
271
272        - 0 - Do not emit notifications.
273        - 1 - Emit notifications.
274        - 2 - Emit notifications only for RTM_F_OFFLOAD_FAILED flag change.
275
276IP Fragmentation:
277
278ipfrag_high_thresh - LONG INTEGER
279	Maximum memory used to reassemble IP fragments.
280
281ipfrag_low_thresh - LONG INTEGER
282	(Obsolete since linux-4.17)
283	Maximum memory used to reassemble IP fragments before the kernel
284	begins to remove incomplete fragment queues to free up resources.
285	The kernel still accepts new fragments for defragmentation.
286
287ipfrag_time - INTEGER
288	Time in seconds to keep an IP fragment in memory.
289
290ipfrag_max_dist - INTEGER
291	ipfrag_max_dist is a non-negative integer value which defines the
292	maximum "disorder" which is allowed among fragments which share a
293	common IP source address. Note that reordering of packets is
294	not unusual, but if a large number of fragments arrive from a source
295	IP address while a particular fragment queue remains incomplete, it
296	probably indicates that one or more fragments belonging to that queue
297	have been lost. When ipfrag_max_dist is positive, an additional check
298	is done on fragments before they are added to a reassembly queue - if
299	ipfrag_max_dist (or more) fragments have arrived from a particular IP
300	address between additions to any IP fragment queue using that source
301	address, it's presumed that one or more fragments in the queue are
302	lost. The existing fragment queue will be dropped, and a new one
303	started. An ipfrag_max_dist value of zero disables this check.
304
305	Using a very small value, e.g. 1 or 2, for ipfrag_max_dist can
306	result in unnecessarily dropping fragment queues when normal
307	reordering of packets occurs, which could lead to poor application
308	performance. Using a very large value, e.g. 50000, increases the
309	likelihood of incorrectly reassembling IP fragments that originate
310	from different IP datagrams, which could result in data corruption.
311	Default: 64
312
313bc_forwarding - INTEGER
314	bc_forwarding enables the feature described in rfc1812#section-5.3.5.2
315	and rfc2644. It allows the router to forward directed broadcast.
316	To enable this feature, the 'all' entry and the input interface entry
317	should be set to 1.
318	Default: 0
319
320INET peer storage
321=================
322
323inet_peer_threshold - INTEGER
324	The approximate size of the storage.  Starting from this threshold
325	entries will be thrown aggressively.  This threshold also determines
326	entries' time-to-live and time intervals between garbage collection
327	passes.  More entries, less time-to-live, less GC interval.
328
329inet_peer_minttl - INTEGER
330	Minimum time-to-live of entries.  Should be enough to cover fragment
331	time-to-live on the reassembling side.  This minimum time-to-live  is
332	guaranteed if the pool size is less than inet_peer_threshold.
333	Measured in seconds.
334
335inet_peer_maxttl - INTEGER
336	Maximum time-to-live of entries.  Unused entries will expire after
337	this period of time if there is no memory pressure on the pool (i.e.
338	when the number of entries in the pool is very small).
339	Measured in seconds.
340
341TCP variables
342=============
343
344somaxconn - INTEGER
345	Limit of socket listen() backlog, known in userspace as SOMAXCONN.
346	Defaults to 4096. (Was 128 before linux-5.4)
347	See also tcp_max_syn_backlog for additional tuning for TCP sockets.
348
349tcp_abort_on_overflow - BOOLEAN
350	If listening service is too slow to accept new connections,
351	reset them. Default state is FALSE. It means that if overflow
352	occurred due to a burst, connection will recover. Enable this
353	option _only_ if you are really sure that listening daemon
354	cannot be tuned to accept connections faster. Enabling this
355	option can harm clients of your server.
356
357tcp_adv_win_scale - INTEGER
358	Obsolete since linux-6.6
359	Count buffering overhead as bytes/2^tcp_adv_win_scale
360	(if tcp_adv_win_scale > 0) or bytes-bytes/2^(-tcp_adv_win_scale),
361	if it is <= 0.
362
363	Possible values are [-31, 31], inclusive.
364
365	Default: 1
366
367tcp_allowed_congestion_control - STRING
368	Show/set the congestion control choices available to non-privileged
369	processes. The list is a subset of those listed in
370	tcp_available_congestion_control.
371
372	Default is "reno" and the default setting (tcp_congestion_control).
373
374tcp_app_win - INTEGER
375	Reserve max(window/2^tcp_app_win, mss) of window for application
376	buffer. Value 0 is special, it means that nothing is reserved.
377
378	Possible values are [0, 31], inclusive.
379
380	Default: 31
381
382tcp_autocorking - BOOLEAN
383	Enable TCP auto corking :
384	When applications do consecutive small write()/sendmsg() system calls,
385	we try to coalesce these small writes as much as possible, to lower
386	total amount of sent packets. This is done if at least one prior
387	packet for the flow is waiting in Qdisc queues or device transmit
388	queue. Applications can still use TCP_CORK for optimal behavior
389	when they know how/when to uncork their sockets.
390
391	Possible values:
392
393	- 0 (disabled)
394	- 1 (enabled)
395
396	Default: 1 (enabled)
397
398tcp_available_congestion_control - STRING
399	Shows the available congestion control choices that are registered.
400	More congestion control algorithms may be available as modules,
401	but not loaded.
402
403tcp_base_mss - INTEGER
404	The initial value of search_low to be used by the packetization layer
405	Path MTU discovery (MTU probing).  If MTU probing is enabled,
406	this is the initial MSS used by the connection.
407
408tcp_mtu_probe_floor - INTEGER
409	If MTU probing is enabled this caps the minimum MSS used for search_low
410	for the connection.
411
412	Default : 48
413
414tcp_min_snd_mss - INTEGER
415	TCP SYN and SYNACK messages usually advertise an ADVMSS option,
416	as described in RFC 1122 and RFC 6691.
417
418	If this ADVMSS option is smaller than tcp_min_snd_mss,
419	it is silently capped to tcp_min_snd_mss.
420
421	Default : 48 (at least 8 bytes of payload per segment)
422
423tcp_congestion_control - STRING
424	Set the congestion control algorithm to be used for new
425	connections. The algorithm "reno" is always available, but
426	additional choices may be available based on kernel configuration.
427	Default is set as part of kernel configuration.
428	For passive connections, the listener congestion control choice
429	is inherited.
430
431	[see setsockopt(listenfd, SOL_TCP, TCP_CONGESTION, "name" ...) ]
432
433tcp_dsack - BOOLEAN
434	Allows TCP to send "duplicate" SACKs.
435
436	Possible values:
437
438	- 0 (disabled)
439	- 1 (enabled)
440
441	Default: 1 (enabled)
442
443tcp_early_retrans - INTEGER
444	Tail loss probe (TLP) converts RTOs occurring due to tail
445	losses into fast recovery (RFC8985). Note that
446	TLP requires RACK to function properly (see tcp_recovery below)
447
448	Possible values:
449
450		- 0 disables TLP
451		- 3 or 4 enables TLP
452
453	Default: 3
454
455tcp_ecn - INTEGER
456	Control use of Explicit Congestion Notification (ECN) by TCP.
457	ECN is used only when both ends of the TCP connection indicate support
458	for it. This feature is useful in avoiding losses due to congestion by
459	allowing supporting routers to signal congestion before having to drop
460	packets. A host that supports ECN both sends ECN at the IP layer and
461	feeds back ECN at the TCP layer. The highest variant of ECN feedback
462	that both peers support is chosen by the ECN negotiation (Accurate ECN,
463	ECN, or no ECN).
464
465	The highest negotiated variant for incoming connection requests
466	and the highest variant requested by outgoing connection
467	attempts:
468
469	===== ==================== ====================
470	Value Incoming connections Outgoing connections
471	===== ==================== ====================
472	0     No ECN               No ECN
473	1     ECN                  ECN
474	2     ECN                  No ECN
475	3     AccECN               AccECN
476	4     AccECN               ECN
477	5     AccECN               No ECN
478	===== ==================== ====================
479
480	Default: 2
481
482tcp_ecn_option - INTEGER
483	Control Accurate ECN (AccECN) option sending when AccECN has been
484	successfully negotiated during handshake. Send logic inhibits
485	sending AccECN options regarless of this setting when no AccECN
486	option has been seen for the reverse direction.
487
488	Possible values are:
489
490	= ============================================================
491	0 Never send AccECN option. This also disables sending AccECN
492	  option in SYN/ACK during handshake.
493	1 Send AccECN option sparingly according to the minimum option
494	  rules outlined in draft-ietf-tcpm-accurate-ecn.
495	2 Send AccECN option on every packet whenever it fits into TCP
496	  option space except when AccECN fallback is triggered.
497	3 Send AccECN option on every packet whenever it fits into TCP
498	  option space even when AccECN fallback is triggered.
499	= ============================================================
500
501	Default: 2
502
503tcp_ecn_option_beacon - INTEGER
504	Control Accurate ECN (AccECN) option sending frequency per RTT and it
505	takes effect only when tcp_ecn_option is set to 2.
506
507	Default: 3 (AccECN will be send at least 3 times per RTT)
508
509tcp_ecn_fallback - BOOLEAN
510	If the kernel detects that ECN connection misbehaves, enable fall
511	back to non-ECN. Currently, this knob implements the fallback
512	from RFC3168, section 6.1.1.1., but we reserve that in future,
513	additional detection mechanisms could be implemented under this
514	knob. The value	is not used, if tcp_ecn or per route (or congestion
515	control) ECN settings are disabled.
516
517	Possible values:
518
519	- 0 (disabled)
520	- 1 (enabled)
521
522	Default: 1 (enabled)
523
524tcp_fack - BOOLEAN
525	This is a legacy option, it has no effect anymore.
526
527tcp_fin_timeout - INTEGER
528	The length of time an orphaned (no longer referenced by any
529	application) connection will remain in the FIN_WAIT_2 state
530	before it is aborted at the local end.  While a perfectly
531	valid "receive only" state for an un-orphaned connection, an
532	orphaned connection in FIN_WAIT_2 state could otherwise wait
533	forever for the remote to close its end of the connection.
534
535	Cf. tcp_max_orphans
536
537	Default: 60 seconds
538
539tcp_frto - INTEGER
540	Enables Forward RTO-Recovery (F-RTO) defined in RFC5682.
541	F-RTO is an enhanced recovery algorithm for TCP retransmission
542	timeouts.  It is particularly beneficial in networks where the
543	RTT fluctuates (e.g., wireless). F-RTO is sender-side only
544	modification. It does not require any support from the peer.
545
546	By default it's enabled with a non-zero value. 0 disables F-RTO.
547
548tcp_fwmark_accept - BOOLEAN
549	If enabled, incoming connections to listening sockets that do not have a
550	socket mark will set the mark of the accepting socket to the fwmark of
551	the incoming SYN packet. This will cause all packets on that connection
552	(starting from the first SYNACK) to be sent with that fwmark. The
553	listening socket's mark is unchanged. Listening sockets that already
554	have a fwmark set via setsockopt(SOL_SOCKET, SO_MARK, ...) are
555	unaffected.
556
557	Possible values:
558
559	- 0 (disabled)
560	- 1 (enabled)
561
562	Default: 0 (disabled)
563
564tcp_invalid_ratelimit - INTEGER
565	Limit the maximal rate for sending duplicate acknowledgments
566	in response to incoming TCP packets that are for an existing
567	connection but that are invalid due to any of these reasons:
568
569	  (a) out-of-window sequence number,
570	  (b) out-of-window acknowledgment number, or
571	  (c) PAWS (Protection Against Wrapped Sequence numbers) check failure
572
573	This can help mitigate simple "ack loop" DoS attacks, wherein
574	a buggy or malicious middlebox or man-in-the-middle can
575	rewrite TCP header fields in manner that causes each endpoint
576	to think that the other is sending invalid TCP segments, thus
577	causing each side to send an unterminating stream of duplicate
578	acknowledgments for invalid segments.
579
580	Using 0 disables rate-limiting of dupacks in response to
581	invalid segments; otherwise this value specifies the minimal
582	space between sending such dupacks, in milliseconds.
583
584	Default: 500 (milliseconds).
585
586tcp_keepalive_time - INTEGER
587	How often TCP sends out keepalive messages when keepalive is enabled.
588	Default: 2hours.
589
590tcp_keepalive_probes - INTEGER
591	How many keepalive probes TCP sends out, until it decides that the
592	connection is broken. Default value: 9.
593
594tcp_keepalive_intvl - INTEGER
595	How frequently the probes are send out. Multiplied by
596	tcp_keepalive_probes it is time to kill not responding connection,
597	after probes started. Default value: 75sec i.e. connection
598	will be aborted after ~11 minutes of retries.
599
600tcp_l3mdev_accept - BOOLEAN
601	Enables child sockets to inherit the L3 master device index.
602	Enabling this option allows a "global" listen socket to work
603	across L3 master domains (e.g., VRFs) with connected sockets
604	derived from the listen socket to be bound to the L3 domain in
605	which the packets originated. Only valid when the kernel was
606	compiled with CONFIG_NET_L3_MASTER_DEV.
607
608	Possible values:
609
610	- 0 (disabled)
611	- 1 (enabled)
612
613	Default: 0 (disabled)
614
615tcp_low_latency - BOOLEAN
616	This is a legacy option, it has no effect anymore.
617
618tcp_max_orphans - INTEGER
619	Maximal number of TCP sockets not attached to any user file handle,
620	held by system.	If this number is exceeded orphaned connections are
621	reset immediately and warning is printed. This limit exists
622	only to prevent simple DoS attacks, you _must_ not rely on this
623	or lower the limit artificially, but rather increase it
624	(probably, after increasing installed memory),
625	if network conditions require more than default value,
626	and tune network services to linger and kill such states
627	more aggressively. Let me to remind again: each orphan eats
628	up to ~64K of unswappable memory.
629
630tcp_max_syn_backlog - INTEGER
631	Maximal number of remembered connection requests (SYN_RECV),
632	which have not received an acknowledgment from connecting client.
633
634	This is a per-listener limit.
635
636	The minimal value is 128 for low memory machines, and it will
637	increase in proportion to the memory of machine.
638
639	If server suffers from overload, try increasing this number.
640
641	Remember to also check /proc/sys/net/core/somaxconn
642	A SYN_RECV request socket consumes about 304 bytes of memory.
643
644tcp_max_tw_buckets - INTEGER
645	Maximal number of timewait sockets held by system simultaneously.
646	If this number is exceeded time-wait socket is immediately destroyed
647	and warning is printed. This limit exists only to prevent
648	simple DoS attacks, you _must_ not lower the limit artificially,
649	but rather increase it (probably, after increasing installed memory),
650	if network conditions require more than default value.
651
652tcp_mem - vector of 3 INTEGERs: min, pressure, max
653	min: below this number of pages TCP is not bothered about its
654	memory appetite.
655
656	pressure: when amount of memory allocated by TCP exceeds this number
657	of pages, TCP moderates its memory consumption and enters memory
658	pressure mode, which is exited when memory consumption falls
659	under "min".
660
661	max: number of pages allowed for queueing by all TCP sockets.
662
663	Defaults are calculated at boot time from amount of available
664	memory.
665
666tcp_min_rtt_wlen - INTEGER
667	The window length of the windowed min filter to track the minimum RTT.
668	A shorter window lets a flow more quickly pick up new (higher)
669	minimum RTT when it is moved to a longer path (e.g., due to traffic
670	engineering). A longer window makes the filter more resistant to RTT
671	inflations such as transient congestion. The unit is seconds.
672
673	Possible values: 0 - 86400 (1 day)
674
675	Default: 300
676
677tcp_moderate_rcvbuf - BOOLEAN
678	If enabled, TCP performs receive buffer auto-tuning, attempting to
679	automatically size the buffer (no greater than tcp_rmem[2]) to
680	match the size required by the path for full throughput.
681
682	Possible values:
683
684	- 0 (disabled)
685	- 1 (enabled)
686
687	Default: 1 (enabled)
688
689tcp_rcvbuf_low_rtt - INTEGER
690	rcvbuf autotuning can over estimate final socket rcvbuf, which
691	can lead to cache trashing for high throughput flows.
692
693	For small RTT flows (below tcp_rcvbuf_low_rtt usecs), we can relax
694	rcvbuf growth: Few additional ms to reach the final (and smaller)
695	rcvbuf is a good tradeoff.
696
697	Default : 1000 (1 ms)
698
699tcp_mtu_probing - INTEGER
700	Controls TCP Packetization-Layer Path MTU Discovery.  Takes three
701	values:
702
703	- 0 - Disabled
704	- 1 - Disabled by default, enabled when an ICMP black hole detected
705	- 2 - Always enabled, use initial MSS of tcp_base_mss.
706
707tcp_probe_interval - UNSIGNED INTEGER
708	Controls how often to start TCP Packetization-Layer Path MTU
709	Discovery reprobe. The default is reprobing every 10 minutes as
710	per RFC4821.
711
712tcp_probe_threshold - INTEGER
713	Controls when TCP Packetization-Layer Path MTU Discovery probing
714	will stop in respect to the width of search range in bytes. Default
715	is 8 bytes.
716
717tcp_no_metrics_save - BOOLEAN
718	By default, TCP saves various connection metrics in the route cache
719	when the connection closes, so that connections established in the
720	near future can use these to set initial conditions.  Usually, this
721	increases overall performance, but may sometimes cause performance
722	degradation.  If enabled, TCP will not cache metrics on closing
723	connections.
724
725	Possible values:
726
727	- 0 (disabled)
728	- 1 (enabled)
729
730	Default: 0 (disabled)
731
732tcp_no_ssthresh_metrics_save - BOOLEAN
733	Controls whether TCP saves ssthresh metrics in the route cache.
734	If enabled, ssthresh metrics are disabled.
735
736	Possible values:
737
738	- 0 (disabled)
739	- 1 (enabled)
740
741	Default: 1 (enabled)
742
743tcp_orphan_retries - INTEGER
744	This value influences the timeout of a locally closed TCP connection,
745	when RTO retransmissions remain unacknowledged.
746	See tcp_retries2 for more details.
747
748	The default value is 8.
749
750	If your machine is a loaded WEB server,
751	you should think about lowering this value, such sockets
752	may consume significant resources. Cf. tcp_max_orphans.
753
754tcp_recovery - INTEGER
755	This value is a bitmap to enable various experimental loss recovery
756	features.
757
758	=========   =============================================================
759	RACK: 0x1   enables RACK loss detection, for fast detection of lost
760		    retransmissions and tail drops, and resilience to
761		    reordering. currently, setting this bit to 0 has no
762		    effect, since RACK is the only supported loss detection
763		    algorithm.
764
765	RACK: 0x2   makes RACK's reordering window static (min_rtt/4).
766
767	RACK: 0x4   disables RACK's DUPACK threshold heuristic
768	=========   =============================================================
769
770	Default: 0x1
771
772tcp_reflect_tos - BOOLEAN
773	For listening sockets, reuse the DSCP value of the initial SYN message
774	for outgoing packets. This allows to have both directions of a TCP
775	stream to use the same DSCP value, assuming DSCP remains unchanged for
776	the lifetime of the connection.
777
778	This options affects both IPv4 and IPv6.
779
780	Possible values:
781
782	- 0 (disabled)
783	- 1 (enabled)
784
785	Default: 0 (disabled)
786
787tcp_reordering - INTEGER
788	Initial reordering level of packets in a TCP stream.
789	TCP stack can then dynamically adjust flow reordering level
790	between this initial value and tcp_max_reordering
791
792	Default: 3
793
794tcp_max_reordering - INTEGER
795	Maximal reordering level of packets in a TCP stream.
796	300 is a fairly conservative value, but you might increase it
797	if paths are using per packet load balancing (like bonding rr mode)
798
799	Default: 300
800
801tcp_retrans_collapse - BOOLEAN
802	Bug-to-bug compatibility with some broken printers.
803	On retransmit try to send bigger packets to work around bugs in
804	certain TCP stacks.
805
806	Possible values:
807
808	- 0 (disabled)
809	- 1 (enabled)
810
811	Default: 1 (enabled)
812
813tcp_retries1 - INTEGER
814	This value influences the time, after which TCP decides, that
815	something is wrong due to unacknowledged RTO retransmissions,
816	and reports this suspicion to the network layer.
817	See tcp_retries2 for more details.
818
819	RFC 1122 recommends at least 3 retransmissions, which is the
820	default.
821
822tcp_retries2 - INTEGER
823	This value influences the timeout of an alive TCP connection,
824	when RTO retransmissions remain unacknowledged.
825	Given a value of N, a hypothetical TCP connection following
826	exponential backoff with an initial RTO of TCP_RTO_MIN would
827	retransmit N times before killing the connection at the (N+1)th RTO.
828
829	The default value of 15 yields a hypothetical timeout of 924.6
830	seconds and is a lower bound for the effective timeout.
831	TCP will effectively time out at the first RTO which exceeds the
832	hypothetical timeout.
833	If tcp_rto_max_ms is decreased, it is recommended to also
834	change tcp_retries2.
835
836	RFC 1122 recommends at least 100 seconds for the timeout,
837	which corresponds to a value of at least 8.
838
839tcp_rfc1337 - BOOLEAN
840	If enabled, the TCP stack behaves conforming to RFC1337. If unset,
841	we are not conforming to RFC, but prevent TCP TIME_WAIT
842	assassination.
843
844	Possible values:
845
846	- 0 (disabled)
847	- 1 (enabled)
848
849	Default: 0 (disabled)
850
851tcp_rmem - vector of 3 INTEGERs: min, default, max
852	min: Minimal size of receive buffer used by TCP sockets.
853	It is guaranteed to each TCP socket, even under moderate memory
854	pressure.
855
856	Default: 4K
857
858	default: initial size of receive buffer used by TCP sockets.
859	This value overrides net.core.rmem_default used by other protocols.
860	Default: 131072 bytes.
861	This value results in initial window of 65535.
862
863	max: maximal size of receive buffer allowed for automatically
864	selected receiver buffers for TCP socket.
865	Calling setsockopt() with SO_RCVBUF disables
866	automatic tuning of that socket's receive buffer size, in which
867	case this value is ignored.
868	Default: between 131072 and 32MB, depending on RAM size.
869
870tcp_sack - BOOLEAN
871	Enable select acknowledgments (SACKS).
872
873	Possible values:
874
875	- 0 (disabled)
876	- 1 (enabled)
877
878	Default: 1 (enabled)
879
880tcp_comp_sack_rtt_percent - INTEGER
881	Percentage of SRTT used for the compressed SACK feature.
882	See tcp_comp_sack_nr, tcp_comp_sack_delay_ns, tcp_comp_sack_slack_ns.
883
884	Possible values : 1 - 1000
885
886	Default : 33 %
887
888tcp_comp_sack_delay_ns - LONG INTEGER
889	TCP tries to reduce number of SACK sent, using a timer based
890	on tcp_comp_sack_rtt_percent of SRTT, capped by this sysctl
891	in nano seconds.
892	The default is 1ms, based on TSO autosizing period.
893
894	Default : 1,000,000 ns (1 ms)
895
896tcp_comp_sack_slack_ns - LONG INTEGER
897	This sysctl control the slack used when arming the
898	timer used by SACK compression. This gives extra time
899	for small RTT flows, and reduces system overhead by allowing
900	opportunistic reduction of timer interrupts.
901	Too big values might reduce goodput.
902
903	Default : 10,000 ns (10 us)
904
905tcp_comp_sack_nr - INTEGER
906	Max number of SACK that can be compressed.
907	Using 0 disables SACK compression.
908
909	Default : 44
910
911tcp_backlog_ack_defer - BOOLEAN
912	If enabled, user thread processing socket backlog tries sending
913	one ACK for the whole queue. This helps to avoid potential
914	long latencies at end of a TCP socket syscall.
915
916	Possible values:
917
918	- 0 (disabled)
919	- 1 (enabled)
920
921	Default: 1 (enabled)
922
923tcp_slow_start_after_idle - BOOLEAN
924	If enabled, provide RFC2861 behavior and time out the congestion
925	window after an idle period.  An idle period is defined at
926	the current RTO.  If unset, the congestion window will not
927	be timed out after an idle period.
928
929	Possible values:
930
931	- 0 (disabled)
932	- 1 (enabled)
933
934	Default: 1 (enabled)
935
936tcp_stdurg - BOOLEAN
937	Use the Host requirements interpretation of the TCP urgent pointer field.
938	Most hosts use the older BSD interpretation, so if enabled,
939	Linux might not communicate correctly with them.
940
941	Possible values:
942
943	- 0 (disabled)
944	- 1 (enabled)
945
946	Default: 0 (disabled)
947
948tcp_synack_retries - INTEGER
949	Number of times SYNACKs for a passive TCP connection attempt will
950	be retransmitted. Should not be higher than 255. Default value
951	is 5, which corresponds to 31seconds till the last retransmission
952	with the current initial RTO of 1second. With this the final timeout
953	for a passive TCP connection will happen after 63seconds.
954
955tcp_syncookies - INTEGER
956	Only valid when the kernel was compiled with CONFIG_SYN_COOKIES
957	Send out syncookies when the syn backlog queue of a socket
958	overflows. This is to prevent against the common 'SYN flood attack'
959	Default: 1
960
961	Note, that syncookies is fallback facility.
962	It MUST NOT be used to help highly loaded servers to stand
963	against legal connection rate. If you see SYN flood warnings
964	in your logs, but investigation	shows that they occur
965	because of overload with legal connections, you should tune
966	another parameters until this warning disappear.
967	See: tcp_max_syn_backlog, tcp_synack_retries, tcp_abort_on_overflow.
968
969	syncookies seriously violate TCP protocol, do not allow
970	to use TCP extensions, can result in serious degradation
971	of some services (f.e. SMTP relaying), visible not by you,
972	but your clients and relays, contacting you. While you see
973	SYN flood warnings in logs not being really flooded, your server
974	is seriously misconfigured.
975
976	If you want to test which effects syncookies have to your
977	network connections you can set this knob to 2 to enable
978	unconditionally generation of syncookies.
979
980tcp_migrate_req - BOOLEAN
981	The incoming connection is tied to a specific listening socket when
982	the initial SYN packet is received during the three-way handshake.
983	When a listener is closed, in-flight request sockets during the
984	handshake and established sockets in the accept queue are aborted.
985
986	If the listener has SO_REUSEPORT enabled, other listeners on the
987	same port should have been able to accept such connections. This
988	option makes it possible to migrate such child sockets to another
989	listener after close() or shutdown().
990
991	The BPF_SK_REUSEPORT_SELECT_OR_MIGRATE type of eBPF program should
992	usually be used to define the policy to pick an alive listener.
993	Otherwise, the kernel will randomly pick an alive listener only if
994	this option is enabled.
995
996	Note that migration between listeners with different settings may
997	crash applications. Let's say migration happens from listener A to
998	B, and only B has TCP_SAVE_SYN enabled. B cannot read SYN data from
999	the requests migrated from A. To avoid such a situation, cancel
1000	migration by returning SK_DROP in the type of eBPF program, or
1001	disable this option.
1002
1003	Possible values:
1004
1005	- 0 (disabled)
1006	- 1 (enabled)
1007
1008	Default: 0 (disabled)
1009
1010tcp_fastopen - INTEGER
1011	Enable TCP Fast Open (RFC7413) to send and accept data in the opening
1012	SYN packet.
1013
1014	The client support is enabled by flag 0x1 (on by default). The client
1015	then must use sendmsg() or sendto() with the MSG_FASTOPEN flag,
1016	rather than connect() to send data in SYN.
1017
1018	The server support is enabled by flag 0x2 (off by default). Then
1019	either enable for all listeners with another flag (0x400) or
1020	enable individual listeners via TCP_FASTOPEN socket option with
1021	the option value being the length of the syn-data backlog.
1022
1023	The values (bitmap) are
1024
1025	=====  ======== ======================================================
1026	  0x1  (client) enables sending data in the opening SYN on the client.
1027	  0x2  (server) enables the server support, i.e., allowing data in
1028			a SYN packet to be accepted and passed to the
1029			application before 3-way handshake finishes.
1030	  0x4  (client) send data in the opening SYN regardless of cookie
1031			availability and without a cookie option.
1032	0x200  (server) accept data-in-SYN w/o any cookie option present.
1033	0x400  (server) enable all listeners to support Fast Open by
1034			default without explicit TCP_FASTOPEN socket option.
1035	=====  ======== ======================================================
1036
1037	Default: 0x1
1038
1039	Note that additional client or server features are only
1040	effective if the basic support (0x1 and 0x2) are enabled respectively.
1041
1042tcp_fastopen_blackhole_timeout_sec - INTEGER
1043	Initial time period in second to disable Fastopen on active TCP sockets
1044	when a TFO firewall blackhole issue happens.
1045	This time period will grow exponentially when more blackhole issues
1046	get detected right after Fastopen is re-enabled and will reset to
1047	initial value when the blackhole issue goes away.
1048	0 to disable the blackhole detection.
1049
1050	By default, it is set to 0 (feature is disabled).
1051
1052tcp_fastopen_key - list of comma separated 32-digit hexadecimal INTEGERs
1053	The list consists of a primary key and an optional backup key. The
1054	primary key is used for both creating and validating cookies, while the
1055	optional backup key is only used for validating cookies. The purpose of
1056	the backup key is to maximize TFO validation when keys are rotated.
1057
1058	A randomly chosen primary key may be configured by the kernel if
1059	the tcp_fastopen sysctl is set to 0x400 (see above), or if the
1060	TCP_FASTOPEN setsockopt() optname is set and a key has not been
1061	previously configured via sysctl. If keys are configured via
1062	setsockopt() by using the TCP_FASTOPEN_KEY optname, then those
1063	per-socket keys will be used instead of any keys that are specified via
1064	sysctl.
1065
1066	A key is specified as 4 8-digit hexadecimal integers which are separated
1067	by a '-' as: xxxxxxxx-xxxxxxxx-xxxxxxxx-xxxxxxxx. Leading zeros may be
1068	omitted. A primary and a backup key may be specified by separating them
1069	by a comma. If only one key is specified, it becomes the primary key and
1070	any previously configured backup keys are removed.
1071
1072tcp_syn_retries - INTEGER
1073	Number of times initial SYNs for an active TCP connection attempt
1074	will be retransmitted. Should not be higher than 127. Default value
1075	is 6, which corresponds to 67seconds (with tcp_syn_linear_timeouts = 4)
1076	till the last retransmission with the current initial RTO of 1second.
1077	With this the final timeout for an active TCP connection attempt
1078	will happen after 131seconds.
1079
1080tcp_timestamps - INTEGER
1081	Enable timestamps as defined in RFC1323.
1082
1083	- 0: Disabled.
1084	- 1: Enable timestamps as defined in RFC1323 and use random offset for
1085	  each connection rather than only using the current time.
1086	- 2: Like 1, but without random offsets.
1087
1088	Default: 1
1089
1090tcp_min_tso_segs - INTEGER
1091	Minimal number of segments per TSO frame.
1092
1093	Since linux-3.12, TCP does an automatic sizing of TSO frames,
1094	depending on flow rate, instead of filling 64Kbytes packets.
1095	For specific usages, it's possible to force TCP to build big
1096	TSO frames. Note that TCP stack might split too big TSO packets
1097	if available window is too small.
1098
1099	Default: 2
1100
1101tcp_tso_rtt_log - INTEGER
1102	Adjustment of TSO packet sizes based on min_rtt
1103
1104	Starting from linux-5.18, TCP autosizing can be tweaked
1105	for flows having small RTT.
1106
1107	Old autosizing was splitting the pacing budget to send 1024 TSO
1108	per second.
1109
1110	tso_packet_size = sk->sk_pacing_rate / 1024;
1111
1112	With the new mechanism, we increase this TSO sizing using:
1113
1114	distance = min_rtt_usec / (2^tcp_tso_rtt_log)
1115	tso_packet_size += gso_max_size >> distance;
1116
1117	This means that flows between very close hosts can use bigger
1118	TSO packets, reducing their cpu costs.
1119
1120	If you want to use the old autosizing, set this sysctl to 0.
1121
1122	Default: 9  (2^9 = 512 usec)
1123
1124tcp_pacing_ss_ratio - INTEGER
1125	sk->sk_pacing_rate is set by TCP stack using a ratio applied
1126	to current rate. (current_rate = cwnd * mss / srtt)
1127	If TCP is in slow start, tcp_pacing_ss_ratio is applied
1128	to let TCP probe for bigger speeds, assuming cwnd can be
1129	doubled every other RTT.
1130
1131	Default: 200
1132
1133tcp_pacing_ca_ratio - INTEGER
1134	sk->sk_pacing_rate is set by TCP stack using a ratio applied
1135	to current rate. (current_rate = cwnd * mss / srtt)
1136	If TCP is in congestion avoidance phase, tcp_pacing_ca_ratio
1137	is applied to conservatively probe for bigger throughput.
1138
1139	Default: 120
1140
1141tcp_syn_linear_timeouts - INTEGER
1142	The number of times for an active TCP connection to retransmit SYNs with
1143	a linear backoff timeout before defaulting to an exponential backoff
1144	timeout. This has no effect on SYNACK at the passive TCP side.
1145
1146	With an initial RTO of 1 and tcp_syn_linear_timeouts = 4 we would
1147	expect SYN RTOs to be: 1, 1, 1, 1, 1, 2, 4, ... (4 linear timeouts,
1148	and the first exponential backoff using 2^0 * initial_RTO).
1149	Default: 4
1150
1151tcp_tso_win_divisor - INTEGER
1152	This allows control over what percentage of the congestion window
1153	can be consumed by a single TSO frame.
1154	The setting of this parameter is a choice between burstiness and
1155	building larger TSO frames.
1156
1157	Default: 3
1158
1159tcp_tw_reuse - INTEGER
1160	Enable reuse of TIME-WAIT sockets for new connections when it is
1161	safe from protocol viewpoint.
1162
1163	- 0 - disable
1164	- 1 - global enable
1165	- 2 - enable for loopback traffic only
1166
1167	It should not be changed without advice/request of technical
1168	experts.
1169
1170	Default: 2
1171
1172tcp_tw_reuse_delay - UNSIGNED INTEGER
1173        The delay in milliseconds before a TIME-WAIT socket can be reused by a
1174        new connection, if TIME-WAIT socket reuse is enabled. The actual reuse
1175        threshold is within [N, N+1] range, where N is the requested delay in
1176        milliseconds, to ensure the delay interval is never shorter than the
1177        configured value.
1178
1179        This setting contains an assumption about the other TCP timestamp clock
1180        tick interval. It should not be set to a value lower than the peer's
1181        clock tick for PAWS (Protection Against Wrapped Sequence numbers)
1182        mechanism work correctly for the reused connection.
1183
1184        Default: 1000 (milliseconds)
1185
1186tcp_window_scaling - BOOLEAN
1187	Enable window scaling as defined in RFC1323.
1188
1189	Possible values:
1190
1191	- 0 (disabled)
1192	- 1 (enabled)
1193
1194	Default: 1 (enabled)
1195
1196tcp_shrink_window - BOOLEAN
1197	This changes how the TCP receive window is calculated.
1198
1199	RFC 7323, section 2.4, says there are instances when a retracted
1200	window can be offered, and that TCP implementations MUST ensure
1201	that they handle a shrinking window, as specified in RFC 1122.
1202
1203	Possible values:
1204
1205	- 0 (disabled) - The window is never shrunk.
1206	- 1 (enabled)  - The window is shrunk when necessary to remain within
1207	  the memory limit set by autotuning (sk_rcvbuf).
1208	  This only occurs if a non-zero receive window
1209	  scaling factor is also in effect.
1210
1211	Default: 0 (disabled)
1212
1213tcp_wmem - vector of 3 INTEGERs: min, default, max
1214	min: Amount of memory reserved for send buffers for TCP sockets.
1215	Each TCP socket has rights to use it due to fact of its birth.
1216
1217	Default: 4K
1218
1219	default: initial size of send buffer used by TCP sockets.  This
1220	value overrides net.core.wmem_default used by other protocols.
1221
1222	It is usually lower than net.core.wmem_default.
1223
1224	Default: 16K
1225
1226	max: Maximal amount of memory allowed for automatically tuned
1227	send buffers for TCP sockets. This value does not override
1228	net.core.wmem_max.  Calling setsockopt() with SO_SNDBUF disables
1229	automatic tuning of that socket's send buffer size, in which case
1230	this value is ignored.
1231
1232	Default: between 64K and 4MB, depending on RAM size.
1233
1234tcp_notsent_lowat - UNSIGNED INTEGER
1235	A TCP socket can control the amount of unsent bytes in its write queue,
1236	thanks to TCP_NOTSENT_LOWAT socket option. poll()/select()/epoll()
1237	reports POLLOUT events if the amount of unsent bytes is below a per
1238	socket value, and if the write queue is not full. sendmsg() will
1239	also not add new buffers if the limit is hit.
1240
1241	This global variable controls the amount of unsent data for
1242	sockets not using TCP_NOTSENT_LOWAT. For these sockets, a change
1243	to the global variable has immediate effect.
1244
1245	Default: UINT_MAX (0xFFFFFFFF)
1246
1247tcp_workaround_signed_windows - BOOLEAN
1248	If enabled, assume no receipt of a window scaling option means the
1249	remote TCP is broken and treats the window as a signed quantity.
1250	If disabled, assume the remote TCP is not broken even if we do
1251	not receive a window scaling option from them.
1252
1253	Possible values:
1254
1255	- 0 (disabled)
1256	- 1 (enabled)
1257
1258	Default: 0 (disabled)
1259
1260tcp_thin_linear_timeouts - BOOLEAN
1261	Enable dynamic triggering of linear timeouts for thin streams.
1262	If enabled, a check is performed upon retransmission by timeout to
1263	determine if the stream is thin (less than 4 packets in flight).
1264	As long as the stream is found to be thin, up to 6 linear
1265	timeouts may be performed before exponential backoff mode is
1266	initiated. This improves retransmission latency for
1267	non-aggressive thin streams, often found to be time-dependent.
1268	For more information on thin streams, see
1269	Documentation/networking/tcp-thin.rst
1270
1271	Possible values:
1272
1273	- 0 (disabled)
1274	- 1 (enabled)
1275
1276	Default: 0 (disabled)
1277
1278tcp_limit_output_bytes - INTEGER
1279	Controls TCP Small Queue limit per tcp socket.
1280	TCP bulk sender tends to increase packets in flight until it
1281	gets losses notifications. With SNDBUF autotuning, this can
1282	result in a large amount of packets queued on the local machine
1283	(e.g.: qdiscs, CPU backlog, or device) hurting latency of other
1284	flows, for typical pfifo_fast qdiscs.  tcp_limit_output_bytes
1285	limits the number of bytes on qdisc or device to reduce artificial
1286	RTT/cwnd and reduce bufferbloat.
1287
1288	Default: 4194304 (4 MB)
1289
1290tcp_challenge_ack_limit - INTEGER
1291	Limits number of Challenge ACK sent per second, as recommended
1292	in RFC 5961 (Improving TCP's Robustness to Blind In-Window Attacks)
1293	Note that this per netns rate limit can allow some side channel
1294	attacks and probably should not be enabled.
1295	TCP stack implements per TCP socket limits anyway.
1296	Default: INT_MAX (unlimited)
1297
1298tcp_ehash_entries - INTEGER
1299	Show the number of hash buckets for TCP sockets in the current
1300	networking namespace.
1301
1302	A negative value means the networking namespace does not own its
1303	hash buckets and shares the initial networking namespace's one.
1304
1305tcp_child_ehash_entries - INTEGER
1306	Control the number of hash buckets for TCP sockets in the child
1307	networking namespace, which must be set before clone() or unshare().
1308
1309	If the value is not 0, the kernel uses a value rounded up to 2^n
1310	as the actual hash bucket size.  0 is a special value, meaning
1311	the child networking namespace will share the initial networking
1312	namespace's hash buckets.
1313
1314	Note that the child will use the global one in case the kernel
1315	fails to allocate enough memory.  In addition, the global hash
1316	buckets are spread over available NUMA nodes, but the allocation
1317	of the child hash table depends on the current process's NUMA
1318	policy, which could result in performance differences.
1319
1320	Note also that the default value of tcp_max_tw_buckets and
1321	tcp_max_syn_backlog depend on the hash bucket size.
1322
1323	Possible values: 0, 2^n (n: 0 - 24 (16Mi))
1324
1325	Default: 0
1326
1327tcp_plb_enabled - BOOLEAN
1328	If enabled and the underlying congestion control (e.g. DCTCP) supports
1329	and enables PLB feature, TCP PLB (Protective Load Balancing) is
1330	enabled. PLB is described in the following paper:
1331	https://doi.org/10.1145/3544216.3544226. Based on PLB parameters,
1332	upon sensing sustained congestion, TCP triggers a change in
1333	flow label field for outgoing IPv6 packets. A change in flow label
1334	field potentially changes the path of outgoing packets for switches
1335	that use ECMP/WCMP for routing.
1336
1337	PLB changes socket txhash which results in a change in IPv6 Flow Label
1338	field, and currently no-op for IPv4 headers. It is possible
1339	to apply PLB for IPv4 with other network header fields (e.g. TCP
1340	or IPv4 options) or using encapsulation where outer header is used
1341	by switches to determine next hop. In either case, further host
1342	and switch side changes will be needed.
1343
1344	If enabled, PLB assumes that congestion signal (e.g. ECN) is made
1345	available and used by congestion control module to estimate a
1346	congestion measure (e.g. ce_ratio). PLB needs a congestion measure to
1347	make repathing decisions.
1348
1349	Possible values:
1350
1351	- 0 (disabled)
1352	- 1 (enabled)
1353
1354	Default: 0 (disabled)
1355
1356tcp_plb_idle_rehash_rounds - INTEGER
1357	Number of consecutive congested rounds (RTT) seen after which
1358	a rehash can be performed, given there are no packets in flight.
1359	This is referred to as M in PLB paper:
1360	https://doi.org/10.1145/3544216.3544226.
1361
1362	Possible Values: 0 - 31
1363
1364	Default: 3
1365
1366tcp_plb_rehash_rounds - INTEGER
1367	Number of consecutive congested rounds (RTT) seen after which
1368	a forced rehash can be performed. Be careful when setting this
1369	parameter, as a small value increases the risk of retransmissions.
1370	This is referred to as N in PLB paper:
1371	https://doi.org/10.1145/3544216.3544226.
1372
1373	Possible Values: 0 - 31
1374
1375	Default: 12
1376
1377tcp_plb_suspend_rto_sec - INTEGER
1378	Time, in seconds, to suspend PLB in event of an RTO. In order to avoid
1379	having PLB repath onto a connectivity "black hole", after an RTO a TCP
1380	connection suspends PLB repathing for a random duration between 1x and
1381	2x of this parameter. Randomness is added to avoid concurrent rehashing
1382	of multiple TCP connections. This should be set corresponding to the
1383	amount of time it takes to repair a failed link.
1384
1385	Possible Values: 0 - 255
1386
1387	Default: 60
1388
1389tcp_plb_cong_thresh - INTEGER
1390	Fraction of packets marked with congestion over a round (RTT) to
1391	tag that round as congested. This is referred to as K in the PLB paper:
1392	https://doi.org/10.1145/3544216.3544226.
1393
1394	The 0-1 fraction range is mapped to 0-256 range to avoid floating
1395	point operations. For example, 128 means that if at least 50% of
1396	the packets in a round were marked as congested then the round
1397	will be tagged as congested.
1398
1399	Setting threshold to 0 means that PLB repaths every RTT regardless
1400	of congestion. This is not intended behavior for PLB and should be
1401	used only for experimentation purpose.
1402
1403	Possible Values: 0 - 256
1404
1405	Default: 128
1406
1407tcp_pingpong_thresh - INTEGER
1408	The number of estimated data replies sent for estimated incoming data
1409	requests that must happen before TCP considers that a connection is a
1410	"ping-pong" (request-response) connection for which delayed
1411	acknowledgments can provide benefits.
1412
1413	This threshold is 1 by default, but some applications may need a higher
1414	threshold for optimal performance.
1415
1416	Possible Values: 1 - 255
1417
1418	Default: 1
1419
1420tcp_rto_min_us - INTEGER
1421	Minimal TCP retransmission timeout (in microseconds). Note that the
1422	rto_min route option has the highest precedence for configuring this
1423	setting, followed by the TCP_BPF_RTO_MIN and TCP_RTO_MIN_US socket
1424	options, followed by this tcp_rto_min_us sysctl.
1425
1426	The recommended practice is to use a value less or equal to 200000
1427	microseconds.
1428
1429	Possible Values: 1 - INT_MAX
1430
1431	Default: 200000
1432
1433tcp_rto_max_ms - INTEGER
1434	Maximal TCP retransmission timeout (in ms).
1435	Note that TCP_RTO_MAX_MS socket option has higher precedence.
1436
1437	When changing tcp_rto_max_ms, it is important to understand
1438	that tcp_retries2 might need a change.
1439
1440	Possible Values: 1000 - 120,000
1441
1442	Default: 120,000
1443
1444UDP variables
1445=============
1446
1447udp_l3mdev_accept - BOOLEAN
1448	Enabling this option allows a "global" bound socket to work
1449	across L3 master domains (e.g., VRFs) with packets capable of
1450	being received regardless of the L3 domain in which they
1451	originated. Only valid when the kernel was compiled with
1452	CONFIG_NET_L3_MASTER_DEV.
1453
1454	Possible values:
1455
1456	- 0 (disabled)
1457	- 1 (enabled)
1458
1459	Default: 0 (disabled)
1460
1461udp_mem - vector of 3 INTEGERs: min, pressure, max
1462	Number of pages allowed for queueing by all UDP sockets.
1463
1464	min: Number of pages allowed for queueing by all UDP sockets.
1465
1466	pressure: This value was introduced to follow format of tcp_mem.
1467
1468	max: This value was introduced to follow format of tcp_mem.
1469
1470	Default is calculated at boot time from amount of available memory.
1471
1472udp_rmem_min - INTEGER
1473	Minimal size of receive buffer used by UDP sockets in moderation.
1474	Each UDP socket is able to use the size for receiving data, even if
1475	total pages of UDP sockets exceed udp_mem pressure. The unit is byte.
1476
1477	Default: 4K
1478
1479udp_wmem_min - INTEGER
1480	UDP does not have tx memory accounting and this tunable has no effect.
1481
1482udp_hash_entries - INTEGER
1483	Show the number of hash buckets for UDP sockets in the current
1484	networking namespace.
1485
1486	A negative value means the networking namespace does not own its
1487	hash buckets and shares the initial networking namespace's one.
1488
1489udp_child_hash_entries - INTEGER
1490	Control the number of hash buckets for UDP sockets in the child
1491	networking namespace, which must be set before clone() or unshare().
1492
1493	If the value is not 0, the kernel uses a value rounded up to 2^n
1494	as the actual hash bucket size.  0 is a special value, meaning
1495	the child networking namespace will share the initial networking
1496	namespace's hash buckets.
1497
1498	Note that the child will use the global one in case the kernel
1499	fails to allocate enough memory.  In addition, the global hash
1500	buckets are spread over available NUMA nodes, but the allocation
1501	of the child hash table depends on the current process's NUMA
1502	policy, which could result in performance differences.
1503
1504	Possible values: 0, 2^n (n: 7 (128) - 16 (64K))
1505
1506	Default: 0
1507
1508
1509RAW variables
1510=============
1511
1512raw_l3mdev_accept - BOOLEAN
1513	Enabling this option allows a "global" bound socket to work
1514	across L3 master domains (e.g., VRFs) with packets capable of
1515	being received regardless of the L3 domain in which they
1516	originated. Only valid when the kernel was compiled with
1517	CONFIG_NET_L3_MASTER_DEV.
1518
1519	Possible values:
1520
1521	- 0 (disabled)
1522	- 1 (enabled)
1523
1524	Default: 1 (enabled)
1525
1526CIPSOv4 Variables
1527=================
1528
1529cipso_cache_enable - BOOLEAN
1530	If enabled, enable additions to and lookups from the CIPSO label mapping
1531	cache.  If disabled, additions are ignored and lookups always result in a
1532	miss.  However, regardless of the setting the cache is still
1533	invalidated when required when means you can safely toggle this on and
1534	off and the cache will always be "safe".
1535
1536	Possible values:
1537
1538	- 0 (disabled)
1539	- 1 (enabled)
1540
1541	Default: 1 (enabled)
1542
1543cipso_cache_bucket_size - INTEGER
1544	The CIPSO label cache consists of a fixed size hash table with each
1545	hash bucket containing a number of cache entries.  This variable limits
1546	the number of entries in each hash bucket; the larger the value is, the
1547	more CIPSO label mappings that can be cached.  When the number of
1548	entries in a given hash bucket reaches this limit adding new entries
1549	causes the oldest entry in the bucket to be removed to make room.
1550
1551	Default: 10
1552
1553cipso_rbm_optfmt - BOOLEAN
1554	Enable the "Optimized Tag 1 Format" as defined in section 3.4.2.6 of
1555	the CIPSO draft specification (see Documentation/netlabel for details).
1556	This means that when set the CIPSO tag will be padded with empty
1557	categories in order to make the packet data 32-bit aligned.
1558
1559	Possible values:
1560
1561	- 0 (disabled)
1562	- 1 (enabled)
1563
1564	Default: 0 (disabled)
1565
1566cipso_rbm_strictvalid - BOOLEAN
1567	If enabled, do a very strict check of the CIPSO option when
1568	ip_options_compile() is called.  If disabled, relax the checks done during
1569	ip_options_compile().  Either way is "safe" as errors are caught else
1570	where in the CIPSO processing code but setting this to 0 (False) should
1571	result in less work (i.e. it should be faster) but could cause problems
1572	with other implementations that require strict checking.
1573
1574	Possible values:
1575
1576	- 0 (disabled)
1577	- 1 (enabled)
1578
1579	Default: 0 (disabled)
1580
1581IP Variables
1582============
1583
1584ip_local_port_range - 2 INTEGERS
1585	Defines the local port range that is used by TCP and UDP to
1586	choose the local port. The first number is the first, the
1587	second the last local port number.
1588	If possible, it is better these numbers have different parity
1589	(one even and one odd value).
1590	Must be greater than or equal to ip_unprivileged_port_start.
1591	The default values are 32768 and 60999 respectively.
1592
1593ip_local_reserved_ports - list of comma separated ranges
1594	Specify the ports which are reserved for known third-party
1595	applications. These ports will not be used by automatic port
1596	assignments (e.g. when calling connect() or bind() with port
1597	number 0). Explicit port allocation behavior is unchanged.
1598
1599	The format used for both input and output is a comma separated
1600	list of ranges (e.g. "1,2-4,10-10" for ports 1, 2, 3, 4 and
1601	10). Writing to the file will clear all previously reserved
1602	ports and update the current list with the one given in the
1603	input.
1604
1605	Note that ip_local_port_range and ip_local_reserved_ports
1606	settings are independent and both are considered by the kernel
1607	when determining which ports are available for automatic port
1608	assignments.
1609
1610	You can reserve ports which are not in the current
1611	ip_local_port_range, e.g.::
1612
1613	    $ cat /proc/sys/net/ipv4/ip_local_port_range
1614	    32000	60999
1615	    $ cat /proc/sys/net/ipv4/ip_local_reserved_ports
1616	    8080,9148
1617
1618	although this is redundant. However such a setting is useful
1619	if later the port range is changed to a value that will
1620	include the reserved ports. Also keep in mind, that overlapping
1621	of these ranges may affect probability of selecting ephemeral
1622	ports which are right after block of reserved ports.
1623
1624	Default: Empty
1625
1626ip_unprivileged_port_start - INTEGER
1627	This is a per-namespace sysctl.  It defines the first
1628	unprivileged port in the network namespace.  Privileged ports
1629	require root or CAP_NET_BIND_SERVICE in order to bind to them.
1630	To disable all privileged ports, set this to 0.  They must not
1631	overlap with the ip_local_port_range.
1632
1633	Default: 1024
1634
1635ip_nonlocal_bind - BOOLEAN
1636	If enabled, allows processes to bind() to non-local IP addresses,
1637	which can be quite useful - but may break some applications.
1638
1639	Possible values:
1640
1641	- 0 (disabled)
1642	- 1 (enabled)
1643
1644	Default: 0 (disabled)
1645
1646ip_autobind_reuse - BOOLEAN
1647	By default, bind() does not select the ports automatically even if
1648	the new socket and all sockets bound to the port have SO_REUSEADDR.
1649	ip_autobind_reuse allows bind() to reuse the port and this is useful
1650	when you use bind()+connect(), but may break some applications.
1651	The preferred solution is to use IP_BIND_ADDRESS_NO_PORT and this
1652	option should only be set by experts.
1653
1654	Possible values:
1655
1656	- 0 (disabled)
1657	- 1 (enabled)
1658
1659	Default: 0 (disabled)
1660
1661ip_dynaddr - INTEGER
1662	If set non-zero, enables support for dynamic addresses.
1663	If set to a non-zero value larger than 1, a kernel log
1664	message will be printed when dynamic address rewriting
1665	occurs.
1666
1667	Default: 0
1668
1669ip_early_demux - BOOLEAN
1670	Optimize input packet processing down to one demux for
1671	certain kinds of local sockets.  Currently we only do this
1672	for established TCP and connected UDP sockets.
1673
1674	It may add an additional cost for pure routing workloads that
1675	reduces overall throughput, in such case you should disable it.
1676
1677	Possible values:
1678
1679	- 0 (disabled)
1680	- 1 (enabled)
1681
1682	Default: 1 (enabled)
1683
1684ping_group_range - 2 INTEGERS
1685	Restrict ICMP_PROTO datagram sockets to users in the group range.
1686	The default is "1 0", meaning, that nobody (not even root) may
1687	create ping sockets.  Setting it to "100 100" would grant permissions
1688	to the single group. "0 4294967294" would enable it for the world, "100
1689	4294967294" would enable it for the users, but not daemons.
1690
1691tcp_early_demux - BOOLEAN
1692	Enable early demux for established TCP sockets.
1693
1694	Possible values:
1695
1696	- 0 (disabled)
1697	- 1 (enabled)
1698
1699	Default: 1 (enabled)
1700
1701udp_early_demux - BOOLEAN
1702	Enable early demux for connected UDP sockets. Disable this if
1703	your system could experience more unconnected load.
1704
1705	Possible values:
1706
1707	- 0 (disabled)
1708	- 1 (enabled)
1709
1710	Default: 1 (enabled)
1711
1712icmp_echo_ignore_all - BOOLEAN
1713	If enabled, then the kernel will ignore all ICMP ECHO
1714	requests sent to it.
1715
1716	Possible values:
1717
1718	- 0 (disabled)
1719	- 1 (enabled)
1720
1721	Default: 0 (disabled)
1722
1723icmp_echo_enable_probe - BOOLEAN
1724        If enabled, then the kernel will respond to RFC 8335 PROBE
1725        requests sent to it.
1726
1727        Possible values:
1728
1729	- 0 (disabled)
1730	- 1 (enabled)
1731
1732	Default: 0 (disabled)
1733
1734icmp_echo_ignore_broadcasts - BOOLEAN
1735	If enabled, then the kernel will ignore all ICMP ECHO and
1736	TIMESTAMP requests sent to it via broadcast/multicast.
1737
1738	Possible values:
1739
1740	- 0 (disabled)
1741	- 1 (enabled)
1742
1743	Default: 1 (enabled)
1744
1745icmp_ratelimit - INTEGER
1746	Limit the maximal rates for sending ICMP packets whose type matches
1747	icmp_ratemask (see below) to specific targets.
1748	0 to disable any limiting,
1749	otherwise the minimal space between responses in milliseconds.
1750	Note that another sysctl, icmp_msgs_per_sec limits the number
1751	of ICMP packets	sent on all targets.
1752
1753	Default: 1000
1754
1755icmp_msgs_per_sec - INTEGER
1756	Limit maximal number of ICMP packets sent per second from this host.
1757	Only messages whose type matches icmp_ratemask (see below) are
1758	controlled by this limit. For security reasons, the precise count
1759	of messages per second is randomized.
1760
1761	Default: 10000
1762
1763icmp_msgs_burst - INTEGER
1764	icmp_msgs_per_sec controls number of ICMP packets sent per second,
1765	while icmp_msgs_burst controls the token bucket size.
1766	For security reasons, the precise burst size is randomized.
1767
1768	Default: 10000
1769
1770icmp_ratemask - INTEGER
1771	Mask made of ICMP types for which rates are being limited.
1772
1773	Significant bits: IHGFEDCBA9876543210
1774
1775	Default mask:     0000001100000011000 (6168)
1776
1777	Bit definitions (see include/linux/icmp.h):
1778
1779		= =========================
1780		0 Echo Reply
1781		3 Destination Unreachable [1]_
1782		4 Source Quench [1]_
1783		5 Redirect
1784		8 Echo Request
1785		B Time Exceeded [1]_
1786		C Parameter Problem [1]_
1787		D Timestamp Request
1788		E Timestamp Reply
1789		F Info Request
1790		G Info Reply
1791		H Address Mask Request
1792		I Address Mask Reply
1793		= =========================
1794
1795	.. [1] These are rate limited by default (see default mask above)
1796
1797icmp_ignore_bogus_error_responses - BOOLEAN
1798	Some routers violate RFC1122 by sending bogus responses to broadcast
1799	frames.  Such violations are normally logged via a kernel warning.
1800	If enabled, the kernel will not give such warnings, which
1801	will avoid log file clutter.
1802
1803	Possible values:
1804
1805	- 0 (disabled)
1806	- 1 (enabled)
1807
1808	Default: 1 (enabled)
1809
1810icmp_errors_use_inbound_ifaddr - BOOLEAN
1811
1812	If disabled, icmp error messages are sent with the primary address of
1813	the exiting interface.
1814
1815	If enabled, the message will be sent with the primary address of
1816	the interface that received the packet that caused the icmp error.
1817	This is the behaviour many network administrators will expect from
1818	a router. And it can make debugging complicated network layouts
1819	much easier.
1820
1821	Note that if no primary address exists for the interface selected,
1822	then the primary address of the first non-loopback interface that
1823	has one will be used regardless of this setting.
1824
1825	Possible values:
1826
1827	- 0 (disabled)
1828	- 1 (enabled)
1829
1830	Default: 0 (disabled)
1831
1832icmp_errors_extension_mask - UNSIGNED INTEGER
1833	Bitmask of ICMP extensions to append to ICMPv4 error messages
1834	("Destination Unreachable", "Time Exceeded" and "Parameter Problem").
1835	The original datagram is trimmed / padded to 128 bytes in order to be
1836	compatible with applications that do not comply with RFC 4884.
1837
1838	Possible extensions are:
1839
1840	==== ==============================================================
1841	0x01 Incoming IP interface information according to RFC 5837.
1842	     Extension will include the index, IPv4 address (if present),
1843	     name and MTU of the IP interface that received the datagram
1844	     which elicited the ICMP error.
1845	==== ==============================================================
1846
1847	Default: 0x00 (no extensions)
1848
1849igmp_max_memberships - INTEGER
1850	Change the maximum number of multicast groups we can subscribe to.
1851	Default: 20
1852
1853	Theoretical maximum value is bounded by having to send a membership
1854	report in a single datagram (i.e. the report can't span multiple
1855	datagrams, or risk confusing the switch and leaving groups you don't
1856	intend to).
1857
1858	The number of supported groups 'M' is bounded by the number of group
1859	report entries you can fit into a single datagram of 65535 bytes.
1860
1861	M = 65536-sizeof (ip header)/(sizeof(Group record))
1862
1863	Group records are variable length, with a minimum of 12 bytes.
1864	So net.ipv4.igmp_max_memberships should not be set higher than:
1865
1866	(65536-24) / 12 = 5459
1867
1868	The value 5459 assumes no IP header options, so in practice
1869	this number may be lower.
1870
1871igmp_max_msf - INTEGER
1872	Maximum number of addresses allowed in the source filter list for a
1873	multicast group.
1874
1875	Default: 10
1876
1877igmp_qrv - INTEGER
1878	Controls the IGMP query robustness variable (see RFC2236 8.1).
1879
1880	Default: 2 (as specified by RFC2236 8.1)
1881
1882	Minimum: 1 (as specified by RFC6636 4.5)
1883
1884force_igmp_version - INTEGER
1885	- 0 - (default) No enforcement of a IGMP version, IGMPv1/v2 fallback
1886	  allowed. Will back to IGMPv3 mode again if all IGMPv1/v2 Querier
1887	  Present timer expires.
1888	- 1 - Enforce to use IGMP version 1. Will also reply IGMPv1 report if
1889	  receive IGMPv2/v3 query.
1890	- 2 - Enforce to use IGMP version 2. Will fallback to IGMPv1 if receive
1891	  IGMPv1 query message. Will reply report if receive IGMPv3 query.
1892	- 3 - Enforce to use IGMP version 3. The same react with default 0.
1893
1894	.. note::
1895
1896	   this is not the same with force_mld_version because IGMPv3 RFC3376
1897	   Security Considerations does not have clear description that we could
1898	   ignore other version messages completely as MLDv2 RFC3810. So make
1899	   this value as default 0 is recommended.
1900
1901``conf/interface/*``
1902	changes special settings per interface (where
1903	interface" is the name of your network interface)
1904
1905``conf/all/*``
1906	  is special, changes the settings for all interfaces
1907
1908log_martians - BOOLEAN
1909	Log packets with impossible addresses to kernel log.
1910	log_martians for the interface will be enabled if at least one of
1911	conf/{all,interface}/log_martians is set to TRUE,
1912	it will be disabled otherwise
1913
1914accept_redirects - BOOLEAN
1915	Accept ICMP redirect messages.
1916	accept_redirects for the interface will be enabled if:
1917
1918	- both conf/{all,interface}/accept_redirects are TRUE in the case
1919	  forwarding for the interface is enabled
1920
1921	or
1922
1923	- at least one of conf/{all,interface}/accept_redirects is TRUE in the
1924	  case forwarding for the interface is disabled
1925
1926	accept_redirects for the interface will be disabled otherwise
1927
1928	default:
1929
1930		- TRUE (host)
1931		- FALSE (router)
1932
1933forwarding - BOOLEAN
1934	Enable IP forwarding on this interface.  This controls whether packets
1935	received _on_ this interface can be forwarded.
1936
1937mc_forwarding - BOOLEAN
1938	Do multicast routing. The kernel needs to be compiled with CONFIG_MROUTE
1939	and a multicast routing daemon is required.
1940	conf/all/mc_forwarding must also be set to TRUE to enable multicast
1941	routing	for the interface
1942
1943medium_id - INTEGER
1944	Integer value used to differentiate the devices by the medium they
1945	are attached to. Two devices can have different id values when
1946	the broadcast packets are received only on one of them.
1947	The default value 0 means that the device is the only interface
1948	to its medium, value of -1 means that medium is not known.
1949
1950	Currently, it is used to change the proxy_arp behavior:
1951	the proxy_arp feature is enabled for packets forwarded between
1952	two devices attached to different media.
1953
1954proxy_arp - BOOLEAN
1955	Do proxy arp.
1956
1957	proxy_arp for the interface will be enabled if at least one of
1958	conf/{all,interface}/proxy_arp is set to TRUE,
1959	it will be disabled otherwise
1960
1961proxy_arp_pvlan - BOOLEAN
1962	Private VLAN proxy arp.
1963
1964	Basically allow proxy arp replies back to the same interface
1965	(from which the ARP request/solicitation was received).
1966
1967	This is done to support (ethernet) switch features, like RFC
1968	3069, where the individual ports are NOT allowed to
1969	communicate with each other, but they are allowed to talk to
1970	the upstream router.  As described in RFC 3069, it is possible
1971	to allow these hosts to communicate through the upstream
1972	router by proxy_arp'ing. Don't need to be used together with
1973	proxy_arp.
1974
1975	This technology is known by different names:
1976
1977	- In RFC 3069 it is called VLAN Aggregation.
1978	- Cisco and Allied Telesyn call it Private VLAN.
1979	- Hewlett-Packard call it Source-Port filtering or port-isolation.
1980	- Ericsson call it MAC-Forced Forwarding (RFC Draft).
1981
1982proxy_delay - INTEGER
1983	Delay proxy response.
1984
1985	Delay response to a neighbor solicitation when proxy_arp
1986	or proxy_ndp is enabled. A random value between [0, proxy_delay)
1987	will be chosen, setting to zero means reply with no delay.
1988	Value in jiffies. Defaults to 80.
1989
1990shared_media - BOOLEAN
1991	Send(router) or accept(host) RFC1620 shared media redirects.
1992	Overrides secure_redirects.
1993
1994	shared_media for the interface will be enabled if at least one of
1995	conf/{all,interface}/shared_media is set to TRUE,
1996	it will be disabled otherwise
1997
1998	default TRUE
1999
2000secure_redirects - BOOLEAN
2001	Accept ICMP redirect messages only to gateways listed in the
2002	interface's current gateway list. Even if disabled, RFC1122 redirect
2003	rules still apply.
2004
2005	Overridden by shared_media.
2006
2007	secure_redirects for the interface will be enabled if at least one of
2008	conf/{all,interface}/secure_redirects is set to TRUE,
2009	it will be disabled otherwise
2010
2011	default TRUE
2012
2013send_redirects - BOOLEAN
2014	Send redirects, if router.
2015
2016	send_redirects for the interface will be enabled if at least one of
2017	conf/{all,interface}/send_redirects is set to TRUE,
2018	it will be disabled otherwise
2019
2020	Default: TRUE
2021
2022bootp_relay - BOOLEAN
2023	Accept packets with source address 0.b.c.d destined
2024	not to this host as local ones. It is supposed, that
2025	BOOTP relay daemon will catch and forward such packets.
2026	conf/all/bootp_relay must also be set to TRUE to enable BOOTP relay
2027	for the interface
2028
2029	default FALSE
2030
2031	Not Implemented Yet.
2032
2033accept_source_route - BOOLEAN
2034	Accept packets with SRR option.
2035	conf/all/accept_source_route must also be set to TRUE to accept packets
2036	with SRR option on the interface
2037
2038	default
2039
2040		- TRUE (router)
2041		- FALSE (host)
2042
2043accept_local - BOOLEAN
2044	Accept packets with local source addresses. In combination with
2045	suitable routing, this can be used to direct packets between two
2046	local interfaces over the wire and have them accepted properly.
2047	default FALSE
2048
2049route_localnet - BOOLEAN
2050	Do not consider loopback addresses as martian source or destination
2051	while routing. This enables the use of 127/8 for local routing purposes.
2052
2053	default FALSE
2054
2055rp_filter - INTEGER
2056	- 0 - No source validation.
2057	- 1 - Strict mode as defined in RFC3704 Strict Reverse Path
2058	  Each incoming packet is tested against the FIB and if the interface
2059	  is not the best reverse path the packet check will fail.
2060	  By default failed packets are discarded.
2061	- 2 - Loose mode as defined in RFC3704 Loose Reverse Path
2062	  Each incoming packet's source address is also tested against the FIB
2063	  and if the source address is not reachable via any interface
2064	  the packet check will fail.
2065
2066	Current recommended practice in RFC3704 is to enable strict mode
2067	to prevent IP spoofing from DDos attacks. If using asymmetric routing
2068	or other complicated routing, then loose mode is recommended.
2069
2070	The max value from conf/{all,interface}/rp_filter is used
2071	when doing source validation on the {interface}.
2072
2073	Default value is 0. Note that some distributions enable it
2074	in startup scripts.
2075
2076src_valid_mark - BOOLEAN
2077	- 0 - The fwmark of the packet is not included in reverse path
2078	  route lookup.  This allows for asymmetric routing configurations
2079	  utilizing the fwmark in only one direction, e.g., transparent
2080	  proxying.
2081
2082	- 1 - The fwmark of the packet is included in reverse path route
2083	  lookup.  This permits rp_filter to function when the fwmark is
2084	  used for routing traffic in both directions.
2085
2086	This setting also affects the utilization of fmwark when
2087	performing source address selection for ICMP replies, or
2088	determining addresses stored for the IPOPT_TS_TSANDADDR and
2089	IPOPT_RR IP options.
2090
2091	The max value from conf/{all,interface}/src_valid_mark is used.
2092
2093	Default value is 0.
2094
2095arp_filter - BOOLEAN
2096	- 1 - Allows you to have multiple network interfaces on the same
2097	  subnet, and have the ARPs for each interface be answered
2098	  based on whether or not the kernel would route a packet from
2099	  the ARP'd IP out that interface (therefore you must use source
2100	  based routing for this to work). In other words it allows control
2101	  of which cards (usually 1) will respond to an arp request.
2102
2103	- 0 - (default) The kernel can respond to arp requests with addresses
2104	  from other interfaces. This may seem wrong but it usually makes
2105	  sense, because it increases the chance of successful communication.
2106	  IP addresses are owned by the complete host on Linux, not by
2107	  particular interfaces. Only for more complex setups like load-
2108	  balancing, does this behaviour cause problems.
2109
2110	arp_filter for the interface will be enabled if at least one of
2111	conf/{all,interface}/arp_filter is set to TRUE,
2112	it will be disabled otherwise
2113
2114arp_announce - INTEGER
2115	Define different restriction levels for announcing the local
2116	source IP address from IP packets in ARP requests sent on
2117	interface:
2118
2119	- 0 - (default) Use any local address, configured on any interface
2120	- 1 - Try to avoid local addresses that are not in the target's
2121	  subnet for this interface. This mode is useful when target
2122	  hosts reachable via this interface require the source IP
2123	  address in ARP requests to be part of their logical network
2124	  configured on the receiving interface. When we generate the
2125	  request we will check all our subnets that include the
2126	  target IP and will preserve the source address if it is from
2127	  such subnet. If there is no such subnet we select source
2128	  address according to the rules for level 2.
2129	- 2 - Always use the best local address for this target.
2130	  In this mode we ignore the source address in the IP packet
2131	  and try to select local address that we prefer for talks with
2132	  the target host. Such local address is selected by looking
2133	  for primary IP addresses on all our subnets on the outgoing
2134	  interface that include the target IP address. If no suitable
2135	  local address is found we select the first local address
2136	  we have on the outgoing interface or on all other interfaces,
2137	  with the hope we will receive reply for our request and
2138	  even sometimes no matter the source IP address we announce.
2139
2140	The max value from conf/{all,interface}/arp_announce is used.
2141
2142	Increasing the restriction level gives more chance for
2143	receiving answer from the resolved target while decreasing
2144	the level announces more valid sender's information.
2145
2146arp_ignore - INTEGER
2147	Define different modes for sending replies in response to
2148	received ARP requests that resolve local target IP addresses:
2149
2150	- 0 - (default): reply for any local target IP address, configured
2151	  on any interface
2152	- 1 - reply only if the target IP address is local address
2153	  configured on the incoming interface
2154	- 2 - reply only if the target IP address is local address
2155	  configured on the incoming interface and both with the
2156	  sender's IP address are part from same subnet on this interface
2157	- 3 - do not reply for local addresses configured with scope host,
2158	  only resolutions for global and link addresses are replied
2159	- 4-7 - reserved
2160	- 8 - do not reply for all local addresses
2161
2162	The max value from conf/{all,interface}/arp_ignore is used
2163	when ARP request is received on the {interface}
2164
2165arp_notify - BOOLEAN
2166	Define mode for notification of address and device changes.
2167
2168	 ==  ==========================================================
2169	  0  (default): do nothing
2170	  1  Generate gratuitous arp requests when device is brought up
2171	     or hardware address changes.
2172	 ==  ==========================================================
2173
2174arp_accept - INTEGER
2175	Define behavior for accepting gratuitous ARP (garp) frames from devices
2176	that are not already present in the ARP table:
2177
2178	- 0 - don't create new entries in the ARP table
2179	- 1 - create new entries in the ARP table
2180	- 2 - create new entries only if the source IP address is in the same
2181	  subnet as an address configured on the interface that received the
2182	  garp message.
2183
2184	Both replies and requests type gratuitous arp will trigger the
2185	ARP table to be updated, if this setting is on.
2186
2187	If the ARP table already contains the IP address of the
2188	gratuitous arp frame, the arp table will be updated regardless
2189	if this setting is on or off.
2190
2191arp_evict_nocarrier - BOOLEAN
2192	Clears the ARP cache on NOCARRIER events. This option is important for
2193	wireless devices where the ARP cache should not be cleared when roaming
2194	between access points on the same network. In most cases this should
2195	remain as the default (1).
2196
2197	Possible values:
2198
2199	- 0 (disabled) - Do not clear ARP cache on NOCARRIER events
2200	- 1 (enabled)  - Clear the ARP cache on NOCARRIER events
2201
2202	Default: 1 (enabled)
2203
2204mcast_solicit - INTEGER
2205	The maximum number of multicast probes in INCOMPLETE state,
2206	when the associated hardware address is unknown.  Defaults
2207	to 3.
2208
2209ucast_solicit - INTEGER
2210	The maximum number of unicast probes in PROBE state, when
2211	the hardware address is being reconfirmed.  Defaults to 3.
2212
2213app_solicit - INTEGER
2214	The maximum number of probes to send to the user space ARP daemon
2215	via netlink before dropping back to multicast probes (see
2216	mcast_resolicit).  Defaults to 0.
2217
2218mcast_resolicit - INTEGER
2219	The maximum number of multicast probes after unicast and
2220	app probes in PROBE state.  Defaults to 0.
2221
2222disable_policy - BOOLEAN
2223	Disable IPSEC policy (SPD) for this interface
2224
2225	Possible values:
2226
2227	- 0 (disabled)
2228	- 1 (enabled)
2229
2230	Default: 0 (disabled)
2231
2232disable_xfrm - BOOLEAN
2233	Disable IPSEC encryption on this interface, whatever the policy
2234
2235	Possible values:
2236
2237	- 0 (disabled)
2238	- 1 (enabled)
2239
2240	Default: 0 (disabled)
2241
2242igmpv2_unsolicited_report_interval - INTEGER
2243	The interval in milliseconds in which the next unsolicited
2244	IGMPv1 or IGMPv2 report retransmit will take place.
2245
2246	Default: 10000 (10 seconds)
2247
2248igmpv3_unsolicited_report_interval - INTEGER
2249	The interval in milliseconds in which the next unsolicited
2250	IGMPv3 report retransmit will take place.
2251
2252	Default: 1000 (1 seconds)
2253
2254ignore_routes_with_linkdown - BOOLEAN
2255        Ignore routes whose link is down when performing a FIB lookup.
2256
2257        Possible values:
2258
2259	- 0 (disabled)
2260	- 1 (enabled)
2261
2262	Default: 0 (disabled)
2263
2264promote_secondaries - BOOLEAN
2265	When a primary IP address is removed from this interface
2266	promote a corresponding secondary IP address instead of
2267	removing all the corresponding secondary IP addresses.
2268
2269	Possible values:
2270
2271	- 0 (disabled)
2272	- 1 (enabled)
2273
2274	Default: 0 (disabled)
2275
2276drop_unicast_in_l2_multicast - BOOLEAN
2277	Drop any unicast IP packets that are received in link-layer
2278	multicast (or broadcast) frames.
2279
2280	This behavior (for multicast) is actually a SHOULD in RFC
2281	1122, but is disabled by default for compatibility reasons.
2282
2283	Possible values:
2284
2285	- 0 (disabled)
2286	- 1 (enabled)
2287
2288	Default: 0 (disabled)
2289
2290drop_gratuitous_arp - BOOLEAN
2291	Drop all gratuitous ARP frames, for example if there's a known
2292	good ARP proxy on the network and such frames need not be used
2293	(or in the case of 802.11, must not be used to prevent attacks.)
2294
2295	Possible values:
2296
2297	- 0 (disabled)
2298	- 1 (enabled)
2299
2300	Default: 0 (disabled)
2301
2302
2303tag - INTEGER
2304	Allows you to write a number, which can be used as required.
2305
2306	Default value is 0.
2307
2308xfrm4_gc_thresh - INTEGER
2309	(Obsolete since linux-4.14)
2310	The threshold at which we will start garbage collecting for IPv4
2311	destination cache entries.  At twice this value the system will
2312	refuse new allocations.
2313
2314igmp_link_local_mcast_reports - BOOLEAN
2315	Enable IGMP reports for link local multicast groups in the
2316	224.0.0.X range.
2317
2318	Default TRUE
2319
2320Alexey Kuznetsov.
2321kuznet@ms2.inr.ac.ru
2322
2323Updated by:
2324
2325- Andi Kleen
2326  ak@muc.de
2327- Nicolas Delon
2328  delon.nicolas@wanadoo.fr
2329
2330
2331
2332
2333/proc/sys/net/ipv6/* Variables
2334==============================
2335
2336IPv6 has no global variables such as tcp_*.  tcp_* settings under ipv4/ also
2337apply to IPv6 [XXX?].
2338
2339bindv6only - BOOLEAN
2340	Default value for IPV6_V6ONLY socket option,
2341	which restricts use of the IPv6 socket to IPv6 communication
2342	only.
2343
2344	Possible values:
2345
2346	- 0 (disabled) - enable IPv4-mapped address feature
2347	- 1 (enabled)  - disable IPv4-mapped address feature
2348
2349	Default: 0 (disabled)
2350
2351flowlabel_consistency - BOOLEAN
2352	Protect the consistency (and unicity) of flow label.
2353	You have to disable it to use IPV6_FL_F_REFLECT flag on the
2354	flow label manager.
2355
2356	Possible values:
2357
2358	- 0 (disabled)
2359	- 1 (enabled)
2360
2361	Default: 1 (enabled)
2362
2363auto_flowlabels - INTEGER
2364	Automatically generate flow labels based on a flow hash of the
2365	packet. This allows intermediate devices, such as routers, to
2366	identify packet flows for mechanisms like Equal Cost Multipath
2367	Routing (see RFC 6438).
2368
2369	=  ===========================================================
2370	0  automatic flow labels are completely disabled
2371	1  automatic flow labels are enabled by default, they can be
2372	   disabled on a per socket basis using the IPV6_AUTOFLOWLABEL
2373	   socket option
2374	2  automatic flow labels are allowed, they may be enabled on a
2375	   per socket basis using the IPV6_AUTOFLOWLABEL socket option
2376	3  automatic flow labels are enabled and enforced, they cannot
2377	   be disabled by the socket option
2378	=  ===========================================================
2379
2380	Default: 1
2381
2382flowlabel_state_ranges - BOOLEAN
2383	Split the flow label number space into two ranges. 0-0x7FFFF is
2384	reserved for the IPv6 flow manager facility, 0x80000-0xFFFFF
2385	is reserved for stateless flow labels as described in RFC6437.
2386
2387	Possible values:
2388
2389	- 0 (disabled)
2390	- 1 (enabled)
2391
2392	Default: 1 (enabled)
2393
2394
2395flowlabel_reflect - INTEGER
2396	Control flow label reflection. Needed for Path MTU
2397	Discovery to work with Equal Cost Multipath Routing in anycast
2398	environments. See RFC 7690 and:
2399	https://tools.ietf.org/html/draft-wang-6man-flow-label-reflection-01
2400
2401	This is a bitmask.
2402
2403	- 1: enabled for established flows
2404
2405	  Note that this prevents automatic flowlabel changes, as done
2406	  in "tcp: change IPv6 flow-label upon receiving spurious retransmission"
2407	  and "tcp: Change txhash on every SYN and RTO retransmit"
2408
2409	- 2: enabled for TCP RESET packets (no active listener)
2410	  If set, a RST packet sent in response to a SYN packet on a closed
2411	  port will reflect the incoming flow label.
2412
2413	- 4: enabled for ICMPv6 echo reply messages.
2414
2415	Default: 0
2416
2417fib_multipath_hash_policy - INTEGER
2418	Controls which hash policy to use for multipath routes.
2419
2420	Default: 0 (Layer 3)
2421
2422	Possible values:
2423
2424	- 0 - Layer 3 (source and destination addresses plus flow label)
2425	- 1 - Layer 4 (standard 5-tuple)
2426	- 2 - Layer 3 or inner Layer 3 if present
2427	- 3 - Custom multipath hash. Fields used for multipath hash calculation
2428	  are determined by fib_multipath_hash_fields sysctl
2429
2430fib_multipath_hash_fields - UNSIGNED INTEGER
2431	When fib_multipath_hash_policy is set to 3 (custom multipath hash), the
2432	fields used for multipath hash calculation are determined by this
2433	sysctl.
2434
2435	This value is a bitmask which enables various fields for multipath hash
2436	calculation.
2437
2438	Possible fields are:
2439
2440	====== ============================
2441	0x0001 Source IP address
2442	0x0002 Destination IP address
2443	0x0004 IP protocol
2444	0x0008 Flow Label
2445	0x0010 Source port
2446	0x0020 Destination port
2447	0x0040 Inner source IP address
2448	0x0080 Inner destination IP address
2449	0x0100 Inner IP protocol
2450	0x0200 Inner Flow Label
2451	0x0400 Inner source port
2452	0x0800 Inner destination port
2453	====== ============================
2454
2455	Default: 0x0007 (source IP, destination IP and IP protocol)
2456
2457anycast_src_echo_reply - BOOLEAN
2458	Controls the use of anycast addresses as source addresses for ICMPv6
2459	echo reply
2460
2461	Possible values:
2462
2463	- 0 (disabled)
2464	- 1 (enabled)
2465
2466	Default: 0 (disabled)
2467
2468
2469idgen_delay - INTEGER
2470	Controls the delay in seconds after which time to retry
2471	privacy stable address generation if a DAD conflict is
2472	detected.
2473
2474	Default: 1 (as specified in RFC7217)
2475
2476idgen_retries - INTEGER
2477	Controls the number of retries to generate a stable privacy
2478	address if a DAD conflict is detected.
2479
2480	Default: 3 (as specified in RFC7217)
2481
2482mld_qrv - INTEGER
2483	Controls the MLD query robustness variable (see RFC3810 9.1).
2484
2485	Default: 2 (as specified by RFC3810 9.1)
2486
2487	Minimum: 1 (as specified by RFC6636 4.5)
2488
2489max_dst_opts_number - INTEGER
2490	Maximum number of non-padding TLVs allowed in a Destination
2491	options extension header. If this value is less than zero
2492	then unknown options are disallowed and the number of known
2493	TLVs allowed is the absolute value of this number.
2494
2495	Default: 8
2496
2497max_hbh_opts_number - INTEGER
2498	Maximum number of non-padding TLVs allowed in a Hop-by-Hop
2499	options extension header. If this value is less than zero
2500	then unknown options are disallowed and the number of known
2501	TLVs allowed is the absolute value of this number.
2502
2503	Default: 8
2504
2505max_dst_opts_length - INTEGER
2506	Maximum length allowed for a Destination options extension
2507	header.
2508
2509	Default: INT_MAX (unlimited)
2510
2511max_hbh_length - INTEGER
2512	Maximum length allowed for a Hop-by-Hop options extension
2513	header.
2514
2515	Default: INT_MAX (unlimited)
2516
2517skip_notify_on_dev_down - BOOLEAN
2518	Controls whether an RTM_DELROUTE message is generated for routes
2519	removed when a device is taken down or deleted. IPv4 does not
2520	generate this message; IPv6 does by default. Setting this sysctl
2521	to true skips the message, making IPv4 and IPv6 on par in relying
2522	on userspace caches to track link events and evict routes.
2523
2524	Possible values:
2525
2526	- 0 (disabled) - generate the message
2527	- 1 (enabled)  - skip generating the message
2528
2529	Default: 0 (disabled)
2530
2531nexthop_compat_mode - BOOLEAN
2532	New nexthop API provides a means for managing nexthops independent of
2533	prefixes. Backwards compatibility with old route format is enabled by
2534	default which means route dumps and notifications contain the new
2535	nexthop attribute but also the full, expanded nexthop definition.
2536	Further, updates or deletes of a nexthop configuration generate route
2537	notifications for each fib entry using the nexthop. Once a system
2538	understands the new API, this sysctl can be disabled to achieve full
2539	performance benefits of the new API by disabling the nexthop expansion
2540	and extraneous notifications.
2541
2542	Note that as a backward-compatible mode, dumping of modern features
2543	might be incomplete or wrong. For example, resilient groups will not be
2544	shown as such, but rather as just a list of next hops. Also weights that
2545	do not fit into 8 bits will show incorrectly.
2546
2547	Default: true (backward compat mode)
2548
2549fib_notify_on_flag_change - INTEGER
2550        Whether to emit RTM_NEWROUTE notifications whenever RTM_F_OFFLOAD/
2551        RTM_F_TRAP/RTM_F_OFFLOAD_FAILED flags are changed.
2552
2553        After installing a route to the kernel, user space receives an
2554        acknowledgment, which means the route was installed in the kernel,
2555        but not necessarily in hardware.
2556        It is also possible for a route already installed in hardware to change
2557        its action and therefore its flags. For example, a host route that is
2558        trapping packets can be "promoted" to perform decapsulation following
2559        the installation of an IPinIP/VXLAN tunnel.
2560        The notifications will indicate to user-space the state of the route.
2561
2562        Default: 0 (Do not emit notifications.)
2563
2564        Possible values:
2565
2566        - 0 - Do not emit notifications.
2567        - 1 - Emit notifications.
2568        - 2 - Emit notifications only for RTM_F_OFFLOAD_FAILED flag change.
2569
2570ioam6_id - INTEGER
2571        Define the IOAM id of this node. Uses only 24 bits out of 32 in total.
2572
2573        Possible value range:
2574
2575        - Min: 0
2576        - Max: 0xFFFFFF
2577
2578        Default: 0xFFFFFF
2579
2580ioam6_id_wide - LONG INTEGER
2581        Define the wide IOAM id of this node. Uses only 56 bits out of 64 in
2582        total. Can be different from ioam6_id.
2583
2584        Possible value range:
2585
2586        - Min: 0
2587        - Max: 0xFFFFFFFFFFFFFF
2588
2589        Default: 0xFFFFFFFFFFFFFF
2590
2591IPv6 Fragmentation:
2592
2593ip6frag_high_thresh - INTEGER
2594	Maximum memory used to reassemble IPv6 fragments. When
2595	ip6frag_high_thresh bytes of memory is allocated for this purpose,
2596	the fragment handler will toss packets until ip6frag_low_thresh
2597	is reached.
2598
2599ip6frag_low_thresh - INTEGER
2600	See ip6frag_high_thresh
2601
2602ip6frag_time - INTEGER
2603	Time in seconds to keep an IPv6 fragment in memory.
2604
2605``conf/default/*``:
2606	Change the interface-specific default settings.
2607
2608	These settings would be used during creating new interfaces.
2609
2610
2611``conf/all/*``:
2612	Change all the interface-specific settings.
2613
2614	[XXX:  Other special features than forwarding?]
2615
2616conf/all/disable_ipv6 - BOOLEAN
2617	Changing this value is same as changing ``conf/default/disable_ipv6``
2618	setting and also all per-interface ``disable_ipv6`` settings to the same
2619	value.
2620
2621	Reading this value does not have any particular meaning. It does not say
2622	whether IPv6 support is enabled or disabled. Returned value can be 1
2623	also in the case when some interface has ``disable_ipv6`` set to 0 and
2624	has configured IPv6 addresses.
2625
2626conf/all/forwarding - BOOLEAN
2627	Enable global IPv6 forwarding between all interfaces.
2628
2629	IPv4 and IPv6 work differently here; the ``force_forwarding`` flag must
2630	be used to control which interfaces may forward packets.
2631
2632	This also sets all interfaces' Host/Router setting
2633	'forwarding' to the specified value.  See below for details.
2634
2635	This referred to as global forwarding.
2636
2637proxy_ndp - BOOLEAN
2638	Do proxy ndp.
2639
2640	Possible values:
2641
2642	- 0 (disabled)
2643	- 1 (enabled)
2644
2645	Default: 0 (disabled)
2646
2647force_forwarding - BOOLEAN
2648	Enable forwarding on this interface only -- regardless of the setting on
2649	``conf/all/forwarding``. When setting ``conf.all.forwarding`` to 0,
2650	the ``force_forwarding`` flag will be reset on all interfaces.
2651
2652fwmark_reflect - BOOLEAN
2653	Controls the fwmark of kernel-generated IPv6 reply packets that are not
2654	associated with a socket for example, TCP RSTs or ICMPv6 echo replies).
2655	If disabled, these packets have a fwmark of zero. If enabled, they have the
2656	fwmark of the packet they are replying to.
2657
2658	Possible values:
2659
2660	- 0 (disabled)
2661	- 1 (enabled)
2662
2663	Default: 0 (disabled)
2664
2665``conf/interface/*``:
2666	Change special settings per interface.
2667
2668	The functional behaviour for certain settings is different
2669	depending on whether local forwarding is enabled or not.
2670
2671accept_ra - INTEGER
2672	Accept Router Advertisements; autoconfigure using them.
2673
2674	It also determines whether or not to transmit Router
2675	Solicitations. If and only if the functional setting is to
2676	accept Router Advertisements, Router Solicitations will be
2677	transmitted.
2678
2679	Possible values are:
2680
2681		==  ===========================================================
2682		 0  Do not accept Router Advertisements.
2683		 1  Accept Router Advertisements if forwarding is disabled.
2684		 2  Overrule forwarding behaviour. Accept Router Advertisements
2685		    even if forwarding is enabled.
2686		==  ===========================================================
2687
2688	Functional default:
2689
2690		- enabled if local forwarding is disabled.
2691		- disabled if local forwarding is enabled.
2692
2693accept_ra_defrtr - BOOLEAN
2694	Learn default router in Router Advertisement.
2695
2696	Functional default:
2697
2698		- enabled if accept_ra is enabled.
2699		- disabled if accept_ra is disabled.
2700
2701ra_defrtr_metric - UNSIGNED INTEGER
2702	Route metric for default route learned in Router Advertisement. This value
2703	will be assigned as metric for the default route learned via IPv6 Router
2704	Advertisement. Takes affect only if accept_ra_defrtr is enabled.
2705
2706	Possible values:
2707		1 to 0xFFFFFFFF
2708
2709		Default: IP6_RT_PRIO_USER i.e. 1024.
2710
2711accept_ra_from_local - BOOLEAN
2712	Accept RA with source-address that is found on local machine
2713	if the RA is otherwise proper and able to be accepted.
2714
2715	Default is to NOT accept these as it may be an un-intended
2716	network loop.
2717
2718	Functional default:
2719
2720	   - enabled if accept_ra_from_local is enabled
2721	     on a specific interface.
2722	   - disabled if accept_ra_from_local is disabled
2723	     on a specific interface.
2724
2725accept_ra_min_hop_limit - INTEGER
2726	Minimum hop limit Information in Router Advertisement.
2727
2728	Hop limit Information in Router Advertisement less than this
2729	variable shall be ignored.
2730
2731	Default: 1
2732
2733accept_ra_min_lft - INTEGER
2734	Minimum acceptable lifetime value in Router Advertisement.
2735
2736	RA sections with a lifetime less than this value shall be
2737	ignored. Zero lifetimes stay unaffected.
2738
2739	Default: 0
2740
2741accept_ra_pinfo - BOOLEAN
2742	Learn Prefix Information in Router Advertisement.
2743
2744	Functional default:
2745
2746		- enabled if accept_ra is enabled.
2747		- disabled if accept_ra is disabled.
2748
2749ra_honor_pio_life - BOOLEAN
2750	Whether to use RFC4862 Section 5.5.3e to determine the valid
2751	lifetime of an address matching a prefix sent in a Router
2752	Advertisement Prefix Information Option.
2753
2754	Possible values:
2755
2756	- 0 (disabled) - RFC4862 section 5.5.3e is used to determine
2757	  the valid lifetime of the address.
2758	- 1 (enabled)  - the PIO valid lifetime will always be honored.
2759
2760	Default: 0 (disabled)
2761
2762ra_honor_pio_pflag - BOOLEAN
2763	The Prefix Information Option P-flag indicates the network can
2764	allocate a unique IPv6 prefix per client using DHCPv6-PD.
2765	This sysctl can be enabled when a userspace DHCPv6-PD client
2766	is running to cause the P-flag to take effect: i.e. the
2767	P-flag suppresses any effects of the A-flag within the same
2768	PIO. For a given PIO, P=1 and A=1 is treated as A=0.
2769
2770	Possible values:
2771
2772	- 0 (disabled) - the P-flag is ignored.
2773	- 1 (enabled)  - the P-flag will disable SLAAC autoconfiguration
2774	  for the given Prefix Information Option.
2775
2776	Default: 0 (disabled)
2777
2778accept_ra_rt_info_min_plen - INTEGER
2779	Minimum prefix length of Route Information in RA.
2780
2781	Route Information w/ prefix smaller than this variable shall
2782	be ignored.
2783
2784	Functional default:
2785
2786		* 0 if accept_ra_rtr_pref is enabled.
2787		* -1 if accept_ra_rtr_pref is disabled.
2788
2789accept_ra_rt_info_max_plen - INTEGER
2790	Maximum prefix length of Route Information in RA.
2791
2792	Route Information w/ prefix larger than this variable shall
2793	be ignored.
2794
2795	Functional default:
2796
2797		* 0 if accept_ra_rtr_pref is enabled.
2798		* -1 if accept_ra_rtr_pref is disabled.
2799
2800accept_ra_rtr_pref - BOOLEAN
2801	Accept Router Preference in RA.
2802
2803	Functional default:
2804
2805		- enabled if accept_ra is enabled.
2806		- disabled if accept_ra is disabled.
2807
2808accept_ra_mtu - BOOLEAN
2809	Apply the MTU value specified in RA option 5 (RFC4861). If
2810	disabled, the MTU specified in the RA will be ignored.
2811
2812	Functional default:
2813
2814		- enabled if accept_ra is enabled.
2815		- disabled if accept_ra is disabled.
2816
2817accept_redirects - BOOLEAN
2818	Accept Redirects.
2819
2820	Functional default:
2821
2822		- enabled if local forwarding is disabled.
2823		- disabled if local forwarding is enabled.
2824
2825accept_source_route - INTEGER
2826	Accept source routing (routing extension header).
2827
2828	- >= 0: Accept only routing header type 2.
2829	- < 0: Do not accept routing header.
2830
2831	Default: 0
2832
2833autoconf - BOOLEAN
2834	Autoconfigure addresses using Prefix Information in Router
2835	Advertisements.
2836
2837	Functional default:
2838
2839		- enabled if accept_ra_pinfo is enabled.
2840		- disabled if accept_ra_pinfo is disabled.
2841
2842dad_transmits - INTEGER
2843	The amount of Duplicate Address Detection probes to send.
2844
2845	Default: 1
2846
2847forwarding - INTEGER
2848	Configure interface-specific Host/Router behaviour.
2849
2850	.. note::
2851
2852	   It is recommended to have the same setting on all
2853	   interfaces; mixed router/host scenarios are rather uncommon.
2854
2855	Possible values are:
2856
2857		- 0 Forwarding disabled
2858		- 1 Forwarding enabled
2859
2860	**FALSE (0)**:
2861
2862	By default, Host behaviour is assumed.  This means:
2863
2864	1. IsRouter flag is not set in Neighbour Advertisements.
2865	2. If accept_ra is TRUE (default), transmit Router
2866	   Solicitations.
2867	3. If accept_ra is TRUE (default), accept Router
2868	   Advertisements (and do autoconfiguration).
2869	4. If accept_redirects is TRUE (default), accept Redirects.
2870
2871	**TRUE (1)**:
2872
2873	If local forwarding is enabled, Router behaviour is assumed.
2874	This means exactly the reverse from the above:
2875
2876	1. IsRouter flag is set in Neighbour Advertisements.
2877	2. Router Solicitations are not sent unless accept_ra is 2.
2878	3. Router Advertisements are ignored unless accept_ra is 2.
2879	4. Redirects are ignored.
2880
2881	Default: 0 (disabled) if global forwarding is disabled (default),
2882	otherwise 1 (enabled).
2883
2884hop_limit - INTEGER
2885	Default Hop Limit to set.
2886
2887	Default: 64
2888
2889mtu - INTEGER
2890	Default Maximum Transfer Unit
2891
2892	Default: 1280 (IPv6 required minimum)
2893
2894ip_nonlocal_bind - BOOLEAN
2895	If enabled, allows processes to bind() to non-local IPv6 addresses,
2896	which can be quite useful - but may break some applications.
2897
2898	Possible values:
2899
2900	- 0 (disabled)
2901	- 1 (enabled)
2902
2903	Default: 0 (disabled)
2904
2905router_probe_interval - INTEGER
2906	Minimum interval (in seconds) between Router Probing described
2907	in RFC4191.
2908
2909	Default: 60
2910
2911router_solicitation_delay - INTEGER
2912	Number of seconds to wait after interface is brought up
2913	before sending Router Solicitations.
2914
2915	Default: 1
2916
2917router_solicitation_interval - INTEGER
2918	Number of seconds to wait between Router Solicitations.
2919
2920	Default: 4
2921
2922router_solicitations - INTEGER
2923	Number of Router Solicitations to send until assuming no
2924	routers are present.
2925
2926	Default: 3
2927
2928use_oif_addrs_only - BOOLEAN
2929	When enabled, the candidate source addresses for destinations
2930	routed via this interface are restricted to the set of addresses
2931	configured on this interface (vis. RFC 6724, section 4).
2932
2933	Possible values:
2934
2935	- 0 (disabled)
2936	- 1 (enabled)
2937
2938	Default: 0 (disabled)
2939
2940use_tempaddr - INTEGER
2941	Preference for Privacy Extensions (RFC3041).
2942
2943	  * <= 0 : disable Privacy Extensions
2944	  * == 1 : enable Privacy Extensions, but prefer public
2945	    addresses over temporary addresses.
2946	  * >  1 : enable Privacy Extensions and prefer temporary
2947	    addresses over public addresses.
2948
2949	Default:
2950
2951		* 0 (for most devices)
2952		* -1 (for point-to-point devices and loopback devices)
2953
2954temp_valid_lft - INTEGER
2955	valid lifetime (in seconds) for temporary addresses. If less than the
2956	minimum required lifetime (typically 5-7 seconds), temporary addresses
2957	will not be created.
2958
2959	Default: 172800 (2 days)
2960
2961temp_prefered_lft - INTEGER
2962	Preferred lifetime (in seconds) for temporary addresses. If
2963	temp_prefered_lft is less than the minimum required lifetime (typically
2964	5-7 seconds), the preferred lifetime is the minimum required. If
2965	temp_prefered_lft is greater than temp_valid_lft, the preferred lifetime
2966	is temp_valid_lft.
2967
2968	Default: 86400 (1 day)
2969
2970keep_addr_on_down - INTEGER
2971	Keep all IPv6 addresses on an interface down event. If set static
2972	global addresses with no expiration time are not flushed.
2973
2974	*   >0 : enabled
2975	*    0 : system default
2976	*   <0 : disabled
2977
2978	Default: 0 (addresses are removed)
2979
2980max_desync_factor - INTEGER
2981	Maximum value for DESYNC_FACTOR, which is a random value
2982	that ensures that clients don't synchronize with each
2983	other and generate new addresses at exactly the same time.
2984	value is in seconds.
2985
2986	Default: 600
2987
2988regen_min_advance - INTEGER
2989	How far in advance (in seconds), at minimum, to create a new temporary
2990	address before the current one is deprecated. This value is added to
2991	the amount of time that may be required for duplicate address detection
2992	to determine when to create a new address. Linux permits setting this
2993	value to less than the default of 2 seconds, but a value less than 2
2994	does not conform to RFC 8981.
2995
2996	Default: 2
2997
2998regen_max_retry - INTEGER
2999	Number of attempts before give up attempting to generate
3000	valid temporary addresses.
3001
3002	Default: 5
3003
3004max_addresses - INTEGER
3005	Maximum number of autoconfigured addresses per interface.  Setting
3006	to zero disables the limitation.  It is not recommended to set this
3007	value too large (or to zero) because it would be an easy way to
3008	crash the kernel by allowing too many addresses to be created.
3009
3010	Default: 16
3011
3012disable_ipv6 - BOOLEAN
3013	Disable IPv6 operation.  If accept_dad is set to 2, this value
3014	will be dynamically set to TRUE if DAD fails for the link-local
3015	address.
3016
3017	Default: FALSE (enable IPv6 operation)
3018
3019	When this value is changed from 1 to 0 (IPv6 is being enabled),
3020	it will dynamically create a link-local address on the given
3021	interface and start Duplicate Address Detection, if necessary.
3022
3023	When this value is changed from 0 to 1 (IPv6 is being disabled),
3024	it will dynamically delete all addresses and routes on the given
3025	interface. From now on it will not possible to add addresses/routes
3026	to the selected interface.
3027
3028accept_dad - INTEGER
3029	Whether to accept DAD (Duplicate Address Detection).
3030
3031	 == ==============================================================
3032	  0  Disable DAD
3033	  1  Enable DAD (default)
3034	  2  Enable DAD, and disable IPv6 operation if MAC-based duplicate
3035	     link-local address has been found.
3036	 == ==============================================================
3037
3038	DAD operation and mode on a given interface will be selected according
3039	to the maximum value of conf/{all,interface}/accept_dad.
3040
3041force_tllao - BOOLEAN
3042	Enable sending the target link-layer address option even when
3043	responding to a unicast neighbor solicitation.
3044
3045	Default: FALSE
3046
3047	Quoting from RFC 2461, section 4.4, Target link-layer address:
3048
3049	"The option MUST be included for multicast solicitations in order to
3050	avoid infinite Neighbor Solicitation "recursion" when the peer node
3051	does not have a cache entry to return a Neighbor Advertisements
3052	message.  When responding to unicast solicitations, the option can be
3053	omitted since the sender of the solicitation has the correct link-
3054	layer address; otherwise it would not have be able to send the unicast
3055	solicitation in the first place. However, including the link-layer
3056	address in this case adds little overhead and eliminates a potential
3057	race condition where the sender deletes the cached link-layer address
3058	prior to receiving a response to a previous solicitation."
3059
3060ndisc_notify - BOOLEAN
3061	Define mode for notification of address and device changes.
3062
3063	Possible values:
3064
3065	- 0 (disabled) - do nothing
3066	- 1 (enabled)  - Generate unsolicited neighbour advertisements when device is brought
3067	  up or hardware address changes.
3068
3069	Default: 0 (disabled)
3070
3071ndisc_tclass - INTEGER
3072	The IPv6 Traffic Class to use by default when sending IPv6 Neighbor
3073	Discovery (Router Solicitation, Router Advertisement, Neighbor
3074	Solicitation, Neighbor Advertisement, Redirect) messages.
3075	These 8 bits can be interpreted as 6 high order bits holding the DSCP
3076	value and 2 low order bits representing ECN (which you probably want
3077	to leave cleared).
3078
3079	* 0 - (default)
3080
3081ndisc_evict_nocarrier - BOOLEAN
3082	Clears the neighbor discovery table on NOCARRIER events. This option is
3083	important for wireless devices where the neighbor discovery cache should
3084	not be cleared when roaming between access points on the same network.
3085	In most cases this should remain as the default (1).
3086
3087	Possible values:
3088
3089	- 0 (disabled) - Do not clear neighbor discovery cache on NOCARRIER events.
3090	- 1 (enabled)  - Clear neighbor discover cache on NOCARRIER events.
3091
3092	Default: 1 (enabled)
3093
3094mldv1_unsolicited_report_interval - INTEGER
3095	The interval in milliseconds in which the next unsolicited
3096	MLDv1 report retransmit will take place.
3097
3098	Default: 10000 (10 seconds)
3099
3100mldv2_unsolicited_report_interval - INTEGER
3101	The interval in milliseconds in which the next unsolicited
3102	MLDv2 report retransmit will take place.
3103
3104	Default: 1000 (1 second)
3105
3106force_mld_version - INTEGER
3107	* 0 - (default) No enforcement of a MLD version, MLDv1 fallback allowed
3108	* 1 - Enforce to use MLD version 1
3109	* 2 - Enforce to use MLD version 2
3110
3111suppress_frag_ndisc - INTEGER
3112	Control RFC 6980 (Security Implications of IPv6 Fragmentation
3113	with IPv6 Neighbor Discovery) behavior:
3114
3115	* 1 - (default) discard fragmented neighbor discovery packets
3116	* 0 - allow fragmented neighbor discovery packets
3117
3118optimistic_dad - BOOLEAN
3119	Whether to perform Optimistic Duplicate Address Detection (RFC 4429).
3120
3121	Optimistic Duplicate Address Detection for the interface will be enabled
3122	if at least one of conf/{all,interface}/optimistic_dad is set to 1,
3123	it will be disabled otherwise.
3124
3125	Possible values:
3126
3127	- 0 (disabled)
3128	- 1 (enabled)
3129
3130	Default: 0 (disabled)
3131
3132
3133use_optimistic - BOOLEAN
3134	If enabled, do not classify optimistic addresses as deprecated during
3135	source address selection.  Preferred addresses will still be chosen
3136	before optimistic addresses, subject to other ranking in the source
3137	address selection algorithm.
3138
3139	This will be enabled if at least one of
3140	conf/{all,interface}/use_optimistic is set to 1, disabled otherwise.
3141
3142	Possible values:
3143
3144	- 0 (disabled)
3145	- 1 (enabled)
3146
3147	Default: 0 (disabled)
3148
3149stable_secret - IPv6 address
3150	This IPv6 address will be used as a secret to generate IPv6
3151	addresses for link-local addresses and autoconfigured
3152	ones. All addresses generated after setting this secret will
3153	be stable privacy ones by default. This can be changed via the
3154	addrgenmode ip-link. conf/default/stable_secret is used as the
3155	secret for the namespace, the interface specific ones can
3156	overwrite that. Writes to conf/all/stable_secret are refused.
3157
3158	It is recommended to generate this secret during installation
3159	of a system and keep it stable after that.
3160
3161	By default the stable secret is unset.
3162
3163addr_gen_mode - INTEGER
3164	Defines how link-local and autoconf addresses are generated.
3165
3166	=  =================================================================
3167	0  generate address based on EUI64 (default)
3168	1  do no generate a link-local address, use EUI64 for addresses
3169	   generated from autoconf
3170	2  generate stable privacy addresses, using the secret from
3171	   stable_secret (RFC7217)
3172	3  generate stable privacy addresses, using a random secret if unset
3173	=  =================================================================
3174
3175drop_unicast_in_l2_multicast - BOOLEAN
3176	Drop any unicast IPv6 packets that are received in link-layer
3177	multicast (or broadcast) frames.
3178
3179	Possible values:
3180
3181	- 0 (disabled)
3182	- 1 (enabled)
3183
3184	Default: 0 (disabled)
3185
3186drop_unsolicited_na - BOOLEAN
3187	Drop all unsolicited neighbor advertisements, for example if there's
3188	a known good NA proxy on the network and such frames need not be used
3189	(or in the case of 802.11, must not be used to prevent attacks.)
3190
3191	Possible values:
3192
3193	- 0 (disabled)
3194	- 1 (enabled)
3195
3196	Default: 0 (disabled).
3197
3198accept_untracked_na - INTEGER
3199	Define behavior for accepting neighbor advertisements from devices that
3200	are absent in the neighbor cache:
3201
3202	- 0 - (default) Do not accept unsolicited and untracked neighbor
3203	  advertisements.
3204
3205	- 1 - Add a new neighbor cache entry in STALE state for routers on
3206	  receiving a neighbor advertisement (either solicited or unsolicited)
3207	  with target link-layer address option specified if no neighbor entry
3208	  is already present for the advertised IPv6 address. Without this knob,
3209	  NAs received for untracked addresses (absent in neighbor cache) are
3210	  silently ignored.
3211
3212	  This is as per router-side behavior documented in RFC9131.
3213
3214	  This has lower precedence than drop_unsolicited_na.
3215
3216	  This will optimize the return path for the initial off-link
3217	  communication that is initiated by a directly connected host, by
3218	  ensuring that the first-hop router which turns on this setting doesn't
3219	  have to buffer the initial return packets to do neighbor-solicitation.
3220	  The prerequisite is that the host is configured to send unsolicited
3221	  neighbor advertisements on interface bringup. This setting should be
3222	  used in conjunction with the ndisc_notify setting on the host to
3223	  satisfy this prerequisite.
3224
3225	- 2 - Extend option (1) to add a new neighbor cache entry only if the
3226	  source IP address is in the same subnet as an address configured on
3227	  the interface that received the neighbor advertisement.
3228
3229enhanced_dad - BOOLEAN
3230	Include a nonce option in the IPv6 neighbor solicitation messages used for
3231	duplicate address detection per RFC7527. A received DAD NS will only signal
3232	a duplicate address if the nonce is different. This avoids any false
3233	detection of duplicates due to loopback of the NS messages that we send.
3234	The nonce option will be sent on an interface unless both of
3235	conf/{all,interface}/enhanced_dad are set to FALSE.
3236
3237	Possible values:
3238
3239	- 0 (disabled)
3240	- 1 (enabled)
3241
3242	Default: 1 (enabled)
3243
3244``icmp/*``:
3245===========
3246
3247ratelimit - INTEGER
3248	Limit the maximal rates for sending ICMPv6 messages to a particular
3249	peer.
3250
3251	0 to disable any limiting,
3252	otherwise the space between responses in milliseconds.
3253
3254	Default: 100
3255
3256ratemask - list of comma separated ranges
3257	For ICMPv6 message types matching the ranges in the ratemask, limit
3258	the sending of the message according to ratelimit parameter.
3259
3260	The format used for both input and output is a comma separated
3261	list of ranges (e.g. "0-127,129" for ICMPv6 message type 0 to 127 and
3262	129). Writing to the file will clear all previous ranges of ICMPv6
3263	message types and update the current list with the input.
3264
3265	Refer to: https://www.iana.org/assignments/icmpv6-parameters/icmpv6-parameters.xhtml
3266	for numerical values of ICMPv6 message types, e.g. echo request is 128
3267	and echo reply is 129.
3268
3269	Default: 0-1,3-127 (rate limit ICMPv6 errors except Packet Too Big)
3270
3271echo_ignore_all - BOOLEAN
3272	If enabled, then the kernel will ignore all ICMP ECHO
3273	requests sent to it over the IPv6 protocol.
3274
3275	Possible values:
3276
3277	- 0 (disabled)
3278	- 1 (enabled)
3279
3280	Default: 0 (disabled)
3281
3282echo_ignore_multicast - BOOLEAN
3283	If enabled, then the kernel will ignore all ICMP ECHO
3284	requests sent to it over the IPv6 protocol via multicast.
3285
3286	Possible values:
3287
3288	- 0 (disabled)
3289	- 1 (enabled)
3290
3291	Default: 0 (disabled)
3292
3293echo_ignore_anycast - BOOLEAN
3294	If enabled, then the kernel will ignore all ICMP ECHO
3295	requests sent to it over the IPv6 protocol destined to anycast address.
3296
3297	Possible values:
3298
3299	- 0 (disabled)
3300	- 1 (enabled)
3301
3302	Default: 0 (disabled)
3303
3304error_anycast_as_unicast - BOOLEAN
3305	If enabled, then the kernel will respond with ICMP Errors
3306	resulting from requests sent to it over the IPv6 protocol destined
3307	to anycast address essentially treating anycast as unicast.
3308
3309	Possible values:
3310
3311	- 0 (disabled)
3312	- 1 (enabled)
3313
3314	Default: 0 (disabled)
3315
3316errors_extension_mask - UNSIGNED INTEGER
3317	Bitmask of ICMP extensions to append to ICMPv6 error messages
3318	("Destination Unreachable" and "Time Exceeded"). The original datagram
3319	is trimmed / padded to 128 bytes in order to be compatible with
3320	applications that do not comply with RFC 4884.
3321
3322	Possible extensions are:
3323
3324	==== ==============================================================
3325	0x01 Incoming IP interface information according to RFC 5837.
3326	     Extension will include the index, IPv6 address (if present),
3327	     name and MTU of the IP interface that received the datagram
3328	     which elicited the ICMP error.
3329	==== ==============================================================
3330
3331	Default: 0x00 (no extensions)
3332
3333xfrm6_gc_thresh - INTEGER
3334	(Obsolete since linux-4.14)
3335	The threshold at which we will start garbage collecting for IPv6
3336	destination cache entries.  At twice this value the system will
3337	refuse new allocations.
3338
3339
3340IPv6 Update by:
3341Pekka Savola <pekkas@netcore.fi>
3342YOSHIFUJI Hideaki / USAGI Project <yoshfuji@linux-ipv6.org>
3343
3344
3345/proc/sys/net/bridge/* Variables:
3346=================================
3347
3348bridge-nf-call-arptables - BOOLEAN
3349
3350	Possible values:
3351
3352	- 0 (disabled) - disable this.
3353	- 1 (enabled)  - pass bridged ARP traffic to arptables' FORWARD chain.
3354
3355	Default: 1 (enabled)
3356
3357bridge-nf-call-iptables - BOOLEAN
3358
3359	Possible values:
3360
3361	- 0 (disabled) - disable this.
3362	- 1 (enabled)  - pass bridged IPv4 traffic to iptables' chains.
3363
3364	Default: 1 (enabled)
3365
3366bridge-nf-call-ip6tables - BOOLEAN
3367
3368	Possible values:
3369
3370	- 0 (disabled) - disable this.
3371	- 1 (enabled)  - pass bridged IPv6 traffic to ip6tables' chains.
3372
3373	Default: 1 (enabled)
3374
3375bridge-nf-filter-vlan-tagged - BOOLEAN
3376
3377	Possible values:
3378
3379	- 0 (disabled) - disable this.
3380	- 1 (enabled)  - pass bridged vlan-tagged ARP/IP/IPv6 traffic to {arp,ip,ip6}tables
3381
3382	Default: 0 (disabled)
3383
3384bridge-nf-filter-pppoe-tagged - BOOLEAN
3385
3386	Possible values:
3387
3388	- 0 (disabled) - disable this.
3389	- 1 (enabled)  - pass bridged pppoe-tagged IP/IPv6 traffic to {ip,ip6}tables.
3390
3391	Default: 0 (disabled)
3392
3393bridge-nf-pass-vlan-input-dev - BOOLEAN
3394	- 1: if bridge-nf-filter-vlan-tagged is enabled, try to find a vlan
3395	  interface on the bridge and set the netfilter input device to the
3396	  vlan. This allows use of e.g. "iptables -i br0.1" and makes the
3397	  REDIRECT target work with vlan-on-top-of-bridge interfaces.  When no
3398	  matching vlan interface is found, or this switch is off, the input
3399	  device is set to the bridge interface.
3400
3401	- 0: disable bridge netfilter vlan interface lookup.
3402
3403	Default: 0
3404
3405``proc/sys/net/sctp/*`` Variables:
3406==================================
3407
3408addip_enable - BOOLEAN
3409	Enable or disable extension of  Dynamic Address Reconfiguration
3410	(ADD-IP) functionality specified in RFC5061.  This extension provides
3411	the ability to dynamically add and remove new addresses for the SCTP
3412	associations.
3413
3414	Possible values:
3415
3416	- 0 (disabled) - disable extension.
3417	- 1 (enabled)  - enable extension
3418
3419	Default: 0 (disabled)
3420
3421pf_enable - INTEGER
3422	Enable or disable pf (pf is short for potentially failed) state. A value
3423	of pf_retrans > path_max_retrans also disables pf state. That is, one of
3424	both pf_enable and pf_retrans > path_max_retrans can disable pf state.
3425	Since pf_retrans and path_max_retrans can be changed by userspace
3426	application, sometimes user expects to disable pf state by the value of
3427	pf_retrans > path_max_retrans, but occasionally the value of pf_retrans
3428	or path_max_retrans is changed by the user application, this pf state is
3429	enabled. As such, it is necessary to add this to dynamically enable
3430	and disable pf state. See:
3431	https://datatracker.ietf.org/doc/draft-ietf-tsvwg-sctp-failover for
3432	details.
3433
3434	Possible values:
3435
3436	- 1: Enable pf.
3437	- 0: Disable pf.
3438
3439	Default: 1
3440
3441pf_expose - INTEGER
3442	Unset or enable/disable pf (pf is short for potentially failed) state
3443	exposure.  Applications can control the exposure of the PF path state
3444	in the SCTP_PEER_ADDR_CHANGE event and access of SCTP_PF-state
3445	transport info via SCTP_GET_PEER_ADDR_INFO sockopt.
3446
3447	Possible values:
3448
3449	- 0: Unset pf state exposure (compatible with old applications). No
3450	  event will be sent but the transport info can be queried.
3451	- 1: Disable pf state exposure. No event will be sent and trying to
3452	  obtain transport info will return -EACCESS.
3453	- 2: Enable pf state exposure. The event will be sent for a transport
3454	  becoming SCTP_PF state and transport info can be obtained.
3455
3456	Default: 0
3457
3458addip_noauth_enable - BOOLEAN
3459	Dynamic Address Reconfiguration (ADD-IP) requires the use of
3460	authentication to protect the operations of adding or removing new
3461	addresses.  This requirement is mandated so that unauthorized hosts
3462	would not be able to hijack associations.  However, older
3463	implementations may not have implemented this requirement while
3464	allowing the ADD-IP extension.  For reasons of interoperability,
3465	we provide this variable to control the enforcement of the
3466	authentication requirement.
3467
3468	== ===============================================================
3469	1  Allow ADD-IP extension to be used without authentication.  This
3470	   should only be set in a closed environment for interoperability
3471	   with older implementations.
3472
3473	0  Enforce the authentication requirement
3474	== ===============================================================
3475
3476	Default: 0
3477
3478auth_enable - BOOLEAN
3479	Enable or disable Authenticated Chunks extension.  This extension
3480	provides the ability to send and receive authenticated chunks and is
3481	required for secure operation of Dynamic Address Reconfiguration
3482	(ADD-IP) extension.
3483
3484	Possible values:
3485
3486	- 0 (disabled) - disable extension.
3487	- 1 (enabled)  - enable extension
3488
3489	Default: 0 (disabled)
3490
3491prsctp_enable - BOOLEAN
3492	Enable or disable the Partial Reliability extension (RFC3758) which
3493	is used to notify peers that a given DATA should no longer be expected.
3494
3495	Possible values:
3496
3497	- 0 (disabled) - disable extension.
3498	- 1 (enabled)  - enable extension
3499
3500	Default: 1 (enabled)
3501
3502max_burst - INTEGER
3503	The limit of the number of new packets that can be initially sent.  It
3504	controls how bursty the generated traffic can be.
3505
3506	Default: 4
3507
3508association_max_retrans - INTEGER
3509	Set the maximum number for retransmissions that an association can
3510	attempt deciding that the remote end is unreachable.  If this value
3511	is exceeded, the association is terminated.
3512
3513	Default: 10
3514
3515max_init_retransmits - INTEGER
3516	The maximum number of retransmissions of INIT and COOKIE-ECHO chunks
3517	that an association will attempt before declaring the destination
3518	unreachable and terminating.
3519
3520	Default: 8
3521
3522path_max_retrans - INTEGER
3523	The maximum number of retransmissions that will be attempted on a given
3524	path.  Once this threshold is exceeded, the path is considered
3525	unreachable, and new traffic will use a different path when the
3526	association is multihomed.
3527
3528	Default: 5
3529
3530pf_retrans - INTEGER
3531	The number of retransmissions that will be attempted on a given path
3532	before traffic is redirected to an alternate transport (should one
3533	exist).  Note this is distinct from path_max_retrans, as a path that
3534	passes the pf_retrans threshold can still be used.  Its only
3535	deprioritized when a transmission path is selected by the stack.  This
3536	setting is primarily used to enable fast failover mechanisms without
3537	having to reduce path_max_retrans to a very low value.  See:
3538	http://www.ietf.org/id/draft-nishida-tsvwg-sctp-failover-05.txt
3539	for details.  Note also that a value of pf_retrans > path_max_retrans
3540	disables this feature. Since both pf_retrans and path_max_retrans can
3541	be changed by userspace application, a variable pf_enable is used to
3542	disable pf state.
3543
3544	Default: 0
3545
3546ps_retrans - INTEGER
3547	Primary.Switchover.Max.Retrans (PSMR), it's a tunable parameter coming
3548	from section-5 "Primary Path Switchover" in rfc7829.  The primary path
3549	will be changed to another active path when the path error counter on
3550	the old primary path exceeds PSMR, so that "the SCTP sender is allowed
3551	to continue data transmission on a new working path even when the old
3552	primary destination address becomes active again".   Note this feature
3553	is disabled by initializing 'ps_retrans' per netns as 0xffff by default,
3554	and its value can't be less than 'pf_retrans' when changing by sysctl.
3555
3556	Default: 0xffff
3557
3558rto_initial - INTEGER
3559	The initial round trip timeout value in milliseconds that will be used
3560	in calculating round trip times.  This is the initial time interval
3561	for retransmissions.
3562
3563	Default: 3000
3564
3565rto_max - INTEGER
3566	The maximum value (in milliseconds) of the round trip timeout.  This
3567	is the largest time interval that can elapse between retransmissions.
3568
3569	Default: 60000
3570
3571rto_min - INTEGER
3572	The minimum value (in milliseconds) of the round trip timeout.  This
3573	is the smallest time interval the can elapse between retransmissions.
3574
3575	Default: 1000
3576
3577hb_interval - INTEGER
3578	The interval (in milliseconds) between HEARTBEAT chunks.  These chunks
3579	are sent at the specified interval on idle paths to probe the state of
3580	a given path between 2 associations.
3581
3582	Default: 30000
3583
3584sack_timeout - INTEGER
3585	The amount of time (in milliseconds) that the implementation will wait
3586	to send a SACK.
3587
3588	Default: 200
3589
3590valid_cookie_life - INTEGER
3591	The default lifetime of the SCTP cookie (in milliseconds).  The cookie
3592	is used during association establishment.
3593
3594	Default: 60000
3595
3596cookie_preserve_enable - BOOLEAN
3597	Enable or disable the ability to extend the lifetime of the SCTP cookie
3598	that is used during the establishment phase of SCTP association
3599
3600	Possible values:
3601
3602	- 0 (disabled) - disable.
3603	- 1 (enabled)  - enable cookie lifetime extension.
3604
3605	Default: 1 (enabled)
3606
3607cookie_hmac_alg - STRING
3608	Select the hmac algorithm used when generating the cookie value sent by
3609	a listening sctp socket to a connecting client in the INIT-ACK chunk.
3610	Valid values are:
3611
3612	* sha256
3613	* none
3614
3615	Default: sha256
3616
3617rcvbuf_policy - INTEGER
3618	Determines if the receive buffer is attributed to the socket or to
3619	association.   SCTP supports the capability to create multiple
3620	associations on a single socket.  When using this capability, it is
3621	possible that a single stalled association that's buffering a lot
3622	of data may block other associations from delivering their data by
3623	consuming all of the receive buffer space.  To work around this,
3624	the rcvbuf_policy could be set to attribute the receiver buffer space
3625	to each association instead of the socket.  This prevents the described
3626	blocking.
3627
3628	- 1: rcvbuf space is per association
3629	- 0: rcvbuf space is per socket
3630
3631	Default: 0
3632
3633sndbuf_policy - INTEGER
3634	Similar to rcvbuf_policy above, this applies to send buffer space.
3635
3636	- 1: Send buffer is tracked per association
3637	- 0: Send buffer is tracked per socket.
3638
3639	Default: 0
3640
3641sctp_mem - vector of 3 INTEGERs: min, pressure, max
3642	Number of pages allowed for queueing by all SCTP sockets.
3643
3644	* min: Below this number of pages SCTP is not bothered about its
3645	  memory usage. When amount of memory allocated by SCTP exceeds
3646	  this number, SCTP starts to moderate memory usage.
3647	* pressure: This value was introduced to follow format of tcp_mem.
3648	* max: Maximum number of allowed pages.
3649
3650	Default is calculated at boot time from amount of available memory.
3651
3652sctp_rmem - vector of 3 INTEGERs: min, default, max
3653	Only the first value ("min") is used, "default" and "max" are
3654	ignored.
3655
3656	* min: Minimal size of receive buffer used by SCTP socket.
3657	  It is guaranteed to each SCTP socket (but not association) even
3658	  under moderate memory pressure.
3659
3660	Default: 4K
3661
3662sctp_wmem  - vector of 3 INTEGERs: min, default, max
3663	Only the first value ("min") is used, "default" and "max" are
3664	ignored.
3665
3666	* min: Minimum size of send buffer that can be used by SCTP sockets.
3667	  It is guaranteed to each SCTP socket (but not association) even
3668	  under moderate memory pressure.
3669
3670	Default: 4K
3671
3672addr_scope_policy - INTEGER
3673	Control IPv4 address scoping (see
3674	https://datatracker.ietf.org/doc/draft-stewart-tsvwg-sctp-ipv4/00/
3675	for details).
3676
3677	- 0   - Disable IPv4 address scoping
3678	- 1   - Enable IPv4 address scoping
3679	- 2   - Follow draft but allow IPv4 private addresses
3680	- 3   - Follow draft but allow IPv4 link local addresses
3681
3682	Default: 1
3683
3684udp_port - INTEGER
3685	The listening port for the local UDP tunneling sock. Normally it's
3686	using the IANA-assigned UDP port number 9899 (sctp-tunneling).
3687
3688	This UDP sock is used for processing the incoming UDP-encapsulated
3689	SCTP packets (from RFC6951), and shared by all applications in the
3690	same net namespace. This UDP sock will be closed when the value is
3691	set to 0.
3692
3693	The value will also be used to set the src port of the UDP header
3694	for the outgoing UDP-encapsulated SCTP packets. For the dest port,
3695	please refer to 'encap_port' below.
3696
3697	Default: 0
3698
3699encap_port - INTEGER
3700	The default remote UDP encapsulation port.
3701
3702	This value is used to set the dest port of the UDP header for the
3703	outgoing UDP-encapsulated SCTP packets by default. Users can also
3704	change the value for each sock/asoc/transport by using setsockopt.
3705	For further information, please refer to RFC6951.
3706
3707	Note that when connecting to a remote server, the client should set
3708	this to the port that the UDP tunneling sock on the peer server is
3709	listening to and the local UDP tunneling sock on the client also
3710	must be started. On the server, it would get the encap_port from
3711	the incoming packet's source port.
3712
3713	Default: 0
3714
3715plpmtud_probe_interval - INTEGER
3716        The time interval (in milliseconds) for the PLPMTUD probe timer,
3717        which is configured to expire after this period to receive an
3718        acknowledgment to a probe packet. This is also the time interval
3719        between the probes for the current pmtu when the probe search
3720        is done.
3721
3722        PLPMTUD will be disabled when 0 is set, and other values for it
3723        must be >= 5000.
3724
3725	Default: 0
3726
3727reconf_enable - BOOLEAN
3728        Enable or disable extension of Stream Reconfiguration functionality
3729        specified in RFC6525. This extension provides the ability to "reset"
3730        a stream, and it includes the Parameters of "Outgoing/Incoming SSN
3731        Reset", "SSN/TSN Reset" and "Add Outgoing/Incoming Streams".
3732
3733	Possible values:
3734
3735	- 0 (disabled) - Disable extension.
3736	- 1 (enabled) - Enable extension.
3737
3738	Default: 0 (disabled)
3739
3740intl_enable - BOOLEAN
3741        Enable or disable extension of User Message Interleaving functionality
3742        specified in RFC8260. This extension allows the interleaving of user
3743        messages sent on different streams. With this feature enabled, I-DATA
3744        chunk will replace DATA chunk to carry user messages if also supported
3745        by the peer. Note that to use this feature, one needs to set this option
3746        to 1 and also needs to set socket options SCTP_FRAGMENT_INTERLEAVE to 2
3747        and SCTP_INTERLEAVING_SUPPORTED to 1.
3748
3749	Possible values:
3750
3751	- 0 (disabled) - Disable extension.
3752	- 1 (enabled) - Enable extension.
3753
3754	Default: 0 (disabled)
3755
3756ecn_enable - BOOLEAN
3757        Control use of Explicit Congestion Notification (ECN) by SCTP.
3758        Like in TCP, ECN is used only when both ends of the SCTP connection
3759        indicate support for it. This feature is useful in avoiding losses
3760        due to congestion by allowing supporting routers to signal congestion
3761        before having to drop packets.
3762
3763        Possible values:
3764
3765	- 0 (disabled) - Disable ecn.
3766	- 1 (enabled) - Enable ecn.
3767
3768	Default: 1 (enabled)
3769
3770l3mdev_accept - BOOLEAN
3771	Enabling this option allows a "global" bound socket to work
3772	across L3 master domains (e.g., VRFs) with packets capable of
3773	being received regardless of the L3 domain in which they
3774	originated. Only valid when the kernel was compiled with
3775	CONFIG_NET_L3_MASTER_DEV.
3776
3777	Possible values:
3778
3779	- 0 (disabled)
3780	- 1 (enabled)
3781
3782	Default: 1 (enabled)
3783
3784
3785``/proc/sys/net/core/*``
3786========================
3787
3788	Please see: Documentation/admin-guide/sysctl/net.rst for descriptions of these entries.
3789
3790
3791``/proc/sys/net/unix/*``
3792========================
3793
3794max_dgram_qlen - INTEGER
3795	The maximum length of dgram socket receive queue
3796
3797	Default: 10
3798
3799