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