]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - crypto/openssh/sshd.8
contrib/bsddialog: Import version 0.4
[FreeBSD/FreeBSD.git] / crypto / openssh / sshd.8
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.8,v 1.318 2022/03/31 17:27:27 naddy Exp $
37 .Dd $Mdocdate: March 31 2022 $
38 .Dt SSHD 8
39 .Os
40 .Sh NAME
41 .Nm sshd
42 .Nd OpenSSH daemon
43 .Sh SYNOPSIS
44 .Nm sshd
45 .Bk -words
46 .Op Fl 46DdeiqTt
47 .Op Fl C Ar connection_spec
48 .Op Fl c Ar host_certificate_file
49 .Op Fl E Ar log_file
50 .Op Fl f Ar config_file
51 .Op Fl g Ar login_grace_time
52 .Op Fl h Ar host_key_file
53 .Op Fl o Ar option
54 .Op Fl p Ar port
55 .Op Fl u Ar len
56 .Ek
57 .Sh DESCRIPTION
58 .Nm
59 (OpenSSH Daemon) is the daemon program for
60 .Xr ssh 1 .
61 It provides secure encrypted communications between two untrusted hosts
62 over an insecure network.
63 .Pp
64 .Nm
65 listens for connections from clients.
66 It is normally started at boot from
67 .Pa /etc/rc.d/sshd .
68 It forks a new
69 daemon for each incoming connection.
70 The forked daemons handle
71 key exchange, encryption, authentication, command execution,
72 and data exchange.
73 .Pp
74 .Nm
75 can be configured using command-line options or a configuration file
76 (by default
77 .Xr sshd_config 5 ) ;
78 command-line options override values specified in the
79 configuration file.
80 .Nm
81 rereads its configuration file when it receives a hangup signal,
82 .Dv SIGHUP ,
83 by executing itself with the name and options it was started with, e.g.\&
84 .Pa /usr/sbin/sshd .
85 .Pp
86 The options are as follows:
87 .Bl -tag -width Ds
88 .It Fl 4
89 Forces
90 .Nm
91 to use IPv4 addresses only.
92 .It Fl 6
93 Forces
94 .Nm
95 to use IPv6 addresses only.
96 .It Fl C Ar connection_spec
97 Specify the connection parameters to use for the
98 .Fl T
99 extended test mode.
100 If provided, any
101 .Cm Match
102 directives in the configuration file that would apply are applied before the
103 configuration is written to standard output.
104 The connection parameters are supplied as keyword=value pairs and may be
105 supplied in any order, either with multiple
106 .Fl C
107 options or as a comma-separated list.
108 The keywords are
109 .Dq addr ,
110 .Dq user ,
111 .Dq host ,
112 .Dq laddr ,
113 .Dq lport ,
114 and
115 .Dq rdomain
116 and correspond to source address, user, resolved source host name,
117 local address, local port number and routing domain respectively.
118 .It Fl c Ar host_certificate_file
119 Specifies a path to a certificate file to identify
120 .Nm
121 during key exchange.
122 The certificate file must match a host key file specified using the
123 .Fl h
124 option or the
125 .Cm HostKey
126 configuration directive.
127 .It Fl D
128 When this option is specified,
129 .Nm
130 will not detach and does not become a daemon.
131 This allows easy monitoring of
132 .Nm sshd .
133 .It Fl d
134 Debug mode.
135 The server sends verbose debug output to standard error,
136 and does not put itself in the background.
137 The server also will not
138 .Xr fork 2
139 and will only process one connection.
140 This option is only intended for debugging for the server.
141 Multiple
142 .Fl d
143 options increase the debugging level.
144 Maximum is 3.
145 .It Fl E Ar log_file
146 Append debug logs to
147 .Ar log_file
148 instead of the system log.
149 .It Fl e
150 Write debug logs to standard error instead of the system log.
151 .It Fl f Ar config_file
152 Specifies the name of the configuration file.
153 The default is
154 .Pa /etc/ssh/sshd_config .
155 .Nm
156 refuses to start if there is no configuration file.
157 .It Fl g Ar login_grace_time
158 Gives the grace time for clients to authenticate themselves (default
159 120 seconds).
160 If the client fails to authenticate the user within
161 this many seconds, the server disconnects and exits.
162 A value of zero indicates no limit.
163 .It Fl h Ar host_key_file
164 Specifies a file from which a host key is read.
165 This option must be given if
166 .Nm
167 is not run as root (as the normal
168 host key files are normally not readable by anyone but root).
169 The default is
170 .Pa /etc/ssh/ssh_host_ecdsa_key ,
171 .Pa /etc/ssh/ssh_host_ed25519_key
172 and
173 .Pa /etc/ssh/ssh_host_rsa_key .
174 It is possible to have multiple host key files for
175 the different host key algorithms.
176 .It Fl i
177 Specifies that
178 .Nm
179 is being run from
180 .Xr inetd 8 .
181 .It Fl o Ar option
182 Can be used to give options in the format used in the configuration file.
183 This is useful for specifying options for which there is no separate
184 command-line flag.
185 For full details of the options, and their values, see
186 .Xr sshd_config 5 .
187 .It Fl p Ar port
188 Specifies the port on which the server listens for connections
189 (default 22).
190 Multiple port options are permitted.
191 Ports specified in the configuration file with the
192 .Cm Port
193 option are ignored when a command-line port is specified.
194 Ports specified using the
195 .Cm ListenAddress
196 option override command-line ports.
197 .It Fl q
198 Quiet mode.
199 Nothing is sent to the system log.
200 Normally the beginning,
201 authentication, and termination of each connection is logged.
202 .It Fl T
203 Extended test mode.
204 Check the validity of the configuration file, output the effective configuration
205 to stdout and then exit.
206 Optionally,
207 .Cm Match
208 rules may be applied by specifying the connection parameters using one or more
209 .Fl C
210 options.
211 .It Fl t
212 Test mode.
213 Only check the validity of the configuration file and sanity of the keys.
214 This is useful for updating
215 .Nm
216 reliably as configuration options may change.
217 .It Fl u Ar len
218 This option is used to specify the size of the field
219 in the
220 .Li utmp
221 structure that holds the remote host name.
222 If the resolved host name is longer than
223 .Ar len ,
224 the dotted decimal value will be used instead.
225 This allows hosts with very long host names that
226 overflow this field to still be uniquely identified.
227 Specifying
228 .Fl u0
229 indicates that only dotted decimal addresses
230 should be put into the
231 .Pa utmp
232 file.
233 .Fl u0
234 may also be used to prevent
235 .Nm
236 from making DNS requests unless the authentication
237 mechanism or configuration requires it.
238 Authentication mechanisms that may require DNS include
239 .Cm HostbasedAuthentication
240 and using a
241 .Cm from="pattern-list"
242 option in a key file.
243 Configuration options that require DNS include using a
244 USER@HOST pattern in
245 .Cm AllowUsers
246 or
247 .Cm DenyUsers .
248 .El
249 .Sh AUTHENTICATION
250 The OpenSSH SSH daemon supports SSH protocol 2 only.
251 Each host has a host-specific key,
252 used to identify the host.
253 Whenever a client connects, the daemon responds with its public
254 host key.
255 The client compares the
256 host key against its own database to verify that it has not changed.
257 Forward secrecy is provided through a Diffie-Hellman key agreement.
258 This key agreement results in a shared session key.
259 The rest of the session is encrypted using a symmetric cipher.
260 The client selects the encryption algorithm
261 to use from those offered by the server.
262 Additionally, session integrity is provided
263 through a cryptographic message authentication code (MAC).
264 .Pp
265 Finally, the server and the client enter an authentication dialog.
266 The client tries to authenticate itself using
267 host-based authentication,
268 public key authentication,
269 challenge-response authentication,
270 or password authentication.
271 .Pp
272 Regardless of the authentication type, the account is checked to
273 ensure that it is accessible.  An account is not accessible if it is
274 locked, listed in
275 .Cm DenyUsers
276 or its group is listed in
277 .Cm DenyGroups
278 \&.  The definition of a locked account is system dependent. Some platforms
279 have their own account database (eg AIX) and some modify the passwd field (
280 .Ql \&*LK\&*
281 on Solaris and UnixWare,
282 .Ql \&*
283 on HP-UX, containing
284 .Ql Nologin
285 on Tru64,
286 a leading
287 .Ql \&*LOCKED\&*
288 on FreeBSD and a leading
289 .Ql \&!
290 on most Linuxes).
291 If there is a requirement to disable password authentication
292 for the account while allowing still public-key, then the passwd field
293 should be set to something other than these values (eg
294 .Ql NP
295 or
296 .Ql \&*NP\&*
297 ).
298 .Pp
299 If the client successfully authenticates itself, a dialog for
300 preparing the session is entered.
301 At this time the client may request
302 things like allocating a pseudo-tty, forwarding X11 connections,
303 forwarding TCP connections, or forwarding the authentication agent
304 connection over the secure channel.
305 .Pp
306 After this, the client either requests an interactive shell or execution
307 or a non-interactive command, which
308 .Nm
309 will execute via the user's shell using its
310 .Fl c
311 option.
312 The sides then enter session mode.
313 In this mode, either side may send
314 data at any time, and such data is forwarded to/from the shell or
315 command on the server side, and the user terminal in the client side.
316 .Pp
317 When the user program terminates and all forwarded X11 and other
318 connections have been closed, the server sends command exit status to
319 the client, and both sides exit.
320 .Sh LOGIN PROCESS
321 When a user successfully logs in,
322 .Nm
323 does the following:
324 .Bl -enum -offset indent
325 .It
326 If the login is on a tty, and no command has been specified,
327 prints last login time and
328 .Pa /etc/motd
329 (unless prevented in the configuration file or by
330 .Pa ~/.hushlogin ;
331 see the
332 .Sx FILES
333 section).
334 .It
335 If the login is on a tty, records login time.
336 .It
337 Checks
338 .Pa /etc/nologin and
339 .Pa /var/run/nologin ;
340 if one exists, it prints the contents and quits
341 (unless root).
342 .It
343 Changes to run with normal user privileges.
344 .It
345 Sets up basic environment.
346 .It
347 Reads the file
348 .Pa ~/.ssh/environment ,
349 if it exists, and users are allowed to change their environment.
350 See the
351 .Cm PermitUserEnvironment
352 option in
353 .Xr sshd_config 5 .
354 .It
355 Changes to user's home directory.
356 .It
357 If
358 .Pa ~/.ssh/rc
359 exists and the
360 .Xr sshd_config 5
361 .Cm PermitUserRC
362 option is set, runs it; else if
363 .Pa /etc/ssh/sshrc
364 exists, runs
365 it; otherwise runs
366 .Xr xauth 1 .
367 The
368 .Dq rc
369 files are given the X11
370 authentication protocol and cookie in standard input.
371 See
372 .Sx SSHRC ,
373 below.
374 .It
375 Runs user's shell or command.
376 All commands are run under the user's login shell as specified in the
377 system password database.
378 .El
379 .Sh SSHRC
380 If the file
381 .Pa ~/.ssh/rc
382 exists,
383 .Xr sh 1
384 runs it after reading the
385 environment files but before starting the user's shell or command.
386 It must not produce any output on stdout; stderr must be used
387 instead.
388 If X11 forwarding is in use, it will receive the "proto cookie" pair in
389 its standard input (and
390 .Ev DISPLAY
391 in its environment).
392 The script must call
393 .Xr xauth 1
394 because
395 .Nm
396 will not run xauth automatically to add X11 cookies.
397 .Pp
398 The primary purpose of this file is to run any initialization routines
399 which may be needed before the user's home directory becomes
400 accessible; AFS is a particular example of such an environment.
401 .Pp
402 This file will probably contain some initialization code followed by
403 something similar to:
404 .Bd -literal -offset 3n
405 if read proto cookie && [ -n "$DISPLAY" ]; then
406         if [ `echo $DISPLAY | cut -c1-10` = 'localhost:' ]; then
407                 # X11UseLocalhost=yes
408                 echo add unix:`echo $DISPLAY |
409                     cut -c11-` $proto $cookie
410         else
411                 # X11UseLocalhost=no
412                 echo add $DISPLAY $proto $cookie
413         fi | xauth -q -
414 fi
415 .Ed
416 .Pp
417 If this file does not exist,
418 .Pa /etc/ssh/sshrc
419 is run, and if that
420 does not exist either, xauth is used to add the cookie.
421 .Sh AUTHORIZED_KEYS FILE FORMAT
422 .Cm AuthorizedKeysFile
423 specifies the files containing public keys for
424 public key authentication;
425 if this option is not specified, the default is
426 .Pa ~/.ssh/authorized_keys
427 and
428 .Pa ~/.ssh/authorized_keys2 .
429 Each line of the file contains one
430 key (empty lines and lines starting with a
431 .Ql #
432 are ignored as
433 comments).
434 Public keys consist of the following space-separated fields:
435 options, keytype, base64-encoded key, comment.
436 The options field is optional.
437 The supported key types are:
438 .Pp
439 .Bl -item -compact -offset indent
440 .It
441 sk-ecdsa-sha2-nistp256@openssh.com
442 .It
443 ecdsa-sha2-nistp256
444 .It
445 ecdsa-sha2-nistp384
446 .It
447 ecdsa-sha2-nistp521
448 .It
449 sk-ssh-ed25519@openssh.com
450 .It
451 ssh-ed25519
452 .It
453 ssh-dss
454 .It
455 ssh-rsa
456 .El
457 .Pp
458 The comment field is not used for anything (but may be convenient for the
459 user to identify the key).
460 .Pp
461 Note that lines in this file can be several hundred bytes long
462 (because of the size of the public key encoding) up to a limit of
463 8 kilobytes, which permits RSA keys up to 16 kilobits.
464 You don't want to type them in; instead, copy the
465 .Pa id_dsa.pub ,
466 .Pa id_ecdsa.pub ,
467 .Pa id_ecdsa_sk.pub ,
468 .Pa id_ed25519.pub ,
469 .Pa id_ed25519_sk.pub ,
470 or the
471 .Pa id_rsa.pub
472 file and edit it.
473 .Pp
474 .Nm
475 enforces a minimum RSA key modulus size of 1024 bits.
476 .Pp
477 The options (if present) consist of comma-separated option
478 specifications.
479 No spaces are permitted, except within double quotes.
480 The following option specifications are supported (note
481 that option keywords are case-insensitive):
482 .Bl -tag -width Ds
483 .It Cm agent-forwarding
484 Enable authentication agent forwarding previously disabled by the
485 .Cm restrict
486 option.
487 .It Cm cert-authority
488 Specifies that the listed key is a certification authority (CA) that is
489 trusted to validate signed certificates for user authentication.
490 .Pp
491 Certificates may encode access restrictions similar to these key options.
492 If both certificate restrictions and key options are present, the most
493 restrictive union of the two is applied.
494 .It Cm command="command"
495 Specifies that the command is executed whenever this key is used for
496 authentication.
497 The command supplied by the user (if any) is ignored.
498 The command is run on a pty if the client requests a pty;
499 otherwise it is run without a tty.
500 If an 8-bit clean channel is required,
501 one must not request a pty or should specify
502 .Cm no-pty .
503 A quote may be included in the command by quoting it with a backslash.
504 .Pp
505 This option might be useful
506 to restrict certain public keys to perform just a specific operation.
507 An example might be a key that permits remote backups but nothing else.
508 Note that the client may specify TCP and/or X11
509 forwarding unless they are explicitly prohibited, e.g. using the
510 .Cm restrict
511 key option.
512 .Pp
513 The command originally supplied by the client is available in the
514 .Ev SSH_ORIGINAL_COMMAND
515 environment variable.
516 Note that this option applies to shell, command or subsystem execution.
517 Also note that this command may be superseded by a
518 .Xr sshd_config 5
519 .Cm ForceCommand
520 directive.
521 .Pp
522 If a command is specified and a forced-command is embedded in a certificate
523 used for authentication, then the certificate will be accepted only if the
524 two commands are identical.
525 .It Cm environment="NAME=value"
526 Specifies that the string is to be added to the environment when
527 logging in using this key.
528 Environment variables set this way
529 override other default environment values.
530 Multiple options of this type are permitted.
531 Environment processing is disabled by default and is
532 controlled via the
533 .Cm PermitUserEnvironment
534 option.
535 .It Cm expiry-time="timespec"
536 Specifies a time after which the key will not be accepted.
537 The time may be specified as a YYYYMMDD date or a YYYYMMDDHHMM[SS] time
538 in the system time-zone.
539 .It Cm from="pattern-list"
540 Specifies that in addition to public key authentication, either the canonical
541 name of the remote host or its IP address must be present in the
542 comma-separated list of patterns.
543 See PATTERNS in
544 .Xr ssh_config 5
545 for more information on patterns.
546 .Pp
547 In addition to the wildcard matching that may be applied to hostnames or
548 addresses, a
549 .Cm from
550 stanza may match IP addresses using CIDR address/masklen notation.
551 .Pp
552 The purpose of this option is to optionally increase security: public key
553 authentication by itself does not trust the network or name servers or
554 anything (but the key); however, if somebody somehow steals the key, the key
555 permits an intruder to log in from anywhere in the world.
556 This additional option makes using a stolen key more difficult (name
557 servers and/or routers would have to be compromised in addition to
558 just the key).
559 .It Cm no-agent-forwarding
560 Forbids authentication agent forwarding when this key is used for
561 authentication.
562 .It Cm no-port-forwarding
563 Forbids TCP forwarding when this key is used for authentication.
564 Any port forward requests by the client will return an error.
565 This might be used, e.g. in connection with the
566 .Cm command
567 option.
568 .It Cm no-pty
569 Prevents tty allocation (a request to allocate a pty will fail).
570 .It Cm no-user-rc
571 Disables execution of
572 .Pa ~/.ssh/rc .
573 .It Cm no-X11-forwarding
574 Forbids X11 forwarding when this key is used for authentication.
575 Any X11 forward requests by the client will return an error.
576 .It Cm permitlisten="[host:]port"
577 Limit remote port forwarding with the
578 .Xr ssh 1
579 .Fl R
580 option such that it may only listen on the specified host (optional) and port.
581 IPv6 addresses can be specified by enclosing the address in square brackets.
582 Multiple
583 .Cm permitlisten
584 options may be applied separated by commas.
585 Hostnames may include wildcards as described in the PATTERNS section in
586 .Xr ssh_config 5 .
587 A port specification of
588 .Cm *
589 matches any port.
590 Note that the setting of
591 .Cm GatewayPorts
592 may further restrict listen addresses.
593 Note that
594 .Xr ssh 1
595 will send a hostname of
596 .Dq localhost
597 if a listen host was not specified when the forwarding was requested, and
598 that this name is treated differently to the explicit localhost addresses
599 .Dq 127.0.0.1
600 and
601 .Dq ::1 .
602 .It Cm permitopen="host:port"
603 Limit local port forwarding with the
604 .Xr ssh 1
605 .Fl L
606 option such that it may only connect to the specified host and port.
607 IPv6 addresses can be specified by enclosing the address in square brackets.
608 Multiple
609 .Cm permitopen
610 options may be applied separated by commas.
611 No pattern matching or name lookup is performed on the
612 specified hostnames, they must be literal host names and/or addresses.
613 A port specification of
614 .Cm *
615 matches any port.
616 .It Cm port-forwarding
617 Enable port forwarding previously disabled by the
618 .Cm restrict
619 option.
620 .It Cm principals="principals"
621 On a
622 .Cm cert-authority
623 line, specifies allowed principals for certificate authentication as a
624 comma-separated list.
625 At least one name from the list must appear in the certificate's
626 list of principals for the certificate to be accepted.
627 This option is ignored for keys that are not marked as trusted certificate
628 signers using the
629 .Cm cert-authority
630 option.
631 .It Cm pty
632 Permits tty allocation previously disabled by the
633 .Cm restrict
634 option.
635 .It Cm no-touch-required
636 Do not require demonstration of user presence
637 for signatures made using this key.
638 This option only makes sense for the FIDO authenticator algorithms
639 .Cm ecdsa-sk
640 and
641 .Cm ed25519-sk .
642 .It Cm verify-required
643 Require that signatures made using this key attest that they verified
644 the user, e.g. via a PIN.
645 This option only makes sense for the FIDO authenticator algorithms
646 .Cm ecdsa-sk
647 and
648 .Cm ed25519-sk .
649 .It Cm restrict
650 Enable all restrictions, i.e. disable port, agent and X11 forwarding,
651 as well as disabling PTY allocation
652 and execution of
653 .Pa ~/.ssh/rc .
654 If any future restriction capabilities are added to authorized_keys files,
655 they will be included in this set.
656 .It Cm tunnel="n"
657 Force a
658 .Xr tun 4
659 device on the server.
660 Without this option, the next available device will be used if
661 the client requests a tunnel.
662 .It Cm user-rc
663 Enables execution of
664 .Pa ~/.ssh/rc
665 previously disabled by the
666 .Cm restrict
667 option.
668 .It Cm X11-forwarding
669 Permits X11 forwarding previously disabled by the
670 .Cm restrict
671 option.
672 .El
673 .Pp
674 An example authorized_keys file:
675 .Bd -literal -offset 3n
676 # Comments are allowed at start of line. Blank lines are allowed.
677 # Plain key, no restrictions
678 ssh-rsa ...
679 # Forced command, disable PTY and all forwarding
680 restrict,command="dump /home" ssh-rsa ...
681 # Restriction of ssh -L forwarding destinations
682 permitopen="192.0.2.1:80",permitopen="192.0.2.2:25" ssh-rsa ...
683 # Restriction of ssh -R forwarding listeners
684 permitlisten="localhost:8080",permitlisten="[::1]:22000" ssh-rsa ...
685 # Configuration for tunnel forwarding
686 tunnel="0",command="sh /etc/netstart tun0" ssh-rsa ...
687 # Override of restriction to allow PTY allocation
688 restrict,pty,command="nethack" ssh-rsa ...
689 # Allow FIDO key without requiring touch
690 no-touch-required sk-ecdsa-sha2-nistp256@openssh.com ...
691 # Require user-verification (e.g. PIN or biometric) for FIDO key
692 verify-required sk-ecdsa-sha2-nistp256@openssh.com ...
693 # Trust CA key, allow touch-less FIDO if requested in certificate
694 cert-authority,no-touch-required,principals="user_a" ssh-rsa ...
695 .Ed
696 .Sh SSH_KNOWN_HOSTS FILE FORMAT
697 The
698 .Pa /etc/ssh/ssh_known_hosts
699 and
700 .Pa ~/.ssh/known_hosts
701 files contain host public keys for all known hosts.
702 The global file should
703 be prepared by the administrator (optional), and the per-user file is
704 maintained automatically: whenever the user connects to an unknown host,
705 its key is added to the per-user file.
706 .Pp
707 Each line in these files contains the following fields: marker (optional),
708 hostnames, keytype, base64-encoded key, comment.
709 The fields are separated by spaces.
710 .Pp
711 The marker is optional, but if it is present then it must be one of
712 .Dq @cert-authority ,
713 to indicate that the line contains a certification authority (CA) key,
714 or
715 .Dq @revoked ,
716 to indicate that the key contained on the line is revoked and must not ever
717 be accepted.
718 Only one marker should be used on a key line.
719 .Pp
720 Hostnames is a comma-separated list of patterns
721 .Pf ( Ql *
722 and
723 .Ql \&?
724 act as
725 wildcards); each pattern in turn is matched against the host name.
726 When
727 .Nm sshd
728 is authenticating a client, such as when using
729 .Cm HostbasedAuthentication ,
730 this will be the canonical client host name.
731 When
732 .Xr ssh 1
733 is authenticating a server, this will be the host name
734 given by the user, the value of the
735 .Xr ssh 1
736 .Cm HostkeyAlias
737 if it was specified, or the canonical server hostname if the
738 .Xr ssh 1
739 .Cm CanonicalizeHostname
740 option was used.
741 .Pp
742 A pattern may also be preceded by
743 .Ql \&!
744 to indicate negation: if the host name matches a negated
745 pattern, it is not accepted (by that line) even if it matched another
746 pattern on the line.
747 A hostname or address may optionally be enclosed within
748 .Ql \&[
749 and
750 .Ql \&]
751 brackets then followed by
752 .Ql \&:
753 and a non-standard port number.
754 .Pp
755 Alternately, hostnames may be stored in a hashed form which hides host names
756 and addresses should the file's contents be disclosed.
757 Hashed hostnames start with a
758 .Ql |
759 character.
760 Only one hashed hostname may appear on a single line and none of the above
761 negation or wildcard operators may be applied.
762 .Pp
763 The keytype and base64-encoded key are taken directly from the host key; they
764 can be obtained, for example, from
765 .Pa /etc/ssh/ssh_host_rsa_key.pub .
766 The optional comment field continues to the end of the line, and is not used.
767 .Pp
768 Lines starting with
769 .Ql #
770 and empty lines are ignored as comments.
771 .Pp
772 When performing host authentication, authentication is accepted if any
773 matching line has the proper key; either one that matches exactly or,
774 if the server has presented a certificate for authentication, the key
775 of the certification authority that signed the certificate.
776 For a key to be trusted as a certification authority, it must use the
777 .Dq @cert-authority
778 marker described above.
779 .Pp
780 The known hosts file also provides a facility to mark keys as revoked,
781 for example when it is known that the associated private key has been
782 stolen.
783 Revoked keys are specified by including the
784 .Dq @revoked
785 marker at the beginning of the key line, and are never accepted for
786 authentication or as certification authorities, but instead will
787 produce a warning from
788 .Xr ssh 1
789 when they are encountered.
790 .Pp
791 It is permissible (but not
792 recommended) to have several lines or different host keys for the same
793 names.
794 This will inevitably happen when short forms of host names
795 from different domains are put in the file.
796 It is possible
797 that the files contain conflicting information; authentication is
798 accepted if valid information can be found from either file.
799 .Pp
800 Note that the lines in these files are typically hundreds of characters
801 long, and you definitely don't want to type in the host keys by hand.
802 Rather, generate them by a script,
803 .Xr ssh-keyscan 1
804 or by taking, for example,
805 .Pa /etc/ssh/ssh_host_rsa_key.pub
806 and adding the host names at the front.
807 .Xr ssh-keygen 1
808 also offers some basic automated editing for
809 .Pa ~/.ssh/known_hosts
810 including removing hosts matching a host name and converting all host
811 names to their hashed representations.
812 .Pp
813 An example ssh_known_hosts file:
814 .Bd -literal -offset 3n
815 # Comments allowed at start of line
816 closenet,...,192.0.2.53 1024 37 159...93 closenet.example.net
817 cvs.example.net,192.0.2.10 ssh-rsa AAAA1234.....=
818 # A hashed hostname
819 |1|JfKTdBh7rNbXkVAQCRp4OQoPfmI=|USECr3SWf1JUPsms5AqfD5QfxkM= ssh-rsa
820 AAAA1234.....=
821 # A revoked key
822 @revoked * ssh-rsa AAAAB5W...
823 # A CA key, accepted for any host in *.mydomain.com or *.mydomain.org
824 @cert-authority *.mydomain.org,*.mydomain.com ssh-rsa AAAAB5W...
825 .Ed
826 .Sh FILES
827 .Bl -tag -width Ds -compact
828 .It Pa ~/.hushlogin
829 This file is used to suppress printing the last login time and
830 .Pa /etc/motd ,
831 if
832 .Cm PrintLastLog
833 and
834 .Cm PrintMotd ,
835 respectively,
836 are enabled.
837 It does not suppress printing of the banner specified by
838 .Cm Banner .
839 .Pp
840 .It Pa ~/.rhosts
841 This file is used for host-based authentication (see
842 .Xr ssh 1
843 for more information).
844 On some machines this file may need to be
845 world-readable if the user's home directory is on an NFS partition,
846 because
847 .Nm
848 reads it as root.
849 Additionally, this file must be owned by the user,
850 and must not have write permissions for anyone else.
851 The recommended
852 permission for most machines is read/write for the user, and not
853 accessible by others.
854 .Pp
855 .It Pa ~/.shosts
856 This file is used in exactly the same way as
857 .Pa .rhosts ,
858 but allows host-based authentication without permitting login with
859 rlogin/rsh.
860 .Pp
861 .It Pa ~/.ssh/
862 This directory is the default location for all user-specific configuration
863 and authentication information.
864 There is no general requirement to keep the entire contents of this directory
865 secret, but the recommended permissions are read/write/execute for the user,
866 and not accessible by others.
867 .Pp
868 .It Pa ~/.ssh/authorized_keys
869 Lists the public keys (DSA, ECDSA, Ed25519, RSA)
870 that can be used for logging in as this user.
871 The format of this file is described above.
872 The content of the file is not highly sensitive, but the recommended
873 permissions are read/write for the user, and not accessible by others.
874 .Pp
875 If this file, the
876 .Pa ~/.ssh
877 directory, or the user's home directory are writable
878 by other users, then the file could be modified or replaced by unauthorized
879 users.
880 In this case,
881 .Nm
882 will not allow it to be used unless the
883 .Cm StrictModes
884 option has been set to
885 .Dq no .
886 .Pp
887 .It Pa ~/.ssh/environment
888 This file is read into the environment at login (if it exists).
889 It can only contain empty lines, comment lines (that start with
890 .Ql # ) ,
891 and assignment lines of the form name=value.
892 The file should be writable
893 only by the user; it need not be readable by anyone else.
894 Environment processing is disabled by default and is
895 controlled via the
896 .Cm PermitUserEnvironment
897 option.
898 .Pp
899 .It Pa ~/.ssh/known_hosts
900 Contains a list of host keys for all hosts the user has logged into
901 that are not already in the systemwide list of known host keys.
902 The format of this file is described above.
903 This file should be writable only by root/the owner and
904 can, but need not be, world-readable.
905 .Pp
906 .It Pa ~/.ssh/rc
907 Contains initialization routines to be run before
908 the user's home directory becomes accessible.
909 This file should be writable only by the user, and need not be
910 readable by anyone else.
911 .Pp
912 .It Pa /etc/hosts.allow
913 .It Pa /etc/hosts.deny
914 Access controls that should be enforced by tcp-wrappers are defined here.
915 Further details are described in
916 .Xr hosts_access 5 .
917 .Pp
918 .It Pa /etc/hosts.equiv
919 This file is for host-based authentication (see
920 .Xr ssh 1 ) .
921 It should only be writable by root.
922 .Pp
923 .It Pa /etc/moduli
924 Contains Diffie-Hellman groups used for the "Diffie-Hellman Group Exchange"
925 key exchange method.
926 The file format is described in
927 .Xr moduli 5 .
928 If no usable groups are found in this file then fixed internal groups will
929 be used.
930 .Pp
931 .It Pa /etc/motd
932 See
933 .Xr motd 5 .
934 .Pp
935 .It Pa /etc/nologin
936 If this file exists,
937 .Nm
938 refuses to let anyone except root log in.
939 The contents of the file
940 are displayed to anyone trying to log in, and non-root connections are
941 refused.
942 The file should be world-readable.
943 .Pp
944 .It Pa /etc/shosts.equiv
945 This file is used in exactly the same way as
946 .Pa hosts.equiv ,
947 but allows host-based authentication without permitting login with
948 rlogin/rsh.
949 .Pp
950 .It Pa /etc/ssh/ssh_host_ecdsa_key
951 .It Pa /etc/ssh/ssh_host_ed25519_key
952 .It Pa /etc/ssh/ssh_host_rsa_key
953 These files contain the private parts of the host keys.
954 These files should only be owned by root, readable only by root, and not
955 accessible to others.
956 Note that
957 .Nm
958 does not start if these files are group/world-accessible.
959 .Pp
960 .It Pa /etc/ssh/ssh_host_ecdsa_key.pub
961 .It Pa /etc/ssh/ssh_host_ed25519_key.pub
962 .It Pa /etc/ssh/ssh_host_rsa_key.pub
963 These files contain the public parts of the host keys.
964 These files should be world-readable but writable only by
965 root.
966 Their contents should match the respective private parts.
967 These files are not
968 really used for anything; they are provided for the convenience of
969 the user so their contents can be copied to known hosts files.
970 These files are created using
971 .Xr ssh-keygen 1 .
972 .Pp
973 .It Pa /etc/ssh/ssh_known_hosts
974 Systemwide list of known host keys.
975 This file should be prepared by the
976 system administrator to contain the public host keys of all machines in the
977 organization.
978 The format of this file is described above.
979 This file should be writable only by root/the owner and
980 should be world-readable.
981 .Pp
982 .It Pa /etc/ssh/sshd_config
983 Contains configuration data for
984 .Nm sshd .
985 The file format and configuration options are described in
986 .Xr sshd_config 5 .
987 .Pp
988 .It Pa /etc/ssh/sshrc
989 Similar to
990 .Pa ~/.ssh/rc ,
991 it can be used to specify
992 machine-specific login-time initializations globally.
993 This file should be writable only by root, and should be world-readable.
994 .Pp
995 .It Pa /var/empty
996 .Xr chroot 2
997 directory used by
998 .Nm
999 during privilege separation in the pre-authentication phase.
1000 The directory should not contain any files and must be owned by root
1001 and not group or world-writable.
1002 .Pp
1003 .It Pa /var/run/sshd.pid
1004 Contains the process ID of the
1005 .Nm
1006 listening for connections (if there are several daemons running
1007 concurrently for different ports, this contains the process ID of the one
1008 started last).
1009 The content of this file is not sensitive; it can be world-readable.
1010 .El
1011 .Sh SEE ALSO
1012 .Xr scp 1 ,
1013 .Xr sftp 1 ,
1014 .Xr ssh 1 ,
1015 .Xr ssh-add 1 ,
1016 .Xr ssh-agent 1 ,
1017 .Xr ssh-keygen 1 ,
1018 .Xr ssh-keyscan 1 ,
1019 .Xr chroot 2 ,
1020 .Xr hosts_access 5 ,
1021 .Xr login.conf 5 ,
1022 .Xr moduli 5 ,
1023 .Xr sshd_config 5 ,
1024 .Xr inetd 8 ,
1025 .Xr sftp-server 8
1026 .Sh AUTHORS
1027 OpenSSH is a derivative of the original and free
1028 ssh 1.2.12 release by Tatu Ylonen.
1029 Aaron Campbell, Bob Beck, Markus Friedl, Niels Provos,
1030 Theo de Raadt and Dug Song
1031 removed many bugs, re-added newer features and
1032 created OpenSSH.
1033 Markus Friedl contributed the support for SSH
1034 protocol versions 1.5 and 2.0.
1035 Niels Provos and Markus Friedl contributed support
1036 for privilege separation.