]> andersk Git - openssh.git/blame - sshd.8
- (djm) Irix strips "/dev/tty" from [uw]tmp entries (other systems only
[openssh.git] / sshd.8
CommitLineData
bf740959 1.\" -*- nroff -*-
2.\"
bf740959 3.\" Author: Tatu Ylonen <ylo@cs.hut.fi>
bf740959 4.\" Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5.\" All rights reserved
6.\"
bcbf86ec 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.
bf740959 25.\"
bcbf86ec 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.
bf740959 36.\"
37.Dd September 25, 1999
38.Dt SSHD 8
39.Os
40.Sh NAME
41.Nm sshd
42.Nd secure shell daemon
43.Sh SYNOPSIS
44.Nm sshd
48e671d5 45.Op Fl diqQ46
bf740959 46.Op Fl b Ar bits
47.Op Fl f Ar config_file
48.Op Fl g Ar login_grace_time
49.Op Fl h Ar host_key_file
50.Op Fl k Ar key_gen_time
51.Op Fl p Ar port
c345cf9d 52.Op Fl u Ar len
5260325f 53.Op Fl V Ar client_protocol_id
f54651ce 54.Sh DESCRIPTION
bf740959 55.Nm
f54651ce 56(Secure Shell Daemon) is the daemon program for
bf740959 57.Xr ssh 1 .
3189621b 58Together these programs replace rlogin and rsh, and
bf740959 59provide secure encrypted communications between two untrusted hosts
4fe2af09 60over an insecure network.
61The programs are intended to be as easy to
bf740959 62install and use as possible.
63.Pp
64.Nm
4fe2af09 65is the daemon that listens for connections from clients.
f54651ce 66It is normally started at boot from
bf740959 67.Pa /etc/rc .
68It forks a new
4fe2af09 69daemon for each incoming connection.
70The forked daemons handle
bf740959 71key exchange, encryption, authentication, command execution,
72and data exchange.
1d1ffb87 73This implementation of
74.Nm
75supports both SSH protocol version 1 and 2 simultaneously.
bf740959 76.Nm
4fe2af09 77works as follows.
1d1ffb87 78.Pp
79.Ss SSH protocol version 1
80.Pp
4fe2af09 81Each host has a host-specific RSA key
82(normally 1024 bits) used to identify the host.
83Additionally, when
bf740959 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
3189621b 88Whenever a client connects the daemon responds with its public
89host and server keys.
4fe2af09 90The client compares the
1d1ffb87 91RSA host key against its own database to verify that it has not changed.
4fe2af09 92The client then generates a 256 bit random number.
93It encrypts this
bf740959 94random number using both the host key and the server key, and sends
4fe2af09 95the encrypted number to the server.
3189621b 96Both sides then use this
bf740959 97random number as a session key which is used to encrypt all further
4fe2af09 98communications in the session.
99The rest of the session is encrypted
3189621b 100using a conventional cipher, currently Blowfish or 3DES, with 3DES
7368a6c8 101being used by default.
4fe2af09 102The client selects the encryption algorithm
bf740959 103to use from those offered by the server.
104.Pp
4fe2af09 105Next, the server and the client enter an authentication dialog.
106The client tries to authenticate itself using
bf740959 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
4fe2af09 116configuration file if desired.
117System security is not improved unless
bf740959 118.Xr rshd 8 ,
119.Xr rlogind 8 ,
120.Xr rexecd 8 ,
121and
122.Xr rexd 8
123are disabled (thus completely disabling
124.Xr rlogin 1
125and
126.Xr rsh 1
3189621b 127into the machine).
bf740959 128.Pp
1d1ffb87 129.Ss SSH protocol version 2
130.Pp
c345cf9d 131Version 2 works similarly:
1d1ffb87 132Each host has a host-specific DSA key used to identify the host.
133However, when the daemon starts, it does not generate a server key.
134Forward security is provided through a Diffie-Hellman key agreement.
135This key agreement results in a shared session key.
136The rest of the session is encrypted
137using a symmetric cipher, currently
138Blowfish, 3DES or CAST128 in CBC mode or Arcfour.
139The client selects the encryption algorithm
140to use from those offered by the server.
141Additionally, session integrity is provided
d0c832f3 142through a cryptographic message authentication code
1d1ffb87 143(hmac-sha1 or hmac-md5).
144.Pp
145Protocol version 2 provides a public key based
146user authentication method (DSAAuthentication)
147and conventional password authentication.
148.Pp
149.Ss Command execution and data forwarding
150.Pp
bf740959 151If the client successfully authenticates itself, a dialog for
4fe2af09 152preparing the session is entered.
153At this time the client may request
bf740959 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.
4fe2af09 159The sides then enter session mode.
160In this mode, either side may send
bf740959 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
4fe2af09 170file.
171Command-line options override values specified in the
bf740959 172configuration file.
173.Pp
9d6b7add 174.Nm
175rereads its configuration file when it receives a hangup signal,
176.Dv SIGHUP .
177.Pp
bf740959 178The options are as follows:
179.Bl -tag -width Ds
180.It Fl b Ar bits
181Specifies the number of bits in the server key (default 768).
182.Pp
183.It Fl d
4fe2af09 184Debug mode.
185The server sends verbose debug output to the system
186log, and does not put itself in the background.
187The server also will not fork and will only process one connection.
188This option is only intended for debugging for the server.
bcbf86ec 189Multiple -d options increases the debugging level. Maximum is 3.
bf740959 190.It Fl f Ar configuration_file
4fe2af09 191Specifies the name of the configuration file.
192The default is
5f4fdfae 193.Pa /etc/sshd_config .
bf740959 194.Nm
195refuses to start if there is no configuration file.
196.It Fl g Ar login_grace_time
197Gives the grace time for clients to authenticate themselves (default
4fe2af09 198300 seconds).
199If the client fails to authenticate the user within
200this many seconds, the server disconnects and exits.
201A value of zero indicates no limit.
bf740959 202.It Fl h Ar host_key_file
1d1ffb87 203Specifies the file from which the RSA host key is read (default
5f4fdfae 204.Pa /etc/ssh_host_key ) .
bf740959 205This option must be given if
206.Nm
207is not run as root (as the normal
208host file is normally not readable by anyone but root).
209.It Fl i
210Specifies that
211.Nm
f54651ce 212is being run from inetd.
bf740959 213.Nm
214is normally not run
215from inetd because it needs to generate the server key before it can
4fe2af09 216respond to the client, and this may take tens of seconds.
217Clients would have to wait too long if the key was regenerated every time.
610cd5c6 218However, with small key sizes (e.g., 512) using
bf740959 219.Nm
220from inetd may
221be feasible.
222.It Fl k Ar key_gen_time
223Specifies how often the server key is regenerated (default 3600
4fe2af09 224seconds, or one hour).
225The motivation for regenerating the key fairly
bf740959 226often is that the key is not stored anywhere, and after about an hour,
227it becomes impossible to recover the key for decrypting intercepted
228communications even if the machine is cracked into or physically
4fe2af09 229seized.
230A value of zero indicates that the key will never be regenerated.
bf740959 231.It Fl p Ar port
232Specifies the port on which the server listens for connections
233(default 22).
234.It Fl q
4fe2af09 235Quiet mode.
236Nothing is sent to the system log.
237Normally the beginning,
bf740959 238authentication, and termination of each connection is logged.
c345cf9d 239.It Fl u Ar len
240This option is used to specify the size of the field
241in the
242.Li utmp
243structure that holds the remote host name.
244If the resolved host name is longer than
245.Ar len ,
246the dotted decimal value will be used instead.
247This allows hosts with very long host names that
248overflow this field to still be uniquely identified.
249Specifying
250.Fl u0
251indicates that only dotted decimal addresses
252should be put into the
253.Pa utmp
254file.
bf740959 255.It Fl Q
256Do not print an error message if RSA support is missing.
5260325f 257.It Fl V Ar client_protocol_id
258SSH2 compatibility mode.
3189621b 259When this option is specified
5260325f 260.Nm
3189621b 261assumes the client has sent the supplied version string
5260325f 262and skips the
263Protocol Version Identification Exchange.
48e671d5 264.It Fl 4
265Forces
266.Nm
267to use IPv4 addresses only.
268.It Fl 6
269Forces
270.Nm
271to use IPv6 addresses only.
bf740959 272.El
273.Sh CONFIGURATION FILE
274.Nm
f54651ce 275reads configuration data from
5f4fdfae 276.Pa /etc/sshd_config
bf740959 277(or the file specified with
278.Fl f
4fe2af09 279on the command line).
280The file contains keyword-value pairs, one per line.
281Lines starting with
bf740959 282.Ql #
283and empty lines are interpreted as comments.
284.Pp
285The following keywords are possible.
286.Bl -tag -width Ds
287.It Cm AFSTokenPassing
4fe2af09 288Specifies whether an AFS token may be forwarded to the server.
289Default is
bf740959 290.Dq yes .
291.It Cm AllowGroups
292This keyword can be followed by a number of group names, separated
4fe2af09 293by spaces.
294If specified, login is allowed only for users whose primary
bf740959 295group matches one of the patterns.
296.Ql \&*
297and
298.Ql ?
299can be used as
4fe2af09 300wildcards in the patterns.
c345cf9d 301Only group names are valid; a numerical group ID isn't recognized.
4fe2af09 302By default login is allowed regardless of the primary group.
bf740959 303.Pp
304.It Cm AllowUsers
305This keyword can be followed by a number of user names, separated
4fe2af09 306by spaces.
307If specified, login is allowed only for users names that
bf740959 308match one of the patterns.
309.Ql \&*
310and
311.Ql ?
312can be used as
4fe2af09 313wildcards in the patterns.
c345cf9d 314Only user names are valid; a numerical user ID isn't recognized.
4fe2af09 315By default login is allowed regardless of the user name.
bf740959 316.Pp
f54651ce 317.It Cm Ciphers
318Specifies the ciphers allowed for protocol version 2.
319Multiple ciphers must be comma-separated.
320The default is
d0c832f3 321.Dq 3des-cbc,blowfish-cbc,arcfour,cast128-cbc .
bf740959 322.It Cm CheckMail
323Specifies whether
324.Nm
325should check for new mail for interactive logins.
326The default is
327.Dq no .
328.It Cm DenyGroups
329This keyword can be followed by a number of group names, separated
4fe2af09 330by spaces.
331Users whose primary group matches one of the patterns
bf740959 332aren't allowed to log in.
333.Ql \&*
334and
335.Ql ?
336can be used as
4fe2af09 337wildcards in the patterns.
c345cf9d 338Only group names are valid; a numerical group ID isn't recognized.
4fe2af09 339By default login is allowed regardless of the primary group.
bf740959 340.Pp
341.It Cm DenyUsers
342This keyword can be followed by a number of user names, separated
4fe2af09 343by spaces.
344Login is disallowed for user names that match one of the patterns.
bf740959 345.Ql \&*
346and
347.Ql ?
4fe2af09 348can be used as wildcards in the patterns.
c345cf9d 349Only user names are valid; a numerical user ID isn't recognized.
4fe2af09 350By default login is allowed regardless of the user name.
1d1ffb87 351.It Cm DSAAuthentication
352Specifies whether DSA authentication is allowed.
353The default is
354.Dq yes .
355Note that this option applies to protocol version 2 only.
356.It Cm GatewayPorts
357Specifies whether remote hosts are allowed to connect to ports
358forwarded for the client.
359The argument must be
360.Dq yes
361or
362.Dq no .
363The default is
364.Dq no .
c345cf9d 365.It Cm HostDSAKey
1d1ffb87 366Specifies the file containing the private DSA host key (default
367.Pa /etc/ssh_host_dsa_key )
368used by SSH protocol 2.0.
369Note that
370.Nm
d0c832f3 371disables protocol 2.0 if this file is group/world-accessible.
bf740959 372.It Cm HostKey
1d1ffb87 373Specifies the file containing the private RSA host key (default
374.Pa /etc/ssh_host_key )
375used by SSH protocols 1.3 and 1.5.
bf740959 376Note that
377.Nm
d0c832f3 378disables protocols 1.3 and 1.5 if this file is group/world-accessible.
bf740959 379.It Cm IgnoreRhosts
c8d54615 380Specifies that
381.Pa .rhosts
f54651ce 382and
c8d54615 383.Pa .shosts
384files will not be used in authentication.
bf740959 385.Pa /etc/hosts.equiv
386and
f54651ce 387.Pa /etc/shosts.equiv
4fe2af09 388are still used.
f54651ce 389The default is
c8d54615 390.Dq yes .
b4748e2f 391.It Cm IgnoreUserKnownHosts
392Specifies whether
393.Nm
394should ignore the user's
395.Pa $HOME/.ssh/known_hosts
396during
397.Cm RhostsRSAAuthentication .
398The default is
399.Dq no .
bf740959 400.It Cm KeepAlive
401Specifies whether the system should send keepalive messages to the
4fe2af09 402other side.
403If they are sent, death of the connection or crash of one
404of the machines will be properly noticed.
405However, this means that
bf740959 406connections will die if the route is down temporarily, and some people
4fe2af09 407find it annoying.
d0c832f3 408On the other hand, if keepalives are not sent,
bf740959 409sessions may hang indefinitely on the server, leaving
410.Dq ghost
411users and consuming server resources.
412.Pp
413The default is
414.Dq yes
415(to send keepalives), and the server will notice
4fe2af09 416if the network goes down or the client host reboots.
417This avoids infinitely hanging sessions.
bf740959 418.Pp
419To disable keepalives, the value should be set to
420.Dq no
421in both the server and the client configuration files.
422.It Cm KerberosAuthentication
4fe2af09 423Specifies whether Kerberos authentication is allowed.
424This can be in the form of a Kerberos ticket, or if
bf740959 425.Cm PasswordAuthentication
426is yes, the password provided by the user will be validated through
c345cf9d 427the Kerberos KDC. To use this option, the server needs a
428Kerberos servtab which allows the verification of the KDC's identity.
4fe2af09 429Default is
bf740959 430.Dq yes .
431.It Cm KerberosOrLocalPasswd
432If set then if password authentication through Kerberos fails then
433the password will be validated via any additional local mechanism
434such as
188adeb2 435.Pa /etc/passwd .
4fe2af09 436Default is
bf740959 437.Dq yes .
438.It Cm KerberosTgtPassing
439Specifies whether a Kerberos TGT may be forwarded to the server.
f54651ce 440Default is
bf740959 441.Dq no ,
442as this only works when the Kerberos KDC is actually an AFS kaserver.
443.It Cm KerberosTicketCleanup
444Specifies whether to automatically destroy the user's ticket cache
4fe2af09 445file on logout.
446Default is
bf740959 447.Dq yes .
448.It Cm KeyRegenerationInterval
449The server key is automatically regenerated after this many seconds
4fe2af09 450(if it has been used).
451The purpose of regeneration is to prevent
bf740959 452decrypting captured sessions by later breaking into the machine and
4fe2af09 453stealing the keys.
454The key is never stored anywhere.
455If the value is 0, the key is never regenerated.
456The default is 3600 (seconds).
bf740959 457.It Cm ListenAddress
458Specifies what local address
459.Nm
460should listen on.
461The default is to listen to all local addresses.
48e671d5 462Multiple options of this type are permitted.
463Additionally, the
464.Cm Ports
465options must precede this option.
bf740959 466.It Cm LoginGraceTime
467The server disconnects after this time if the user has not
4fe2af09 468successfully logged in.
469If the value is 0, there is no time limit.
bf740959 470The default is 600 (seconds).
6a17f9c2 471.It Cm LogLevel
472Gives the verbosity level that is used when logging messages from
473.Nm sshd .
474The possible values are:
5260325f 475QUIET, FATAL, ERROR, INFO, VERBOSE and DEBUG.
6a17f9c2 476The default is INFO.
477Logging with level DEBUG violates the privacy of users
478and is not recommended.
089fbbd2 479.It Cm MaxStartups
480Specifies the maximum number of concurrent unauthenticated connections to the
481.Nm
482daemon.
483Additional connections will be dropped until authentication succeeds or the
484.Cm LoginGraceTime
485expires for a connection.
486The default is 10.
c345cf9d 487.Pp
488Alternatively, random early drop can be enabled by specifying
489the three colon separated values
490.Dq start:rate:full
491(e.g. "10:30:60").
492.Nm
493will refuse connection attempts with a probabillity of
494.Dq rate/100
495(30%)
496if there are currently
497.Dq start
498(10)
499unauthenticated connections.
500The probabillity increases linearly and all connection attempts
501are refused if the number of unauthenticated connections reaches
502.Dq full
503(60).
bf740959 504.It Cm PasswordAuthentication
505Specifies whether password authentication is allowed.
506The default is
507.Dq yes .
c345cf9d 508Note that this option applies to both protocol versions 1 and 2.
bf740959 509.It Cm PermitEmptyPasswords
510When password authentication is allowed, it specifies whether the
4fe2af09 511server allows login to accounts with empty password strings.
512The default is
c8d54615 513.Dq no .
bf740959 514.It Cm PermitRootLogin
515Specifies whether the root can log in using
516.Xr ssh 1 .
517The argument must be
518.Dq yes ,
519.Dq without-password
520or
521.Dq no .
522The default is
523.Dq yes .
524If this options is set to
525.Dq without-password
526only password authentication is disabled for root.
527.Pp
528Root login with RSA authentication when the
529.Ar command
530option has been
531specified will be allowed regardless of the value of this setting
532(which may be useful for taking remote backups even if root login is
533normally not allowed).
0fbe8c74 534.It Cm PidFile
535Specifies the file that contains the process identifier of the
536.Nm
537daemon.
538The default is
539.Pa /var/run/sshd.pid .
bf740959 540.It Cm Port
541Specifies the port number that
542.Nm
4fe2af09 543listens on.
544The default is 22.
48e671d5 545Multiple options of this type are permitted.
bf740959 546.It Cm PrintMotd
547Specifies whether
548.Nm
f54651ce 549should print
bf740959 550.Pa /etc/motd
4fe2af09 551when a user logs in interactively.
552(On some systems it is also printed by the shell,
bf740959 553.Pa /etc/profile ,
4fe2af09 554or equivalent.)
555The default is
bf740959 556.Dq yes .
f54651ce 557.It Cm Protocol
558Specifies the protocol versions
559.Nm
560should support.
561The possible values are
562.Dq 1
563and
564.Dq 2 .
565Multiple versions must be comma-separated.
566The default is
567.Dq 1 .
bf740959 568.It Cm RandomSeed
4fe2af09 569Obsolete.
570Random number generation uses other techniques.
bf740959 571.It Cm RhostsAuthentication
572Specifies whether authentication using rhosts or /etc/hosts.equiv
4fe2af09 573files is sufficient.
574Normally, this method should not be permitted because it is insecure.
bf740959 575.Cm RhostsRSAAuthentication
576should be used
577instead, because it performs RSA-based host authentication in addition
578to normal rhosts or /etc/hosts.equiv authentication.
579The default is
580.Dq no .
581.It Cm RhostsRSAAuthentication
582Specifies whether rhosts or /etc/hosts.equiv authentication together
4fe2af09 583with successful RSA host authentication is allowed.
584The default is
c8d54615 585.Dq no .
bf740959 586.It Cm RSAAuthentication
4fe2af09 587Specifies whether pure RSA authentication is allowed.
588The default is
bf740959 589.Dq yes .
1d1ffb87 590Note that this option applies to protocol version 1 only.
bf740959 591.It Cm ServerKeyBits
4fe2af09 592Defines the number of bits in the server key.
593The minimum value is 512, and the default is 768.
bf740959 594.It Cm SkeyAuthentication
595Specifies whether
f54651ce 596.Xr skey 1
4fe2af09 597authentication is allowed.
598The default is
bf740959 599.Dq yes .
600Note that s/key authentication is enabled only if
601.Cm PasswordAuthentication
602is allowed, too.
603.It Cm StrictModes
604Specifies whether
605.Nm
606should check file modes and ownership of the
4fe2af09 607user's files and home directory before accepting login.
608This is normally desirable because novices sometimes accidentally leave their
609directory or files world-writable.
610The default is
bf740959 611.Dq yes .
38c295d6 612.It Cm Subsystem
613Configures an external subsystem (e.g. file transfer daemon).
614Arguments should be a subsystem name and a command to execute upon subsystem request.
b5e300c2 615The command
616.Xr sftp-server 8
617implements the
618.Dq sftp
619file transfer subsystem.
38c295d6 620By default no subsystems are defined.
621Note that this option applies to protocol version 2 only.
bf740959 622.It Cm SyslogFacility
623Gives the facility code that is used when logging messages from
624.Nm sshd .
625The possible values are: DAEMON, USER, AUTH, LOCAL0, LOCAL1, LOCAL2,
4fe2af09 626LOCAL3, LOCAL4, LOCAL5, LOCAL6, LOCAL7.
627The default is AUTH.
bf740959 628.It Cm UseLogin
629Specifies whether
630.Xr login 1
fa649821 631is used for interactive login sessions.
632Note that
633.Xr login 1
c345cf9d 634is never used for remote command execution.
4fe2af09 635The default is
bf740959 636.Dq no .
bf740959 637.It Cm X11DisplayOffset
638Specifies the first display number available for
639.Nm sshd Ns 's
4fe2af09 640X11 forwarding.
641This prevents
bf740959 642.Nm
643from interfering with real X11 servers.
c8d54615 644The default is 10.
7b2ea3a1 645.It Cm X11Forwarding
4fe2af09 646Specifies whether X11 forwarding is permitted.
647The default is
c8d54615 648.Dq no .
7b2ea3a1 649Note that disabling X11 forwarding does not improve security in any
650way, as users can always install their own forwarders.
fa649821 651.It Cm XAuthLocation
652Specifies the location of the
653.Xr xauth 1
654program.
655The default is
656.Pa /usr/X11R6/bin/xauth .
bf740959 657.El
658.Sh LOGIN PROCESS
659When a user successfully logs in,
660.Nm
661does the following:
662.Bl -enum -offset indent
663.It
664If the login is on a tty, and no command has been specified,
f54651ce 665prints last login time and
bf740959 666.Pa /etc/motd
667(unless prevented in the configuration file or by
668.Pa $HOME/.hushlogin ;
669see the
f54651ce 670.Sx FILES
bf740959 671section).
672.It
673If the login is on a tty, records login time.
674.It
675Checks
676.Pa /etc/nologin ;
677if it exists, prints contents and quits
678(unless root).
679.It
680Changes to run with normal user privileges.
681.It
682Sets up basic environment.
683.It
684Reads
685.Pa $HOME/.ssh/environment
686if it exists.
687.It
688Changes to user's home directory.
689.It
690If
691.Pa $HOME/.ssh/rc
692exists, runs it; else if
5f4fdfae 693.Pa /etc/sshrc
bf740959 694exists, runs
4fe2af09 695it; otherwise runs xauth.
696The
bf740959 697.Dq rc
698files are given the X11
699authentication protocol and cookie in standard input.
700.It
701Runs user's shell or command.
702.El
703.Sh AUTHORIZED_KEYS FILE FORMAT
f54651ce 704The
bf740959 705.Pa $HOME/.ssh/authorized_keys
706file lists the RSA keys that are
1d1ffb87 707permitted for RSA authentication in SSH protocols 1.3 and 1.5
d0c832f3 708Similarly, the
1d1ffb87 709.Pa $HOME/.ssh/authorized_keys2
710file lists the DSA keys that are
711permitted for DSA authentication in SSH protocol 2.0.
4fe2af09 712Each line of the file contains one
bf740959 713key (empty lines and lines starting with a
714.Ql #
715are ignored as
4fe2af09 716comments).
717Each line consists of the following fields, separated by
718spaces: options, bits, exponent, modulus, comment.
719The options field
bf740959 720is optional; its presence is determined by whether the line starts
721with a number or not (the option field never starts with a number).
722The bits, exponent, modulus and comment fields give the RSA key; the
723comment field is not used for anything (but may be convenient for the
724user to identify the key).
725.Pp
726Note that lines in this file are usually several hundred bytes long
4fe2af09 727(because of the size of the RSA key modulus).
728You don't want to type them in; instead, copy the
bf740959 729.Pa identity.pub
730file and edit it.
731.Pp
c345cf9d 732The options (if present) consist of comma-separated option
4fe2af09 733specifications.
734No spaces are permitted, except within double quotes.
bf740959 735The following option specifications are supported:
736.Bl -tag -width Ds
737.It Cm from="pattern-list"
738Specifies that in addition to RSA authentication, the canonical name
739of the remote host must be present in the comma-separated list of
4fe2af09 740patterns
741.Pf ( Ql *
742and
743.Ql ?
744serve as wildcards).
745The list may also contain
746patterns negated by prefixing them with
747.Ql ! ;
748if the canonical host name matches a negated pattern, the key is not accepted.
749The purpose
bf740959 750of this option is to optionally increase security: RSA authentication
751by itself does not trust the network or name servers or anything (but
752the key); however, if somebody somehow steals the key, the key
4fe2af09 753permits an intruder to log in from anywhere in the world.
754This additional option makes using a stolen key more difficult (name
bf740959 755servers and/or routers would have to be compromised in addition to
756just the key).
757.It Cm command="command"
758Specifies that the command is executed whenever this key is used for
4fe2af09 759authentication.
760The command supplied by the user (if any) is ignored.
bf740959 761The command is run on a pty if the connection requests a pty;
4fe2af09 762otherwise it is run without a tty.
763A quote may be included in the command by quoting it with a backslash.
764This option might be useful
765to restrict certain RSA keys to perform just a specific operation.
766An example might be a key that permits remote backups but nothing else.
d0c832f3 767Note that the client may specify TCP/IP and/or X11
768forwarding unless they are explicitly prohibited.
bf740959 769.It Cm environment="NAME=value"
770Specifies that the string is to be added to the environment when
4fe2af09 771logging in using this key.
772Environment variables set this way
773override other default environment values.
774Multiple options of this type are permitted.
bf740959 775.It Cm no-port-forwarding
776Forbids TCP/IP forwarding when this key is used for authentication.
4fe2af09 777Any port forward requests by the client will return an error.
778This might be used, e.g., in connection with the
bf740959 779.Cm command
780option.
781.It Cm no-X11-forwarding
782Forbids X11 forwarding when this key is used for authentication.
783Any X11 forward requests by the client will return an error.
784.It Cm no-agent-forwarding
785Forbids authentication agent forwarding when this key is used for
786authentication.
787.It Cm no-pty
788Prevents tty allocation (a request to allocate a pty will fail).
789.El
790.Ss Examples
7911024 33 12121.\|.\|.\|312314325 ylo@foo.bar
792.Pp
793from="*.niksula.hut.fi,!pc.niksula.hut.fi" 1024 35 23.\|.\|.\|2334 ylo@niksula
794.Pp
795command="dump /home",no-pty,no-port-forwarding 1024 33 23.\|.\|.\|2323 backup.hut.fi
796.Sh SSH_KNOWN_HOSTS FILE FORMAT
f54651ce 797The
1d1ffb87 798.Pa /etc/ssh_known_hosts ,
799.Pa /etc/ssh_known_hosts2 ,
800.Pa $HOME/.ssh/known_hosts ,
f54651ce 801and
1d1ffb87 802.Pa $HOME/.ssh/known_hosts2
4fe2af09 803files contain host public keys for all known hosts.
804The global file should
805be prepared by the administrator (optional), and the per-user file is
c345cf9d 806maintained automatically: whenever the user connects from an unknown host
4fe2af09 807its key is added to the per-user file.
bf740959 808.Pp
809Each line in these files contains the following fields: hostnames,
4fe2af09 810bits, exponent, modulus, comment.
811The fields are separated by spaces.
bf740959 812.Pp
813Hostnames is a comma-separated list of patterns ('*' and '?' act as
814wildcards); each pattern in turn is matched against the canonical host
815name (when authenticating a client) or against the user-supplied
4fe2af09 816name (when authenticating a server).
817A pattern may also be preceded by
bf740959 818.Ql !
819to indicate negation: if the host name matches a negated
820pattern, it is not accepted (by that line) even if it matched another
821pattern on the line.
822.Pp
1d1ffb87 823Bits, exponent, and modulus are taken directly from the RSA host key; they
bf740959 824can be obtained, e.g., from
5f4fdfae 825.Pa /etc/ssh_host_key.pub .
bf740959 826The optional comment field continues to the end of the line, and is not used.
827.Pp
828Lines starting with
829.Ql #
830and empty lines are ignored as comments.
831.Pp
832When performing host authentication, authentication is accepted if any
4fe2af09 833matching line has the proper key.
834It is thus permissible (but not
bf740959 835recommended) to have several lines or different host keys for the same
4fe2af09 836names.
837This will inevitably happen when short forms of host names
838from different domains are put in the file.
839It is possible
bf740959 840that the files contain conflicting information; authentication is
841accepted if valid information can be found from either file.
842.Pp
843Note that the lines in these files are typically hundreds of characters
844long, and you definitely don't want to type in the host keys by hand.
845Rather, generate them by a script
f54651ce 846or by taking
5f4fdfae 847.Pa /etc/ssh_host_key.pub
bf740959 848and adding the host names at the front.
849.Ss Examples
850closenet,closenet.hut.fi,.\|.\|.\|,130.233.208.41 1024 37 159.\|.\|.93 closenet.hut.fi
851.Sh FILES
852.Bl -tag -width Ds
5f4fdfae 853.It Pa /etc/sshd_config
bf740959 854Contains configuration data for
855.Nm sshd .
856This file should be writable by root only, but it is recommended
857(though not necessary) that it be world-readable.
5f4fdfae 858.It Pa /etc/ssh_host_key
bf740959 859Contains the private part of the host key.
860This file should only be owned by root, readable only by root, and not
861accessible to others.
862Note that
863.Nm
864does not start if this file is group/world-accessible.
5f4fdfae 865.It Pa /etc/ssh_host_key.pub
bf740959 866Contains the public part of the host key.
867This file should be world-readable but writable only by
4fe2af09 868root.
869Its contents should match the private part.
870This file is not
bf740959 871really used for anything; it is only provided for the convenience of
872the user so its contents can be copied to known hosts files.
873These two files are created using
874.Xr ssh-keygen 1 .
5f4fdfae 875.It Pa /var/run/sshd.pid
bf740959 876Contains the process ID of the
877.Nm
878listening for connections (if there are several daemons running
879concurrently for different ports, this contains the pid of the one
4fe2af09 880started last).
c345cf9d 881The content of this file is not sensitive; it can be world-readable.
bf740959 882.It Pa $HOME/.ssh/authorized_keys
883Lists the RSA keys that can be used to log into the user's account.
884This file must be readable by root (which may on some machines imply
885it being world-readable if the user's home directory resides on an NFS
4fe2af09 886volume).
887It is recommended that it not be accessible by others.
888The format of this file is described above.
1d1ffb87 889Users will place the contents of their
890.Pa identity.pub
891files into this file, as described in
892.Xr ssh-keygen 1 .
893.It Pa $HOME/.ssh/authorized_keys2
894Lists the DSA keys that can be used to log into the user's account.
895This file must be readable by root (which may on some machines imply
896it being world-readable if the user's home directory resides on an NFS
897volume).
898It is recommended that it not be accessible by others.
899The format of this file is described above.
900Users will place the contents of their
901.Pa id_dsa.pub
902files into this file, as described in
903.Xr ssh-keygen 1 .
5f4fdfae 904.It Pa "/etc/ssh_known_hosts" and "$HOME/.ssh/known_hosts"
6a17f9c2 905These files are consulted when using rhosts with RSA host
4fe2af09 906authentication to check the public key of the host.
907The key must be listed in one of these files to be accepted.
5bbb5681 908The client uses the same files
c345cf9d 909to verify that the remote host is the one it intended to connect.
4fe2af09 910These files should be writable only by root/the owner.
5f4fdfae 911.Pa /etc/ssh_known_hosts
bf740959 912should be world-readable, and
913.Pa $HOME/.ssh/known_hosts
914can but need not be world-readable.
915.It Pa /etc/nologin
f54651ce 916If this file exists,
bf740959 917.Nm
4fe2af09 918refuses to let anyone except root log in.
919The contents of the file
bf740959 920are displayed to anyone trying to log in, and non-root connections are
4fe2af09 921refused.
922The file should be world-readable.
bf740959 923.It Pa /etc/hosts.allow, /etc/hosts.deny
924If compiled with
925.Sy LIBWRAP
926support, tcp-wrappers access controls may be defined here as described in
927.Xr hosts_access 5 .
928.It Pa $HOME/.rhosts
929This file contains host-username pairs, separated by a space, one per
4fe2af09 930line.
931The given user on the corresponding host is permitted to log in
932without password.
933The same file is used by rlogind and rshd.
bf740959 934The file must
935be writable only by the user; it is recommended that it not be
936accessible by others.
937.Pp
4fe2af09 938If is also possible to use netgroups in the file.
939Either host or user
bf740959 940name may be of the form +@groupname to specify all hosts or all users
941in the group.
942.It Pa $HOME/.shosts
943For ssh,
944this file is exactly the same as for
945.Pa .rhosts .
946However, this file is
947not used by rlogin and rshd, so using this permits access using SSH only.
c345cf9d 948.It Pa /etc/hosts.equiv
bf740959 949This file is used during
950.Pa .rhosts
4fe2af09 951authentication.
952In the simplest form, this file contains host names, one per line.
953Users on
bf740959 954those hosts are permitted to log in without a password, provided they
4fe2af09 955have the same user name on both machines.
956The host name may also be
bf740959 957followed by a user name; such users are permitted to log in as
958.Em any
4fe2af09 959user on this machine (except root).
960Additionally, the syntax
bf740959 961.Dq +@group
4fe2af09 962can be used to specify netgroups.
963Negated entries start with
bf740959 964.Ql \&- .
965.Pp
966If the client host/user is successfully matched in this file, login is
967automatically permitted provided the client and server user names are the
4fe2af09 968same.
969Additionally, successful RSA host authentication is normally required.
970This file must be writable only by root; it is recommended
bf740959 971that it be world-readable.
972.Pp
973.Sy "Warning: It is almost never a good idea to use user names in"
974.Pa hosts.equiv .
975Beware that it really means that the named user(s) can log in as
976.Em anybody ,
977which includes bin, daemon, adm, and other accounts that own critical
4fe2af09 978binaries and directories.
979Using a user name practically grants the user root access.
980The only valid use for user names that I can think
bf740959 981of is in negative entries.
982.Pp
983Note that this warning also applies to rsh/rlogin.
5f4fdfae 984.It Pa /etc/shosts.equiv
bf740959 985This is processed exactly as
986.Pa /etc/hosts.equiv .
987However, this file may be useful in environments that want to run both
988rsh/rlogin and ssh.
989.It Pa $HOME/.ssh/environment
4fe2af09 990This file is read into the environment at login (if it exists).
991It can only contain empty lines, comment lines (that start with
bf740959 992.Ql # ) ,
4fe2af09 993and assignment lines of the form name=value.
994The file should be writable
bf740959 995only by the user; it need not be readable by anyone else.
996.It Pa $HOME/.ssh/rc
997If this file exists, it is run with /bin/sh after reading the
4fe2af09 998environment files but before starting the user's shell or command.
999If X11 spoofing is in use, this will receive the "proto cookie" pair in
bf740959 1000standard input (and
1001.Ev DISPLAY
4fe2af09 1002in environment).
1003This must call
bf740959 1004.Xr xauth 1
1005in that case.
1006.Pp
1007The primary purpose of this file is to run any initialization routines
1008which may be needed before the user's home directory becomes
1009accessible; AFS is a particular example of such an environment.
1010.Pp
1011This file will probably contain some initialization code followed by
1012something similar to: "if read proto cookie; then echo add $DISPLAY
1013$proto $cookie | xauth -q -; fi".
1014.Pp
1015If this file does not exist,
5f4fdfae 1016.Pa /etc/sshrc
bf740959 1017is run, and if that
1018does not exist either, xauth is used to store the cookie.
1019.Pp
1020This file should be writable only by the user, and need not be
1021readable by anyone else.
5f4fdfae 1022.It Pa /etc/sshrc
bf740959 1023Like
1024.Pa $HOME/.ssh/rc .
1025This can be used to specify
4fe2af09 1026machine-specific login-time initializations globally.
1027This file should be writable only by root, and should be world-readable.
089fbbd2 1028.El
bf740959 1029.Sh AUTHOR
bf740959 1030OpenSSH
c8d54615 1031is a derivative of the original (free) ssh 1.2.12 release by Tatu Ylonen,
4fe2af09 1032but with bugs removed and newer features re-added.
1033Rapidly after the
c8d54615 10341.2.12 release, newer versions of the original ssh bore successively
1035more restrictive licenses, and thus demand for a free version was born.
1d1ffb87 1036.Pp
c8d54615 1037This version of OpenSSH
bf740959 1038.Bl -bullet
1039.It
bcbf86ec 1040has all components of a restrictive nature (i.e., patents, see
1041.Xr crypto 3 )
bf740959 1042directly removed from the source code; any licensed or patented components
1043are chosen from
1044external libraries.
1045.It
1d1ffb87 1046has been updated to support SSH protocol 1.5 and 2, making it compatible with
1047all other SSH clients and servers.
bf740959 1048.It
f54651ce 1049contains added support for
bf740959 1050.Xr kerberos 8
1051authentication and ticket passing.
1052.It
1053supports one-time password authentication with
1054.Xr skey 1 .
1055.El
1d1ffb87 1056.Pp
1057OpenSSH has been created by Aaron Campbell, Bob Beck, Markus Friedl,
1058Niels Provos, Theo de Raadt, and Dug Song.
1059.Pp
1060The support for SSH protocol 2 was written by Markus Friedl.
bf740959 1061.Sh SEE ALSO
bf740959 1062.Xr scp 1 ,
b5e300c2 1063.Xr sftp-server 8 ,
bf740959 1064.Xr ssh 1 ,
1065.Xr ssh-add 1 ,
1066.Xr ssh-agent 1 ,
1067.Xr ssh-keygen 1 ,
bcbf86ec 1068.Xr crypto 3 ,
7368a6c8 1069.Xr rlogin 1 ,
1070.Xr rsh 1
This page took 0.239376 seconds and 5 git commands to generate.