]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - share/man/man4/tcp.4
Import device-tree files from Linux 6.3
[FreeBSD/FreeBSD.git] / share / man / man4 / tcp.4
1 .\" Copyright (c) 1983, 1991, 1993
2 .\"     The Regents of the University of California.
3 .\" Copyright (c) 2010-2011 The FreeBSD Foundation
4 .\" All rights reserved.
5 .\"
6 .\" Portions of this documentation were written at the Centre for Advanced
7 .\" Internet Architectures, Swinburne University of Technology, Melbourne,
8 .\" Australia by David Hayes under sponsorship from the FreeBSD Foundation.
9 .\"
10 .\" Redistribution and use in source and binary forms, with or without
11 .\" modification, are permitted provided that the following conditions
12 .\" are met:
13 .\" 1. Redistributions of source code must retain the above copyright
14 .\"    notice, this list of conditions and the following disclaimer.
15 .\" 2. Redistributions in binary form must reproduce the above copyright
16 .\"    notice, this list of conditions and the following disclaimer in the
17 .\"    documentation and/or other materials provided with the distribution.
18 .\" 3. Neither the name of the University nor the names of its contributors
19 .\"    may be used to endorse or promote products derived from this software
20 .\"    without specific prior written permission.
21 .\"
22 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 .\" SUCH DAMAGE.
33 .\"
34 .\"     From: @(#)tcp.4 8.1 (Berkeley) 6/5/93
35 .\" $FreeBSD$
36 .\"
37 .Dd June 29, 2023
38 .Dt TCP 4
39 .Os
40 .Sh NAME
41 .Nm tcp
42 .Nd Internet Transmission Control Protocol
43 .Sh SYNOPSIS
44 .In sys/types.h
45 .In sys/socket.h
46 .In netinet/in.h
47 .In netinet/tcp.h
48 .Ft int
49 .Fn socket AF_INET SOCK_STREAM 0
50 .Sh DESCRIPTION
51 The
52 .Tn TCP
53 protocol provides reliable, flow-controlled, two-way
54 transmission of data.
55 It is a byte-stream protocol used to
56 support the
57 .Dv SOCK_STREAM
58 abstraction.
59 .Tn TCP
60 uses the standard
61 Internet address format and, in addition, provides a per-host
62 collection of
63 .Dq "port addresses" .
64 Thus, each address is composed
65 of an Internet address specifying the host and network,
66 with a specific
67 .Tn TCP
68 port on the host identifying the peer entity.
69 .Pp
70 Sockets utilizing the
71 .Tn TCP
72 protocol are either
73 .Dq active
74 or
75 .Dq passive .
76 Active sockets initiate connections to passive
77 sockets.
78 By default,
79 .Tn TCP
80 sockets are created active; to create a
81 passive socket, the
82 .Xr listen 2
83 system call must be used
84 after binding the socket with the
85 .Xr bind 2
86 system call.
87 Only passive sockets may use the
88 .Xr accept 2
89 call to accept incoming connections.
90 Only active sockets may use the
91 .Xr connect 2
92 call to initiate connections.
93 .Pp
94 Passive sockets may
95 .Dq underspecify
96 their location to match
97 incoming connection requests from multiple networks.
98 This technique, termed
99 .Dq "wildcard addressing" ,
100 allows a single
101 server to provide service to clients on multiple networks.
102 To create a socket which listens on all networks, the Internet
103 address
104 .Dv INADDR_ANY
105 must be bound.
106 The
107 .Tn TCP
108 port may still be specified
109 at this time; if the port is not specified, the system will assign one.
110 Once a connection has been established, the socket's address is
111 fixed by the peer entity's location.
112 The address assigned to the
113 socket is the address associated with the network interface
114 through which packets are being transmitted and received.
115 Normally, this address corresponds to the peer entity's network.
116 .Pp
117 .Tn TCP
118 supports a number of socket options which can be set with
119 .Xr setsockopt 2
120 and tested with
121 .Xr getsockopt 2 :
122 .Bl -tag -width ".Dv TCP_FUNCTION_BLK"
123 .It Dv TCP_INFO
124 Information about a socket's underlying TCP session may be retrieved
125 by passing the read-only option
126 .Dv TCP_INFO
127 to
128 .Xr getsockopt 2 .
129 It accepts a single argument: a pointer to an instance of
130 .Vt "struct tcp_info" .
131 .Pp
132 This API is subject to change; consult the source to determine
133 which fields are currently filled out by this option.
134 .Fx
135 specific additions include
136 send window size,
137 receive window size,
138 and
139 bandwidth-controlled window space.
140 .It Dv TCP_CCALGOOPT
141 Set or query congestion control algorithm specific parameters.
142 See
143 .Xr mod_cc 4
144 for details.
145 .It Dv TCP_CONGESTION
146 Select or query the congestion control algorithm that TCP will use for the
147 connection.
148 See
149 .Xr mod_cc 4
150 for details.
151 .It Dv TCP_FASTOPEN
152 Enable or disable TCP Fast Open (TFO).
153 To use this option, the kernel must be built with the
154 .Dv TCP_RFC7413
155 option.
156 .Pp
157 This option can be set on the socket either before or after the
158 .Xr listen 2
159 is invoked.
160 Clearing this option on a listen socket after it has been set has no effect on
161 existing TFO connections or TFO connections in progress; it only prevents new
162 TFO connections from being established.
163 .Pp
164 For passively-created sockets, the
165 .Dv TCP_FASTOPEN
166 socket option can be queried to determine whether the connection was established
167 using TFO.
168 Note that connections that are established via a TFO
169 .Tn SYN ,
170 but that fall back to using a non-TFO
171 .Tn SYN|ACK
172 will have the
173 .Dv TCP_FASTOPEN
174 socket option set.
175 .Pp
176 In addition to the facilities defined in RFC7413, this implementation supports a
177 pre-shared key (PSK) mode of operation in which the TFO server requires the
178 client to be in posession of a shared secret in order for the client to be able
179 to successfully open TFO connections with the server.
180 This is useful, for example, in environments where TFO servers are exposed to
181 both internal and external clients and only wish to allow TFO connections from
182 internal clients.
183 .Pp
184 In the PSK mode of operation, the server generates and sends TFO cookies to
185 requesting clients as usual.
186 However, when validating cookies received in TFO SYNs from clients, the server
187 requires the client-supplied cookie to equal
188 .Bd -literal -offset left
189 SipHash24(key=\fI16-byte-psk\fP, msg=\fIcookie-sent-to-client\fP)
190 .Ed
191 .Pp
192 Multiple concurrent valid pre-shared keys are supported so that time-based
193 rolling PSK invalidation policies can be implemented in the system.
194 The default number of concurrent pre-shared keys is 2.
195 .Pp
196 This can be adjusted with the
197 .Dv TCP_RFC7413_MAX_PSKS
198 kernel option.
199 .It Dv TCP_FUNCTION_BLK
200 Select or query the set of functions that TCP will use for this connection.
201 This allows a user to select an alternate TCP stack.
202 The alternate TCP stack must already be loaded in the kernel.
203 To list the available TCP stacks, see
204 .Va functions_available
205 in the
206 .Sx MIB (sysctl) Variables
207 section further down.
208 To list the default TCP stack, see
209 .Va functions_default
210 in the
211 .Sx MIB (sysctl) Variables
212 section.
213 .It Dv TCP_KEEPINIT
214 This
215 .Xr setsockopt 2
216 option accepts a per-socket timeout argument of
217 .Vt "u_int"
218 in seconds, for new, non-established
219 .Tn TCP
220 connections.
221 For the global default in milliseconds see
222 .Va keepinit
223 in the
224 .Sx MIB (sysctl) Variables
225 section further down.
226 .It Dv TCP_KEEPIDLE
227 This
228 .Xr setsockopt 2
229 option accepts an argument of
230 .Vt "u_int"
231 for the amount of time, in seconds, that the connection must be idle
232 before keepalive probes (if enabled) are sent for the connection of this
233 socket.
234 If set on a listening socket, the value is inherited by the newly created
235 socket upon
236 .Xr accept 2 .
237 For the global default in milliseconds see
238 .Va keepidle
239 in the
240 .Sx MIB (sysctl) Variables
241 section further down.
242 .It Dv TCP_KEEPINTVL
243 This
244 .Xr setsockopt 2
245 option accepts an argument of
246 .Vt "u_int"
247 to set the per-socket interval, in seconds, between keepalive probes sent
248 to a peer.
249 If set on a listening socket, the value is inherited by the newly created
250 socket upon
251 .Xr accept 2 .
252 For the global default in milliseconds see
253 .Va keepintvl
254 in the
255 .Sx MIB (sysctl) Variables
256 section further down.
257 .It Dv TCP_KEEPCNT
258 This
259 .Xr setsockopt 2
260 option accepts an argument of
261 .Vt "u_int"
262 and allows a per-socket tuning of the number of probes sent, with no response,
263 before the connection will be dropped.
264 If set on a listening socket, the value is inherited by the newly created
265 socket upon
266 .Xr accept 2 .
267 For the global default see the
268 .Va keepcnt
269 in the
270 .Sx MIB (sysctl) Variables
271 section further down.
272 .It Dv TCP_NODELAY
273 Under most circumstances,
274 .Tn TCP
275 sends data when it is presented;
276 when outstanding data has not yet been acknowledged, it gathers
277 small amounts of output to be sent in a single packet once
278 an acknowledgement is received.
279 For a small number of clients, such as window systems
280 that send a stream of mouse events which receive no replies,
281 this packetization may cause significant delays.
282 The boolean option
283 .Dv TCP_NODELAY
284 defeats this algorithm.
285
286 .It Dv TCP_MAXSEG
287 By default, a sender- and
288 .No receiver- Ns Tn TCP
289 will negotiate among themselves to determine the maximum segment size
290 to be used for each connection.
291 The
292 .Dv TCP_MAXSEG
293 option allows the user to determine the result of this negotiation,
294 and to reduce it if desired.
295 .It Dv TCP_MAXUNACKTIME
296 This
297 .Xr setsockopt 2
298 option accepts an argument of
299 .Vt "u_int"
300 to set the per-socket interval, in seconds, in which the connection must
301 make progress. Progress is defined by at least 1 byte being acknowledged within
302 the set time period. If a connection fails to make progress, then the
303 .Tn TCP
304 stack will terminate the connection with a reset. Note that the default
305 value for this is zero which indicates no progress checks should be made.
306 .It Dv TCP_NOOPT
307 .Tn TCP
308 usually sends a number of options in each packet, corresponding to
309 various
310 .Tn TCP
311 extensions which are provided in this implementation.
312 The boolean option
313 .Dv TCP_NOOPT
314 is provided to disable
315 .Tn TCP
316 option use on a per-connection basis.
317 .It Dv TCP_NOPUSH
318 By convention, the
319 .No sender- Ns Tn TCP
320 will set the
321 .Dq push
322 bit, and begin transmission immediately (if permitted) at the end of
323 every user call to
324 .Xr write 2
325 or
326 .Xr writev 2 .
327 When this option is set to a non-zero value,
328 .Tn TCP
329 will delay sending any data at all until either the socket is closed,
330 or the internal send buffer is filled.
331 .It Dv TCP_MD5SIG
332 This option enables the use of MD5 digests (also known as TCP-MD5)
333 on writes to the specified socket.
334 Outgoing traffic is digested;
335 digests on incoming traffic are verified.
336 When this option is enabled on a socket, all inbound and outgoing
337 TCP segments must be signed with MD5 digests.
338 .Pp
339 One common use for this in a
340 .Fx
341 router deployment is to enable
342 based routers to interwork with Cisco equipment at peering points.
343 Support for this feature conforms to RFC 2385.
344 .Pp
345 In order for this option to function correctly, it is necessary for the
346 administrator to add a tcp-md5 key entry to the system's security
347 associations database (SADB) using the
348 .Xr setkey 8
349 utility.
350 This entry can only be specified on a per-host basis at this time.
351 .Pp
352 If an SADB entry cannot be found for the destination,
353 the system does not send any outgoing segments and drops any inbound segments.
354 However, during connection negotiation, a non-signed segment will be accepted if
355 an SADB entry does not exist between hosts.
356 When a non-signed segment is accepted, the established connection is not
357 protected with MD5 digests.
358 .It Dv TCP_STATS
359 Manage collection of connection level statistics using the
360 .Xr stats 3
361 framework.
362 .Pp
363 Each dropped segment is taken into account in the TCP protocol statistics.
364 .It Dv TCP_TXTLS_ENABLE
365 Enable in-kernel Transport Layer Security (TLS) for data written to this
366 socket.
367 See
368 .Xr ktls 4
369 for more details.
370 .It Dv TCP_TXTLS_MODE
371 The integer argument can be used to get or set the current TLS transmit mode
372 of a socket.
373 See
374 .Xr ktls 4
375 for more details.
376 .It Dv TCP_RXTLS_ENABLE
377 Enable in-kernel TLS for data read from this socket.
378 See
379 .Xr ktls 4
380 for more details.
381 .It Dv TCP_REUSPORT_LB_NUMA
382 Changes NUMA affinity filtering for an established TCP listen
383 socket.
384 This option takes a single integer argument which specifies
385 the NUMA domain to filter on for this listen socket.
386 The argument can also have the follwing special values:
387 .Bl -tag -width "Dv TCP_REUSPORT_LB_NUMA"
388 .It Dv TCP_REUSPORT_LB_NUMA_NODOM
389 Remove NUMA filtering for this listen socket.
390 .It Dv TCP_REUSPORT_LB_NUMA_CURDOM
391 Filter traffic associated with the domain where the calling thread is
392 currently executing.
393 This is typically used after a process or thread inherits a listen
394 socket from its parent, and sets its CPU affinity to a particular core.
395 .El
396 .It Dv TCP_REMOTE_UDP_ENCAPS_PORT
397 Set and get the remote UDP encapsulation port.
398 It can only be set on a closed TCP socket.
399 .El
400 .Pp
401 The option level for the
402 .Xr setsockopt 2
403 call is the protocol number for
404 .Tn TCP ,
405 available from
406 .Xr getprotobyname 3 ,
407 or
408 .Dv IPPROTO_TCP .
409 All options are declared in
410 .In netinet/tcp.h .
411 .Pp
412 Options at the
413 .Tn IP
414 transport level may be used with
415 .Tn TCP ;
416 see
417 .Xr ip 4 .
418 Incoming connection requests that are source-routed are noted,
419 and the reverse source route is used in responding.
420 .Pp
421 The default congestion control algorithm for
422 .Tn TCP
423 is
424 .Xr cc_newreno 4 .
425 Other congestion control algorithms can be made available using the
426 .Xr mod_cc 4
427 framework.
428 .Ss MIB (sysctl) Variables
429 The
430 .Tn TCP
431 protocol implements a number of variables in the
432 .Va net.inet.tcp
433 branch of the
434 .Xr sysctl 3
435 MIB, which can also be read or modified with
436 .Xr sysctl 8 .
437 .Bl -tag -width ".Va v6pmtud_blackhole_mss"
438 .It Va always_keepalive
439 Assume that
440 .Dv SO_KEEPALIVE
441 is set on all
442 .Tn TCP
443 connections, the kernel will
444 periodically send a packet to the remote host to verify the connection
445 is still up.
446 .It Va blackhole
447 If enabled, disable sending of RST when a connection is attempted
448 to a port where there is no socket accepting connections.
449 See
450 .Xr blackhole 4 .
451 .It Va blackhole_local
452 See
453 .Xr blackhole 4 .
454 .It Va cc
455 A number of variables for congestion control are under the
456 .Va net.inet.tcp.cc
457 node.
458 See
459 .Xr mod_cc 4 .
460 .It Va cc.newreno
461 Variables for NewReno congestion control are under the
462 .Va net.inet.tcp.cc.newreno
463 node.
464 See
465 .Xr cc_newreno 4 .
466 .It Va delacktime
467 Maximum amount of time, in milliseconds, before a delayed ACK is sent.
468 .It Va delayed_ack
469 Delay ACK to try and piggyback it onto a data packet or another ACK.
470 .It Va do_lrd
471 Enable Lost Retransmission Detection for SACK-enabled sessions, disabled by
472 default.
473 Under severe congestion, a retransmission can be lost which then leads to a
474 mandatory Retransmission Timeout (RTO), followed by slow-start.
475 LRD will try to resend the repeatedly lost packet, preventing the time-consuming
476 RTO and performance reducing slow-start.
477 .It Va do_prr
478 Perform SACK loss recovery using the Proportional Rate Reduction (PRR) algorithm
479 described in RFC6937.
480 This improves the effectiveness of retransmissions particular in environments
481 with ACK thinning or burst loss events, as chances to run out of the ACK clock
482 are reduced, preventing lengthy and performance reducing RTO based loss recovery
483 (default is true).
484 .It Va do_prr_conservative
485 While doing Proportional Rate Reduction, remain strictly in a packet conserving
486 mode, sending only one new packet for each ACK received.
487 Helpful when a misconfigured token bucket traffic policer causes persistent
488 high losses leading to RTO, but reduces PRR effectiveness in more common settings
489 (default is false).
490 .It Va do_tcpdrain
491 Flush packets in the
492 .Tn TCP
493 reassembly queue if the system is low on mbufs.
494 .It Va drop_synfin
495 Drop TCP packets with both SYN and FIN set.
496 .It Va ecn.enable
497 Enable support for TCP Explicit Congestion Notification (ECN).
498 ECN allows a TCP sender to reduce the transmission rate in order to
499 avoid packet drops.
500 .Bl -tag -compact
501 .It 0
502 Disable ECN.
503 .It 1
504 Allow incoming connections to request ECN.
505 Outgoing connections will request ECN.
506 .It 2
507 Allow incoming connections to request ECN.
508 Outgoing connections will not request ECN.
509 (default)
510 .It 3
511 Negotiate on incoming connection for Accurate ECN, ECN, or no ECN.
512 Outgoing connections will request Accurate ECN and fall back to
513 ECN depending on the capabilities of the server.
514 .It 4
515 Negotiate on incoming connection for Accurate ECN, ECN, or no ECN.
516 Outgoing connections will not request ECN.
517 .El
518 .It Va ecn.maxretries
519 Number of retries (SYN or SYN/ACK retransmits) before disabling ECN on a
520 specific connection.
521 This is needed to help with connection establishment
522 when a broken firewall is in the network path.
523 .It Va fast_finwait2_recycle
524 Recycle
525 .Tn TCP
526 .Dv FIN_WAIT_2
527 connections faster when the socket is marked as
528 .Dv SBS_CANTRCVMORE
529 (no user process has the socket open, data received on
530 the socket cannot be read).
531 The timeout used here is
532 .Va finwait2_timeout .
533 .It Va fastopen.acceptany
534 When non-zero, all client-supplied TFO cookies will be considered to be valid.
535 The default is 0.
536 .It Va fastopen.autokey
537 When this and
538 .Va net.inet.tcp.fastopen.server_enable
539 are non-zero, a new key will be automatically generated after this specified
540 seconds.
541 The default is 120.
542 .It Va fastopen.ccache_bucket_limit
543 The maximum number of entries in a client cookie cache bucket.
544 The default value can be tuned with the
545 .Dv TCP_FASTOPEN_CCACHE_BUCKET_LIMIT_DEFAULT
546 kernel option or by setting
547 .Va net.inet.tcp.fastopen_ccache_bucket_limit
548 in the
549 .Xr loader 8 .
550 .It Va fastopen.ccache_buckets
551 The number of client cookie cache buckets.
552 Read-only.
553 The value can be tuned with the
554 .Dv TCP_FASTOPEN_CCACHE_BUCKETS_DEFAULT
555 kernel option or by setting
556 .Va fastopen.ccache_buckets
557 in the
558 .Xr loader 8 .
559 .It Va fastopen.ccache_list
560 Print the client cookie cache.
561 Read-only.
562 .It Va fastopen.client_enable
563 When zero, no new active (i.e., client) TFO connections can be created.
564 On the transition from enabled to disabled, the client cookie cache is cleared
565 and disabled.
566 The transition from enabled to disabled does not affect any active TFO
567 connections in progress; it only prevents new ones from being established.
568 The default is 0.
569 .It Va fastopen.keylen
570 The key length in bytes.
571 Read-only.
572 .It Va fastopen.maxkeys
573 The maximum number of keys supported.
574 Read-only,
575 .It Va fastopen.maxpsks
576 The maximum number of pre-shared keys supported.
577 Read-only.
578 .It Va fastopen.numkeys
579 The current number of keys installed.
580 Read-only.
581 .It Va fastopen.numpsks
582 The current number of pre-shared keys installed.
583 Read-only.
584 .It Va fastopen.path_disable_time
585 When a failure occurs while trying to create a new active (i.e., client) TFO
586 connection, new active connections on the same path, as determined by the tuple
587 .Brq client_ip, server_ip, server_port ,
588 will be forced to be non-TFO for this many seconds.
589 Note that the path disable mechanism relies on state stored in client cookie
590 cache entries, so it is possible for the disable time for a given path to be
591 reduced if the corresponding client cookie cache entry is reused due to resource
592 pressure before the disable period has elapsed.
593 The default is
594 .Dv TCP_FASTOPEN_PATH_DISABLE_TIME_DEFAULT .
595 .It Va fastopen.psk_enable
596 When non-zero, pre-shared key (PSK) mode is enabled for all TFO servers.
597 On the transition from enabled to disabled, all installed pre-shared keys are
598 removed.
599 The default is 0.
600 .It Va fastopen.server_enable
601 When zero, no new passive (i.e., server) TFO connections can be created.
602 On the transition from enabled to disabled, all installed keys and pre-shared
603 keys are removed.
604 On the transition from disabled to enabled, if
605 .Va fastopen.autokey
606 is non-zero and there are no keys installed, a new key will be generated
607 immediately.
608 The transition from enabled to disabled does not affect any passive TFO
609 connections in progress; it only prevents new ones from being established.
610 The default is 0.
611 .It Va fastopen.setkey
612 Install a new key by writing
613 .Va net.inet.tcp.fastopen.keylen
614 bytes to this sysctl.
615 .It Va fastopen.setpsk
616 Install a new pre-shared key by writing
617 .Va net.inet.tcp.fastopen.keylen
618 bytes to this sysctl.
619 .It Va finwait2_timeout
620 Timeout to use for fast recycling of
621 .Tn TCP
622 .Dv FIN_WAIT_2
623 connections
624 .Pq Va fast_finwait2_recycle .
625 Defaults to 60 seconds.
626 .It Va functions_available
627 List of available TCP function blocks (TCP stacks).
628 .It Va functions_default
629 The default TCP function block (TCP stack).
630 .It Va functions_inherit_listen_socket_stack
631 Determines whether to inherit listen socket's TCP stack or use the current
632 system default TCP stack, as defined by
633 .Va functions_default .
634 Default is true.
635 .It Va hostcache
636 The TCP host cache is used to cache connection details and metrics to
637 improve future performance of connections between the same hosts.
638 At the completion of a TCP connection, a host will cache information
639 for the connection for some defined period of time.
640 There are a number of
641 .Va hostcache
642 variables under this node.
643 See
644 .Va hostcache.enable .
645 .It Va hostcache.bucketlimit
646 The maximum number of entries for the same hash.
647 Defaults to 30.
648 .It Va hostcache.cachelimit
649 Overall entry limit for hostcache.
650 Defaults to
651 .Va hashsize
652 *
653 .Va bucketlimit .
654 .It Va hostcache.count
655 The current number of entries in the host cache.
656 .It Va hostcache.enable
657 Enable/disable the host cache:
658 .Bl -tag -compact
659 .It 0
660 Disable the host cache.
661 .It 1
662 Enable the host cache. (default)
663 .El
664 .It Va hostcache.expire
665 Time in seconds, how long a entry should be kept in the
666 host cache since last accessed.
667 Defaults to 3600 (1 hour).
668 .It Va hostcache.hashsize
669 Size of TCP hostcache hashtable.
670 This number has to be a power of two, or will be rejected.
671 Defaults to 512.
672 .It Va hostcache.histo
673 Provide a Histogram of the hostcache hash utilization.
674 .It Va hostcache.list
675 Provide a complete list of all current entries in the host
676 cache.
677 .It Va hostcache.prune
678 Time in seconds between pruning expired host cache entries.
679 Defaults to 300 (5 minutes).
680 .It Va hostcache.purge
681 Expire all entires on next pruning of host cache entries.
682 Any non-zero setting will be reset to zero, once the purge
683 is running.
684 .Bl -tag -compact
685 .It 0
686 Do not purge all entries when pruning the host cache (default).
687 .It 1
688 Purge all entries when doing the next pruning.
689 .It 2
690 Purge all entries and also reseed the hash salt.
691 .El
692 .It Va hostcache.purgenow
693 Immediately purge all entries once set to any value.
694 Setting this to 2 will also reseed the hash salt.
695 .It Va icmp_may_rst
696 Certain
697 .Tn ICMP
698 unreachable messages may abort connections in
699 .Tn SYN-SENT
700 state.
701 .It Va initcwnd_segments
702 Enable the ability to specify initial congestion window in number of segments.
703 The default value is 10 as suggested by RFC 6928.
704 Changing the value on the fly would not affect connections
705 using congestion window from the hostcache.
706 Caution:
707 This regulates the burst of packets allowed to be sent in the first RTT.
708 The value should be relative to the link capacity.
709 Start with small values for lower-capacity links.
710 Large bursts can cause buffer overruns and packet drops if routers have small
711 buffers or the link is experiencing congestion.
712 .It Va insecure_rst
713 Use criteria defined in RFC793 instead of RFC5961 for accepting RST segments.
714 Default is false.
715 .It Va insecure_syn
716 Use criteria defined in RFC793 instead of RFC5961 for accepting SYN segments.
717 Default is false.
718 .It Va isn_reseed_interval
719 The interval (in seconds) specifying how often the secret data used in
720 RFC 1948 initial sequence number calculations should be reseeded.
721 By default, this variable is set to zero, indicating that
722 no reseeding will occur.
723 Reseeding should not be necessary, and will break
724 .Dv TIME_WAIT
725 recycling for a few minutes.
726 .It Va keepcnt
727 Number of keepalive probes sent, with no response, before a connection
728 is dropped.
729 The default is 8 packets.
730 .It Va keepidle
731 Amount of time, in milliseconds, that the connection must be idle
732 before sending keepalive probes (if enabled).
733 The default is 7200000 msec (7.2M msec, 2 hours).
734 .It Va keepinit
735 Timeout, in milliseconds, for new, non-established
736 .Tn TCP
737 connections.
738 The default is 75000 msec (75K msec, 75 sec).
739 .It Va keepintvl
740 The interval, in milliseconds, between keepalive probes sent to remote
741 machines, when no response is received on a
742 .Va keepidle
743 probe.
744 The default is 75000 msec (75K msec, 75 sec).
745 .It Va log_in_vain
746 Log any connection attempts to ports where there is no socket
747 accepting connections.
748 The value of 1 limits the logging to
749 .Tn SYN
750 (connection establishment) packets only.
751 A value of 2 results in any
752 .Tn TCP
753 packets to closed ports being logged.
754 Any value not listed above disables the logging
755 (default is 0, i.e., the logging is disabled).
756 .It Va minmss
757 Minimum TCP Maximum Segment Size; used to prevent a denial of service attack
758 from an unreasonably low MSS.
759 .It Va msl
760 The Maximum Segment Lifetime, in milliseconds, for a packet.
761 .It Va mssdflt
762 The default value used for the TCP Maximum Segment Size
763 .Pq Dq MSS
764 for IPv4 when no advice to the contrary is received from MSS negotiation.
765 .It Va newcwd
766 Enable the New Congestion Window Validation mechanism as described in RFC 7661.
767 This gently reduces the congestion window during periods, where TCP is
768 application limited and the network bandwidth is not utilized completely.
769 That prevents self-inflicted packet losses once the application starts to
770 transmit data at a higher speed.
771 .It Va nolocaltimewait
772 Suppress creation of TCP
773 .Dv TIME_WAIT
774 states for connections in
775 which both endpoints are local.
776 .It Va path_mtu_discovery
777 Enable Path MTU Discovery.
778 .It Va pcbcount
779 Number of active protocol control blocks
780 (read-only).
781 .It Va perconn_stats_enable
782 Controls the default collection of statistics for all connections using the
783 .Xr stats 3
784 framework.
785 0 disables, 1 enables, 2 enables random sampling across log id connection
786 groups with all connections in a group receiving the same setting.
787 .It Va perconn_stats_sample_rates
788 A CSV list of template_spec=percent key-value pairs which controls the per
789 template sampling rates when
790 .Xr stats 3
791 sampling is enabled.
792 .It Va persmax
793 Maximum persistence interval, msec.
794 .It Va persmin
795 Minimum persistence interval, msec.
796 .It Va pmtud_blackhole_detection
797 Enable automatic path MTU blackhole detection.
798 In case of retransmits of MSS sized segments,
799 the OS will lower the MSS to check if it's an MTU problem.
800 If the current MSS is greater than the configured value to try
801 .Po Va net.inet.tcp.pmtud_blackhole_mss
802 and
803 .Va net.inet.tcp.v6pmtud_blackhole_mss
804 .Pc ,
805 it will be set to this value, otherwise,
806 the MSS will be set to the default values
807 .Po Va net.inet.tcp.mssdflt
808 and
809 .Va net.inet.tcp.v6mssdflt
810 .Pc .
811 Settings:
812 .Bl -tag -compact
813 .It 0
814 Disable path MTU blackhole detection.
815 .It 1
816 Enable path MTU blackhole detection for IPv4 and IPv6.
817 .It 2
818 Enable path MTU blackhole detection only for IPv4.
819 .It 3
820 Enable path MTU blackhole detection only for IPv6.
821 .El
822 .It Va pmtud_blackhole_mss
823 MSS to try for IPv4 if PMTU blackhole detection is turned on.
824 .It Va reass.cursegments
825 The current total number of segments present in all reassembly queues.
826 .It Va reass.maxqueuelen
827 The maximum number of segments allowed in each reassembly queue.
828 By default, the system chooses a limit based on each TCP connection's
829 receive buffer size and maximum segment size (MSS).
830 The actual limit applied to a session's reassembly queue will be the lower of
831 the system-calculated automatic limit and the user-specified
832 .Va reass.maxqueuelen
833 limit.
834 .It Va reass.maxsegments
835 The maximum limit on the total number of segments across all reassembly
836 queues.
837 The limit can be adjusted as a tunable.
838 .It Va recvbuf_auto
839 Enable automatic receive buffer sizing as a connection progresses.
840 .It Va recvbuf_max
841 Maximum size of automatic receive buffer.
842 .It Va recvspace
843 Initial
844 .Tn TCP
845 receive window (buffer size).
846 .It Va retries
847 Maximum number of consecutive timer based retransmits sent after a data
848 segment is lost (default and maximum is 12).
849 .It Va rexmit_drop_options
850 Drop TCP options from third and later retransmitted SYN segments
851 of a connection.
852 .It Va rexmit_initial , rexmit_min , rexmit_slop
853 Adjust the retransmit timer calculation for
854 .Tn TCP .
855 The slop is
856 typically added to the raw calculation to take into account
857 occasional variances that the
858 .Tn SRTT
859 (smoothed round-trip time)
860 is unable to accommodate, while the minimum specifies an
861 absolute minimum.
862 While a number of
863 .Tn TCP
864 RFCs suggest a 1
865 second minimum, these RFCs tend to focus on streaming behavior,
866 and fail to deal with the fact that a 1 second minimum has severe
867 detrimental effects over lossy interactive connections, such
868 as a 802.11b wireless link, and over very fast but lossy
869 connections for those cases not covered by the fast retransmit
870 code.
871 For this reason, we use 200ms of slop and a near-0
872 minimum, which gives us an effective minimum of 200ms (similar to
873 .Tn Linux ) .
874 The initial value is used before an RTT measurement has been performed.
875 .It Va rfc1323
876 Implement the window scaling and timestamp options of RFC 1323/RFC 7323
877 (default is 1).
878 Settings:
879 .Bl -tag -compact
880 .It 0
881 Disable window scaling and timestamp option.
882 .It 1
883 Enable window scaling and timestamp option.
884 .It 2
885 Enable only window scaling.
886 .It 3
887 Enable only timestamp option.
888 .El
889 .It Va rfc3042
890 Enable the Limited Transmit algorithm as described in RFC 3042.
891 It helps avoid timeouts on lossy links and also when the congestion window
892 is small, as happens on short transfers.
893 .It Va rfc3390
894 Enable support for RFC 3390, which allows for a variable-sized
895 starting congestion window on new connections, depending on the
896 maximum segment size.
897 This helps throughput in general, but
898 particularly affects short transfers and high-bandwidth large
899 propagation-delay connections.
900 .It Va rfc6675_pipe
901 Deprecated and superseded by
902 .Va sack.revised
903 .It Va sack.enable
904 Enable support for RFC 2018, TCP Selective Acknowledgment option,
905 which allows the receiver to inform the sender about all successfully
906 arrived segments, allowing the sender to retransmit the missing segments
907 only.
908 .It Va sack.globalholes
909 Global number of TCP SACK holes currently allocated.
910 .It Va sack.globalmaxholes
911 Maximum number of SACK holes per system, across all connections.
912 Defaults to 65536.
913 .It Va sack.maxholes
914 Maximum number of SACK holes per connection.
915 Defaults to 128.
916 .It Va sack.revised
917 Enables three updated mechanisms from RFC6675 (default is true).
918 Calculate the bytes in flight using the algorithm described in RFC 6675, and
919 is also an improvement when Proportional Rate Reduction is enabled.
920 Next, Rescue Retransmission helps timely loss recovery, when the trailing segments
921 of a transmission are lost, while no additional data is ready to be sent.
922 In case a partial ACK without a SACK block is received during SACK loss
923 recovery, the trailing segment is immediately resent, rather than waiting
924 for a Retransmission timeout.
925 Finally, SACK loss recovery is also engaged, once two segments plus one byte are
926 SACKed - even if no traditional duplicate ACKs were observed.
927 .It Va sendbuf_auto
928 Enable automatic send buffer sizing.
929 .It Va sendbuf_auto_lowat
930 Modify threshold for auto send buffer growth to account for
931 .Dv SO_SNDLOWAT .
932 .It Va sendbuf_inc
933 Incrementor step size of automatic send buffer.
934 .It Va sendbuf_max
935 Maximum size of automatic send buffer.
936 .It Va sendspace
937 Initial
938 .Tn TCP
939 send window (buffer size).
940 .It Va syncache
941 Variables under the
942 .Va net.inet.tcp.syncache
943 node are documented in
944 .Xr syncache 4 .
945 .It Va syncookies
946 Determines whether or not
947 .Tn SYN
948 cookies should be generated for outbound
949 .Tn SYN-ACK
950 packets.
951 .Tn SYN
952 cookies are a great help during
953 .Tn SYN
954 flood attacks, and are enabled by default.
955 (See
956 .Xr syncookies 4 . )
957 .It Va syncookies_only
958 See
959 .Xr syncookies 4 .
960 .It Va tcbhashsize
961 Size of the
962 .Tn TCP
963 control-block hash table
964 (read-only).
965 This is tuned using the kernel option
966 .Dv TCBHASHSIZE
967 or by setting
968 .Va net.inet.tcp.tcbhashsize
969 in the
970 .Xr loader 8 .
971 .It Va tolerate_missing_ts
972 Tolerate the missing of timestamps (RFC 1323/RFC 7323) for
973 .Tn TCP
974 segments belonging to
975 .Tn TCP
976 connections for which support of
977 .Tn TCP
978 timestamps has been negotiated.
979 As of June 2021, several TCP stacks are known to violate RFC 7323, including
980 modern widely deployed ones.
981 Therefore the default is 1, i.e., the missing of timestamps is tolerated.
982 .It Va ts_offset_per_conn
983 When initializing the TCP timestamps, use a per connection offset instead of a
984 per host pair offset.
985 Default is to use per connection offsets as recommended in RFC 7323.
986 .It Va tso
987 Enable TCP Segmentation Offload.
988 .It Va udp_tunneling_overhead
989 The overhead taken into account when using UDP encapsulation.
990 Since MSS clamping by middleboxes will most likely not work, values larger than
991 8 (the size of the UDP header) are also supported.
992 Supported values are between 8 and 1024.
993 The default is 8.
994 .It Va udp_tunneling_port
995 The local UDP encapsulation port.
996 A value of 0 indicates that UDP encapsulation is disabled.
997 The default is 0.
998 .It Va v6mssdflt
999 The default value used for the TCP Maximum Segment Size
1000 .Pq Dq MSS
1001 for IPv6 when no advice to the contrary is received from MSS negotiation.
1002 .It Va v6pmtud_blackhole_mss
1003 MSS to try for IPv6 if PMTU blackhole detection is turned on.
1004 See
1005 .Va pmtud_blackhole_detection .
1006 .El
1007 .Sh ERRORS
1008 A socket operation may fail with one of the following errors returned:
1009 .Bl -tag -width Er
1010 .It Bq Er EISCONN
1011 when trying to establish a connection on a socket which
1012 already has one;
1013 .It Bo Er ENOBUFS Bc or Bo Er ENOMEM Bc
1014 when the system runs out of memory for
1015 an internal data structure;
1016 .It Bq Er ETIMEDOUT
1017 when a connection was dropped
1018 due to excessive retransmissions;
1019 .It Bq Er ECONNRESET
1020 when the remote peer
1021 forces the connection to be closed;
1022 .It Bq Er ECONNREFUSED
1023 when the remote
1024 peer actively refuses connection establishment (usually because
1025 no process is listening to the port);
1026 .It Bq Er EADDRINUSE
1027 when an attempt
1028 is made to create a socket with a port which has already been
1029 allocated;
1030 .It Bq Er EADDRNOTAVAIL
1031 when an attempt is made to create a
1032 socket with a network address for which no network interface
1033 exists;
1034 .It Bq Er EAFNOSUPPORT
1035 when an attempt is made to bind or connect a socket to a multicast
1036 address.
1037 .It Bq Er EINVAL
1038 when trying to change TCP function blocks at an invalid point in the session;
1039 .It Bq Er ENOENT
1040 when trying to use a TCP function block that is not available;
1041 .El
1042 .Sh SEE ALSO
1043 .Xr getsockopt 2 ,
1044 .Xr socket 2 ,
1045 .Xr stats 3 ,
1046 .Xr sysctl 3 ,
1047 .Xr blackhole 4 ,
1048 .Xr inet 4 ,
1049 .Xr intro 4 ,
1050 .Xr ip 4 ,
1051 .Xr ktls 4 ,
1052 .Xr mod_cc 4 ,
1053 .Xr siftr 4 ,
1054 .Xr syncache 4 ,
1055 .Xr tcp_bbr 4 ,
1056 .Xr tcp_rack 4 ,
1057 .Xr setkey 8 ,
1058 .Xr sysctl 8 ,
1059 .Xr tcp_functions 9
1060 .Rs
1061 .%A "V. Jacobson"
1062 .%A "B. Braden"
1063 .%A "D. Borman"
1064 .%T "TCP Extensions for High Performance"
1065 .%O "RFC 1323"
1066 .Re
1067 .Rs
1068 .%A "D. Borman"
1069 .%A "B. Braden"
1070 .%A "V. Jacobson"
1071 .%A "R. Scheffenegger"
1072 .%T "TCP Extensions for High Performance"
1073 .%O "RFC 7323"
1074 .Re
1075 .Rs
1076 .%A "A. Heffernan"
1077 .%T "Protection of BGP Sessions via the TCP MD5 Signature Option"
1078 .%O "RFC 2385"
1079 .Re
1080 .Rs
1081 .%A "K. Ramakrishnan"
1082 .%A "S. Floyd"
1083 .%A "D. Black"
1084 .%T "The Addition of Explicit Congestion Notification (ECN) to IP"
1085 .%O "RFC 3168"
1086 .Re
1087 .Sh HISTORY
1088 The
1089 .Tn TCP
1090 protocol appeared in
1091 .Bx 4.2 .
1092 The RFC 1323 extensions for window scaling and timestamps were added
1093 in
1094 .Bx 4.4 .
1095 The
1096 .Dv TCP_INFO
1097 option was introduced in
1098 .Tn Linux 2.6
1099 and is
1100 .Em subject to change .