]> andersk Git - openssh.git/blame - ssh.1
- markus@cvs.openbsd.org 2001/07/25 14:35:18
[openssh.git] / ssh.1
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.\"
f3c7c613 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.
bcbf86ec 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.\"
ce773142 37.\" $OpenBSD: ssh.1,v 1.124 2001/07/25 14:35:18 markus Exp $
bf740959 38.Dd September 25, 1999
39.Dt SSH 1
40.Os
41.Sh NAME
42.Nm ssh
2c86906e 43.Nd OpenSSH SSH client (remote login program)
bf740959 44.Sh SYNOPSIS
45.Nm ssh
46.Op Fl l Ar login_name
47.Op Ar hostname | user@hostname
48.Op Ar command
49.Pp
50.Nm ssh
9afadca8 51.Op Fl afgknqstvxACNPTX1246
3435f5a6 52.Op Fl b Ar bind_address
d0c832f3 53.Op Fl c Ar cipher_spec
bf740959 54.Op Fl e Ar escape_char
55.Op Fl i Ar identity_file
56.Op Fl l Ar login_name
b2552997 57.Op Fl m Ar mac_spec
bf740959 58.Op Fl o Ar option
59.Op Fl p Ar port
60.Oo Fl L Xo
61.Sm off
bf740959 62.Ar port :
7b2ea3a1 63.Ar host :
bf740959 64.Ar hostport
65.Sm on
66.Xc
67.Oc
68.Oo Fl R Xo
69.Sm off
bf740959 70.Ar port :
7b2ea3a1 71.Ar host :
bf740959 72.Ar hostport
73.Sm on
74.Xc
75.Oc
76.Op Ar hostname | user@hostname
77.Op Ar command
f54651ce 78.Sh DESCRIPTION
bf740959 79.Nm
2c86906e 80(SSH client) is a program for logging into a remote machine and for
610cd5c6 81executing commands on a remote machine.
82It is intended to replace
bf740959 83rlogin and rsh, and provide secure encrypted communications between
610cd5c6 84two untrusted hosts over an insecure network.
85X11 connections and
bf740959 86arbitrary TCP/IP ports can also be forwarded over the secure channel.
87.Pp
88.Nm
f54651ce 89connects and logs into the specified
bf740959 90.Ar hostname .
91The user must prove
1d1ffb87 92his/her identity to the remote machine using one of several methods
93depending on the protocol version used:
94.Pp
95.Ss SSH protocol version 1
bf740959 96.Pp
97First, if the machine the user logs in from is listed in
98.Pa /etc/hosts.equiv
99or
5f4fdfae 100.Pa /etc/shosts.equiv
bf740959 101on the remote machine, and the user names are
102the same on both sides, the user is immediately permitted to log in.
f54651ce 103Second, if
bf740959 104.Pa \&.rhosts
105or
106.Pa \&.shosts
107exists in the user's home directory on the
108remote machine and contains a line containing the name of the client
109machine and the name of the user on that machine, the user is
610cd5c6 110permitted to log in.
111This form of authentication alone is normally not
bf740959 112allowed by the server because it is not secure.
113.Pp
da89cf4d 114The second authentication method is the
bf740959 115.Pa rhosts
116or
117.Pa hosts.equiv
610cd5c6 118method combined with RSA-based host authentication.
119It means that if the login would be permitted by
1d1ffb87 120.Pa $HOME/.rhosts ,
121.Pa $HOME/.shosts ,
bf740959 122.Pa /etc/hosts.equiv ,
123or
5f4fdfae 124.Pa /etc/shosts.equiv ,
bf740959 125and if additionally the server can verify the client's
f54651ce 126host key (see
5f4fdfae 127.Pa /etc/ssh_known_hosts
5bbb5681 128and
129.Pa $HOME/.ssh/known_hosts
bf740959 130in the
131.Sx FILES
610cd5c6 132section), only then login is permitted.
133This authentication method closes security holes due to IP
134spoofing, DNS spoofing and routing spoofing.
135[Note to the administrator:
bf740959 136.Pa /etc/hosts.equiv ,
1d1ffb87 137.Pa $HOME/.rhosts ,
bf740959 138and the rlogin/rsh protocol in general, are inherently insecure and should be
139disabled if security is desired.]
140.Pp
f54651ce 141As a third authentication method,
bf740959 142.Nm
143supports RSA based authentication.
144The scheme is based on public-key cryptography: there are cryptosystems
145where encryption and decryption are done using separate keys, and it
146is not possible to derive the decryption key from the encryption key.
610cd5c6 147RSA is one such system.
f54651ce 148The idea is that each user creates a public/private
610cd5c6 149key pair for authentication purposes.
150The server knows the public key, and only the user knows the private key.
f54651ce 151The file
bf740959 152.Pa $HOME/.ssh/authorized_keys
153lists the public keys that are permitted for logging
610cd5c6 154in.
155When the user logs in, the
bf740959 156.Nm
157program tells the server which key pair it would like to use for
610cd5c6 158authentication.
159The server checks if this key is permitted, and if
bf740959 160so, sends the user (actually the
161.Nm
162program running on behalf of the user) a challenge, a random number,
610cd5c6 163encrypted by the user's public key.
164The challenge can only be
165decrypted using the proper private key.
166The user's client then decrypts the
bf740959 167challenge using the private key, proving that he/she knows the private
168key but without disclosing it to the server.
169.Pp
170.Nm
610cd5c6 171implements the RSA authentication protocol automatically.
172The user creates his/her RSA key pair by running
bf740959 173.Xr ssh-keygen 1 .
f54651ce 174This stores the private key in
1d1ffb87 175.Pa $HOME/.ssh/identity
bf740959 176and the public key in
1d1ffb87 177.Pa $HOME/.ssh/identity.pub
610cd5c6 178in the user's home directory.
179The user should then copy the
bf740959 180.Pa identity.pub
f54651ce 181to
1d1ffb87 182.Pa $HOME/.ssh/authorized_keys
f54651ce 183in his/her home directory on the remote machine (the
bf740959 184.Pa authorized_keys
f54651ce 185file corresponds to the conventional
1d1ffb87 186.Pa $HOME/.rhosts
bf740959 187file, and has one key
610cd5c6 188per line, though the lines can be very long).
189After this, the user can log in without giving the password.
190RSA authentication is much
bf740959 191more secure than rhosts authentication.
192.Pp
193The most convenient way to use RSA authentication may be with an
610cd5c6 194authentication agent.
195See
bf740959 196.Xr ssh-agent 1
197for more information.
198.Pp
f54651ce 199If other authentication methods fail,
bf740959 200.Nm
610cd5c6 201prompts the user for a password.
202The password is sent to the remote
bf740959 203host for checking; however, since all communications are encrypted,
204the password cannot be seen by someone listening on the network.
205.Pp
1d1ffb87 206.Ss SSH protocol version 2
207.Pp
208When a user connects using the protocol version 2
da89cf4d 209different authentication methods are available.
210Using the default values for
211.Cm PreferredAuthentications ,
29c440a0 212the client will try to authenticate first using the hostbased method;
213if this method fails public key authentication is attempted,
214and finally if this method fails keyboard-interactive and
215password authentication are tried.
1d1ffb87 216.Pp
217The public key method is similar to RSA authentication described
da89cf4d 218in the previous section and allows the RSA or DSA algorithm to be used:
c0ecc314 219The client uses his private key,
1d1ffb87 220.Pa $HOME/.ssh/id_dsa
c0ecc314 221or
222.Pa $HOME/.ssh/id_rsa ,
1d1ffb87 223to sign the session identifier and sends the result to the server.
224The server checks whether the matching public key is listed in
96a7b0cc 225.Pa $HOME/.ssh/authorized_keys
1d1ffb87 226and grants access if both the key is found and the signature is correct.
227The session identifier is derived from a shared Diffie-Hellman value
228and is only known to the client and the server.
229.Pp
230If public key authentication fails or is not available a password
231can be sent encrypted to the remote host for proving the user's identity.
da89cf4d 232.Pp
233Additionally,
234.Nm
235supports hostbased or challenge response authentication.
1d1ffb87 236.Pp
237Protocol 2 provides additional mechanisms for confidentiality
d0c832f3 238(the traffic is encrypted using 3DES, Blowfish, CAST128 or Arcfour)
f2ba0775 239and integrity (hmac-md5, hmac-sha1).
1d1ffb87 240Note that protocol 1 lacks a strong mechanism for ensuring the
241integrity of the connection.
242.Pp
243.Ss Login session and remote execution
244.Pp
bf740959 245When the user's identity has been accepted by the server, the server
246either executes the given command, or logs into the machine and gives
610cd5c6 247the user a normal shell on the remote machine.
248All communication with
bf740959 249the remote command or shell will be automatically encrypted.
250.Pp
251If a pseudo-terminal has been allocated (normal login session), the
df841692 252user may use the escape characters noted below.
bf740959 253.Pp
254If no pseudo tty has been allocated, the
255session is transparent and can be used to reliably transfer binary
610cd5c6 256data.
257On most systems, setting the escape character to
bf740959 258.Dq none
259will also make the session transparent even if a tty is used.
260.Pp
ce9c0b75 261The session terminates when the command or shell on the remote
e91c60f2 262machine exits and all X11 and TCP/IP connections have been closed.
bf740959 263The exit status of the remote program is returned as the exit status
264of
265.Nm ssh .
266.Pp
df841692 267.Ss Escape Characters
268.Pp
269When a pseudo terminal has been requested, ssh supports a number of functions
3730bb22 270through the use of an escape character.
df841692 271.Pp
272A single tilde character can be sent as
273.Ic ~~
5bef3c35 274or by following the tilde by a character other than those described below.
df841692 275The escape character must always follow a newline to be interpreted as
276special.
277The escape character can be changed in configuration files using the
278.Cm EscapeChar
3730bb22 279configuration directive or on the command line by the
df841692 280.Fl e
281option.
282.Pp
283The supported escapes (assuming the default
284.Ql ~ )
285are:
286.Bl -tag -width Ds
287.It Cm ~.
288Disconnect
289.It Cm ~^Z
290Background ssh
291.It Cm ~#
292List forwarded connections
293.It Cm ~&
294Background ssh at logout when waiting for forwarded connection / X11 sessions
da89cf4d 295to terminate (protocol version 1 only)
df841692 296.It Cm ~?
297Display a list of escape characters
298.It Cm ~R
67b964a1 299Request rekeying of the connection (only useful for SSH protocol version 2
300and if the peer supports it)
df841692 301.El
302.Pp
1d1ffb87 303.Ss X11 and TCP forwarding
304.Pp
6efa3d14 305If the
306.Cm ForwardX11
307variable is set to
308.Dq yes
309(or, see the description of the
310.Fl X
311and
312.Fl x
313options described later)
314and the user is using X11 (the
bf740959 315.Ev DISPLAY
316environment variable is set), the connection to the X11 display is
317automatically forwarded to the remote side in such a way that any X11
318programs started from the shell (or command) will go through the
319encrypted channel, and the connection to the real X server will be made
610cd5c6 320from the local machine.
321The user should not manually set
bf740959 322.Ev DISPLAY .
323Forwarding of X11 connections can be
324configured on the command line or in configuration files.
325.Pp
326The
f54651ce 327.Ev DISPLAY
bf740959 328value set by
329.Nm
330will point to the server machine, but with a display number greater
610cd5c6 331than zero.
332This is normal, and happens because
bf740959 333.Nm
334creates a
335.Dq proxy
336X server on the server machine for forwarding the
337connections over the encrypted channel.
338.Pp
339.Nm
340will also automatically set up Xauthority data on the server machine.
341For this purpose, it will generate a random authorization cookie,
342store it in Xauthority on the server, and verify that any forwarded
343connections carry this cookie and replace it by the real cookie when
610cd5c6 344the connection is opened.
345The real authentication cookie is never
bf740959 346sent to the server machine (and no cookies are sent in the plain).
347.Pp
348If the user is using an authentication agent, the connection to the agent
349is automatically forwarded to the remote side unless disabled on
491f5f7b 350the command line or in a configuration file.
bf740959 351.Pp
352Forwarding of arbitrary TCP/IP connections over the secure channel can
491f5f7b 353be specified either on the command line or in a configuration file.
610cd5c6 354One possible application of TCP/IP forwarding is a secure connection to an
e91c60f2 355electronic purse; another is going through firewalls.
bf740959 356.Pp
1d1ffb87 357.Ss Server authentication
358.Pp
bf740959 359.Nm
1d1ffb87 360automatically maintains and checks a database containing
610cd5c6 361identifications for all hosts it has ever been used with.
f49bc4f7 362Host keys are stored in
1d1ffb87 363.Pa $HOME/.ssh/known_hosts
610cd5c6 364in the user's home directory.
f49bc4f7 365Additionally, the file
5f4fdfae 366.Pa /etc/ssh_known_hosts
f49bc4f7 367is automatically checked for known hosts.
610cd5c6 368Any new hosts are automatically added to the user's file.
369If a host's identification
bf740959 370ever changes,
371.Nm
372warns about this and disables password authentication to prevent a
610cd5c6 373trojan horse from getting the user's password.
374Another purpose of
bf740959 375this mechanism is to prevent man-in-the-middle attacks which could
610cd5c6 376otherwise be used to circumvent the encryption.
377The
bf740959 378.Cm StrictHostKeyChecking
379option (see below) can be used to prevent logins to machines whose
380host key is not known or has changed.
fa08c86b 381.Pp
382The options are as follows:
bf740959 383.Bl -tag -width Ds
384.It Fl a
4fe2af09 385Disables forwarding of the authentication agent connection.
71276795 386.It Fl A
387Enables forwarding of the authentication agent connection.
388This can also be specified on a per-host basis in a configuration file.
3435f5a6 389.It Fl b Ar bind_address
390Specify the interface to transmit from on machines with multiple
391interfaces or aliased addresses.
bf740959 392.It Fl c Ar blowfish|3des
f54651ce 393Selects the cipher to use for encrypting the session.
bf740959 394.Ar 3des
610cd5c6 395is used by default.
f54651ce 396It is believed to be secure.
bf740959 397.Ar 3des
398(triple-des) is an encrypt-decrypt-encrypt triple with three different keys.
399It is presumably more secure than the
400.Ar des
a22aff1f 401cipher which is no longer fully supported in
d0c832f3 402.Nm ssh .
bf740959 403.Ar blowfish
404is a fast block cipher, it appears very secure and is much faster than
610cd5c6 405.Ar 3des .
9afadca8 406.It Fl c Ar cipher_spec
d0c832f3 407Additionally, for protocol version 2 a comma-separated list of ciphers can
94ec8c6b 408be specified in order of preference.
9afadca8 409See
410.Cm Ciphers
411for more information.
bf740959 412.It Fl e Ar ch|^ch|none
413Sets the escape character for sessions with a pty (default:
414.Ql ~ ) .
610cd5c6 415The escape character is only recognized at the beginning of a line.
416The escape character followed by a dot
bf740959 417.Pq Ql \&.
418closes the connection, followed
419by control-Z suspends the connection, and followed by itself sends the
610cd5c6 420escape character once.
421Setting the character to
bf740959 422.Dq none
423disables any escapes and makes the session fully transparent.
424.It Fl f
425Requests
426.Nm
610cd5c6 427to go to background just before command execution.
428This is useful if
bf740959 429.Nm
430is going to ask for passwords or passphrases, but the user
610cd5c6 431wants it in the background.
f54651ce 432This implies
bf740959 433.Fl n .
434The recommended way to start X11 programs at a remote site is with
435something like
436.Ic ssh -f host xterm .
7b2ea3a1 437.It Fl g
438Allows remote hosts to connect to local forwarded ports.
bf740959 439.It Fl i Ar identity_file
f54651ce 440Selects the file from which the identity (private key) for
fa08c86b 441RSA or DSA authentication is read.
f54651ce 442Default is
1d1ffb87 443.Pa $HOME/.ssh/identity
610cd5c6 444in the user's home directory.
445Identity files may also be specified on
446a per-host basis in the configuration file.
447It is possible to have multiple
bf740959 448.Fl i
449options (and multiple identities specified in
450configuration files).
bf740959 451.It Fl k
4fe2af09 452Disables forwarding of Kerberos tickets and AFS tokens.
453This may also be specified on a per-host basis in the configuration file.
bf740959 454.It Fl l Ar login_name
610cd5c6 455Specifies the user to log in as on the remote machine.
456This also may be specified on a per-host basis in the configuration file.
b2552997 457.It Fl m Ar mac_spec
458Additionally, for protocol version 2 a comma-separated list of MAC
459(message authentication code) algorithms can
460be specified in order of preference.
461See the
462.Cm MACs
463keyword for more information.
bf740959 464.It Fl n
465Redirects stdin from
466.Pa /dev/null
467(actually, prevents reading from stdin).
468This must be used when
469.Nm
610cd5c6 470is run in the background.
471A common trick is to use this to run X11 programs on a remote machine.
472For example,
bf740959 473.Ic ssh -n shadows.cs.hut.fi emacs &
474will start an emacs on shadows.cs.hut.fi, and the X11
475connection will be automatically forwarded over an encrypted channel.
476The
477.Nm
478program will be put in the background.
479(This does not work if
480.Nm
481needs to ask for a password or passphrase; see also the
482.Fl f
483option.)
0e73cc53 484.It Fl N
485Do not execute a remote command.
0b6fbf03 486This is useful if you just want to forward ports
0e73cc53 487(protocol version 2 only).
bf740959 488.It Fl o Ar option
489Can be used to give options in the format used in the config file.
490This is useful for specifying options for which there is no separate
610cd5c6 491command-line flag.
492The option has the same format as a line in the configuration file.
bf740959 493.It Fl p Ar port
610cd5c6 494Port to connect to on the remote host.
495This can be specified on a
bf740959 496per-host basis in the configuration file.
497.It Fl P
498Use a non-privileged port for outgoing connections.
499This can be used if your firewall does
500not permit connections from privileged ports.
95f1eccc 501Note that this option turns off
bf740959 502.Cm RhostsAuthentication
503and
6ffc9c88 504.Cm RhostsRSAAuthentication
505for older servers.
bf740959 506.It Fl q
610cd5c6 507Quiet mode.
508Causes all warning and diagnostic messages to be suppressed.
509Only fatal errors are displayed.
ae810de7 510.It Fl s
3730bb22 511May be used to request invocation of a subsystem on the remote system. Subsystems are a feature of the SSH2 protocol which facilitate the use
512of SSH as a secure transport for other applications (eg. sftp). The
ae810de7 513subsystem is specified as the remote command.
bf740959 514.It Fl t
610cd5c6 515Force pseudo-tty allocation.
4fe2af09 516This can be used to execute arbitrary
610cd5c6 517screen-based programs on a remote machine, which can be very useful,
518e.g., when implementing menu services.
8abcdba4 519Multiple
520.Fl t
521options force tty allocation, even if
522.Nm
523has no local tty.
0e73cc53 524.It Fl T
0b6fbf03 525Disable pseudo-tty allocation.
bf740959 526.It Fl v
610cd5c6 527Verbose mode.
528Causes
bf740959 529.Nm
610cd5c6 530to print debugging messages about its progress.
531This is helpful in
bf740959 532debugging connection, authentication, and configuration problems.
8abcdba4 533Multiple
534.Fl v
535options increases the verbosity.
94ec8c6b 536Maximum is 3.
bf740959 537.It Fl x
610cd5c6 538Disables X11 forwarding.
bf740959 539.It Fl X
540Enables X11 forwarding.
71276795 541This can also be specified on a per-host basis in a configuration file.
bf740959 542.It Fl C
543Requests compression of all data (including stdin, stdout, stderr, and
610cd5c6 544data for forwarded X11 and TCP/IP connections).
545The compression algorithm is the same used by
7b2ea3a1 546.Xr gzip 1 ,
547and the
bf740959 548.Dq level
549can be controlled by the
550.Cm CompressionLevel
610cd5c6 551option (see below).
552Compression is desirable on modem lines and other
bf740959 553slow connections, but will only slow down things on fast networks.
554The default value can be set on a host-by-host basis in the
555configuration files; see the
0aea6c59 556.Cm Compression
bf740959 557option below.
558.It Fl L Ar port:host:hostport
559Specifies that the given port on the local (client) host is to be
610cd5c6 560forwarded to the given host and port on the remote side.
561This works by allocating a socket to listen to
bf740959 562.Ar port
563on the local side, and whenever a connection is made to this port, the
564connection is forwarded over the secure channel, and a connection is
565made to
48e671d5 566.Ar host
567port
568.Ar hostport
610cd5c6 569from the remote machine.
570Port forwardings can also be specified in the configuration file.
571Only root can forward privileged ports.
48e671d5 572IPv6 addresses can be specified with an alternative syntax:
573.Ar port/host/hostport
bf740959 574.It Fl R Ar port:host:hostport
575Specifies that the given port on the remote (server) host is to be
610cd5c6 576forwarded to the given host and port on the local side.
577This works by allocating a socket to listen to
bf740959 578.Ar port
579on the remote side, and whenever a connection is made to this port, the
580connection is forwarded over the secure channel, and a connection is
581made to
48e671d5 582.Ar host
583port
584.Ar hostport
610cd5c6 585from the local machine.
586Port forwardings can also be specified in the configuration file.
587Privileged ports can be forwarded only when
bf740959 588logging in as root on the remote machine.
da89cf4d 589IPv6 addresses can be specified with an alternative syntax:
590.Ar port/host/hostport
9afadca8 591.It Fl 1
592Forces
593.Nm
594to try protocol version 1 only.
6ae2364d 595.It Fl 2
596Forces
597.Nm
1d1ffb87 598to try protocol version 2 only.
48e671d5 599.It Fl 4
600Forces
601.Nm
602to use IPv4 addresses only.
603.It Fl 6
604Forces
605.Nm
606to use IPv6 addresses only.
bf740959 607.El
608.Sh CONFIGURATION FILES
609.Nm
610obtains configuration data from the following sources (in this order):
611command line options, user's configuration file
612.Pq Pa $HOME/.ssh/config ,
613and system-wide configuration file
5f4fdfae 614.Pq Pa /etc/ssh_config .
bf740959 615For each parameter, the first obtained value
610cd5c6 616will be used.
617The configuration files contain sections bracketed by
618.Dq Host
619specifications, and that section is only applied for hosts that
620match one of the patterns given in the specification.
621The matched host name is the one given on the command line.
bf740959 622.Pp
623Since the first obtained value for each parameter is used, more
624host-specific declarations should be given near the beginning of the
625file, and general defaults at the end.
626.Pp
627The configuration file has the following format:
628.Pp
629Empty lines and lines starting with
630.Ql #
631are comments.
632.Pp
633Otherwise a line is of the format
634.Dq keyword arguments .
635The possible
636keywords and their meanings are as follows (note that the
637configuration files are case-sensitive):
638.Bl -tag -width Ds
639.It Cm Host
640Restricts the following declarations (up to the next
641.Cm Host
642keyword) to be only for those hosts that match one of the patterns
643given after the keyword.
644.Ql \&*
645and
646.Ql ?
647can be used as wildcards in the
610cd5c6 648patterns.
649A single
bf740959 650.Ql \&*
651as a pattern can be used to provide global
610cd5c6 652defaults for all hosts.
653The host is the
bf740959 654.Ar hostname
655argument given on the command line (i.e., the name is not converted to
656a canonicalized host name before matching).
657.It Cm AFSTokenPassing
4fe2af09 658Specifies whether to pass AFS tokens to remote host.
659The argument to this keyword must be
bf740959 660.Dq yes
661or
662.Dq no .
da89cf4d 663This option applies to protocol version 1 only.
bf740959 664.It Cm BatchMode
665If set to
666.Dq yes ,
610cd5c6 667passphrase/password querying will be disabled.
668This option is useful in scripts and other batch jobs where you have no
669user to supply the password.
670The argument must be
bf740959 671.Dq yes
672or
673.Dq no .
01ce749f 674The default is
675.Dq no .
3435f5a6 676.It Cm BindAddress
677Specify the interface to transmit from on machines with multiple
678interfaces or aliased addresses.
679Note that this option does not work if
680.Cm UsePrivilegedPort
681is set to
682.Dq yes .
7b2ea3a1 683.It Cm CheckHostIP
684If this flag is set to
685.Dq yes ,
01ce749f 686ssh will additionally check the host IP address in the
7b2ea3a1 687.Pa known_hosts
4fe2af09 688file.
689This allows ssh to detect if a host key changed due to DNS spoofing.
7b2ea3a1 690If the option is set to
691.Dq no ,
692the check will not be executed.
01ce749f 693The default is
694.Dq yes .
bf740959 695.It Cm Cipher
33de75a3 696Specifies the cipher to use for encrypting the session
a22aff1f 697in protocol version 1.
610cd5c6 698Currently,
3730bb22 699.Dq blowfish
bf740959 700and
701.Dq 3des
610cd5c6 702are supported.
703The default is
bf740959 704.Dq 3des .
f54651ce 705.It Cm Ciphers
706Specifies the ciphers allowed for protocol version 2
707in order of preference.
708Multiple ciphers must be comma-separated.
709The default is
9afadca8 710.Pp
711.Bd -literal
f2ba0775 712 ``aes128-cbc,3des-cbc,blowfish-cbc,cast128-cbc,arcfour,
da89cf4d 713 aes192-cbc,aes256-cbc''
9afadca8 714.Ed
bf740959 715.It Cm Compression
610cd5c6 716Specifies whether to use compression.
717The argument must be
bf740959 718.Dq yes
719or
720.Dq no .
01ce749f 721The default is
722.Dq no .
bf740959 723.It Cm CompressionLevel
01ce749f 724Specifies the compression level to use if compression is enabled.
610cd5c6 725The argument must be an integer from 1 (fast) to 9 (slow, best).
726The default level is 6, which is good for most applications.
727The meaning of the values is the same as in
7b2ea3a1 728.Xr gzip 1 .
da89cf4d 729Note that this option applies to protocol version 1 only.
bf740959 730.It Cm ConnectionAttempts
731Specifies the number of tries (one per second) to make before falling
610cd5c6 732back to rsh or exiting.
733The argument must be an integer.
734This may be useful in scripts if the connection sometimes fails.
ce773142 735The default is 1.
bf740959 736.It Cm EscapeChar
737Sets the escape character (default:
738.Ql ~ ) .
739The escape character can also
610cd5c6 740be set on the command line.
741The argument should be a single character,
bf740959 742.Ql ^
743followed by a letter, or
744.Dq none
745to disable the escape
746character entirely (making the connection transparent for binary
747data).
f54651ce 748.It Cm FallBackToRsh
bf740959 749Specifies that if connecting via
750.Nm
751fails due to a connection refused error (there is no
752.Xr sshd 8
f54651ce 753listening on the remote host),
bf740959 754.Xr rsh 1
755should automatically be used instead (after a suitable warning about
610cd5c6 756the session being unencrypted).
757The argument must be
bf740959 758.Dq yes
759or
760.Dq no .
01ce749f 761The default is
762.Dq no .
bf740959 763.It Cm ForwardAgent
764Specifies whether the connection to the authentication agent (if any)
610cd5c6 765will be forwarded to the remote machine.
766The argument must be
bf740959 767.Dq yes
768or
769.Dq no .
71276795 770The default is
771.Dq no .
bf740959 772.It Cm ForwardX11
773Specifies whether X11 connections will be automatically redirected
f54651ce 774over the secure channel and
bf740959 775.Ev DISPLAY
610cd5c6 776set.
f54651ce 777The argument must be
bf740959 778.Dq yes
779or
780.Dq no .
c8d54615 781The default is
782.Dq no .
bf740959 783.It Cm GatewayPorts
784Specifies whether remote hosts are allowed to connect to local
785forwarded ports.
786The argument must be
787.Dq yes
788or
789.Dq no .
790The default is
791.Dq no .
792.It Cm GlobalKnownHostsFile
f49bc4f7 793Specifies a file to use for the global
a5df12e9 794host key database instead of
5f4fdfae 795.Pa /etc/ssh_known_hosts .
da89cf4d 796.It Cm HostbasedAuthentication
797Specifies whether to try rhosts based authentication with public key
798authentication.
799The argument must be
800.Dq yes
801or
802.Dq no .
803The default is
3398dda9 804.Dq no .
da89cf4d 805This option applies to protocol version 2 only and
806is similar to
807.Cm RhostsRSAAuthentication .
e961a8f9 808.It Cm HostKeyAlgorithms
98143cfc 809Specifies the protocol version 2 host key algorithms
e961a8f9 810that the client wants to use in order of preference.
811The default for this option is:
812.Dq ssh-rsa,ssh-dss
da89cf4d 813.It Cm HostKeyAlias
814Specifies an alias that should be used instead of the
815real host name when looking up or saving the host key
816in the host key database files.
817This option is useful for tunneling ssh connections
818or if you have multiple servers running on a single host.
bf740959 819.It Cm HostName
610cd5c6 820Specifies the real host name to log into.
821This can be used to specify nicknames or abbreviations for hosts.
822Default is the name given on the command line.
823Numeric IP addresses are also permitted (both on the command line and in
bf740959 824.Cm HostName
825specifications).
826.It Cm IdentityFile
da89cf4d 827Specifies the file from which the user's RSA or DSA authentication identity
bf740959 828is read (default
1d1ffb87 829.Pa $HOME/.ssh/identity
bf740959 830in the user's home directory).
831Additionally, any identities represented by the authentication agent
610cd5c6 832will be used for authentication.
833The file name may use the tilde
834syntax to refer to a user's home directory.
835It is possible to have
bf740959 836multiple identity files specified in configuration files; all these
837identities will be tried in sequence.
838.It Cm KeepAlive
839Specifies whether the system should send keepalive messages to the
610cd5c6 840other side.
841If they are sent, death of the connection or crash of one
842of the machines will be properly noticed.
843However, this means that
bf740959 844connections will die if the route is down temporarily, and some people
4fe2af09 845find it annoying.
bf740959 846.Pp
847The default is
848.Dq yes
849(to send keepalives), and the client will notice
610cd5c6 850if the network goes down or the remote host dies.
851This is important in scripts, and many users want it too.
bf740959 852.Pp
853To disable keepalives, the value should be set to
854.Dq no
855in both the server and the client configuration files.
856.It Cm KerberosAuthentication
4fe2af09 857Specifies whether Kerberos authentication will be used.
858The argument to this keyword must be
bf740959 859.Dq yes
860or
861.Dq no .
862.It Cm KerberosTgtPassing
4fe2af09 863Specifies whether a Kerberos TGT will be forwarded to the server.
864This will only work if the Kerberos server is actually an AFS kaserver.
865The argument to this keyword must be
bf740959 866.Dq yes
867or
868.Dq no .
869.It Cm LocalForward
870Specifies that a TCP/IP port on the local machine be forwarded over
610cd5c6 871the secure channel to given host:port from the remote machine.
872The first argument must be a port number, and the second must be
873host:port.
874Multiple forwardings may be specified, and additional
875forwardings can be given on the command line.
876Only the superuser can forward privileged ports.
6a17f9c2 877.It Cm LogLevel
878Gives the verbosity level that is used when logging messages from
879.Nm ssh .
880The possible values are:
59c97189 881QUIET, FATAL, ERROR, INFO, VERBOSE and DEBUG.
882The default is INFO.
b2552997 883.It Cm MACs
3730bb22 884Specifies the MAC (message authentication code) algorithms
b2552997 885in order of preference.
886The MAC algorithm is used in protocol version 2
887for data integrity protection.
888Multiple algorithms must be comma-separated.
889The default is
47bf6266 890.Dq hmac-md5,hmac-sha1,hmac-ripemd160,hmac-sha1-96,hmac-md5-96 .
bf740959 891.It Cm NumberOfPasswordPrompts
4fe2af09 892Specifies the number of password prompts before giving up.
893The argument to this keyword must be an integer.
894Default is 3.
7b2ea3a1 895.It Cm PasswordAuthentication
610cd5c6 896Specifies whether to use password authentication.
897The argument to this keyword must be
7b2ea3a1 898.Dq yes
899or
900.Dq no .
01ce749f 901The default is
902.Dq yes .
bf740959 903.It Cm Port
610cd5c6 904Specifies the port number to connect on the remote host.
905Default is 22.
babd91d4 906.It Cm PreferredAuthentications
3730bb22 907Specifies the order in which the client should try protocol 2
908authentication methods. This allows a client to prefer one method (e.g.
babd91d4 909.Cm keyboard-interactive )
910over another method (e.g.
911.Cm password )
912The default for this option is:
29c440a0 913.Dq hostbased,publickey,keyboard-interactive,password
f54651ce 914.It Cm Protocol
915Specifies the protocol versions
916.Nm
917should support in order of preference.
918The possible values are
919.Dq 1
920and
921.Dq 2 .
922Multiple versions must be comma-separated.
923The default is
b4a19d21 924.Dq 2,1 .
1d1ffb87 925This means that
926.Nm
b4a19d21 927tries version 2 and falls back to version 1
928if version 2 is not available.
bf740959 929.It Cm ProxyCommand
610cd5c6 930Specifies the command to use to connect to the server.
931The command
932string extends to the end of the line, and is executed with
933.Pa /bin/sh .
934In the command string,
935.Ql %h
936will be substituted by the host name to
937connect and
938.Ql %p
939by the port.
940The command can be basically anything,
941and should read from its standard input and write to its standard output.
942It should eventually connect an
bf740959 943.Xr sshd 8
944server running on some machine, or execute
945.Ic sshd -i
610cd5c6 946somewhere.
947Host key management will be done using the
bf740959 948HostName of the host being connected (defaulting to the name typed by
949the user).
57112b5a 950Note that
951.Cm CheckHostIP
952is not available for connects with a proxy command.
bf740959 953.Pp
da89cf4d 954.It Cm PubkeyAuthentication
955Specifies whether to try public key authentication.
956The argument to this keyword must be
957.Dq yes
958or
959.Dq no .
960The default is
961.Dq yes .
962This option applies to protocol version 2 only.
bf740959 963.It Cm RemoteForward
964Specifies that a TCP/IP port on the remote machine be forwarded over
610cd5c6 965the secure channel to given host:port from the local machine.
966The first argument must be a port number, and the second must be
967host:port.
968Multiple forwardings may be specified, and additional
969forwardings can be given on the command line.
970Only the superuser can forward privileged ports.
bf740959 971.It Cm RhostsAuthentication
610cd5c6 972Specifies whether to try rhosts based authentication.
973Note that this
bf740959 974declaration only affects the client side and has no effect whatsoever
610cd5c6 975on security.
976Disabling rhosts authentication may reduce
bf740959 977authentication time on slow connections when rhosts authentication is
610cd5c6 978not used.
979Most servers do not permit RhostsAuthentication because it
3730bb22 980is not secure (see
a5a2da3b 981.Cm RhostsRSAAuthentication ) .
610cd5c6 982The argument to this keyword must be
bf740959 983.Dq yes
984or
985.Dq no .
01ce749f 986The default is
987.Dq yes .
da89cf4d 988This option applies to protocol version 1 only.
bf740959 989.It Cm RhostsRSAAuthentication
990Specifies whether to try rhosts based authentication with RSA host
610cd5c6 991authentication.
610cd5c6 992The argument must be
bf740959 993.Dq yes
994or
995.Dq no .
01ce749f 996The default is
997.Dq yes .
da89cf4d 998This option applies to protocol version 1 only.
bf740959 999.It Cm RSAAuthentication
610cd5c6 1000Specifies whether to try RSA authentication.
1001The argument to this keyword must be
bf740959 1002.Dq yes
1003or
1004.Dq no .
1005RSA authentication will only be
1006attempted if the identity file exists, or an authentication agent is
1007running.
01ce749f 1008The default is
1009.Dq yes .
1d1ffb87 1010Note that this option applies to protocol version 1 only.
61e96248 1011.It Cm ChallengeResponseAuthentication
1012Specifies whether to use challenge response authentication.
610cd5c6 1013The argument to this keyword must be
5260325f 1014.Dq yes
1015or
1016.Dq no .
1017The default is
10a2cbef 1018.Dq yes .
bf740959 1019.It Cm StrictHostKeyChecking
1020If this flag is set to
f54651ce 1021.Dq yes ,
bf740959 1022.Nm
a877488a 1023will never automatically add host keys to the
bf740959 1024.Pa $HOME/.ssh/known_hosts
f49bc4f7 1025file, and refuses to connect to hosts whose host key has changed.
610cd5c6 1026This provides maximum protection against trojan horse attacks.
1027However, it can be somewhat annoying if you don't have good
5f4fdfae 1028.Pa /etc/ssh_known_hosts
bf740959 1029files installed and frequently
a877488a 1030connect to new hosts.
1031This option forces the user to manually
1032add all new hosts.
1033If this flag is set to
1034.Dq no ,
1035.Nm
1036will automatically add new host keys to the
1037user known hosts files.
1038If this flag is set to
1039.Dq ask ,
1040new host keys
1041will be added to the user known host files only after the user
1042has confirmed that is what they really want to do, and
1043.Nm
1044will refuse to connect to hosts whose host key has changed.
610cd5c6 1045The host keys of
a877488a 1046known hosts will be verified automatically in all cases.
610cd5c6 1047The argument must be
a877488a 1048.Dq yes ,
1049.Dq no
bf740959 1050or
a877488a 1051.Dq ask .
1052The default is
1053.Dq ask .
bf740959 1054.It Cm UsePrivilegedPort
1055Specifies whether to use a privileged port for outgoing connections.
1056The argument must be
1057.Dq yes
1058or
1059.Dq no .
1060The default is
d5ebca2b 1061.Dq no .
da89cf4d 1062Note that you need to set this option to
1063.Dq yes
1064if you want to use
bf740959 1065.Cm RhostsAuthentication
1066and
6ffc9c88 1067.Cm RhostsRSAAuthentication
da89cf4d 1068with older servers.
7b2ea3a1 1069.It Cm User
610cd5c6 1070Specifies the user to log in as.
1071This can be useful if you have a different user name on different machines.
1072This saves the trouble of
7b2ea3a1 1073having to remember to give the user name on the command line.
1074.It Cm UserKnownHostsFile
f49bc4f7 1075Specifies a file to use for the user
a5df12e9 1076host key database instead of
7b2ea3a1 1077.Pa $HOME/.ssh/known_hosts .
bf740959 1078.It Cm UseRsh
610cd5c6 1079Specifies that rlogin/rsh should be used for this host.
1080It is possible that the host does not at all support the
bf740959 1081.Nm
610cd5c6 1082protocol.
1083This causes
bf740959 1084.Nm
610cd5c6 1085to immediately execute
bf740959 1086.Xr rsh 1 .
1087All other options (except
1088.Cm HostName )
610cd5c6 1089are ignored if this has been specified.
1090The argument must be
bf740959 1091.Dq yes
1092or
1093.Dq no .
fa649821 1094.It Cm XAuthLocation
1095Specifies the location of the
1096.Xr xauth 1
1097program.
1098The default is
1099.Pa /usr/X11R6/bin/xauth .
b5e300c2 1100.El
bf740959 1101.Sh ENVIRONMENT
1102.Nm
1103will normally set the following environment variables:
1104.Bl -tag -width Ds
1105.It Ev DISPLAY
1106The
1107.Ev DISPLAY
610cd5c6 1108variable indicates the location of the X11 server.
f54651ce 1109It is automatically set by
bf740959 1110.Nm
1111to point to a value of the form
1112.Dq hostname:n
1113where hostname indicates
610cd5c6 1114the host where the shell runs, and n is an integer >= 1.
1115.Nm
1116uses this special value to forward X11 connections over the secure
1117channel.
da89cf4d 1118The user should normally not set
1119.Ev DISPLAY
1120explicitly, as that
bf740959 1121will render the X11 connection insecure (and will require the user to
1122manually copy any required authorization cookies).
1123.It Ev HOME
1124Set to the path of the user's home directory.
1125.It Ev LOGNAME
1126Synonym for
1127.Ev USER ;
1128set for compatibility with systems that use this variable.
1129.It Ev MAIL
1130Set to point the user's mailbox.
610cd5c6 1131.It Ev PATH
bf740959 1132Set to the default
1133.Ev PATH ,
1134as specified when compiling
1135.Nm ssh .
3474b2b4 1136.It Ev SSH_ASKPASS
1137If
1138.Nm
1139needs a passphrase, it will read the passphrase from the current
1140terminal if it was run from a terminal.
1141If
1142.Nm
1143does not have a terminal associated with it but
1144.Ev DISPLAY
1145and
1146.Ev SSH_ASKPASS
1147are set, it will execute the program specified by
1148.Ev SSH_ASKPASS
1149and open an X11 window to read the passphrase.
1150This is particularly useful when calling
1151.Nm
1152from a
1153.Pa .Xsession
1154or related script.
1155(Note that on some machines it
1156may be necessary to redirect the input from
1157.Pa /dev/null
1158to make this work.)
bf740959 1159.It Ev SSH_AUTH_SOCK
1160indicates the path of a unix-domain socket used to communicate with the
1161agent.
1162.It Ev SSH_CLIENT
610cd5c6 1163Identifies the client end of the connection.
1164The variable contains
bf740959 1165three space-separated values: client ip-address, client port number,
1166and server port number.
8abcdba4 1167.It Ev SSH_ORIGINAL_COMMAND
1168The variable contains the original command line if a forced command
1169is executed.
1170It can be used to extract the original arguments.
bf740959 1171.It Ev SSH_TTY
1172This is set to the name of the tty (path to the device) associated
610cd5c6 1173with the current shell or command.
1174If the current session has no tty,
bf740959 1175this variable is not set.
1176.It Ev TZ
1177The timezone variable is set to indicate the present timezone if it
c345cf9d 1178was set when the daemon was started (i.e., the daemon passes the value
bf740959 1179on to new connections).
1180.It Ev USER
1181Set to the name of the user logging in.
1182.El
1183.Pp
f54651ce 1184Additionally,
bf740959 1185.Nm
f54651ce 1186reads
1187.Pa $HOME/.ssh/environment ,
bf740959 1188and adds lines of the format
1189.Dq VARNAME=value
1190to the environment.
1191.Sh FILES
c8d54615 1192.Bl -tag -width Ds
f49bc4f7 1193.It Pa $HOME/.ssh/known_hosts
bf740959 1194Records host keys for all hosts the user has logged into (that are not
1195in
f49bc4f7 1196.Pa /etc/ssh_known_hosts .
bf740959 1197See
1198.Xr sshd 8 .
c0ecc314 1199.It Pa $HOME/.ssh/identity, $HOME/.ssh/id_dsa, $HOME/.ssh/id_rsa
1200Contains the authentication identity of the user.
1201They are for protocol 1 RSA, protocol 2 DSA, and protocol 2 RSA, respectively.
1d1ffb87 1202These files
1203contain sensitive data and should be readable by the user but not
bf740959 1204accessible by others (read/write/execute).
1205Note that
1206.Nm
1d1ffb87 1207ignores a private key file if it is accessible by others.
bf740959 1208It is possible to specify a passphrase when
1209generating the key; the passphrase will be used to encrypt the
1210sensitive part of this file using 3DES.
c0ecc314 1211.It Pa $HOME/.ssh/identity.pub, $HOME/.ssh/id_dsa.pub, $HOME/.ssh/id_rsa.pub
bf740959 1212Contains the public key for authentication (public part of the
610cd5c6 1213identity file in human-readable form).
1d1ffb87 1214The contents of the
1215.Pa $HOME/.ssh/identity.pub
1216file should be added to
bf740959 1217.Pa $HOME/.ssh/authorized_keys
1218on all machines
c0ecc314 1219where you wish to log in using protocol version 1 RSA authentication.
1d1ffb87 1220The contents of the
1221.Pa $HOME/.ssh/id_dsa.pub
c0ecc314 1222and
1223.Pa $HOME/.ssh/id_rsa.pub
1d1ffb87 1224file should be added to
96a7b0cc 1225.Pa $HOME/.ssh/authorized_keys
1d1ffb87 1226on all machines
c0ecc314 1227where you wish to log in using protocol version 2 DSA/RSA authentication.
1d1ffb87 1228These files are not
610cd5c6 1229sensitive and can (but need not) be readable by anyone.
1d1ffb87 1230These files are
c44559d2 1231never used automatically and are not necessary; they are only provided for
bf740959 1232the convenience of the user.
1233.It Pa $HOME/.ssh/config
610cd5c6 1234This is the per-user configuration file.
1235The format of this file is described above.
1236This file is used by the
bf740959 1237.Nm
610cd5c6 1238client.
1239This file does not usually contain any sensitive information,
bf740959 1240but the recommended permissions are read/write for the user, and not
1241accessible by others.
1242.It Pa $HOME/.ssh/authorized_keys
96a7b0cc 1243Lists the public keys (RSA/DSA) that can be used for logging in as this user.
610cd5c6 1244The format of this file is described in the
bf740959 1245.Xr sshd 8
610cd5c6 1246manual page.
f49bc4f7 1247In the simplest form the format is the same as the .pub
1248identity files.
1d1ffb87 1249This file is not highly sensitive, but the recommended
1250permissions are read/write for the user, and not accessible by others.
f49bc4f7 1251.It Pa /etc/ssh_known_hosts
610cd5c6 1252Systemwide list of known host keys.
f49bc4f7 1253This file should be prepared by the
bf740959 1254system administrator to contain the public host keys of all machines in the
610cd5c6 1255organization.
1256This file should be world-readable.
1257This file contains
bf740959 1258public keys, one per line, in the following format (fields separated
f49bc4f7 1259by spaces): system name, public key and optional comment field.
610cd5c6 1260When different names are used
bf740959 1261for the same machine, all such names should be listed, separated by
610cd5c6 1262commas.
1263The format is described on the
bf740959 1264.Xr sshd 8
1265manual page.
1266.Pp
1267The canonical system name (as returned by name servers) is used by
1268.Xr sshd 8
1269to verify the client host when logging in; other names are needed because
1270.Nm
1271does not convert the user-supplied name to a canonical name before
1272checking the key, because someone with access to the name servers
1273would then be able to fool host authentication.
5f4fdfae 1274.It Pa /etc/ssh_config
610cd5c6 1275Systemwide configuration file.
1276This file provides defaults for those
bf740959 1277values that are not specified in the user's configuration file, and
610cd5c6 1278for those users who do not have a configuration file.
1279This file must be world-readable.
bf740959 1280.It Pa $HOME/.rhosts
1281This file is used in
1282.Pa \&.rhosts
1283authentication to list the
610cd5c6 1284host/user pairs that are permitted to log in.
1285(Note that this file is
bf740959 1286also used by rlogin and rsh, which makes using this file insecure.)
1287Each line of the file contains a host name (in the canonical form
1288returned by name servers), and then a user name on that host,
610cd5c6 1289separated by a space.
e91c60f2 1290On some machines this file may need to be
bf740959 1291world-readable if the user's home directory is on a NFS partition,
1292because
1293.Xr sshd 8
610cd5c6 1294reads it as root.
1295Additionally, this file must be owned by the user,
1296and must not have write permissions for anyone else.
1297The recommended
bf740959 1298permission for most machines is read/write for the user, and not
1299accessible by others.
1300.Pp
1301Note that by default
1302.Xr sshd 8
1303will be installed so that it requires successful RSA host
610cd5c6 1304authentication before permitting \s+2.\s0rhosts authentication.
1305If your server machine does not have the client's host key in
5f4fdfae 1306.Pa /etc/ssh_known_hosts ,
bf740959 1307you can store it in
1308.Pa $HOME/.ssh/known_hosts .
1309The easiest way to do this is to
1310connect back to the client from the server machine using ssh; this
1d1ffb87 1311will automatically add the host key to
bf740959 1312.Pa $HOME/.ssh/known_hosts .
1313.It Pa $HOME/.shosts
1314This file is used exactly the same way as
1315.Pa \&.rhosts .
1316The purpose for
1317having this file is to be able to use rhosts authentication with
1318.Nm
1319without permitting login with
1320.Xr rlogin 1
1321or
1322.Xr rsh 1 .
1323.It Pa /etc/hosts.equiv
1324This file is used during
610cd5c6 1325.Pa \&.rhosts authentication.
1326It contains
bf740959 1327canonical hosts names, one per line (the full format is described on
1328the
1329.Xr sshd 8
610cd5c6 1330manual page).
1331If the client host is found in this file, login is
bf740959 1332automatically permitted provided client and server user names are the
610cd5c6 1333same.
1334Additionally, successful RSA host authentication is normally
1335required.
1336This file should only be writable by root.
5f4fdfae 1337.It Pa /etc/shosts.equiv
f54651ce 1338This file is processed exactly as
bf740959 1339.Pa /etc/hosts.equiv .
1340This file may be useful to permit logins using
1341.Nm
1342but not using rsh/rlogin.
5f4fdfae 1343.It Pa /etc/sshrc
bf740959 1344Commands in this file are executed by
1345.Nm
1346when the user logs in just before the user's shell (or command) is started.
1347See the
1348.Xr sshd 8
1349manual page for more information.
1350.It Pa $HOME/.ssh/rc
1351Commands in this file are executed by
1352.Nm
1353when the user logs in just before the user's shell (or command) is
1354started.
f54651ce 1355See the
bf740959 1356.Xr sshd 8
1357manual page for more information.
83b7f649 1358.It Pa $HOME/.ssh/environment
1359Contains additional definitions for environment variables, see section
1360.Sx ENVIRONMENT
1361above.
b5e300c2 1362.El
fa08c86b 1363.Sh AUTHORS
5fb622e4 1364OpenSSH is a derivative of the original and free
1365ssh 1.2.12 release by Tatu Ylonen.
1366Aaron Campbell, Bob Beck, Markus Friedl, Niels Provos,
1367Theo de Raadt and Dug Song
1368removed many bugs, re-added newer features and
1369created OpenSSH.
1370Markus Friedl contributed the support for SSH
1371protocol versions 1.5 and 2.0.
bf740959 1372.Sh SEE ALSO
1373.Xr rlogin 1 ,
1374.Xr rsh 1 ,
1375.Xr scp 1 ,
61e96248 1376.Xr sftp 1 ,
bf740959 1377.Xr ssh-add 1 ,
1378.Xr ssh-agent 1 ,
1379.Xr ssh-keygen 1 ,
1380.Xr telnet 1 ,
9afadca8 1381.Xr sshd 8
2cad6cef 1382.Rs
1383.%A T. Ylonen
1384.%A T. Kivinen
1385.%A M. Saarinen
1386.%A T. Rinne
1387.%A S. Lehtinen
1388.%T "SSH Protocol Architecture"
1389.%N draft-ietf-secsh-architecture-07.txt
1390.%D January 2001
1391.%O work in progress material
1392.Re
This page took 0.378869 seconds and 5 git commands to generate.