nrelease - fix/improve livecd
[dragonfly.git] / crypto / openssh / sshd.8
blobac1c62de0b0af93aa78664f8dc37b4b90ff9407b
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.321 2022/09/11 06:38:11 jmc Exp $
37 .Dd $Mdocdate: September 11 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 .
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 ,
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
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,
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 .
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
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
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
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
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 .Vt 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
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
247 .Cm DenyUsers .
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).
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.
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
296 .Ql \&*NP\&*
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.
306 After this, the client either requests an interactive shell or execution
307 or a non-interactive command, which
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.
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,
323 does the following:
324 .Bl -enum -offset indent
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).
335 If the login is on a tty, records login time.
337 Checks
338 .Pa /etc/nologin ;
339 if it exists, prints contents and quits
340 (unless root).
342 Changes to run with normal user privileges.
344 Sets up basic environment.
346 Reads the file
347 .Pa ~/.ssh/environment ,
348 if it exists, and users are allowed to change their environment.
349 See the
350 .Cm PermitUserEnvironment
351 option in
352 .Xr sshd_config 5 .
354 Changes to user's home directory.
357 .Pa ~/.ssh/rc
358 exists and the
359 .Xr sshd_config 5
360 .Cm PermitUserRC
361 option is set, runs it; else if
362 .Pa /etc/ssh/sshrc
363 exists, runs
364 it; otherwise runs
365 .Xr xauth 1 .
367 .Dq rc
368 files are given the X11
369 authentication protocol and cookie in standard input.
371 .Sx SSHRC ,
372 below.
374 Runs user's shell or command.
375 All commands are run under the user's login shell as specified in the
376 system password database.
378 .Sh SSHRC
379 If the file
380 .Pa ~/.ssh/rc
381 exists,
382 .Xr sh 1
383 runs it after reading the
384 environment files but before starting the user's shell or command.
385 It must not produce any output on stdout; stderr must be used
386 instead.
387 If X11 forwarding is in use, it will receive the "proto cookie" pair in
388 its standard input (and
389 .Ev DISPLAY
390 in its environment).
391 The script must call
392 .Xr xauth 1
393 because
395 will not run xauth automatically to add X11 cookies.
397 The primary purpose of this file is to run any initialization routines
398 which may be needed before the user's home directory becomes
399 accessible; AFS is a particular example of such an environment.
401 This file will probably contain some initialization code followed by
402 something similar to:
403 .Bd -literal -offset 3n
404 if read proto cookie && [ -n "$DISPLAY" ]; then
405         if [ `echo $DISPLAY | cut -c1-10` = 'localhost:' ]; then
406                 # X11UseLocalhost=yes
407                 echo add unix:`echo $DISPLAY |
408                     cut -c11-` $proto $cookie
409         else
410                 # X11UseLocalhost=no
411                 echo add $DISPLAY $proto $cookie
412         fi | xauth -q -
416 If this file does not exist,
417 .Pa /etc/ssh/sshrc
418 is run, and if that
419 does not exist either, xauth is used to add the cookie.
420 .Sh AUTHORIZED_KEYS FILE FORMAT
421 .Cm AuthorizedKeysFile
422 specifies the files containing public keys for
423 public key authentication;
424 if this option is not specified, the default is
425 .Pa ~/.ssh/authorized_keys
427 .Pa ~/.ssh/authorized_keys2 .
428 Each line of the file contains one
429 key (empty lines and lines starting with a
430 .Ql #
431 are ignored as
432 comments).
433 Public keys consist of the following space-separated fields:
434 options, keytype, base64-encoded key, comment.
435 The options field is optional.
436 The supported key types are:
438 .Bl -item -compact -offset indent
440 sk-ecdsa-sha2-nistp256@openssh.com
442 ecdsa-sha2-nistp256
444 ecdsa-sha2-nistp384
446 ecdsa-sha2-nistp521
448 sk-ssh-ed25519@openssh.com
450 ssh-ed25519
452 ssh-dss
454 ssh-rsa
457 The comment field is not used for anything (but may be convenient for the
458 user to identify the key).
460 Note that lines in this file can be several hundred bytes long
461 (because of the size of the public key encoding) up to a limit of
462 8 kilobytes, which permits RSA keys up to 16 kilobits.
463 You don't want to type them in; instead, copy the
464 .Pa id_dsa.pub ,
465 .Pa id_ecdsa.pub ,
466 .Pa id_ecdsa_sk.pub ,
467 .Pa id_ed25519.pub ,
468 .Pa id_ed25519_sk.pub ,
469 or the
470 .Pa id_rsa.pub
471 file and edit it.
474 enforces a minimum RSA key modulus size of 1024 bits.
476 The options (if present) consist of comma-separated option
477 specifications.
478 No spaces are permitted, except within double quotes.
479 The following option specifications are supported (note
480 that option keywords are case-insensitive):
481 .Bl -tag -width Ds
482 .It Cm agent-forwarding
483 Enable authentication agent forwarding previously disabled by the
484 .Cm restrict
485 option.
486 .It Cm cert-authority
487 Specifies that the listed key is a certification authority (CA) that is
488 trusted to validate signed certificates for user authentication.
490 Certificates may encode access restrictions similar to these key options.
491 If both certificate restrictions and key options are present, the most
492 restrictive union of the two is applied.
493 .It Cm command="command"
494 Specifies that the command is executed whenever this key is used for
495 authentication.
496 The command supplied by the user (if any) is ignored.
497 The command is run on a pty if the client requests a pty;
498 otherwise it is run without a tty.
499 If an 8-bit clean channel is required,
500 one must not request a pty or should specify
501 .Cm no-pty .
502 A quote may be included in the command by quoting it with a backslash.
504 This option might be useful
505 to restrict certain public keys to perform just a specific operation.
506 An example might be a key that permits remote backups but nothing else.
507 Note that the client may specify TCP and/or X11
508 forwarding unless they are explicitly prohibited, e.g. using the
509 .Cm restrict
510 key option.
512 The command originally supplied by the client is available in the
513 .Ev SSH_ORIGINAL_COMMAND
514 environment variable.
515 Note that this option applies to shell, command or subsystem execution.
516 Also note that this command may be superseded by a
517 .Xr sshd_config 5
518 .Cm ForceCommand
519 directive.
521 If a command is specified and a forced-command is embedded in a certificate
522 used for authentication, then the certificate will be accepted only if the
523 two commands are identical.
524 .It Cm environment="NAME=value"
525 Specifies that the string is to be added to the environment when
526 logging in using this key.
527 Environment variables set this way
528 override other default environment values.
529 Multiple options of this type are permitted.
530 Environment processing is disabled by default and is
531 controlled via the
532 .Cm PermitUserEnvironment
533 option.
534 .It Cm expiry-time="timespec"
535 Specifies a time after which the key will not be accepted.
536 The time may be specified as a YYYYMMDD[Z] date or a YYYYMMDDHHMM[SS][Z] time.
537 Dates and times will be interpreted in the system time zone unless suffixed
538 by a Z character, in which case they will be interpreted in the UTC 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.
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.
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
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
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
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.
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 ...
696 .Sh SSH_KNOWN_HOSTS FILE FORMAT
698 .Pa /etc/ssh/ssh_known_hosts
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.
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.
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,
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.
720 Hostnames is a comma-separated list of patterns
721 .Pf ( Ql *
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.
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 \&[
750 .Ql \&]
751 brackets then followed by
752 .Ql \&:
753 and a non-standard port number.
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.
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.
768 Lines starting with
769 .Ql #
770 and empty lines are ignored as comments.
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.
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.
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.
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.
813 An example ssh_known_hosts file:
814 .Bd -literal -offset 3n
815 # Comments allowed at start of line
816 cvs.example.net,192.0.2.10 ssh-rsa AAAA1234.....=
817 # A hashed hostname
818 |1|JfKTdBh7rNbXkVAQCRp4OQoPfmI=|USECr3SWf1JUPsms5AqfD5QfxkM= ssh-rsa
819 AAAA1234.....=
820 # A revoked key
821 @revoked * ssh-rsa AAAAB5W...
822 # A CA key, accepted for any host in *.mydomain.com or *.mydomain.org
823 @cert-authority *.mydomain.org,*.mydomain.com ssh-rsa AAAAB5W...
825 .Sh FILES
826 .Bl -tag -width Ds -compact
827 .It Pa ~/.hushlogin
828 This file is used to suppress printing the last login time and
829 .Pa /etc/motd ,
831 .Cm PrintLastLog
833 .Cm PrintMotd ,
834 respectively,
835 are enabled.
836 It does not suppress printing of the banner specified by
837 .Cm Banner .
839 .It Pa ~/.rhosts
840 This file is used for host-based authentication (see
841 .Xr ssh 1
842 for more information).
843 On some machines this file may need to be
844 world-readable if the user's home directory is on an NFS partition,
845 because
847 reads it as root.
848 Additionally, this file must be owned by the user,
849 and must not have write permissions for anyone else.
850 The recommended
851 permission for most machines is read/write for the user, and not
852 accessible by others.
854 .It Pa ~/.shosts
855 This file is used in exactly the same way as
856 .Pa .rhosts ,
857 but allows host-based authentication without permitting login with
858 rlogin/rsh.
860 .It Pa ~/.ssh/
861 This directory is the default location for all user-specific configuration
862 and authentication information.
863 There is no general requirement to keep the entire contents of this directory
864 secret, but the recommended permissions are read/write/execute for the user,
865 and not accessible by others.
867 .It Pa ~/.ssh/authorized_keys
868 Lists the public keys (DSA, ECDSA, Ed25519, RSA)
869 that can be used for logging in as this user.
870 The format of this file is described above.
871 The content of the file is not highly sensitive, but the recommended
872 permissions are read/write for the user, and not accessible by others.
874 If this file, the
875 .Pa ~/.ssh
876 directory, or the user's home directory are writable
877 by other users, then the file could be modified or replaced by unauthorized
878 users.
879 In this case,
881 will not allow it to be used unless the
882 .Cm StrictModes
883 option has been set to
884 .Dq no .
886 .It Pa ~/.ssh/environment
887 This file is read into the environment at login (if it exists).
888 It can only contain empty lines, comment lines (that start with
889 .Ql # ) ,
890 and assignment lines of the form name=value.
891 The file should be writable
892 only by the user; it need not be readable by anyone else.
893 Environment processing is disabled by default and is
894 controlled via the
895 .Cm PermitUserEnvironment
896 option.
898 .It Pa ~/.ssh/known_hosts
899 Contains a list of host keys for all hosts the user has logged into
900 that are not already in the systemwide list of known host keys.
901 The format of this file is described above.
902 This file should be writable only by root/the owner and
903 can, but need not be, world-readable.
905 .It Pa ~/.ssh/rc
906 Contains initialization routines to be run before
907 the user's home directory becomes accessible.
908 This file should be writable only by the user, and need not be
909 readable by anyone else.
911 .It Pa /etc/hosts.equiv
912 This file is for host-based authentication (see
913 .Xr ssh 1 ) .
914 It should only be writable by root.
916 .It Pa /etc/moduli
917 Contains Diffie-Hellman groups used for the "Diffie-Hellman Group Exchange"
918 key exchange method.
919 The file format is described in
920 .Xr moduli 5 .
921 If no usable groups are found in this file then fixed internal groups will
922 be used.
924 .It Pa /etc/motd
926 .Xr motd 5 .
928 .It Pa /etc/nologin
929 If this file exists,
931 refuses to let anyone except root log in.
932 The contents of the file
933 are displayed to anyone trying to log in, and non-root connections are
934 refused.
935 The file should be world-readable.
937 .It Pa /etc/shosts.equiv
938 This file is used in exactly the same way as
939 .Pa hosts.equiv ,
940 but allows host-based authentication without permitting login with
941 rlogin/rsh.
943 .It Pa /etc/ssh/ssh_host_ecdsa_key
944 .It Pa /etc/ssh/ssh_host_ed25519_key
945 .It Pa /etc/ssh/ssh_host_rsa_key
946 These files contain the private parts of the host keys.
947 These files should only be owned by root, readable only by root, and not
948 accessible to others.
949 Note that
951 does not start if these files are group/world-accessible.
953 .It Pa /etc/ssh/ssh_host_ecdsa_key.pub
954 .It Pa /etc/ssh/ssh_host_ed25519_key.pub
955 .It Pa /etc/ssh/ssh_host_rsa_key.pub
956 These files contain the public parts of the host keys.
957 These files should be world-readable but writable only by
958 root.
959 Their contents should match the respective private parts.
960 These files are not
961 really used for anything; they are provided for the convenience of
962 the user so their contents can be copied to known hosts files.
963 These files are created using
964 .Xr ssh-keygen 1 .
966 .It Pa /etc/ssh/ssh_known_hosts
967 Systemwide list of known host keys.
968 This file should be prepared by the
969 system administrator to contain the public host keys of all machines in the
970 organization.
971 The format of this file is described above.
972 This file should be writable only by root/the owner and
973 should be world-readable.
975 .It Pa /etc/ssh/sshd_config
976 Contains configuration data for
977 .Nm sshd .
978 The file format and configuration options are described in
979 .Xr sshd_config 5 .
981 .It Pa /etc/ssh/sshrc
982 Similar to
983 .Pa ~/.ssh/rc ,
984 it can be used to specify
985 machine-specific login-time initializations globally.
986 This file should be writable only by root, and should be world-readable.
988 .It Pa /var/empty
989 .Xr chroot 2
990 directory used by
992 during privilege separation in the pre-authentication phase.
993 The directory should not contain any files and must be owned by root
994 and not group or world-writable.
996 .It Pa /var/run/sshd.pid
997 Contains the process ID of the
999 listening for connections (if there are several daemons running
1000 concurrently for different ports, this contains the process ID of the one
1001 started last).
1002 The content of this file is not sensitive; it can be world-readable.
1004 .Sh SEE ALSO
1005 .Xr scp 1 ,
1006 .Xr sftp 1 ,
1007 .Xr ssh 1 ,
1008 .Xr ssh-add 1 ,
1009 .Xr ssh-agent 1 ,
1010 .Xr ssh-keygen 1 ,
1011 .Xr ssh-keyscan 1 ,
1012 .Xr chroot 2 ,
1013 .Xr login.conf 5 ,
1014 .Xr moduli 5 ,
1015 .Xr sshd_config 5 ,
1016 .Xr inetd 8 ,
1017 .Xr sftp-server 8
1018 .Sh AUTHORS
1019 OpenSSH is a derivative of the original and free
1020 ssh 1.2.12 release by Tatu Ylonen.
1021 Aaron Campbell, Bob Beck, Markus Friedl, Niels Provos,
1022 Theo de Raadt and Dug Song
1023 removed many bugs, re-added newer features and
1024 created OpenSSH.
1025 Markus Friedl contributed the support for SSH
1026 protocol versions 1.5 and 2.0.
1027 Niels Provos and Markus Friedl contributed support
1028 for privilege separation.