]> andersk Git - openssh.git/blob - sshd.8
- stevesk@cvs.openbsd.org 2001/08/22 16:30:02
[openssh.git] / sshd.8
1 .\"  -*- nroff -*-
2 .\"
3 .\" Author: Tatu Ylonen <ylo@cs.hut.fi>
4 .\" Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5 .\"                    All rights reserved
6 .\"
7 .\" As far as I am concerned, the code I have written for this software
8 .\" can be used freely for any purpose.  Any derived versions of this
9 .\" software must be clearly marked as such, and if the derived work is
10 .\" incompatible with the protocol description in the RFC file, it must be
11 .\" called by a name other than "ssh" or "Secure Shell".
12 .\"
13 .\" Copyright (c) 1999,2000 Markus Friedl.  All rights reserved.
14 .\" Copyright (c) 1999 Aaron Campbell.  All rights reserved.
15 .\" Copyright (c) 1999 Theo de Raadt.  All rights reserved.
16 .\"
17 .\" Redistribution and use in source and binary forms, with or without
18 .\" modification, are permitted provided that the following conditions
19 .\" are met:
20 .\" 1. Redistributions of source code must retain the above copyright
21 .\"    notice, this list of conditions and the following disclaimer.
22 .\" 2. Redistributions in binary form must reproduce the above copyright
23 .\"    notice, this list of conditions and the following disclaimer in the
24 .\"    documentation and/or other materials provided with the distribution.
25 .\"
26 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
27 .\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
28 .\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
29 .\" IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
30 .\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
31 .\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32 .\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33 .\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34 .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
35 .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36 .\"
37 .\" $OpenBSD: sshd.8,v 1.143 2001/08/22 16:30:02 stevesk Exp $
38 .Dd September 25, 1999
39 .Dt SSHD 8
40 .Os
41 .Sh NAME
42 .Nm sshd
43 .Nd OpenSSH SSH daemon
44 .Sh SYNOPSIS
45 .Nm sshd
46 .Op Fl deiqD46
47 .Op Fl b Ar bits
48 .Op Fl f Ar config_file
49 .Op Fl g Ar login_grace_time
50 .Op Fl h Ar host_key_file
51 .Op Fl k Ar key_gen_time
52 .Op Fl p Ar port
53 .Op Fl u Ar len
54 .Op Fl V Ar client_protocol_id
55 .Sh DESCRIPTION
56 .Nm
57 (SSH Daemon) is the daemon program for
58 .Xr ssh 1 .
59 Together these programs replace rlogin and rsh, and
60 provide secure encrypted communications between two untrusted hosts
61 over an insecure network.
62 The programs are intended to be as easy to
63 install and use as possible.
64 .Pp
65 .Nm
66 is the daemon that 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 This implementation of
75 .Nm
76 supports both SSH protocol version 1 and 2 simultaneously.
77 .Nm
78 works as follows.
79 .Pp
80 .Ss SSH protocol version 1
81 .Pp
82 Each host has a host-specific RSA key
83 (normally 1024 bits) used to identify the host.
84 Additionally, when
85 the daemon starts, it generates a server RSA key (normally 768 bits).
86 This key is normally regenerated every hour if it has been used, and
87 is never stored on disk.
88 .Pp
89 Whenever a client connects the daemon responds with its public
90 host and server keys.
91 The client compares the
92 RSA host key against its own database to verify that it has not changed.
93 The client then generates a 256 bit random number.
94 It encrypts this
95 random number using both the host key and the server key, and sends
96 the encrypted number to the server.
97 Both sides then use this
98 random number as a session key which is used to encrypt all further
99 communications in the session.
100 The rest of the session is encrypted
101 using a conventional cipher, currently Blowfish or 3DES, with 3DES
102 being used by default.
103 The client selects the encryption algorithm
104 to use from those offered by the server.
105 .Pp
106 Next, the server and the client enter an authentication dialog.
107 The client tries to authenticate itself using
108 .Pa .rhosts
109 authentication,
110 .Pa .rhosts
111 authentication combined with RSA host
112 authentication, RSA challenge-response authentication, or password
113 based authentication.
114 .Pp
115 Rhosts authentication is normally disabled
116 because it is fundamentally insecure, but can be enabled in the server
117 configuration file if desired.
118 System security is not improved unless
119 .Xr rshd 8 ,
120 .Xr rlogind 8 ,
121 and
122 .Xr rexecd 8
123 are disabled (thus completely disabling
124 .Xr rlogin 1
125 and
126 .Xr rsh 1
127 into the machine).
128 .Pp
129 .Ss SSH protocol version 2
130 .Pp
131 Version 2 works similarly:
132 Each host has a host-specific key (RSA or DSA) used to identify the host.
133 However, when the daemon starts, it does not generate a server key.
134 Forward security is provided through a Diffie-Hellman key agreement.
135 This key agreement results in a shared session key.
136 .Pp
137 The rest of the session is encrypted using a symmetric cipher, currently
138 128 bit AES, Blowfish, 3DES, CAST128, Arcfour, 192 bit AES, or 256 bit AES.
139 The client selects the encryption algorithm
140 to use from those offered by the server.
141 Additionally, session integrity is provided
142 through a cryptographic message authentication code
143 (hmac-sha1 or hmac-md5).
144 .Pp
145 Protocol version 2 provides a public key based
146 user (PubkeyAuthentication) or
147 client host (HostbasedAuthentication) authentication method,
148 conventional password authentication and challenge response based methods.
149 .Pp
150 .Ss Command execution and data forwarding
151 .Pp
152 If the client successfully authenticates itself, a dialog for
153 preparing the session is entered.
154 At this time the client may request
155 things like allocating a pseudo-tty, forwarding X11 connections,
156 forwarding TCP/IP connections, or forwarding the authentication agent
157 connection over the secure channel.
158 .Pp
159 Finally, the client either requests a shell or execution of a command.
160 The sides then enter session mode.
161 In this mode, either side may send
162 data at any time, and such data is forwarded to/from the shell or
163 command on the server side, and the user terminal in the client side.
164 .Pp
165 When the user program terminates and all forwarded X11 and other
166 connections have been closed, the server sends command exit status to
167 the client, and both sides exit.
168 .Pp
169 .Nm
170 can be configured using command-line options or a configuration
171 file.
172 Command-line options override values specified in the
173 configuration file.
174 .Pp
175 .Nm
176 rereads its configuration file when it receives a hangup signal,
177 .Dv SIGHUP ,
178 by executing itself with the name it was started as, i.e.,
179 .Pa /usr/sbin/sshd .
180 .Pp
181 The options are as follows:
182 .Bl -tag -width Ds
183 .It Fl b Ar bits
184 Specifies the number of bits in the ephemeral protocol version 1
185 server key (default 768).
186 .It Fl d
187 Debug mode.
188 The server sends verbose debug output to the system
189 log, and does not put itself in the background.
190 The server also will not fork and will only process one connection.
191 This option is only intended for debugging for the server.
192 Multiple -d options increase the debugging level.
193 Maximum is 3.
194 .It Fl e
195 When this option is specified,
196 .Nm
197 will send the output to the standard error instead of the system log.
198 .It Fl f Ar configuration_file
199 Specifies the name of the configuration file.
200 The default is
201 .Pa /etc/sshd_config .
202 .Nm
203 refuses to start if there is no configuration file.
204 .It Fl g Ar login_grace_time
205 Gives the grace time for clients to authenticate themselves (default
206 600 seconds).
207 If the client fails to authenticate the user within
208 this many seconds, the server disconnects and exits.
209 A value of zero indicates no limit.
210 .It Fl h Ar host_key_file
211 Specifies the file from which the host key is read (default
212 .Pa /etc/ssh_host_key ) .
213 This option must be given if
214 .Nm
215 is not run as root (as the normal
216 host file is normally not readable by anyone but root).
217 It is possible to have multiple host key files for
218 the different protocol versions and host key algorithms.
219 .It Fl i
220 Specifies that
221 .Nm
222 is being run from inetd.
223 .Nm
224 is normally not run
225 from inetd because it needs to generate the server key before it can
226 respond to the client, and this may take tens of seconds.
227 Clients would have to wait too long if the key was regenerated every time.
228 However, with small key sizes (e.g., 512) using
229 .Nm
230 from inetd may
231 be feasible.
232 .It Fl k Ar key_gen_time
233 Specifies how often the ephemeral protocol version 1 server key is
234 regenerated (default 3600 seconds, or one hour).
235 The motivation for regenerating the key fairly
236 often is that the key is not stored anywhere, and after about an hour,
237 it becomes impossible to recover the key for decrypting intercepted
238 communications even if the machine is cracked into or physically
239 seized.
240 A value of zero indicates that the key will never be regenerated.
241 .It Fl p Ar port
242 Specifies the port on which the server listens for connections
243 (default 22).
244 .It Fl q
245 Quiet mode.
246 Nothing is sent to the system log.
247 Normally the beginning,
248 authentication, and termination of each connection is logged.
249 .It Fl t
250 Test mode.
251 Only check the validity of the configuration file and sanity of the keys.
252 This is useful for updating 
253 .Nm
254 reliably as configuration options may change.
255 .It Fl u Ar len
256 This option is used to specify the size of the field
257 in the
258 .Li utmp
259 structure that holds the remote host name.
260 If the resolved host name is longer than
261 .Ar len ,
262 the dotted decimal value will be used instead.
263 This allows hosts with very long host names that
264 overflow this field to still be uniquely identified.
265 Specifying
266 .Fl u0
267 indicates that only dotted decimal addresses
268 should be put into the
269 .Pa utmp
270 file.
271 .It Fl D
272 When this option is specified
273 .Nm
274 will not detach and does not become a daemon.
275 This allows easy monitoring of
276 .Nm sshd .
277 .It Fl 4
278 Forces
279 .Nm
280 to use IPv4 addresses only.
281 .It Fl 6
282 Forces
283 .Nm
284 to use IPv6 addresses only.
285 .El
286 .Sh CONFIGURATION FILE
287 .Nm
288 reads configuration data from
289 .Pa /etc/sshd_config
290 (or the file specified with
291 .Fl f
292 on the command line).
293 The file contains keyword-argument pairs, one per line.
294 Lines starting with
295 .Ql #
296 and empty lines are interpreted as comments.
297 .Pp
298 The possible
299 keywords and their meanings are as follows (note that
300 keywords are case-insensitive and arguments are case-sensitive):
301 .Bl -tag -width Ds
302 .It Cm AFSTokenPassing
303 Specifies whether an AFS token may be forwarded to the server.
304 Default is
305 .Dq yes .
306 .It Cm AllowGroups
307 This keyword can be followed by a list of group names, separated
308 by spaces.
309 If specified, login is allowed only for users whose primary
310 group or supplementary group list matches one of the patterns.
311 .Ql \&*
312 and
313 .Ql ?
314 can be used as
315 wildcards in the patterns.
316 Only group names are valid; a numerical group ID isn't recognized.
317 By default login is allowed regardless of the group list.
318 .Pp
319 .It Cm AllowTcpForwarding
320 Specifies whether TCP forwarding is permitted.
321 The default is
322 .Dq yes .
323 Note that disabling TCP forwarding does not improve security unless
324 users are also denied shell access, as they can always install their
325 own forwarders.
326 .Pp
327 .It Cm AllowUsers
328 This keyword can be followed by a list of user names, separated
329 by spaces.
330 If specified, login is allowed only for users names that
331 match one of the patterns.
332 .Ql \&*
333 and
334 .Ql ?
335 can be used as
336 wildcards in the patterns.
337 Only user names are valid; a numerical user ID isn't recognized.
338 By default login is allowed regardless of the user name.
339 If the pattern takes the form USER@HOST then USER and HOST
340 are separately checked, allowing you to restrict logins to particular
341 users from particular hosts.
342 .Pp
343 .It Cm AuthorizedKeysFile
344 Specifies the file that contains the public keys that can be used
345 for user authentication.
346 .Cm AuthorizedKeysFile
347 may contain tokens of the form %T which are substituted during connection
348 set-up. The following tokens are defined: %% is replaced by a literal '%',
349 %h is replaced by the home directory of the user being authenticated and
350 %u is replaced by the username of that user.
351 After expansion,
352 .Cm AuthorizedKeysFile
353 is taken to be an absolute path or one relative to the user's home
354 directory.
355 The default is
356 .Dq .ssh/authorized_keys
357 .It Cm Banner
358 In some jurisdictions, sending a warning message before authentication
359 may be relevant for getting legal protection.
360 The contents of the specified file are sent to the remote user before
361 authentication is allowed.
362 This option is only available for protocol version 2.
363 .Pp
364 .It Cm ChallengeResponseAuthentication
365 Specifies whether challenge response authentication is allowed.
366 All authentication styles from
367 .Xr login.conf 5
368 are supported.
369 The default is
370 .Dq yes .
371 .It Cm Ciphers
372 Specifies the ciphers allowed for protocol version 2.
373 Multiple ciphers must be comma-separated.
374 The default is
375 .Dq aes128-cbc,3des-cbc,blowfish-cbc,cast128-cbc,arcfour.
376 .It Cm ClientAliveInterval
377 Sets a timeout interval in seconds after which if no data has been received
378 from the client,
379 .Nm
380 will send a message through the encrypted
381 channel to request a response from the client.
382 The default
383 is 0, indicating that these messages will not be sent to the client.
384 This option applies to protocol version 2 only.
385 .It Cm ClientAliveCountMax
386 Sets the number of client alive messages (see above) which may be
387 sent without
388 .Nm
389 receiving any messages back from the client. If this threshold is
390 reached while client alive messages are being sent,
391 .Nm
392 will disconnect the client, terminating the session. It is important
393 to note that the use of client alive messages is very different from
394 .Cm Keepalive
395 (below). The client alive messages are sent through the
396 encrypted channel and therefore will not be spoofable. The TCP keepalive
397 option enabled by
398 .Cm Keepalive
399 is spoofable. You want to use the client
400 alive mechanism when you are basing something important on
401 clients having an active connection to the server.
402 .Pp
403 The default value is 3. If you set
404 .Cm ClientAliveInterval
405 (above) to 15, and leave this value at the default, unresponsive ssh clients
406 will be disconnected after approximately 45 seconds.
407 .It Cm DenyGroups
408 This keyword can be followed by a number of group names, separated
409 by spaces.
410 Users whose primary group or supplementary group list matches
411 one of the patterns aren't allowed to log in.
412 .Ql \&*
413 and
414 .Ql ?
415 can be used as
416 wildcards in the patterns.
417 Only group names are valid; a numerical group ID isn't recognized.
418 By default login is allowed regardless of the group list.
419 .Pp
420 .It Cm DenyUsers
421 This keyword can be followed by a number of user names, separated
422 by spaces.
423 Login is disallowed for user names that match one of the patterns.
424 .Ql \&*
425 and
426 .Ql ?
427 can be used as wildcards in the patterns.
428 Only user names are valid; a numerical user ID isn't recognized.
429 By default login is allowed regardless of the user name.
430 .It Cm GatewayPorts
431 Specifies whether remote hosts are allowed to connect to ports
432 forwarded for the client.
433 The argument must be
434 .Dq yes
435 or
436 .Dq no .
437 The default is
438 .Dq no .
439 .It Cm HostbasedAuthentication
440 Specifies whether rhosts or /etc/hosts.equiv authentication together
441 with successful public key client host authentication is allowed
442 (hostbased authentication).
443 This option is similar to
444 .Cm RhostsRSAAuthentication
445 and applies to protocol version 2 only.
446 The default is
447 .Dq no .
448 .It Cm HostKey
449 Specifies the file containing the private host keys (default
450 .Pa /etc/ssh_host_key )
451 used by SSH protocol versions 1 and 2.
452 Note that
453 .Nm
454 will refuse to use a file if it is group/world-accessible.
455 It is possible to have multiple host key files.
456 .Dq rsa1
457 keys are used for version 1 and
458 .Dq dsa
459 or
460 .Dq rsa
461 are used for version 2 of the SSH protocol.
462 .It Cm IgnoreRhosts
463 Specifies that
464 .Pa .rhosts
465 and
466 .Pa .shosts
467 files will not be used in
468 .Cm RhostsAuthentication ,
469 .Cm RhostsRSAAuthentication
470 or
471 .Cm HostbasedAuthentication .
472 .Pp
473 .Pa /etc/hosts.equiv
474 and
475 .Pa /etc/shosts.equiv
476 are still used.
477 The default is
478 .Dq yes .
479 .It Cm IgnoreUserKnownHosts
480 Specifies whether
481 .Nm
482 should ignore the user's
483 .Pa $HOME/.ssh/known_hosts
484 during
485 .Cm RhostsRSAAuthentication
486 or
487 .Cm HostbasedAuthentication .
488 The default is
489 .Dq no .
490 .It Cm KeepAlive
491 Specifies whether the system should send keepalive messages to the
492 other side.
493 If they are sent, death of the connection or crash of one
494 of the machines will be properly noticed.
495 However, this means that
496 connections will die if the route is down temporarily, and some people
497 find it annoying.
498 On the other hand, if keepalives are not sent,
499 sessions may hang indefinitely on the server, leaving
500 .Dq ghost
501 users and consuming server resources.
502 .Pp
503 The default is
504 .Dq yes
505 (to send keepalives), and the server will notice
506 if the network goes down or the client host reboots.
507 This avoids infinitely hanging sessions.
508 .Pp
509 To disable keepalives, the value should be set to
510 .Dq no
511 in both the server and the client configuration files.
512 .It Cm KerberosAuthentication
513 Specifies whether Kerberos authentication is allowed.
514 This can be in the form of a Kerberos ticket, or if
515 .Cm PasswordAuthentication
516 is yes, the password provided by the user will be validated through
517 the Kerberos KDC.
518 To use this option, the server needs a
519 Kerberos servtab which allows the verification of the KDC's identity.
520 Default is
521 .Dq yes .
522 .It Cm KerberosOrLocalPasswd
523 If set then if password authentication through Kerberos fails then
524 the password will be validated via any additional local mechanism
525 such as
526 .Pa /etc/passwd .
527 Default is
528 .Dq yes .
529 .It Cm KerberosTgtPassing
530 Specifies whether a Kerberos TGT may be forwarded to the server.
531 Default is
532 .Dq no ,
533 as this only works when the Kerberos KDC is actually an AFS kaserver.
534 .It Cm KerberosTicketCleanup
535 Specifies whether to automatically destroy the user's ticket cache
536 file on logout.
537 Default is
538 .Dq yes .
539 .It Cm KeyRegenerationInterval
540 In protocol version 1, the ephemeral server key is automatically regenerated
541 after this many seconds (if it has been used).
542 The purpose of regeneration is to prevent
543 decrypting captured sessions by later breaking into the machine and
544 stealing the keys.
545 The key is never stored anywhere.
546 If the value is 0, the key is never regenerated.
547 The default is 3600 (seconds).
548 .It Cm ListenAddress
549 Specifies the local addresses
550 .Nm
551 should listen on.
552 The following forms may be used:
553 .Pp
554 .Bl -item -offset indent -compact
555 .It
556 .Cm ListenAddress
557 .Sm off
558 .Ar host No | Ar IPv4_addr No | Ar IPv6_addr
559 .Sm on
560 .It
561 .Cm ListenAddress
562 .Sm off
563 .Ar host No | Ar IPv4_addr No : Ar port
564 .Sm on
565 .It
566 .Cm ListenAddress
567 .Sm off
568 .Oo
569 .Ar host No | Ar IPv6_addr Oc : Ar port
570 .Sm on
571 .El
572 .Pp
573 If
574 .Ar port
575 is not specified,
576 .Nm
577 will listen on the address and all prior
578 .Cm Port
579 options specified. The default is to listen on all local
580 addresses.  Multiple
581 .Cm ListenAddress
582 options are permitted. Additionally, any
583 .Cm Port
584 options must precede this option for non port qualified addresses.
585 .It Cm LoginGraceTime
586 The server disconnects after this time if the user has not
587 successfully logged in.
588 If the value is 0, there is no time limit.
589 The default is 600 (seconds).
590 .It Cm LogLevel
591 Gives the verbosity level that is used when logging messages from
592 .Nm sshd .
593 The possible values are:
594 QUIET, FATAL, ERROR, INFO, VERBOSE and DEBUG.
595 The default is INFO.
596 Logging with level DEBUG violates the privacy of users
597 and is not recommended.
598 .It Cm MACs
599 Specifies the available MAC (message authentication code) algorithms.
600 The MAC algorithm is used in protocol version 2
601 for data integrity protection.
602 Multiple algorithms must be comma-separated.
603 The default is
604 .Dq hmac-md5,hmac-sha1,hmac-ripemd160,hmac-sha1-96,hmac-md5-96 .
605 .It Cm MaxStartups
606 Specifies the maximum number of concurrent unauthenticated connections to the
607 .Nm
608 daemon.
609 Additional connections will be dropped until authentication succeeds or the
610 .Cm LoginGraceTime
611 expires for a connection.
612 The default is 10.
613 .Pp
614 Alternatively, random early drop can be enabled by specifying
615 the three colon separated values
616 .Dq start:rate:full
617 (e.g., "10:30:60").
618 .Nm
619 will refuse connection attempts with a probability of
620 .Dq rate/100
621 (30%)
622 if there are currently
623 .Dq start
624 (10)
625 unauthenticated connections.
626 The probability increases linearly and all connection attempts
627 are refused if the number of unauthenticated connections reaches
628 .Dq full
629 (60).
630 .It Cm PAMAuthenticationViaKbdInt
631 Specifies whether PAM challenge response authentication is allowed. This
632 allows the use of most PAM challenge response authentication modules, but 
633 it will allow password authentication regardless of whether 
634 .Cm PasswordAuthentication
635 is disabled.
636 The default is
637 .Dq no .
638 .It Cm PasswordAuthentication
639 Specifies whether password authentication is allowed.
640 The default is
641 .Dq yes .
642 .It Cm PermitEmptyPasswords
643 When password authentication is allowed, it specifies whether the
644 server allows login to accounts with empty password strings.
645 The default is
646 .Dq no .
647 .It Cm PermitRootLogin
648 Specifies whether root can login using
649 .Xr ssh 1 .
650 The argument must be
651 .Dq yes ,
652 .Dq without-password ,
653 .Dq forced-commands-only
654 or
655 .Dq no .
656 The default is
657 .Dq yes .
658 .Pp
659 If this option is set to
660 .Dq without-password
661 password authentication is disabled for root.
662 .Pp
663 If this option is set to
664 .Dq forced-commands-only
665 root login with public key authentication will be allowed,
666 but only if the
667 .Ar command
668 option has been specified
669 (which may be useful for taking remote backups even if root login is
670 normally not allowed). All other authentication methods are disabled
671 for root.
672 .Pp
673 If this option is set to
674 .Dq no
675 root is not allowed to login.
676 .It Cm PidFile
677 Specifies the file that contains the process identifier of the
678 .Nm
679 daemon.
680 The default is
681 .Pa /var/run/sshd.pid .
682 .It Cm Port
683 Specifies the port number that
684 .Nm
685 listens on.
686 The default is 22.
687 Multiple options of this type are permitted.
688 See also
689 .Cm ListenAddress .
690 .It Cm PrintLastLog
691 Specifies whether
692 .Nm
693 should print the date and time when the user last logged in.
694 The default is
695 .Dq yes .
696 .It Cm PrintMotd
697 Specifies whether
698 .Nm
699 should print
700 .Pa /etc/motd
701 when a user logs in interactively.
702 (On some systems it is also printed by the shell,
703 .Pa /etc/profile ,
704 or equivalent.)
705 The default is
706 .Dq yes .
707 .It Cm Protocol
708 Specifies the protocol versions
709 .Nm
710 should support.
711 The possible values are
712 .Dq 1
713 and
714 .Dq 2 .
715 Multiple versions must be comma-separated.
716 The default is
717 .Dq 2,1 .
718 .It Cm PubkeyAuthentication
719 Specifies whether public key authentication is allowed.
720 The default is
721 .Dq yes .
722 Note that this option applies to protocol version 2 only.
723 .It Cm ReverseMappingCheck
724 Specifies whether
725 .Nm
726 should try to verify the remote host name and check that
727 the resolved host name for the remote IP address maps back to the
728 very same IP address.
729 The default is
730 .Dq no .
731 .It Cm RhostsAuthentication
732 Specifies whether authentication using rhosts or /etc/hosts.equiv
733 files is sufficient.
734 Normally, this method should not be permitted because it is insecure.
735 .Cm RhostsRSAAuthentication
736 should be used
737 instead, because it performs RSA-based host authentication in addition
738 to normal rhosts or /etc/hosts.equiv authentication.
739 The default is
740 .Dq no .
741 This option applies to protocol version 1 only.
742 .It Cm RhostsRSAAuthentication
743 Specifies whether rhosts or /etc/hosts.equiv authentication together
744 with successful RSA host authentication is allowed.
745 The default is
746 .Dq no .
747 This option applies to protocol version 1 only.
748 .It Cm RSAAuthentication
749 Specifies whether pure RSA authentication is allowed.
750 The default is
751 .Dq yes .
752 This option applies to protocol version 1 only.
753 .It Cm ServerKeyBits
754 Defines the number of bits in the ephemeral protocol version 1 server key.
755 The minimum value is 512, and the default is 768.
756 .It Cm StrictModes
757 Specifies whether
758 .Nm
759 should check file modes and ownership of the
760 user's files and home directory before accepting login.
761 This is normally desirable because novices sometimes accidentally leave their
762 directory or files world-writable.
763 The default is
764 .Dq yes .
765 .It Cm Subsystem
766 Configures an external subsystem (e.g., file transfer daemon).
767 Arguments should be a subsystem name and a command to execute upon subsystem
768 request.
769 The command
770 .Xr sftp-server 8
771 implements the
772 .Dq sftp
773 file transfer subsystem.
774 By default no subsystems are defined.
775 Note that this option applies to protocol version 2 only.
776 .It Cm SyslogFacility
777 Gives the facility code that is used when logging messages from
778 .Nm sshd .
779 The possible values are: DAEMON, USER, AUTH, LOCAL0, LOCAL1, LOCAL2,
780 LOCAL3, LOCAL4, LOCAL5, LOCAL6, LOCAL7.
781 The default is AUTH.
782 .It Cm UseLogin
783 Specifies whether
784 .Xr login 1
785 is used for interactive login sessions.
786 The default is
787 .Dq no .
788 Note that
789 .Xr login 1
790 is never used for remote command execution.
791 Note also, that if this is enabled,
792 .Cm X11Forwarding
793 will be disabled because
794 .Xr login 1
795 does not know how to handle
796 .Xr xauth 1
797 cookies.
798 .It Cm X11DisplayOffset
799 Specifies the first display number available for
800 .Nm sshd Ns 's
801 X11 forwarding.
802 This prevents
803 .Nm
804 from interfering with real X11 servers.
805 The default is 10.
806 .It Cm X11Forwarding
807 Specifies whether X11 forwarding is permitted.
808 The default is
809 .Dq no .
810 Note that disabling X11 forwarding does not improve security in any
811 way, as users can always install their own forwarders.
812 X11 forwarding is automatically disabled if
813 .Cm UseLogin
814 is enabled.
815 .It Cm XAuthLocation
816 Specifies the location of the
817 .Xr xauth 1
818 program.
819 The default is
820 .Pa /usr/X11R6/bin/xauth .
821 .El
822 .Ss Time Formats
823 .Pp
824 .Nm
825 command-line arguments and configuration file options that specify time
826 may be expressed using a sequence of the form:
827 .Sm off
828 .Ar time Oo Ar qualifier Oc ,
829 .Sm on
830 where
831 .Ar time
832 is a positive integer value and
833 .Ar qualifier
834 is one of the following:
835 .Pp
836 .Bl -tag -width Ds -compact -offset indent
837 .It Cm <none>
838 seconds
839 .It Cm s | Cm S
840 seconds
841 .It Cm m | Cm M
842 minutes
843 .It Cm h | Cm H
844 hours
845 .It Cm d | Cm D
846 days
847 .It Cm w | Cm W
848 weeks
849 .El
850 .Pp
851 Each member of the sequence is added together to calculate
852 the total time value.
853 .Pp
854 Time format examples:
855 .Pp
856 .Bl -tag -width Ds -compact -offset indent
857 .It 600
858 600 seconds (10 minutes)
859 .It 10m
860 10 minutes
861 .It 1h30m
862 1 hour 30 minutes (90 minutes)
863 .El
864 .Sh LOGIN PROCESS
865 When a user successfully logs in,
866 .Nm
867 does the following:
868 .Bl -enum -offset indent
869 .It
870 If the login is on a tty, and no command has been specified,
871 prints last login time and
872 .Pa /etc/motd
873 (unless prevented in the configuration file or by
874 .Pa $HOME/.hushlogin ;
875 see the
876 .Sx FILES
877 section).
878 .It
879 If the login is on a tty, records login time.
880 .It
881 Checks
882 .Pa /etc/nologin ;
883 if it exists, prints contents and quits
884 (unless root).
885 .It
886 Changes to run with normal user privileges.
887 .It
888 Sets up basic environment.
889 .It
890 Reads
891 .Pa $HOME/.ssh/environment
892 if it exists.
893 .It
894 Changes to user's home directory.
895 .It
896 If
897 .Pa $HOME/.ssh/rc
898 exists, runs it; else if
899 .Pa /etc/sshrc
900 exists, runs
901 it; otherwise runs xauth.
902 The
903 .Dq rc
904 files are given the X11
905 authentication protocol and cookie in standard input.
906 .It
907 Runs user's shell or command.
908 .El
909 .Sh AUTHORIZED_KEYS FILE FORMAT
910 .Pa $HOME/.ssh/authorized_keys
911 is the default file that lists the public keys that are
912 permitted for RSA authentication in protocol version 1
913 and for public key authentication (PubkeyAuthentication)
914 in protocol version 2.
915 .Cm AuthorizedKeysFile
916 may be used to specify an alternative file.
917 .Pp
918 Each line of the file contains one
919 key (empty lines and lines starting with a
920 .Ql #
921 are ignored as
922 comments).
923 Each RSA public key consists of the following fields, separated by
924 spaces: options, bits, exponent, modulus, comment.
925 Each protocol version 2 public key consists of:
926 options, keytype, base64 encoded key, comment.
927 The options fields
928 are optional; its presence is determined by whether the line starts
929 with a number or not (the option field never starts with a number).
930 The bits, exponent, modulus and comment fields give the RSA key for
931 protocol version 1; the
932 comment field is not used for anything (but may be convenient for the
933 user to identify the key).
934 For protocol version 2 the keytype is
935 .Dq ssh-dss
936 or
937 .Dq ssh-rsa .
938 .Pp
939 Note that lines in this file are usually several hundred bytes long
940 (because of the size of the RSA key modulus).
941 You don't want to type them in; instead, copy the
942 .Pa identity.pub ,
943 .Pa id_dsa.pub
944 or the
945 .Pa id_rsa.pub
946 file and edit it.
947 .Pp
948 The options (if present) consist of comma-separated option
949 specifications.
950 No spaces are permitted, except within double quotes.
951 The following option specifications are supported (note
952 that option keywords are case-insensitive):
953 .Bl -tag -width Ds
954 .It Cm from="pattern-list"
955 Specifies that in addition to RSA authentication, the canonical name
956 of the remote host must be present in the comma-separated list of
957 patterns
958 .Pf ( Ql *
959 and
960 .Ql ?
961 serve as wildcards).
962 The list may also contain
963 patterns negated by prefixing them with
964 .Ql ! ;
965 if the canonical host name matches a negated pattern, the key is not accepted.
966 The purpose
967 of this option is to optionally increase security: RSA authentication
968 by itself does not trust the network or name servers or anything (but
969 the key); however, if somebody somehow steals the key, the key
970 permits an intruder to log in from anywhere in the world.
971 This additional option makes using a stolen key more difficult (name
972 servers and/or routers would have to be compromised in addition to
973 just the key).
974 .It Cm command="command"
975 Specifies that the command is executed whenever this key is used for
976 authentication.
977 The command supplied by the user (if any) is ignored.
978 The command is run on a pty if the connection requests a pty;
979 otherwise it is run without a tty.
980 Note that if you want a 8-bit clean channel,
981 you must not request a pty or should specify
982 .Cm no-pty .
983 A quote may be included in the command by quoting it with a backslash.
984 This option might be useful
985 to restrict certain RSA keys to perform just a specific operation.
986 An example might be a key that permits remote backups but nothing else.
987 Note that the client may specify TCP/IP and/or X11
988 forwarding unless they are explicitly prohibited.
989 .It Cm environment="NAME=value"
990 Specifies that the string is to be added to the environment when
991 logging in using this key.
992 Environment variables set this way
993 override other default environment values.
994 Multiple options of this type are permitted.
995 .It Cm no-port-forwarding
996 Forbids TCP/IP forwarding when this key is used for authentication.
997 Any port forward requests by the client will return an error.
998 This might be used, e.g., in connection with the
999 .Cm command
1000 option.
1001 .It Cm no-X11-forwarding
1002 Forbids X11 forwarding when this key is used for authentication.
1003 Any X11 forward requests by the client will return an error.
1004 .It Cm no-agent-forwarding
1005 Forbids authentication agent forwarding when this key is used for
1006 authentication.
1007 .It Cm no-pty
1008 Prevents tty allocation (a request to allocate a pty will fail).
1009 .It Cm permitopen="host:port"
1010 Limit local
1011 .Li ``ssh -L''
1012 port forwarding such that it may only connect to the specified host and
1013 port. Multiple
1014 .Cm permitopen
1015 options may be applied separated by commas. No pattern matching is
1016 performed on the specified hostnames, they must be literal domains or
1017 addresses.
1018 .El
1019 .Ss Examples
1020 1024 33 12121.\|.\|.\|312314325 ylo@foo.bar
1021 .Pp
1022 from="*.niksula.hut.fi,!pc.niksula.hut.fi" 1024 35 23.\|.\|.\|2334 ylo@niksula
1023 .Pp
1024 command="dump /home",no-pty,no-port-forwarding 1024 33 23.\|.\|.\|2323 backup.hut.fi
1025 .Pp
1026 permitopen="10.2.1.55:80",permitopen="10.2.1.56:25" 1024 33 23.\|.\|.\|2323
1027 .Sh SSH_KNOWN_HOSTS FILE FORMAT
1028 The
1029 .Pa /etc/ssh_known_hosts ,
1030 and
1031 .Pa $HOME/.ssh/known_hosts
1032 files contain host public keys for all known hosts.
1033 The global file should
1034 be prepared by the administrator (optional), and the per-user file is
1035 maintained automatically: whenever the user connects from an unknown host
1036 its key is added to the per-user file.
1037 .Pp
1038 Each line in these files contains the following fields: hostnames,
1039 bits, exponent, modulus, comment.
1040 The fields are separated by spaces.
1041 .Pp
1042 Hostnames is a comma-separated list of patterns ('*' and '?' act as
1043 wildcards); each pattern in turn is matched against the canonical host
1044 name (when authenticating a client) or against the user-supplied
1045 name (when authenticating a server).
1046 A pattern may also be preceded by
1047 .Ql !
1048 to indicate negation: if the host name matches a negated
1049 pattern, it is not accepted (by that line) even if it matched another
1050 pattern on the line.
1051 .Pp
1052 Bits, exponent, and modulus are taken directly from the RSA host key; they
1053 can be obtained, e.g., from
1054 .Pa /etc/ssh_host_key.pub .
1055 The optional comment field continues to the end of the line, and is not used.
1056 .Pp
1057 Lines starting with
1058 .Ql #
1059 and empty lines are ignored as comments.
1060 .Pp
1061 When performing host authentication, authentication is accepted if any
1062 matching line has the proper key.
1063 It is thus permissible (but not
1064 recommended) to have several lines or different host keys for the same
1065 names.
1066 This will inevitably happen when short forms of host names
1067 from different domains are put in the file.
1068 It is possible
1069 that the files contain conflicting information; authentication is
1070 accepted if valid information can be found from either file.
1071 .Pp
1072 Note that the lines in these files are typically hundreds of characters
1073 long, and you definitely don't want to type in the host keys by hand.
1074 Rather, generate them by a script
1075 or by taking
1076 .Pa /etc/ssh_host_key.pub
1077 and adding the host names at the front.
1078 .Ss Examples
1079 .Bd -literal
1080 closenet,.\|.\|.\|,130.233.208.41 1024 37 159.\|.\|.93 closenet.hut.fi
1081 cvs.openbsd.org,199.185.137.3 ssh-rsa AAAA1234.....=
1082 .Ed
1083 .Sh FILES
1084 .Bl -tag -width Ds
1085 .It Pa /etc/sshd_config
1086 Contains configuration data for
1087 .Nm sshd .
1088 This file should be writable by root only, but it is recommended
1089 (though not necessary) that it be world-readable.
1090 .It Pa /etc/ssh_host_key, /etc/ssh_host_dsa_key, /etc/ssh_host_rsa_key
1091 These three files contain the private parts of the host keys.
1092 These files should only be owned by root, readable only by root, and not
1093 accessible to others.
1094 Note that
1095 .Nm
1096 does not start if this file is group/world-accessible.
1097 .It Pa /etc/ssh_host_key.pub, /etc/ssh_host_dsa_key.pub, /etc/ssh_host_rsa_key.pub
1098 These three files contain the public parts of the host keys.
1099 These files should be world-readable but writable only by
1100 root.
1101 Their contents should match the respective private parts.
1102 These files are not
1103 really used for anything; they are provided for the convenience of
1104 the user so their contents can be copied to known hosts files.
1105 These files are created using
1106 .Xr ssh-keygen 1 .
1107 .It Pa /etc/moduli
1108 Contains Diffie-Hellman groups used for the "Diffie-Hellman Group Exchange".
1109 .It Pa /var/run/sshd.pid
1110 Contains the process ID of the
1111 .Nm
1112 listening for connections (if there are several daemons running
1113 concurrently for different ports, this contains the pid of the one
1114 started last).
1115 The content of this file is not sensitive; it can be world-readable.
1116 .It Pa $HOME/.ssh/authorized_keys
1117 Lists the public keys (RSA or DSA) that can be used to log into the user's account.
1118 This file must be readable by root (which may on some machines imply
1119 it being world-readable if the user's home directory resides on an NFS
1120 volume).
1121 It is recommended that it not be accessible by others.
1122 The format of this file is described above.
1123 Users will place the contents of their
1124 .Pa identity.pub ,
1125 .Pa id_dsa.pub
1126 and/or
1127 .Pa id_rsa.pub
1128 files into this file, as described in
1129 .Xr ssh-keygen 1 .
1130 .It Pa "/etc/ssh_known_hosts" and "$HOME/.ssh/known_hosts"
1131 These files are consulted when using rhosts with RSA host
1132 authentication or protocol version 2 hostbased authentication
1133 to check the public key of the host.
1134 The key must be listed in one of these files to be accepted.
1135 The client uses the same files
1136 to verify that it is connecting to the correct remote host.
1137 These files should be writable only by root/the owner.
1138 .Pa /etc/ssh_known_hosts
1139 should be world-readable, and
1140 .Pa $HOME/.ssh/known_hosts
1141 can but need not be world-readable.
1142 .It Pa /etc/nologin
1143 If this file exists,
1144 .Nm
1145 refuses to let anyone except root log in.
1146 The contents of the file
1147 are displayed to anyone trying to log in, and non-root connections are
1148 refused.
1149 The file should be world-readable.
1150 .It Pa /etc/hosts.allow, /etc/hosts.deny
1151 If compiled with
1152 .Sy LIBWRAP
1153 support, tcp-wrappers access controls may be defined here as described in
1154 .Xr hosts_access 5 .
1155 .It Pa $HOME/.rhosts
1156 This file contains host-username pairs, separated by a space, one per
1157 line.
1158 The given user on the corresponding host is permitted to log in
1159 without password.
1160 The same file is used by rlogind and rshd.
1161 The file must
1162 be writable only by the user; it is recommended that it not be
1163 accessible by others.
1164 .Pp
1165 If is also possible to use netgroups in the file.
1166 Either host or user
1167 name may be of the form +@groupname to specify all hosts or all users
1168 in the group.
1169 .It Pa $HOME/.shosts
1170 For ssh,
1171 this file is exactly the same as for
1172 .Pa .rhosts .
1173 However, this file is
1174 not used by rlogin and rshd, so using this permits access using SSH only.
1175 .It Pa /etc/hosts.equiv
1176 This file is used during
1177 .Pa .rhosts
1178 authentication.
1179 In the simplest form, this file contains host names, one per line.
1180 Users on
1181 those hosts are permitted to log in without a password, provided they
1182 have the same user name on both machines.
1183 The host name may also be
1184 followed by a user name; such users are permitted to log in as
1185 .Em any
1186 user on this machine (except root).
1187 Additionally, the syntax
1188 .Dq +@group
1189 can be used to specify netgroups.
1190 Negated entries start with
1191 .Ql \&- .
1192 .Pp
1193 If the client host/user is successfully matched in this file, login is
1194 automatically permitted provided the client and server user names are the
1195 same.
1196 Additionally, successful RSA host authentication is normally required.
1197 This file must be writable only by root; it is recommended
1198 that it be world-readable.
1199 .Pp
1200 .Sy "Warning: It is almost never a good idea to use user names in"
1201 .Pa hosts.equiv .
1202 Beware that it really means that the named user(s) can log in as
1203 .Em anybody ,
1204 which includes bin, daemon, adm, and other accounts that own critical
1205 binaries and directories.
1206 Using a user name practically grants the user root access.
1207 The only valid use for user names that I can think
1208 of is in negative entries.
1209 .Pp
1210 Note that this warning also applies to rsh/rlogin.
1211 .It Pa /etc/shosts.equiv
1212 This is processed exactly as
1213 .Pa /etc/hosts.equiv .
1214 However, this file may be useful in environments that want to run both
1215 rsh/rlogin and ssh.
1216 .It Pa $HOME/.ssh/environment
1217 This file is read into the environment at login (if it exists).
1218 It can only contain empty lines, comment lines (that start with
1219 .Ql # ) ,
1220 and assignment lines of the form name=value.
1221 The file should be writable
1222 only by the user; it need not be readable by anyone else.
1223 .It Pa $HOME/.ssh/rc
1224 If this file exists, it is run with /bin/sh after reading the
1225 environment files but before starting the user's shell or command.
1226 If X11 spoofing is in use, this will receive the "proto cookie" pair in
1227 standard input (and
1228 .Ev DISPLAY
1229 in environment).
1230 This must call
1231 .Xr xauth 1
1232 in that case.
1233 .Pp
1234 The primary purpose of this file is to run any initialization routines
1235 which may be needed before the user's home directory becomes
1236 accessible; AFS is a particular example of such an environment.
1237 .Pp
1238 This file will probably contain some initialization code followed by
1239 something similar to:
1240 .Bd -literal
1241         if read proto cookie; then
1242                 echo add $DISPLAY $proto $cookie | xauth -q -
1243         fi
1244 .Ed
1245 .Pp
1246 If this file does not exist,
1247 .Pa /etc/sshrc
1248 is run, and if that
1249 does not exist either, xauth is used to store the cookie.
1250 .Pp
1251 This file should be writable only by the user, and need not be
1252 readable by anyone else.
1253 .It Pa /etc/sshrc
1254 Like
1255 .Pa $HOME/.ssh/rc .
1256 This can be used to specify
1257 machine-specific login-time initializations globally.
1258 This file should be writable only by root, and should be world-readable.
1259 .El
1260 .Sh AUTHORS
1261 OpenSSH is a derivative of the original and free
1262 ssh 1.2.12 release by Tatu Ylonen.
1263 Aaron Campbell, Bob Beck, Markus Friedl, Niels Provos,
1264 Theo de Raadt and Dug Song
1265 removed many bugs, re-added newer features and
1266 created OpenSSH.
1267 Markus Friedl contributed the support for SSH
1268 protocol versions 1.5 and 2.0.
1269 .Sh SEE ALSO
1270 .Xr scp 1 ,
1271 .Xr sftp 1 ,
1272 .Xr ssh 1 ,
1273 .Xr ssh-add 1 ,
1274 .Xr ssh-agent 1 ,
1275 .Xr ssh-keygen 1 ,
1276 .Xr login.conf 5 ,
1277 .Xr moduli 5 ,
1278 .Xr sftp-server 8
1279 .Rs
1280 .%A T. Ylonen
1281 .%A T. Kivinen
1282 .%A M. Saarinen
1283 .%A T. Rinne
1284 .%A S. Lehtinen
1285 .%T "SSH Protocol Architecture"
1286 .%N draft-ietf-secsh-architecture-09.txt
1287 .%D July 2001
1288 .%O work in progress material
1289 .Re
1290 .Rs
1291 .%A M. Friedl
1292 .%A N. Provos
1293 .%A W. A. Simpson
1294 .%T "Diffie-Hellman Group Exchange for the SSH Transport Layer Protocol"
1295 .%N draft-ietf-secsh-dh-group-exchange-01.txt
1296 .%D April 2001
1297 .%O work in progress material
1298 .Re
This page took 0.150418 seconds and 5 git commands to generate.