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