]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - crypto/openssh/sshd_config.5
zfs: merge openzfs/zfs@59493b63c (master)
[FreeBSD/FreeBSD.git] / crypto / openssh / sshd_config.5
1 .\"
2 .\" Author: Tatu Ylonen <ylo@cs.hut.fi>
3 .\" Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 .\"                    All rights reserved
5 .\"
6 .\" As far as I am concerned, the code I have written for this software
7 .\" can be used freely for any purpose.  Any derived versions of this
8 .\" software must be clearly marked as such, and if the derived work is
9 .\" incompatible with the protocol description in the RFC file, it must be
10 .\" called by a name other than "ssh" or "Secure Shell".
11 .\"
12 .\" Copyright (c) 1999,2000 Markus Friedl.  All rights reserved.
13 .\" Copyright (c) 1999 Aaron Campbell.  All rights reserved.
14 .\" Copyright (c) 1999 Theo de Raadt.  All rights reserved.
15 .\"
16 .\" Redistribution and use in source and binary forms, with or without
17 .\" modification, are permitted provided that the following conditions
18 .\" are met:
19 .\" 1. Redistributions of source code must retain the above copyright
20 .\"    notice, this list of conditions and the following disclaimer.
21 .\" 2. Redistributions in binary form must reproduce the above copyright
22 .\"    notice, this list of conditions and the following disclaimer in the
23 .\"    documentation and/or other materials provided with the distribution.
24 .\"
25 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
26 .\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
27 .\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
28 .\" IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
29 .\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
30 .\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
31 .\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
32 .\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
33 .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
34 .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
35 .\"
36 .\" $OpenBSD: sshd_config.5,v 1.343 2022/09/17 10:34:29 djm Exp $
37 .Dd $Mdocdate: September 17 2022 $
38 .Dt SSHD_CONFIG 5
39 .Os
40 .Sh NAME
41 .Nm sshd_config
42 .Nd OpenSSH daemon configuration file
43 .Sh DESCRIPTION
44 .Xr sshd 8
45 reads configuration data from
46 .Pa /etc/ssh/sshd_config
47 (or the file specified with
48 .Fl f
49 on the command line).
50 The file contains keyword-argument pairs, one per line.
51 For each keyword, the first obtained value will be used.
52 Lines starting with
53 .Ql #
54 and empty lines are interpreted as comments.
55 Arguments may optionally be enclosed in double quotes
56 .Pq \&"
57 in order to represent arguments containing spaces.
58 .Pp
59 The possible
60 keywords and their meanings are as follows (note that
61 keywords are case-insensitive and arguments are case-sensitive):
62 .Bl -tag -width Ds
63 .It Cm AcceptEnv
64 Specifies what environment variables sent by the client will be copied into
65 the session's
66 .Xr environ 7 .
67 See
68 .Cm SendEnv
69 and
70 .Cm SetEnv
71 in
72 .Xr ssh_config 5
73 for how to configure the client.
74 The
75 .Ev TERM
76 environment variable is always accepted whenever the client
77 requests a pseudo-terminal as it is required by the protocol.
78 Variables are specified by name, which may contain the wildcard characters
79 .Ql *
80 and
81 .Ql \&? .
82 Multiple environment variables may be separated by whitespace or spread
83 across multiple
84 .Cm AcceptEnv
85 directives.
86 Be warned that some environment variables could be used to bypass restricted
87 user environments.
88 For this reason, care should be taken in the use of this directive.
89 The default is not to accept any environment variables.
90 .It Cm AddressFamily
91 Specifies which address family should be used by
92 .Xr sshd 8 .
93 Valid arguments are
94 .Cm any
95 (the default),
96 .Cm inet
97 (use IPv4 only), or
98 .Cm inet6
99 (use IPv6 only).
100 .It Cm AllowAgentForwarding
101 Specifies whether
102 .Xr ssh-agent 1
103 forwarding is permitted.
104 The default is
105 .Cm yes .
106 Note that disabling agent forwarding does not improve security
107 unless users are also denied shell access, as they can always install
108 their own forwarders.
109 .It Cm AllowGroups
110 This keyword can be followed by a list of group name patterns, separated
111 by spaces.
112 If specified, login is allowed only for users whose primary
113 group or supplementary group list matches one of the patterns.
114 Only group names are valid; a numerical group ID is not recognized.
115 By default, login is allowed for all groups.
116 The allow/deny groups directives are processed in the following order:
117 .Cm DenyGroups ,
118 .Cm AllowGroups .
119 .Pp
120 See PATTERNS in
121 .Xr ssh_config 5
122 for more information on patterns.
123 .It Cm AllowStreamLocalForwarding
124 Specifies whether StreamLocal (Unix-domain socket) forwarding is permitted.
125 The available options are
126 .Cm yes
127 (the default)
128 or
129 .Cm all
130 to allow StreamLocal forwarding,
131 .Cm no
132 to prevent all StreamLocal forwarding,
133 .Cm local
134 to allow local (from the perspective of
135 .Xr ssh 1 )
136 forwarding only or
137 .Cm remote
138 to allow remote forwarding only.
139 Note that disabling StreamLocal forwarding does not improve security unless
140 users are also denied shell access, as they can always install their
141 own forwarders.
142 .It Cm AllowTcpForwarding
143 Specifies whether TCP forwarding is permitted.
144 The available options are
145 .Cm yes
146 (the default)
147 or
148 .Cm all
149 to allow TCP forwarding,
150 .Cm no
151 to prevent all TCP forwarding,
152 .Cm local
153 to allow local (from the perspective of
154 .Xr ssh 1 )
155 forwarding only or
156 .Cm remote
157 to allow remote forwarding only.
158 Note that disabling TCP forwarding does not improve security unless
159 users are also denied shell access, as they can always install their
160 own forwarders.
161 .It Cm AllowUsers
162 This keyword can be followed by a list of user name patterns, separated
163 by spaces.
164 If specified, login is allowed only for user names that
165 match one of the patterns.
166 Only user names are valid; a numerical user ID is not recognized.
167 By default, login is allowed for all users.
168 If the pattern takes the form USER@HOST then USER and HOST
169 are separately checked, restricting logins to particular
170 users from particular hosts.
171 HOST criteria may additionally contain addresses to match in CIDR
172 address/masklen format.
173 The allow/deny users directives are processed in the following order:
174 .Cm DenyUsers ,
175 .Cm AllowUsers .
176 .Pp
177 See PATTERNS in
178 .Xr ssh_config 5
179 for more information on patterns.
180 .It Cm AuthenticationMethods
181 Specifies the authentication methods that must be successfully completed
182 for a user to be granted access.
183 This option must be followed by one or more lists of comma-separated
184 authentication method names, or by the single string
185 .Cm any
186 to indicate the default behaviour of accepting any single authentication
187 method.
188 If the default is overridden, then successful authentication requires
189 completion of every method in at least one of these lists.
190 .Pp
191 For example,
192 .Qq publickey,password publickey,keyboard-interactive
193 would require the user to complete public key authentication, followed by
194 either password or keyboard interactive authentication.
195 Only methods that are next in one or more lists are offered at each stage,
196 so for this example it would not be possible to attempt password or
197 keyboard-interactive authentication before public key.
198 .Pp
199 For keyboard interactive authentication it is also possible to
200 restrict authentication to a specific device by appending a
201 colon followed by the device identifier
202 .Cm bsdauth
203 or
204 .Cm pam .
205 depending on the server configuration.
206 For example,
207 .Qq keyboard-interactive:bsdauth
208 would restrict keyboard interactive authentication to the
209 .Cm bsdauth
210 device.
211 .Pp
212 If the publickey method is listed more than once,
213 .Xr sshd 8
214 verifies that keys that have been used successfully are not reused for
215 subsequent authentications.
216 For example,
217 .Qq publickey,publickey
218 requires successful authentication using two different public keys.
219 .Pp
220 Note that each authentication method listed should also be explicitly enabled
221 in the configuration.
222 .Pp
223 The available authentication methods are:
224 .Qq gssapi-with-mic ,
225 .Qq hostbased ,
226 .Qq keyboard-interactive ,
227 .Qq none
228 (used for access to password-less accounts when
229 .Cm PermitEmptyPasswords
230 is enabled),
231 .Qq password
232 and
233 .Qq publickey .
234 .It Cm AuthorizedKeysCommand
235 Specifies a program to be used to look up the user's public keys.
236 The program must be owned by root, not writable by group or others and
237 specified by an absolute path.
238 Arguments to
239 .Cm AuthorizedKeysCommand
240 accept the tokens described in the
241 .Sx TOKENS
242 section.
243 If no arguments are specified then the username of the target user is used.
244 .Pp
245 The program should produce on standard output zero or
246 more lines of authorized_keys output (see
247 .Sx AUTHORIZED_KEYS
248 in
249 .Xr sshd 8 ) .
250 .Cm AuthorizedKeysCommand
251 is tried after the usual
252 .Cm AuthorizedKeysFile
253 files and will not be executed if a matching key is found there.
254 By default, no
255 .Cm AuthorizedKeysCommand
256 is run.
257 .It Cm AuthorizedKeysCommandUser
258 Specifies the user under whose account the
259 .Cm AuthorizedKeysCommand
260 is run.
261 It is recommended to use a dedicated user that has no other role on the host
262 than running authorized keys commands.
263 If
264 .Cm AuthorizedKeysCommand
265 is specified but
266 .Cm AuthorizedKeysCommandUser
267 is not, then
268 .Xr sshd 8
269 will refuse to start.
270 .It Cm AuthorizedKeysFile
271 Specifies the file that contains the public keys used for user authentication.
272 The format is described in the AUTHORIZED_KEYS FILE FORMAT section of
273 .Xr sshd 8 .
274 Arguments to
275 .Cm AuthorizedKeysFile
276 accept the tokens described in the
277 .Sx TOKENS
278 section.
279 After expansion,
280 .Cm AuthorizedKeysFile
281 is taken to be an absolute path or one relative to the user's home
282 directory.
283 Multiple files may be listed, separated by whitespace.
284 Alternately this option may be set to
285 .Cm none
286 to skip checking for user keys in files.
287 The default is
288 .Qq .ssh/authorized_keys .ssh/authorized_keys2 .
289 .It Cm AuthorizedPrincipalsCommand
290 Specifies a program to be used to generate the list of allowed
291 certificate principals as per
292 .Cm AuthorizedPrincipalsFile .
293 The program must be owned by root, not writable by group or others and
294 specified by an absolute path.
295 Arguments to
296 .Cm AuthorizedPrincipalsCommand
297 accept the tokens described in the
298 .Sx TOKENS
299 section.
300 If no arguments are specified then the username of the target user is used.
301 .Pp
302 The program should produce on standard output zero or
303 more lines of
304 .Cm AuthorizedPrincipalsFile
305 output.
306 If either
307 .Cm AuthorizedPrincipalsCommand
308 or
309 .Cm AuthorizedPrincipalsFile
310 is specified, then certificates offered by the client for authentication
311 must contain a principal that is listed.
312 By default, no
313 .Cm AuthorizedPrincipalsCommand
314 is run.
315 .It Cm AuthorizedPrincipalsCommandUser
316 Specifies the user under whose account the
317 .Cm AuthorizedPrincipalsCommand
318 is run.
319 It is recommended to use a dedicated user that has no other role on the host
320 than running authorized principals commands.
321 If
322 .Cm AuthorizedPrincipalsCommand
323 is specified but
324 .Cm AuthorizedPrincipalsCommandUser
325 is not, then
326 .Xr sshd 8
327 will refuse to start.
328 .It Cm AuthorizedPrincipalsFile
329 Specifies a file that lists principal names that are accepted for
330 certificate authentication.
331 When using certificates signed by a key listed in
332 .Cm TrustedUserCAKeys ,
333 this file lists names, one of which must appear in the certificate for it
334 to be accepted for authentication.
335 Names are listed one per line preceded by key options (as described in
336 .Sx AUTHORIZED_KEYS FILE FORMAT
337 in
338 .Xr sshd 8 ) .
339 Empty lines and comments starting with
340 .Ql #
341 are ignored.
342 .Pp
343 Arguments to
344 .Cm AuthorizedPrincipalsFile
345 accept the tokens described in the
346 .Sx TOKENS
347 section.
348 After expansion,
349 .Cm AuthorizedPrincipalsFile
350 is taken to be an absolute path or one relative to the user's home directory.
351 The default is
352 .Cm none ,
353 i.e. not to use a principals file \(en in this case, the username
354 of the user must appear in a certificate's principals list for it to be
355 accepted.
356 .Pp
357 Note that
358 .Cm AuthorizedPrincipalsFile
359 is only used when authentication proceeds using a CA listed in
360 .Cm TrustedUserCAKeys
361 and is not consulted for certification authorities trusted via
362 .Pa ~/.ssh/authorized_keys ,
363 though the
364 .Cm principals=
365 key option offers a similar facility (see
366 .Xr sshd 8
367 for details).
368 .It Cm Banner
369 The contents of the specified file are sent to the remote user before
370 authentication is allowed.
371 If the argument is
372 .Cm none
373 then no banner is displayed.
374 By default, no banner is displayed.
375 .It Cm CASignatureAlgorithms
376 Specifies which algorithms are allowed for signing of certificates
377 by certificate authorities (CAs).
378 The default is:
379 .Bd -literal -offset indent
380 ssh-ed25519,ecdsa-sha2-nistp256,
381 ecdsa-sha2-nistp384,ecdsa-sha2-nistp521,
382 sk-ssh-ed25519@openssh.com,
383 sk-ecdsa-sha2-nistp256@openssh.com,
384 rsa-sha2-512,rsa-sha2-256
385 .Ed
386 .Pp
387 If the specified list begins with a
388 .Sq +
389 character, then the specified algorithms will be appended to the default set
390 instead of replacing them.
391 If the specified list begins with a
392 .Sq -
393 character, then the specified algorithms (including wildcards) will be removed
394 from the default set instead of replacing them.
395 .Pp
396 Certificates signed using other algorithms will not be accepted for
397 public key or host-based authentication.
398 .It Cm ChrootDirectory
399 Specifies the pathname of a directory to
400 .Xr chroot 2
401 to after authentication.
402 At session startup
403 .Xr sshd 8
404 checks that all components of the pathname are root-owned directories
405 which are not writable by any other user or group.
406 After the chroot,
407 .Xr sshd 8
408 changes the working directory to the user's home directory.
409 Arguments to
410 .Cm ChrootDirectory
411 accept the tokens described in the
412 .Sx TOKENS
413 section.
414 .Pp
415 The
416 .Cm ChrootDirectory
417 must contain the necessary files and directories to support the
418 user's session.
419 For an interactive session this requires at least a shell, typically
420 .Xr sh 1 ,
421 and basic
422 .Pa /dev
423 nodes such as
424 .Xr null 4 ,
425 .Xr zero 4 ,
426 .Xr stdin 4 ,
427 .Xr stdout 4 ,
428 .Xr stderr 4 ,
429 and
430 .Xr tty 4
431 devices.
432 For file transfer sessions using SFTP
433 no additional configuration of the environment is necessary if the in-process
434 sftp-server is used,
435 though sessions which use logging may require
436 .Pa /dev/log
437 inside the chroot directory on some operating systems (see
438 .Xr sftp-server 8
439 for details).
440 .Pp
441 For safety, it is very important that the directory hierarchy be
442 prevented from modification by other processes on the system (especially
443 those outside the jail).
444 Misconfiguration can lead to unsafe environments which
445 .Xr sshd 8
446 cannot detect.
447 .Pp
448 The default is
449 .Cm none ,
450 indicating not to
451 .Xr chroot 2 .
452 .It Cm Ciphers
453 Specifies the ciphers allowed.
454 Multiple ciphers must be comma-separated.
455 If the specified list begins with a
456 .Sq +
457 character, then the specified ciphers will be appended to the default set
458 instead of replacing them.
459 If the specified list begins with a
460 .Sq -
461 character, then the specified ciphers (including wildcards) will be removed
462 from the default set instead of replacing them.
463 If the specified list begins with a
464 .Sq ^
465 character, then the specified ciphers will be placed at the head of the
466 default set.
467 .Pp
468 The supported ciphers are:
469 .Pp
470 .Bl -item -compact -offset indent
471 .It
472 3des-cbc
473 .It
474 aes128-cbc
475 .It
476 aes192-cbc
477 .It
478 aes256-cbc
479 .It
480 aes128-ctr
481 .It
482 aes192-ctr
483 .It
484 aes256-ctr
485 .It
486 aes128-gcm@openssh.com
487 .It
488 aes256-gcm@openssh.com
489 .It
490 chacha20-poly1305@openssh.com
491 .El
492 .Pp
493 The default is:
494 .Bd -literal -offset indent
495 chacha20-poly1305@openssh.com,
496 aes128-ctr,aes192-ctr,aes256-ctr,
497 aes128-gcm@openssh.com,aes256-gcm@openssh.com
498 .Ed
499 .Pp
500 The list of available ciphers may also be obtained using
501 .Qq ssh -Q cipher .
502 .It Cm ClientAliveCountMax
503 Sets the number of client alive messages which may be sent without
504 .Xr sshd 8
505 receiving any messages back from the client.
506 If this threshold is reached while client alive messages are being sent,
507 sshd will disconnect the client, terminating the session.
508 It is important to note that the use of client alive messages is very
509 different from
510 .Cm TCPKeepAlive .
511 The client alive messages are sent through the encrypted channel
512 and therefore will not be spoofable.
513 The TCP keepalive option enabled by
514 .Cm TCPKeepAlive
515 is spoofable.
516 The client alive mechanism is valuable when the client or
517 server depend on knowing when a connection has become unresponsive.
518 .Pp
519 The default value is 3.
520 If
521 .Cm ClientAliveInterval
522 is set to 15, and
523 .Cm ClientAliveCountMax
524 is left at the default, unresponsive SSH clients
525 will be disconnected after approximately 45 seconds.
526 Setting a zero
527 .Cm ClientAliveCountMax
528 disables connection termination.
529 .It Cm ClientAliveInterval
530 Sets a timeout interval in seconds after which if no data has been received
531 from the client,
532 .Xr sshd 8
533 will send a message through the encrypted
534 channel to request a response from the client.
535 The default
536 is 0, indicating that these messages will not be sent to the client.
537 .It Cm Compression
538 Specifies whether compression is enabled after
539 the user has authenticated successfully.
540 The argument must be
541 .Cm yes ,
542 .Cm delayed
543 (a legacy synonym for
544 .Cm yes )
545 or
546 .Cm no .
547 The default is
548 .Cm yes .
549 .It Cm DenyGroups
550 This keyword can be followed by a list of group name patterns, separated
551 by spaces.
552 Login is disallowed for users whose primary group or supplementary
553 group list matches one of the patterns.
554 Only group names are valid; a numerical group ID is not recognized.
555 By default, login is allowed for all groups.
556 The allow/deny groups directives are processed in the following order:
557 .Cm DenyGroups ,
558 .Cm AllowGroups .
559 .Pp
560 See PATTERNS in
561 .Xr ssh_config 5
562 for more information on patterns.
563 .It Cm DenyUsers
564 This keyword can be followed by a list of user name patterns, separated
565 by spaces.
566 Login is disallowed for user names that match one of the patterns.
567 Only user names are valid; a numerical user ID is not recognized.
568 By default, login is allowed for all users.
569 If the pattern takes the form USER@HOST then USER and HOST
570 are separately checked, restricting logins to particular
571 users from particular hosts.
572 HOST criteria may additionally contain addresses to match in CIDR
573 address/masklen format.
574 The allow/deny users directives are processed in the following order:
575 .Cm DenyUsers ,
576 .Cm AllowUsers .
577 .Pp
578 See PATTERNS in
579 .Xr ssh_config 5
580 for more information on patterns.
581 .It Cm DisableForwarding
582 Disables all forwarding features, including X11,
583 .Xr ssh-agent 1 ,
584 TCP and StreamLocal.
585 This option overrides all other forwarding-related options and may
586 simplify restricted configurations.
587 .It Cm ExposeAuthInfo
588 Writes a temporary file containing a list of authentication methods and
589 public credentials (e.g. keys) used to authenticate the user.
590 The location of the file is exposed to the user session through the
591 .Ev SSH_USER_AUTH
592 environment variable.
593 The default is
594 .Cm no .
595 .It Cm FingerprintHash
596 Specifies the hash algorithm used when logging key fingerprints.
597 Valid options are:
598 .Cm md5
599 and
600 .Cm sha256 .
601 The default is
602 .Cm sha256 .
603 .It Cm ForceCommand
604 Forces the execution of the command specified by
605 .Cm ForceCommand ,
606 ignoring any command supplied by the client and
607 .Pa ~/.ssh/rc
608 if present.
609 The command is invoked by using the user's login shell with the -c option.
610 This applies to shell, command, or subsystem execution.
611 It is most useful inside a
612 .Cm Match
613 block.
614 The command originally supplied by the client is available in the
615 .Ev SSH_ORIGINAL_COMMAND
616 environment variable.
617 Specifying a command of
618 .Cm internal-sftp
619 will force the use of an in-process SFTP server that requires no support
620 files when used with
621 .Cm ChrootDirectory .
622 The default is
623 .Cm none .
624 .It Cm GatewayPorts
625 Specifies whether remote hosts are allowed to connect to ports
626 forwarded for the client.
627 By default,
628 .Xr sshd 8
629 binds remote port forwardings to the loopback address.
630 This prevents other remote hosts from connecting to forwarded ports.
631 .Cm GatewayPorts
632 can be used to specify that sshd
633 should allow remote port forwardings to bind to non-loopback addresses, thus
634 allowing other hosts to connect.
635 The argument may be
636 .Cm no
637 to force remote port forwardings to be available to the local host only,
638 .Cm yes
639 to force remote port forwardings to bind to the wildcard address, or
640 .Cm clientspecified
641 to allow the client to select the address to which the forwarding is bound.
642 The default is
643 .Cm no .
644 .It Cm GSSAPIAuthentication
645 Specifies whether user authentication based on GSSAPI is allowed.
646 The default is
647 .Cm no .
648 .It Cm GSSAPICleanupCredentials
649 Specifies whether to automatically destroy the user's credentials cache
650 on logout.
651 The default is
652 .Cm yes .
653 .It Cm GSSAPIStrictAcceptorCheck
654 Determines whether to be strict about the identity of the GSSAPI acceptor
655 a client authenticates against.
656 If set to
657 .Cm yes
658 then the client must authenticate against the host
659 service on the current hostname.
660 If set to
661 .Cm no
662 then the client may authenticate against any service key stored in the
663 machine's default store.
664 This facility is provided to assist with operation on multi homed machines.
665 The default is
666 .Cm yes .
667 .It Cm HostbasedAcceptedAlgorithms
668 Specifies the signature algorithms that will be accepted for hostbased
669 authentication as a list of comma-separated patterns.
670 Alternately if the specified list begins with a
671 .Sq +
672 character, then the specified signature algorithms will be appended to
673 the default set instead of replacing them.
674 If the specified list begins with a
675 .Sq -
676 character, then the specified signature algorithms (including wildcards)
677 will be removed from the default set instead of replacing them.
678 If the specified list begins with a
679 .Sq ^
680 character, then the specified signature algorithms will be placed at
681 the head of the default set.
682 The default for this option is:
683 .Bd -literal -offset 3n
684 ssh-ed25519-cert-v01@openssh.com,
685 ecdsa-sha2-nistp256-cert-v01@openssh.com,
686 ecdsa-sha2-nistp384-cert-v01@openssh.com,
687 ecdsa-sha2-nistp521-cert-v01@openssh.com,
688 sk-ssh-ed25519-cert-v01@openssh.com,
689 sk-ecdsa-sha2-nistp256-cert-v01@openssh.com,
690 rsa-sha2-512-cert-v01@openssh.com,
691 rsa-sha2-256-cert-v01@openssh.com,
692 ssh-ed25519,
693 ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521,
694 sk-ssh-ed25519@openssh.com,
695 sk-ecdsa-sha2-nistp256@openssh.com,
696 rsa-sha2-512,rsa-sha2-256
697 .Ed
698 .Pp
699 The list of available signature algorithms may also be obtained using
700 .Qq ssh -Q HostbasedAcceptedAlgorithms .
701 This was formerly named HostbasedAcceptedKeyTypes.
702 .It Cm HostbasedAuthentication
703 Specifies whether rhosts or /etc/hosts.equiv authentication together
704 with successful public key client host authentication is allowed
705 (host-based authentication).
706 The default is
707 .Cm no .
708 .It Cm HostbasedUsesNameFromPacketOnly
709 Specifies whether or not the server will attempt to perform a reverse
710 name lookup when matching the name in the
711 .Pa ~/.shosts ,
712 .Pa ~/.rhosts ,
713 and
714 .Pa /etc/hosts.equiv
715 files during
716 .Cm HostbasedAuthentication .
717 A setting of
718 .Cm yes
719 means that
720 .Xr sshd 8
721 uses the name supplied by the client rather than
722 attempting to resolve the name from the TCP connection itself.
723 The default is
724 .Cm no .
725 .It Cm HostCertificate
726 Specifies a file containing a public host certificate.
727 The certificate's public key must match a private host key already specified
728 by
729 .Cm HostKey .
730 The default behaviour of
731 .Xr sshd 8
732 is not to load any certificates.
733 .It Cm HostKey
734 Specifies a file containing a private host key
735 used by SSH.
736 The defaults are
737 .Pa /etc/ssh/ssh_host_ecdsa_key ,
738 .Pa /etc/ssh/ssh_host_ed25519_key
739 and
740 .Pa /etc/ssh/ssh_host_rsa_key .
741 .Pp
742 Note that
743 .Xr sshd 8
744 will refuse to use a file if it is group/world-accessible
745 and that the
746 .Cm HostKeyAlgorithms
747 option restricts which of the keys are actually used by
748 .Xr sshd 8 .
749 .Pp
750 It is possible to have multiple host key files.
751 It is also possible to specify public host key files instead.
752 In this case operations on the private key will be delegated
753 to an
754 .Xr ssh-agent 1 .
755 .It Cm HostKeyAgent
756 Identifies the UNIX-domain socket used to communicate
757 with an agent that has access to the private host keys.
758 If the string
759 .Qq SSH_AUTH_SOCK
760 is specified, the location of the socket will be read from the
761 .Ev SSH_AUTH_SOCK
762 environment variable.
763 .It Cm HostKeyAlgorithms
764 Specifies the host key signature algorithms
765 that the server offers.
766 The default for this option is:
767 .Bd -literal -offset 3n
768 ssh-ed25519-cert-v01@openssh.com,
769 ecdsa-sha2-nistp256-cert-v01@openssh.com,
770 ecdsa-sha2-nistp384-cert-v01@openssh.com,
771 ecdsa-sha2-nistp521-cert-v01@openssh.com,
772 sk-ssh-ed25519-cert-v01@openssh.com,
773 sk-ecdsa-sha2-nistp256-cert-v01@openssh.com,
774 rsa-sha2-512-cert-v01@openssh.com,
775 rsa-sha2-256-cert-v01@openssh.com,
776 ssh-ed25519,
777 ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521,
778 sk-ssh-ed25519@openssh.com,
779 sk-ecdsa-sha2-nistp256@openssh.com,
780 rsa-sha2-512,rsa-sha2-256
781 .Ed
782 .Pp
783 The list of available signature algorithms may also be obtained using
784 .Qq ssh -Q HostKeyAlgorithms .
785 .It Cm IgnoreRhosts
786 Specifies whether to ignore per-user
787 .Pa .rhosts
788 and
789 .Pa .shosts
790 files during
791 .Cm HostbasedAuthentication .
792 The system-wide
793 .Pa /etc/hosts.equiv
794 and
795 .Pa /etc/ssh/shosts.equiv
796 are still used regardless of this setting.
797 .Pp
798 Accepted values are
799 .Cm yes
800 (the default) to ignore all per-user files,
801 .Cm shosts-only
802 to allow the use of
803 .Pa .shosts
804 but to ignore
805 .Pa .rhosts
806 or
807 .Cm no
808 to allow both
809 .Pa .shosts
810 and
811 .Pa rhosts .
812 .It Cm IgnoreUserKnownHosts
813 Specifies whether
814 .Xr sshd 8
815 should ignore the user's
816 .Pa ~/.ssh/known_hosts
817 during
818 .Cm HostbasedAuthentication
819 and use only the system-wide known hosts file
820 .Pa /etc/ssh/ssh_known_hosts .
821 The default is
822 .Dq no .
823 .It Cm Include
824 Include the specified configuration file(s).
825 Multiple pathnames may be specified and each pathname may contain
826 .Xr glob 7
827 wildcards that will be expanded and processed in lexical order.
828 Files without absolute paths are assumed to be in
829 .Pa /etc/ssh .
830 An
831 .Cm Include
832 directive may appear inside a
833 .Cm Match
834 block
835 to perform conditional inclusion.
836 .It Cm IPQoS
837 Specifies the IPv4 type-of-service or DSCP class for the connection.
838 Accepted values are
839 .Cm af11 ,
840 .Cm af12 ,
841 .Cm af13 ,
842 .Cm af21 ,
843 .Cm af22 ,
844 .Cm af23 ,
845 .Cm af31 ,
846 .Cm af32 ,
847 .Cm af33 ,
848 .Cm af41 ,
849 .Cm af42 ,
850 .Cm af43 ,
851 .Cm cs0 ,
852 .Cm cs1 ,
853 .Cm cs2 ,
854 .Cm cs3 ,
855 .Cm cs4 ,
856 .Cm cs5 ,
857 .Cm cs6 ,
858 .Cm cs7 ,
859 .Cm ef ,
860 .Cm le ,
861 .Cm lowdelay ,
862 .Cm throughput ,
863 .Cm reliability ,
864 a numeric value, or
865 .Cm none
866 to use the operating system default.
867 This option may take one or two arguments, separated by whitespace.
868 If one argument is specified, it is used as the packet class unconditionally.
869 If two values are specified, the first is automatically selected for
870 interactive sessions and the second for non-interactive sessions.
871 The default is
872 .Cm af21
873 (Low-Latency Data)
874 for interactive sessions and
875 .Cm cs1
876 (Lower Effort)
877 for non-interactive sessions.
878 .It Cm KbdInteractiveAuthentication
879 Specifies whether to allow keyboard-interactive authentication.
880 All authentication styles from
881 .Xr login.conf 5
882 are supported.
883 The default is
884 .Cm yes .
885 The argument to this keyword must be
886 .Cm yes
887 or
888 .Cm no .
889 .Cm ChallengeResponseAuthentication
890 is a deprecated alias for this.
891 .It Cm KerberosAuthentication
892 Specifies whether the password provided by the user for
893 .Cm PasswordAuthentication
894 will be validated through the Kerberos KDC.
895 To use this option, the server needs a
896 Kerberos servtab which allows the verification of the KDC's identity.
897 The default is
898 .Cm no .
899 .It Cm KerberosGetAFSToken
900 If AFS is active and the user has a Kerberos 5 TGT, attempt to acquire
901 an AFS token before accessing the user's home directory.
902 The default is
903 .Cm no .
904 .It Cm KerberosOrLocalPasswd
905 If password authentication through Kerberos fails then
906 the password will be validated via any additional local mechanism
907 such as
908 .Pa /etc/passwd .
909 The default is
910 .Cm yes .
911 .It Cm KerberosTicketCleanup
912 Specifies whether to automatically destroy the user's ticket cache
913 file on logout.
914 The default is
915 .Cm yes .
916 .It Cm KexAlgorithms
917 Specifies the available KEX (Key Exchange) algorithms.
918 Multiple algorithms must be comma-separated.
919 Alternately if the specified list begins with a
920 .Sq +
921 character, then the specified algorithms will be appended to the default set
922 instead of replacing them.
923 If the specified list begins with a
924 .Sq -
925 character, then the specified algorithms (including wildcards) will be removed
926 from the default set instead of replacing them.
927 If the specified list begins with a
928 .Sq ^
929 character, then the specified algorithms will be placed at the head of the
930 default set.
931 The supported algorithms are:
932 .Pp
933 .Bl -item -compact -offset indent
934 .It
935 curve25519-sha256
936 .It
937 curve25519-sha256@libssh.org
938 .It
939 diffie-hellman-group1-sha1
940 .It
941 diffie-hellman-group14-sha1
942 .It
943 diffie-hellman-group14-sha256
944 .It
945 diffie-hellman-group16-sha512
946 .It
947 diffie-hellman-group18-sha512
948 .It
949 diffie-hellman-group-exchange-sha1
950 .It
951 diffie-hellman-group-exchange-sha256
952 .It
953 ecdh-sha2-nistp256
954 .It
955 ecdh-sha2-nistp384
956 .It
957 ecdh-sha2-nistp521
958 .It
959 sntrup761x25519-sha512@openssh.com
960 .El
961 .Pp
962 The default is:
963 .Bd -literal -offset indent
964 sntrup761x25519-sha512@openssh.com,
965 curve25519-sha256,curve25519-sha256@libssh.org,
966 ecdh-sha2-nistp256,ecdh-sha2-nistp384,ecdh-sha2-nistp521,
967 diffie-hellman-group-exchange-sha256,
968 diffie-hellman-group16-sha512,diffie-hellman-group18-sha512,
969 diffie-hellman-group14-sha256
970 .Ed
971 .Pp
972 The list of available key exchange algorithms may also be obtained using
973 .Qq ssh -Q KexAlgorithms .
974 .It Cm ListenAddress
975 Specifies the local addresses
976 .Xr sshd 8
977 should listen on.
978 The following forms may be used:
979 .Pp
980 .Bl -item -offset indent -compact
981 .It
982 .Cm ListenAddress
983 .Sm off
984 .Ar hostname | address
985 .Sm on
986 .Op Cm rdomain Ar domain
987 .It
988 .Cm ListenAddress
989 .Sm off
990 .Ar hostname : port
991 .Sm on
992 .Op Cm rdomain Ar domain
993 .It
994 .Cm ListenAddress
995 .Sm off
996 .Ar IPv4_address : port
997 .Sm on
998 .Op Cm rdomain Ar domain
999 .It
1000 .Cm ListenAddress
1001 .Sm off
1002 .Oo Ar hostname | address Oc : Ar port
1003 .Sm on
1004 .Op Cm rdomain Ar domain
1005 .El
1006 .Pp
1007 The optional
1008 .Cm rdomain
1009 qualifier requests
1010 .Xr sshd 8
1011 listen in an explicit routing domain.
1012 If
1013 .Ar port
1014 is not specified,
1015 sshd will listen on the address and all
1016 .Cm Port
1017 options specified.
1018 The default is to listen on all local addresses on the current default
1019 routing domain.
1020 Multiple
1021 .Cm ListenAddress
1022 options are permitted.
1023 For more information on routing domains, see
1024 .Xr rdomain 4 .
1025 .It Cm LoginGraceTime
1026 The server disconnects after this time if the user has not
1027 successfully logged in.
1028 If the value is 0, there is no time limit.
1029 The default is 120 seconds.
1030 .It Cm LogLevel
1031 Gives the verbosity level that is used when logging messages from
1032 .Xr sshd 8 .
1033 The possible values are:
1034 QUIET, FATAL, ERROR, INFO, VERBOSE, DEBUG, DEBUG1, DEBUG2, and DEBUG3.
1035 The default is INFO.
1036 DEBUG and DEBUG1 are equivalent.
1037 DEBUG2 and DEBUG3 each specify higher levels of debugging output.
1038 Logging with a DEBUG level violates the privacy of users and is not recommended.
1039 .It Cm LogVerbose
1040 Specify one or more overrides to LogLevel.
1041 An override consists of a pattern lists that matches the source file, function
1042 and line number to force detailed logging for.
1043 For example, an override pattern of:
1044 .Bd -literal -offset indent
1045 kex.c:*:1000,*:kex_exchange_identification():*,packet.c:*
1046 .Ed
1047 .Pp
1048 would enable detailed logging for line 1000 of
1049 .Pa kex.c ,
1050 everything in the
1051 .Fn kex_exchange_identification
1052 function, and all code in the
1053 .Pa packet.c
1054 file.
1055 This option is intended for debugging and no overrides are enabled by default.
1056 .It Cm MACs
1057 Specifies the available MAC (message authentication code) algorithms.
1058 The MAC algorithm is used for data integrity protection.
1059 Multiple algorithms must be comma-separated.
1060 If the specified list begins with a
1061 .Sq +
1062 character, then the specified algorithms will be appended to the default set
1063 instead of replacing them.
1064 If the specified list begins with a
1065 .Sq -
1066 character, then the specified algorithms (including wildcards) will be removed
1067 from the default set instead of replacing them.
1068 If the specified list begins with a
1069 .Sq ^
1070 character, then the specified algorithms will be placed at the head of the
1071 default set.
1072 .Pp
1073 The algorithms that contain
1074 .Qq -etm
1075 calculate the MAC after encryption (encrypt-then-mac).
1076 These are considered safer and their use recommended.
1077 The supported MACs are:
1078 .Pp
1079 .Bl -item -compact -offset indent
1080 .It
1081 hmac-md5
1082 .It
1083 hmac-md5-96
1084 .It
1085 hmac-sha1
1086 .It
1087 hmac-sha1-96
1088 .It
1089 hmac-sha2-256
1090 .It
1091 hmac-sha2-512
1092 .It
1093 umac-64@openssh.com
1094 .It
1095 umac-128@openssh.com
1096 .It
1097 hmac-md5-etm@openssh.com
1098 .It
1099 hmac-md5-96-etm@openssh.com
1100 .It
1101 hmac-sha1-etm@openssh.com
1102 .It
1103 hmac-sha1-96-etm@openssh.com
1104 .It
1105 hmac-sha2-256-etm@openssh.com
1106 .It
1107 hmac-sha2-512-etm@openssh.com
1108 .It
1109 umac-64-etm@openssh.com
1110 .It
1111 umac-128-etm@openssh.com
1112 .El
1113 .Pp
1114 The default is:
1115 .Bd -literal -offset indent
1116 umac-64-etm@openssh.com,umac-128-etm@openssh.com,
1117 hmac-sha2-256-etm@openssh.com,hmac-sha2-512-etm@openssh.com,
1118 hmac-sha1-etm@openssh.com,
1119 umac-64@openssh.com,umac-128@openssh.com,
1120 hmac-sha2-256,hmac-sha2-512,hmac-sha1
1121 .Ed
1122 .Pp
1123 The list of available MAC algorithms may also be obtained using
1124 .Qq ssh -Q mac .
1125 .It Cm Match
1126 Introduces a conditional block.
1127 If all of the criteria on the
1128 .Cm Match
1129 line are satisfied, the keywords on the following lines override those
1130 set in the global section of the config file, until either another
1131 .Cm Match
1132 line or the end of the file.
1133 If a keyword appears in multiple
1134 .Cm Match
1135 blocks that are satisfied, only the first instance of the keyword is
1136 applied.
1137 .Pp
1138 The arguments to
1139 .Cm Match
1140 are one or more criteria-pattern pairs or the single token
1141 .Cm All
1142 which matches all criteria.
1143 The available criteria are
1144 .Cm User ,
1145 .Cm Group ,
1146 .Cm Host ,
1147 .Cm LocalAddress ,
1148 .Cm LocalPort ,
1149 .Cm RDomain ,
1150 and
1151 .Cm Address
1152 (with
1153 .Cm RDomain
1154 representing the
1155 .Xr rdomain 4
1156 on which the connection was received).
1157 .Pp
1158 The match patterns may consist of single entries or comma-separated
1159 lists and may use the wildcard and negation operators described in the
1160 .Sx PATTERNS
1161 section of
1162 .Xr ssh_config 5 .
1163 .Pp
1164 The patterns in an
1165 .Cm Address
1166 criteria may additionally contain addresses to match in CIDR
1167 address/masklen format,
1168 such as 192.0.2.0/24 or 2001:db8::/32.
1169 Note that the mask length provided must be consistent with the address -
1170 it is an error to specify a mask length that is too long for the address
1171 or one with bits set in this host portion of the address.
1172 For example, 192.0.2.0/33 and 192.0.2.0/8, respectively.
1173 .Pp
1174 Only a subset of keywords may be used on the lines following a
1175 .Cm Match
1176 keyword.
1177 Available keywords are
1178 .Cm AcceptEnv ,
1179 .Cm AllowAgentForwarding ,
1180 .Cm AllowGroups ,
1181 .Cm AllowStreamLocalForwarding ,
1182 .Cm AllowTcpForwarding ,
1183 .Cm AllowUsers ,
1184 .Cm AuthenticationMethods ,
1185 .Cm AuthorizedKeysCommand ,
1186 .Cm AuthorizedKeysCommandUser ,
1187 .Cm AuthorizedKeysFile ,
1188 .Cm AuthorizedPrincipalsCommand ,
1189 .Cm AuthorizedPrincipalsCommandUser ,
1190 .Cm AuthorizedPrincipalsFile ,
1191 .Cm Banner ,
1192 .Cm CASignatureAlgorithms ,
1193 .Cm ChrootDirectory ,
1194 .Cm ClientAliveCountMax ,
1195 .Cm ClientAliveInterval ,
1196 .Cm DenyGroups ,
1197 .Cm DenyUsers ,
1198 .Cm DisableForwarding ,
1199 .Cm ExposeAuthInfo ,
1200 .Cm ForceCommand ,
1201 .Cm GatewayPorts ,
1202 .Cm GSSAPIAuthentication ,
1203 .Cm HostbasedAcceptedAlgorithms ,
1204 .Cm HostbasedAuthentication ,
1205 .Cm HostbasedUsesNameFromPacketOnly ,
1206 .Cm IgnoreRhosts ,
1207 .Cm Include ,
1208 .Cm IPQoS ,
1209 .Cm KbdInteractiveAuthentication ,
1210 .Cm KerberosAuthentication ,
1211 .Cm LogLevel ,
1212 .Cm MaxAuthTries ,
1213 .Cm MaxSessions ,
1214 .Cm PasswordAuthentication ,
1215 .Cm PermitEmptyPasswords ,
1216 .Cm PermitListen ,
1217 .Cm PermitOpen ,
1218 .Cm PermitRootLogin ,
1219 .Cm PermitTTY ,
1220 .Cm PermitTunnel ,
1221 .Cm PermitUserRC ,
1222 .Cm PubkeyAcceptedAlgorithms ,
1223 .Cm PubkeyAuthentication ,
1224 .Cm PubkeyAuthOptions ,
1225 .Cm RekeyLimit ,
1226 .Cm RevokedKeys ,
1227 .Cm RDomain ,
1228 .Cm SetEnv ,
1229 .Cm StreamLocalBindMask ,
1230 .Cm StreamLocalBindUnlink ,
1231 .Cm TrustedUserCAKeys ,
1232 .Cm X11DisplayOffset ,
1233 .Cm X11Forwarding
1234 and
1235 .Cm X11UseLocalhost .
1236 .It Cm MaxAuthTries
1237 Specifies the maximum number of authentication attempts permitted per
1238 connection.
1239 Once the number of failures reaches half this value,
1240 additional failures are logged.
1241 The default is 6.
1242 .It Cm MaxSessions
1243 Specifies the maximum number of open shell, login or subsystem (e.g. sftp)
1244 sessions permitted per network connection.
1245 Multiple sessions may be established by clients that support connection
1246 multiplexing.
1247 Setting
1248 .Cm MaxSessions
1249 to 1 will effectively disable session multiplexing, whereas setting it to 0
1250 will prevent all shell, login and subsystem sessions while still permitting
1251 forwarding.
1252 The default is 10.
1253 .It Cm MaxStartups
1254 Specifies the maximum number of concurrent unauthenticated connections to the
1255 SSH daemon.
1256 Additional connections will be dropped until authentication succeeds or the
1257 .Cm LoginGraceTime
1258 expires for a connection.
1259 The default is 10:30:100.
1260 .Pp
1261 Alternatively, random early drop can be enabled by specifying
1262 the three colon separated values
1263 start:rate:full (e.g. "10:30:60").
1264 .Xr sshd 8
1265 will refuse connection attempts with a probability of rate/100 (30%)
1266 if there are currently start (10) unauthenticated connections.
1267 The probability increases linearly and all connection attempts
1268 are refused if the number of unauthenticated connections reaches full (60).
1269 .It Cm ModuliFile
1270 Specifies the
1271 .Xr moduli 5
1272 file that contains the Diffie-Hellman groups used for the
1273 .Dq diffie-hellman-group-exchange-sha1
1274 and
1275 .Dq diffie-hellman-group-exchange-sha256
1276 key exchange methods.
1277 The default is
1278 .Pa /etc/moduli .
1279 .It Cm PasswordAuthentication
1280 Specifies whether password authentication is allowed.
1281 Note that passwords may also be accepted via
1282 .Cm KbdInteractiveAuthentication .
1283 See also
1284 .Cm UsePAM .
1285 The default is
1286 .Cm no .
1287 .It Cm PermitEmptyPasswords
1288 When password authentication is allowed, it specifies whether the
1289 server allows login to accounts with empty password strings.
1290 The default is
1291 .Cm no .
1292 .It Cm PermitListen
1293 Specifies the addresses/ports on which a remote TCP port forwarding may listen.
1294 The listen specification must be one of the following forms:
1295 .Pp
1296 .Bl -item -offset indent -compact
1297 .It
1298 .Cm PermitListen
1299 .Sm off
1300 .Ar port
1301 .Sm on
1302 .It
1303 .Cm PermitListen
1304 .Sm off
1305 .Ar host : port
1306 .Sm on
1307 .El
1308 .Pp
1309 Multiple permissions may be specified by separating them with whitespace.
1310 An argument of
1311 .Cm any
1312 can be used to remove all restrictions and permit any listen requests.
1313 An argument of
1314 .Cm none
1315 can be used to prohibit all listen requests.
1316 The host name may contain wildcards as described in the PATTERNS section in
1317 .Xr ssh_config 5 .
1318 The wildcard
1319 .Sq *
1320 can also be used in place of a port number to allow all ports.
1321 By default all port forwarding listen requests are permitted.
1322 Note that the
1323 .Cm GatewayPorts
1324 option may further restrict which addresses may be listened on.
1325 Note also that
1326 .Xr ssh 1
1327 will request a listen host of
1328 .Dq localhost
1329 if no listen host was specifically requested, and this name is
1330 treated differently to explicit localhost addresses of
1331 .Dq 127.0.0.1
1332 and
1333 .Dq ::1 .
1334 .It Cm PermitOpen
1335 Specifies the destinations to which TCP port forwarding is permitted.
1336 The forwarding specification must be one of the following forms:
1337 .Pp
1338 .Bl -item -offset indent -compact
1339 .It
1340 .Cm PermitOpen
1341 .Sm off
1342 .Ar host : port
1343 .Sm on
1344 .It
1345 .Cm PermitOpen
1346 .Sm off
1347 .Ar IPv4_addr : port
1348 .Sm on
1349 .It
1350 .Cm PermitOpen
1351 .Sm off
1352 .Ar \&[ IPv6_addr \&] : port
1353 .Sm on
1354 .El
1355 .Pp
1356 Multiple forwards may be specified by separating them with whitespace.
1357 An argument of
1358 .Cm any
1359 can be used to remove all restrictions and permit any forwarding requests.
1360 An argument of
1361 .Cm none
1362 can be used to prohibit all forwarding requests.
1363 The wildcard
1364 .Sq *
1365 can be used for host or port to allow all hosts or ports respectively.
1366 Otherwise, no pattern matching or address lookups are performed on supplied
1367 names.
1368 By default all port forwarding requests are permitted.
1369 .It Cm PermitRootLogin
1370 Specifies whether root can log in using
1371 .Xr ssh 1 .
1372 The argument must be
1373 .Cm yes ,
1374 .Cm prohibit-password ,
1375 .Cm forced-commands-only ,
1376 or
1377 .Cm no .
1378 The default is
1379 .Cm no .
1380 Note that if
1381 .Cm ChallengeResponseAuthentication
1382 and
1383 .Cm UsePAM
1384 are both
1385 .Cm yes ,
1386 this setting may be overridden by the PAM policy.
1387 .Pp
1388 If this option is set to
1389 .Cm prohibit-password
1390 (or its deprecated alias,
1391 .Cm without-password ) ,
1392 password and keyboard-interactive authentication are disabled for root.
1393 .Pp
1394 If this option is set to
1395 .Cm forced-commands-only ,
1396 root login with public key authentication will be allowed,
1397 but only if the
1398 .Ar command
1399 option has been specified
1400 (which may be useful for taking remote backups even if root login is
1401 normally not allowed).
1402 All other authentication methods are disabled for root.
1403 .Pp
1404 If this option is set to
1405 .Cm no ,
1406 root is not allowed to log in.
1407 .It Cm PermitTTY
1408 Specifies whether
1409 .Xr pty 4
1410 allocation is permitted.
1411 The default is
1412 .Cm yes .
1413 .It Cm PermitTunnel
1414 Specifies whether
1415 .Xr tun 4
1416 device forwarding is allowed.
1417 The argument must be
1418 .Cm yes ,
1419 .Cm point-to-point
1420 (layer 3),
1421 .Cm ethernet
1422 (layer 2), or
1423 .Cm no .
1424 Specifying
1425 .Cm yes
1426 permits both
1427 .Cm point-to-point
1428 and
1429 .Cm ethernet .
1430 The default is
1431 .Cm no .
1432 .Pp
1433 Independent of this setting, the permissions of the selected
1434 .Xr tun 4
1435 device must allow access to the user.
1436 .It Cm PermitUserEnvironment
1437 Specifies whether
1438 .Pa ~/.ssh/environment
1439 and
1440 .Cm environment=
1441 options in
1442 .Pa ~/.ssh/authorized_keys
1443 are processed by
1444 .Xr sshd 8 .
1445 Valid options are
1446 .Cm yes ,
1447 .Cm no
1448 or a pattern-list specifying which environment variable names to accept
1449 (for example
1450 .Qq LANG,LC_* ) .
1451 The default is
1452 .Cm no .
1453 Enabling environment processing may enable users to bypass access
1454 restrictions in some configurations using mechanisms such as
1455 .Ev LD_PRELOAD .
1456 .It Cm PermitUserRC
1457 Specifies whether any
1458 .Pa ~/.ssh/rc
1459 file is executed.
1460 The default is
1461 .Cm yes .
1462 .It Cm PerSourceMaxStartups
1463 Specifies the number of unauthenticated connections allowed from a
1464 given source address, or
1465 .Dq none
1466 if there is no limit.
1467 This limit is applied in addition to
1468 .Cm MaxStartups ,
1469 whichever is lower.
1470 The default is
1471 .Cm none .
1472 .It Cm PerSourceNetBlockSize
1473 Specifies the number of bits of source address that are grouped together
1474 for the purposes of applying PerSourceMaxStartups limits.
1475 Values for IPv4 and optionally IPv6 may be specified, separated by a colon.
1476 The default is
1477 .Cm 32:128 ,
1478 which means each address is considered individually.
1479 .It Cm PidFile
1480 Specifies the file that contains the process ID of the
1481 SSH daemon, or
1482 .Cm none
1483 to not write one.
1484 The default is
1485 .Pa /var/run/sshd.pid .
1486 .It Cm Port
1487 Specifies the port number that
1488 .Xr sshd 8
1489 listens on.
1490 The default is 22.
1491 Multiple options of this type are permitted.
1492 See also
1493 .Cm ListenAddress .
1494 .It Cm PrintLastLog
1495 Specifies whether
1496 .Xr sshd 8
1497 should print the date and time of the last user login when a user logs
1498 in interactively.
1499 The default is
1500 .Cm yes .
1501 .It Cm PrintMotd
1502 Specifies whether
1503 .Xr sshd 8
1504 should print
1505 .Pa /etc/motd
1506 when a user logs in interactively.
1507 (On some systems it is also printed by the shell,
1508 .Pa /etc/profile ,
1509 or equivalent.)
1510 The default is
1511 .Cm yes .
1512 .It Cm PubkeyAcceptedAlgorithms
1513 Specifies the signature algorithms that will be accepted for public key
1514 authentication as a list of comma-separated patterns.
1515 Alternately if the specified list begins with a
1516 .Sq +
1517 character, then the specified algorithms will be appended to the default set
1518 instead of replacing them.
1519 If the specified list begins with a
1520 .Sq -
1521 character, then the specified algorithms (including wildcards) will be removed
1522 from the default set instead of replacing them.
1523 If the specified list begins with a
1524 .Sq ^
1525 character, then the specified algorithms will be placed at the head of the
1526 default set.
1527 The default for this option is:
1528 .Bd -literal -offset 3n
1529 ssh-ed25519-cert-v01@openssh.com,
1530 ecdsa-sha2-nistp256-cert-v01@openssh.com,
1531 ecdsa-sha2-nistp384-cert-v01@openssh.com,
1532 ecdsa-sha2-nistp521-cert-v01@openssh.com,
1533 sk-ssh-ed25519-cert-v01@openssh.com,
1534 sk-ecdsa-sha2-nistp256-cert-v01@openssh.com,
1535 rsa-sha2-512-cert-v01@openssh.com,
1536 rsa-sha2-256-cert-v01@openssh.com,
1537 ssh-ed25519,
1538 ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521,
1539 sk-ssh-ed25519@openssh.com,
1540 sk-ecdsa-sha2-nistp256@openssh.com,
1541 rsa-sha2-512,rsa-sha2-256
1542 .Ed
1543 .Pp
1544 The list of available signature algorithms may also be obtained using
1545 .Qq ssh -Q PubkeyAcceptedAlgorithms .
1546 .It Cm PubkeyAuthOptions
1547 Sets one or more public key authentication options.
1548 The supported keywords are:
1549 .Cm none
1550 (the default; indicating no additional options are enabled),
1551 .Cm touch-required
1552 and
1553 .Cm verify-required .
1554 .Pp
1555 The
1556 .Cm touch-required
1557 option causes public key authentication using a FIDO authenticator algorithm
1558 (i.e.\&
1559 .Cm ecdsa-sk
1560 or
1561 .Cm ed25519-sk )
1562 to always require the signature to attest that a physically present user
1563 explicitly confirmed the authentication (usually by touching the authenticator).
1564 By default,
1565 .Xr sshd 8
1566 requires user presence unless overridden with an authorized_keys option.
1567 The
1568 .Cm touch-required
1569 flag disables this override.
1570 .Pp
1571 The
1572 .Cm verify-required
1573 option requires a FIDO key signature attest that the user was verified,
1574 e.g. via a PIN.
1575 .Pp
1576 Neither the
1577 .Cm touch-required
1578 or
1579 .Cm verify-required
1580 options have any effect for other, non-FIDO, public key types.
1581 .It Cm PubkeyAuthentication
1582 Specifies whether public key authentication is allowed.
1583 The default is
1584 .Cm yes .
1585 .It Cm RekeyLimit
1586 Specifies the maximum amount of data that may be transmitted or received
1587 before the session key is renegotiated, optionally followed by a maximum
1588 amount of time that may pass before the session key is renegotiated.
1589 The first argument is specified in bytes and may have a suffix of
1590 .Sq K ,
1591 .Sq M ,
1592 or
1593 .Sq G
1594 to indicate Kilobytes, Megabytes, or Gigabytes, respectively.
1595 The default is between
1596 .Sq 1G
1597 and
1598 .Sq 4G ,
1599 depending on the cipher.
1600 The optional second value is specified in seconds and may use any of the
1601 units documented in the
1602 .Sx TIME FORMATS
1603 section.
1604 The default value for
1605 .Cm RekeyLimit
1606 is
1607 .Cm default none ,
1608 which means that rekeying is performed after the cipher's default amount
1609 of data has been sent or received and no time based rekeying is done.
1610 .It Cm RequiredRSASize
1611 Specifies the minimum RSA key size (in bits) that
1612 .Xr sshd 8
1613 will accept.
1614 User and host-based authentication keys smaller than this limit will be
1615 refused.
1616 The default is
1617 .Cm 1024
1618 bits.
1619 Note that this limit may only be raised from the default.
1620 .It Cm RevokedKeys
1621 Specifies revoked public keys file, or
1622 .Cm none
1623 to not use one.
1624 Keys listed in this file will be refused for public key authentication.
1625 Note that if this file is not readable, then public key authentication will
1626 be refused for all users.
1627 Keys may be specified as a text file, listing one public key per line, or as
1628 an OpenSSH Key Revocation List (KRL) as generated by
1629 .Xr ssh-keygen 1 .
1630 For more information on KRLs, see the KEY REVOCATION LISTS section in
1631 .Xr ssh-keygen 1 .
1632 .It Cm RDomain
1633 Specifies an explicit routing domain that is applied after authentication
1634 has completed.
1635 The user session, as well as any forwarded or listening IP sockets,
1636 will be bound to this
1637 .Xr rdomain 4 .
1638 If the routing domain is set to
1639 .Cm \&%D ,
1640 then the domain in which the incoming connection was received will be applied.
1641 .It Cm SecurityKeyProvider
1642 Specifies a path to a library that will be used when loading
1643 FIDO authenticator-hosted keys, overriding the default of using
1644 the built-in USB HID support.
1645 .It Cm SetEnv
1646 Specifies one or more environment variables to set in child sessions started
1647 by
1648 .Xr sshd 8
1649 as
1650 .Dq NAME=VALUE .
1651 The environment value may be quoted (e.g. if it contains whitespace
1652 characters).
1653 Environment variables set by
1654 .Cm SetEnv
1655 override the default environment and any variables specified by the user
1656 via
1657 .Cm AcceptEnv
1658 or
1659 .Cm PermitUserEnvironment .
1660 .It Cm StreamLocalBindMask
1661 Sets the octal file creation mode mask
1662 .Pq umask
1663 used when creating a Unix-domain socket file for local or remote
1664 port forwarding.
1665 This option is only used for port forwarding to a Unix-domain socket file.
1666 .Pp
1667 The default value is 0177, which creates a Unix-domain socket file that is
1668 readable and writable only by the owner.
1669 Note that not all operating systems honor the file mode on Unix-domain
1670 socket files.
1671 .It Cm StreamLocalBindUnlink
1672 Specifies whether to remove an existing Unix-domain socket file for local
1673 or remote port forwarding before creating a new one.
1674 If the socket file already exists and
1675 .Cm StreamLocalBindUnlink
1676 is not enabled,
1677 .Nm sshd
1678 will be unable to forward the port to the Unix-domain socket file.
1679 This option is only used for port forwarding to a Unix-domain socket file.
1680 .Pp
1681 The argument must be
1682 .Cm yes
1683 or
1684 .Cm no .
1685 The default is
1686 .Cm no .
1687 .It Cm StrictModes
1688 Specifies whether
1689 .Xr sshd 8
1690 should check file modes and ownership of the
1691 user's files and home directory before accepting login.
1692 This is normally desirable because novices sometimes accidentally leave their
1693 directory or files world-writable.
1694 The default is
1695 .Cm yes .
1696 Note that this does not apply to
1697 .Cm ChrootDirectory ,
1698 whose permissions and ownership are checked unconditionally.
1699 .It Cm Subsystem
1700 Configures an external subsystem (e.g. file transfer daemon).
1701 Arguments should be a subsystem name and a command (with optional arguments)
1702 to execute upon subsystem request.
1703 .Pp
1704 The command
1705 .Cm sftp-server
1706 implements the SFTP file transfer subsystem.
1707 .Pp
1708 Alternately the name
1709 .Cm internal-sftp
1710 implements an in-process SFTP server.
1711 This may simplify configurations using
1712 .Cm ChrootDirectory
1713 to force a different filesystem root on clients.
1714 .Pp
1715 By default no subsystems are defined.
1716 .It Cm SyslogFacility
1717 Gives the facility code that is used when logging messages from
1718 .Xr sshd 8 .
1719 The possible values are: DAEMON, USER, AUTH, LOCAL0, LOCAL1, LOCAL2,
1720 LOCAL3, LOCAL4, LOCAL5, LOCAL6, LOCAL7.
1721 The default is AUTH.
1722 .It Cm TCPKeepAlive
1723 Specifies whether the system should send TCP keepalive messages to the
1724 other side.
1725 If they are sent, death of the connection or crash of one
1726 of the machines will be properly noticed.
1727 However, this means that
1728 connections will die if the route is down temporarily, and some people
1729 find it annoying.
1730 On the other hand, if TCP keepalives are not sent,
1731 sessions may hang indefinitely on the server, leaving
1732 .Qq ghost
1733 users and consuming server resources.
1734 .Pp
1735 The default is
1736 .Cm yes
1737 (to send TCP keepalive messages), and the server will notice
1738 if the network goes down or the client host crashes.
1739 This avoids infinitely hanging sessions.
1740 .Pp
1741 To disable TCP keepalive messages, the value should be set to
1742 .Cm no .
1743 .It Cm TrustedUserCAKeys
1744 Specifies a file containing public keys of certificate authorities that are
1745 trusted to sign user certificates for authentication, or
1746 .Cm none
1747 to not use one.
1748 Keys are listed one per line; empty lines and comments starting with
1749 .Ql #
1750 are allowed.
1751 If a certificate is presented for authentication and has its signing CA key
1752 listed in this file, then it may be used for authentication for any user
1753 listed in the certificate's principals list.
1754 Note that certificates that lack a list of principals will not be permitted
1755 for authentication using
1756 .Cm TrustedUserCAKeys .
1757 For more details on certificates, see the CERTIFICATES section in
1758 .Xr ssh-keygen 1 .
1759 .It Cm UseBlacklist
1760 Specifies whether
1761 .Xr sshd 8
1762 attempts to send authentication success and failure messages
1763 to the
1764 .Xr blacklistd 8
1765 daemon.
1766 The default is
1767 .Cm no .
1768 For forward compatibility with an upcoming
1769 .Xr blacklistd
1770 rename, the
1771 .Cm UseBlocklist
1772 alias can be used instead.
1773 .It Cm UseDNS
1774 Specifies whether
1775 .Xr sshd 8
1776 should look up the remote host name, and to check that
1777 the resolved host name for the remote IP address maps back to the
1778 very same IP address.
1779 .Pp
1780 If this option is set to
1781 .Cm no ,
1782 then only addresses and not host names may be used in
1783 .Pa ~/.ssh/authorized_keys
1784 .Cm from
1785 and
1786 .Nm
1787 .Cm Match
1788 .Cm Host
1789 directives.
1790 The default is
1791 .Dq yes .
1792 .It Cm UsePAM
1793 Enables the Pluggable Authentication Module interface.
1794 If set to
1795 .Cm yes
1796 this will enable PAM authentication using
1797 .Cm KbdInteractiveAuthentication
1798 and
1799 .Cm PasswordAuthentication
1800 in addition to PAM account and session module processing for all
1801 authentication types.
1802 .Pp
1803 Because PAM keyboard-interactive authentication usually serves an equivalent
1804 role to password authentication, you should disable either
1805 .Cm PasswordAuthentication
1806 or
1807 .Cm KbdInteractiveAuthentication .
1808 .Pp
1809 If
1810 .Cm UsePAM
1811 is enabled, you will not be able to run
1812 .Xr sshd 8
1813 as a non-root user.
1814 The default is
1815 .Cm yes .
1816 .It Cm VersionAddendum
1817 Optionally specifies additional text to append to the SSH protocol banner
1818 sent by the server upon connection.
1819 The default is
1820 .Qq FreeBSD-20221019 .
1821 The value
1822 .Cm none
1823 may be used to disable this.
1824 .It Cm X11DisplayOffset
1825 Specifies the first display number available for
1826 .Xr sshd 8 Ns 's
1827 X11 forwarding.
1828 This prevents sshd from interfering with real X11 servers.
1829 The default is 10.
1830 .It Cm X11Forwarding
1831 Specifies whether X11 forwarding is permitted.
1832 The argument must be
1833 .Cm yes
1834 or
1835 .Cm no .
1836 The default is
1837 .Cm yes .
1838 .Pp
1839 When X11 forwarding is enabled, there may be additional exposure to
1840 the server and to client displays if the
1841 .Xr sshd 8
1842 proxy display is configured to listen on the wildcard address (see
1843 .Cm X11UseLocalhost ) ,
1844 though this is not the default.
1845 Additionally, the authentication spoofing and authentication data
1846 verification and substitution occur on the client side.
1847 The security risk of using X11 forwarding is that the client's X11
1848 display server may be exposed to attack when the SSH client requests
1849 forwarding (see the warnings for
1850 .Cm ForwardX11
1851 in
1852 .Xr ssh_config 5 ) .
1853 A system administrator may have a stance in which they want to
1854 protect clients that may expose themselves to attack by unwittingly
1855 requesting X11 forwarding, which can warrant a
1856 .Cm no
1857 setting.
1858 .Pp
1859 Note that disabling X11 forwarding does not prevent users from
1860 forwarding X11 traffic, as users can always install their own forwarders.
1861 .It Cm X11UseLocalhost
1862 Specifies whether
1863 .Xr sshd 8
1864 should bind the X11 forwarding server to the loopback address or to
1865 the wildcard address.
1866 By default,
1867 sshd binds the forwarding server to the loopback address and sets the
1868 hostname part of the
1869 .Ev DISPLAY
1870 environment variable to
1871 .Cm localhost .
1872 This prevents remote hosts from connecting to the proxy display.
1873 However, some older X11 clients may not function with this
1874 configuration.
1875 .Cm X11UseLocalhost
1876 may be set to
1877 .Cm no
1878 to specify that the forwarding server should be bound to the wildcard
1879 address.
1880 The argument must be
1881 .Cm yes
1882 or
1883 .Cm no .
1884 The default is
1885 .Cm yes .
1886 .It Cm XAuthLocation
1887 Specifies the full pathname of the
1888 .Xr xauth 1
1889 program, or
1890 .Cm none
1891 to not use one.
1892 The default is
1893 .Pa /usr/local/bin/xauth .
1894 .El
1895 .Sh TIME FORMATS
1896 .Xr sshd 8
1897 command-line arguments and configuration file options that specify time
1898 may be expressed using a sequence of the form:
1899 .Sm off
1900 .Ar time Op Ar qualifier ,
1901 .Sm on
1902 where
1903 .Ar time
1904 is a positive integer value and
1905 .Ar qualifier
1906 is one of the following:
1907 .Pp
1908 .Bl -tag -width Ds -compact -offset indent
1909 .It Aq Cm none
1910 seconds
1911 .It Cm s | Cm S
1912 seconds
1913 .It Cm m | Cm M
1914 minutes
1915 .It Cm h | Cm H
1916 hours
1917 .It Cm d | Cm D
1918 days
1919 .It Cm w | Cm W
1920 weeks
1921 .El
1922 .Pp
1923 Each member of the sequence is added together to calculate
1924 the total time value.
1925 .Pp
1926 Time format examples:
1927 .Pp
1928 .Bl -tag -width Ds -compact -offset indent
1929 .It 600
1930 600 seconds (10 minutes)
1931 .It 10m
1932 10 minutes
1933 .It 1h30m
1934 1 hour 30 minutes (90 minutes)
1935 .El
1936 .Sh TOKENS
1937 Arguments to some keywords can make use of tokens,
1938 which are expanded at runtime:
1939 .Pp
1940 .Bl -tag -width XXXX -offset indent -compact
1941 .It %%
1942 A literal
1943 .Sq % .
1944 .It \&%D
1945 The routing domain in which the incoming connection was received.
1946 .It %F
1947 The fingerprint of the CA key.
1948 .It %f
1949 The fingerprint of the key or certificate.
1950 .It %h
1951 The home directory of the user.
1952 .It %i
1953 The key ID in the certificate.
1954 .It %K
1955 The base64-encoded CA key.
1956 .It %k
1957 The base64-encoded key or certificate for authentication.
1958 .It %s
1959 The serial number of the certificate.
1960 .It \&%T
1961 The type of the CA key.
1962 .It %t
1963 The key or certificate type.
1964 .It \&%U
1965 The numeric user ID of the target user.
1966 .It %u
1967 The username.
1968 .El
1969 .Pp
1970 .Cm AuthorizedKeysCommand
1971 accepts the tokens %%, %f, %h, %k, %t, %U, and %u.
1972 .Pp
1973 .Cm AuthorizedKeysFile
1974 accepts the tokens %%, %h, %U, and %u.
1975 .Pp
1976 .Cm AuthorizedPrincipalsCommand
1977 accepts the tokens %%, %F, %f, %h, %i, %K, %k, %s, %T, %t, %U, and %u.
1978 .Pp
1979 .Cm AuthorizedPrincipalsFile
1980 accepts the tokens %%, %h, %U, and %u.
1981 .Pp
1982 .Cm ChrootDirectory
1983 accepts the tokens %%, %h, %U, and %u.
1984 .Pp
1985 .Cm RoutingDomain
1986 accepts the token %D.
1987 .Sh FILES
1988 .Bl -tag -width Ds
1989 .It Pa /etc/ssh/sshd_config
1990 Contains configuration data for
1991 .Xr sshd 8 .
1992 This file should be writable by root only, but it is recommended
1993 (though not necessary) that it be world-readable.
1994 .El
1995 .Sh SEE ALSO
1996 .Xr sftp-server 8 ,
1997 .Xr sshd 8
1998 .Sh AUTHORS
1999 .An -nosplit
2000 OpenSSH is a derivative of the original and free
2001 ssh 1.2.12 release by
2002 .An Tatu Ylonen .
2003 .An Aaron Campbell , Bob Beck , Markus Friedl , Niels Provos ,
2004 .An Theo de Raadt
2005 and
2006 .An Dug Song
2007 removed many bugs, re-added newer features and
2008 created OpenSSH.
2009 .An Markus Friedl
2010 contributed the support for SSH protocol versions 1.5 and 2.0.
2011 .An Niels Provos
2012 and
2013 .An Markus Friedl
2014 contributed support for privilege separation.