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