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