blob: dc177c8ba47fda934f3f33c67f4b8156777d192e [file] [log] [blame]
Damien Miller32aa1441999-10-29 09:15:49 +10001.\" -*- nroff -*-
2.\"
Damien Miller32aa1441999-10-29 09:15:49 +10003.\" Author: Tatu Ylonen <ylo@cs.hut.fi>
Damien Miller32aa1441999-10-29 09:15:49 +10004.\" Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5.\" All rights reserved
6.\"
Damien Millere4340be2000-09-16 13:29:08 +11007.\" 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".
Damien Miller32aa1441999-10-29 09:15:49 +100012.\"
Damien Millere4340be2000-09-16 13:29:08 +110013.\" Copyright (c) 1999,2000 Markus Friedl. All rights reserved.
14.\" Copyright (c) 1999 Aaron Campbell. All rights reserved.
15.\" Copyright (c) 1999 Theo de Raadt. All rights reserved.
16.\"
17.\" Redistribution and use in source and binary forms, with or without
18.\" modification, are permitted provided that the following conditions
19.\" are met:
20.\" 1. Redistributions of source code must retain the above copyright
21.\" notice, this list of conditions and the following disclaimer.
22.\" 2. Redistributions in binary form must reproduce the above copyright
23.\" notice, this list of conditions and the following disclaimer in the
24.\" documentation and/or other materials provided with the distribution.
25.\"
26.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
27.\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
28.\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
29.\" IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
30.\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
31.\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32.\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33.\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
35.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Damien Miller32aa1441999-10-29 09:15:49 +100036.\"
Ben Lindstrom5ab6ae12001-02-10 22:08:03 +000037.\" $OpenBSD: ssh.1,v 1.90 2001/02/10 16:03:29 markus Exp $
Damien Miller32aa1441999-10-29 09:15:49 +100038.Dd September 25, 1999
39.Dt SSH 1
40.Os
41.Sh NAME
42.Nm ssh
43.Nd OpenSSH secure shell client (remote login program)
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
Ben Lindstrom5ab6ae12001-02-10 22:08:03 +000051.Op Fl afgknqstvxACNPTX1246
Damien Miller30c3d422000-05-09 11:02:59 +100052.Op Fl c Ar cipher_spec
Damien Miller32aa1441999-10-29 09:15:49 +100053.Op Fl e Ar escape_char
54.Op Fl i Ar identity_file
55.Op Fl l Ar login_name
56.Op Fl o Ar option
57.Op Fl p Ar port
58.Oo Fl L Xo
59.Sm off
Damien Miller32aa1441999-10-29 09:15:49 +100060.Ar port :
Damien Miller396691a2000-01-20 22:44:08 +110061.Ar host :
Damien Miller32aa1441999-10-29 09:15:49 +100062.Ar hostport
63.Sm on
64.Xc
65.Oc
66.Oo Fl R Xo
67.Sm off
Damien Miller32aa1441999-10-29 09:15:49 +100068.Ar port :
Damien Miller396691a2000-01-20 22:44:08 +110069.Ar host :
Damien Miller32aa1441999-10-29 09:15:49 +100070.Ar hostport
71.Sm on
72.Xc
73.Oc
74.Op Ar hostname | user@hostname
75.Op Ar command
Damien Miller22c77262000-04-13 12:26:34 +100076.Sh DESCRIPTION
Damien Miller32aa1441999-10-29 09:15:49 +100077.Nm
78(Secure Shell) is a program for logging into a remote machine and for
Damien Miller7684ee12000-03-17 23:40:15 +110079executing commands on a remote machine.
80It is intended to replace
Damien Miller32aa1441999-10-29 09:15:49 +100081rlogin and rsh, and provide secure encrypted communications between
Damien Miller7684ee12000-03-17 23:40:15 +110082two untrusted hosts over an insecure network.
83X11 connections and
Damien Miller32aa1441999-10-29 09:15:49 +100084arbitrary TCP/IP ports can also be forwarded over the secure channel.
85.Pp
86.Nm
Damien Miller22c77262000-04-13 12:26:34 +100087connects and logs into the specified
Damien Miller32aa1441999-10-29 09:15:49 +100088.Ar hostname .
89The user must prove
Damien Millere247cc42000-05-07 12:03:14 +100090his/her identity to the remote machine using one of several methods
91depending on the protocol version used:
92.Pp
93.Ss SSH protocol version 1
Damien Miller32aa1441999-10-29 09:15:49 +100094.Pp
95First, if the machine the user logs in from is listed in
96.Pa /etc/hosts.equiv
97or
Damien Miller886c63a2000-01-20 23:13:36 +110098.Pa /etc/shosts.equiv
Damien Miller32aa1441999-10-29 09:15:49 +100099on the remote machine, and the user names are
100the same on both sides, the user is immediately permitted to log in.
Damien Miller22c77262000-04-13 12:26:34 +1000101Second, if
Damien Miller32aa1441999-10-29 09:15:49 +1000102.Pa \&.rhosts
103or
104.Pa \&.shosts
105exists in the user's home directory on the
106remote machine and contains a line containing the name of the client
107machine and the name of the user on that machine, the user is
Damien Miller7684ee12000-03-17 23:40:15 +1100108permitted to log in.
109This form of authentication alone is normally not
Damien Miller32aa1441999-10-29 09:15:49 +1000110allowed by the server because it is not secure.
111.Pp
112The second (and primary) authentication method is the
113.Pa rhosts
114or
115.Pa hosts.equiv
Damien Miller7684ee12000-03-17 23:40:15 +1100116method combined with RSA-based host authentication.
117It means that if the login would be permitted by
Damien Millere247cc42000-05-07 12:03:14 +1000118.Pa $HOME/.rhosts ,
119.Pa $HOME/.shosts ,
Damien Miller32aa1441999-10-29 09:15:49 +1000120.Pa /etc/hosts.equiv ,
121or
Damien Miller886c63a2000-01-20 23:13:36 +1100122.Pa /etc/shosts.equiv ,
Damien Miller32aa1441999-10-29 09:15:49 +1000123and if additionally the server can verify the client's
Damien Miller22c77262000-04-13 12:26:34 +1000124host key (see
Damien Miller886c63a2000-01-20 23:13:36 +1100125.Pa /etc/ssh_known_hosts
Damien Miller33e511e1999-11-11 11:43:13 +1100126and
127.Pa $HOME/.ssh/known_hosts
Damien Miller32aa1441999-10-29 09:15:49 +1000128in the
129.Sx FILES
Damien Miller7684ee12000-03-17 23:40:15 +1100130section), only then login is permitted.
131This authentication method closes security holes due to IP
132spoofing, DNS spoofing and routing spoofing.
133[Note to the administrator:
Damien Miller32aa1441999-10-29 09:15:49 +1000134.Pa /etc/hosts.equiv ,
Damien Millere247cc42000-05-07 12:03:14 +1000135.Pa $HOME/.rhosts ,
Damien Miller32aa1441999-10-29 09:15:49 +1000136and the rlogin/rsh protocol in general, are inherently insecure and should be
137disabled if security is desired.]
138.Pp
Damien Miller22c77262000-04-13 12:26:34 +1000139As a third authentication method,
Damien Miller32aa1441999-10-29 09:15:49 +1000140.Nm
141supports RSA based authentication.
142The scheme is based on public-key cryptography: there are cryptosystems
143where encryption and decryption are done using separate keys, and it
144is not possible to derive the decryption key from the encryption key.
Damien Miller7684ee12000-03-17 23:40:15 +1100145RSA is one such system.
Damien Miller22c77262000-04-13 12:26:34 +1000146The idea is that each user creates a public/private
Damien Miller7684ee12000-03-17 23:40:15 +1100147key pair for authentication purposes.
148The server knows the public key, and only the user knows the private key.
Damien Miller22c77262000-04-13 12:26:34 +1000149The file
Damien Miller32aa1441999-10-29 09:15:49 +1000150.Pa $HOME/.ssh/authorized_keys
151lists the public keys that are permitted for logging
Damien Miller7684ee12000-03-17 23:40:15 +1100152in.
153When the user logs in, the
Damien Miller32aa1441999-10-29 09:15:49 +1000154.Nm
155program tells the server which key pair it would like to use for
Damien Miller7684ee12000-03-17 23:40:15 +1100156authentication.
157The server checks if this key is permitted, and if
Damien Miller32aa1441999-10-29 09:15:49 +1000158so, sends the user (actually the
159.Nm
160program running on behalf of the user) a challenge, a random number,
Damien Miller7684ee12000-03-17 23:40:15 +1100161encrypted by the user's public key.
162The challenge can only be
163decrypted using the proper private key.
164The user's client then decrypts the
Damien Miller32aa1441999-10-29 09:15:49 +1000165challenge using the private key, proving that he/she knows the private
166key but without disclosing it to the server.
167.Pp
168.Nm
Damien Miller7684ee12000-03-17 23:40:15 +1100169implements the RSA authentication protocol automatically.
170The user creates his/her RSA key pair by running
Damien Miller32aa1441999-10-29 09:15:49 +1000171.Xr ssh-keygen 1 .
Damien Miller22c77262000-04-13 12:26:34 +1000172This stores the private key in
Damien Millere247cc42000-05-07 12:03:14 +1000173.Pa $HOME/.ssh/identity
Damien Miller32aa1441999-10-29 09:15:49 +1000174and the public key in
Damien Millere247cc42000-05-07 12:03:14 +1000175.Pa $HOME/.ssh/identity.pub
Damien Miller7684ee12000-03-17 23:40:15 +1100176in the user's home directory.
177The user should then copy the
Damien Miller32aa1441999-10-29 09:15:49 +1000178.Pa identity.pub
Damien Miller22c77262000-04-13 12:26:34 +1000179to
Damien Millere247cc42000-05-07 12:03:14 +1000180.Pa $HOME/.ssh/authorized_keys
Damien Miller22c77262000-04-13 12:26:34 +1000181in his/her home directory on the remote machine (the
Damien Miller32aa1441999-10-29 09:15:49 +1000182.Pa authorized_keys
Damien Miller22c77262000-04-13 12:26:34 +1000183file corresponds to the conventional
Damien Millere247cc42000-05-07 12:03:14 +1000184.Pa $HOME/.rhosts
Damien Miller32aa1441999-10-29 09:15:49 +1000185file, and has one key
Damien Miller7684ee12000-03-17 23:40:15 +1100186per line, though the lines can be very long).
187After this, the user can log in without giving the password.
188RSA authentication is much
Damien Miller32aa1441999-10-29 09:15:49 +1000189more secure than rhosts authentication.
190.Pp
191The most convenient way to use RSA authentication may be with an
Damien Miller7684ee12000-03-17 23:40:15 +1100192authentication agent.
193See
Damien Miller32aa1441999-10-29 09:15:49 +1000194.Xr ssh-agent 1
195for more information.
196.Pp
Damien Miller22c77262000-04-13 12:26:34 +1000197If other authentication methods fail,
Damien Miller32aa1441999-10-29 09:15:49 +1000198.Nm
Damien Miller7684ee12000-03-17 23:40:15 +1100199prompts the user for a password.
200The password is sent to the remote
Damien Miller32aa1441999-10-29 09:15:49 +1000201host for checking; however, since all communications are encrypted,
202the password cannot be seen by someone listening on the network.
203.Pp
Damien Millere247cc42000-05-07 12:03:14 +1000204.Ss SSH protocol version 2
205.Pp
206When a user connects using the protocol version 2
207different authentication methods are available:
208At first, the client attempts to authenticate using the public key method.
209If this method fails password authentication is tried.
210.Pp
211The public key method is similar to RSA authentication described
Damien Miller0bc1bd82000-11-13 22:57:25 +1100212in the previous section except that the DSA or RSA algorithm is used
213instead.
214The client uses his private key
Damien Millere247cc42000-05-07 12:03:14 +1000215.Pa $HOME/.ssh/id_dsa
216to sign the session identifier and sends the result to the server.
217The server checks whether the matching public key is listed in
218.Pa $HOME/.ssh/authorized_keys2
219and grants access if both the key is found and the signature is correct.
220The session identifier is derived from a shared Diffie-Hellman value
221and is only known to the client and the server.
222.Pp
223If public key authentication fails or is not available a password
224can be sent encrypted to the remote host for proving the user's identity.
225This protocol 2 implementation does not yet support Kerberos or
226S/Key authentication.
227.Pp
228Protocol 2 provides additional mechanisms for confidentiality
Damien Miller30c3d422000-05-09 11:02:59 +1000229(the traffic is encrypted using 3DES, Blowfish, CAST128 or Arcfour)
Damien Millere247cc42000-05-07 12:03:14 +1000230and integrity (hmac-sha1, hmac-md5).
231Note that protocol 1 lacks a strong mechanism for ensuring the
232integrity of the connection.
233.Pp
234.Ss Login session and remote execution
235.Pp
Damien Miller32aa1441999-10-29 09:15:49 +1000236When the user's identity has been accepted by the server, the server
237either executes the given command, or logs into the machine and gives
Damien Miller7684ee12000-03-17 23:40:15 +1100238the user a normal shell on the remote machine.
239All communication with
Damien Miller32aa1441999-10-29 09:15:49 +1000240the remote command or shell will be automatically encrypted.
241.Pp
242If a pseudo-terminal has been allocated (normal login session), the
243user can disconnect with
244.Ic ~. ,
245and suspend
246.Nm
247with
248.Ic ~^Z .
249All forwarded connections can be listed with
Damien Miller22c77262000-04-13 12:26:34 +1000250.Ic ~#
Damien Miller32aa1441999-10-29 09:15:49 +1000251and if
252the session blocks waiting for forwarded X11 or TCP/IP
253connections to terminate, it can be backgrounded with
254.Ic ~&
255(this should not be used while the user shell is active, as it can cause the
Damien Miller7684ee12000-03-17 23:40:15 +1100256shell to hang).
257All available escapes can be listed with
Damien Miller32aa1441999-10-29 09:15:49 +1000258.Ic ~? .
259.Pp
260A single tilde character can be sent as
261.Ic ~~
262(or by following the tilde by a character other than those described above).
263The escape character must always follow a newline to be interpreted as
Damien Miller7684ee12000-03-17 23:40:15 +1100264special.
265The escape character can be changed in configuration files
266or on the command line.
Damien Miller32aa1441999-10-29 09:15:49 +1000267.Pp
268If no pseudo tty has been allocated, the
269session is transparent and can be used to reliably transfer binary
Damien Miller7684ee12000-03-17 23:40:15 +1100270data.
271On most systems, setting the escape character to
Damien Miller32aa1441999-10-29 09:15:49 +1000272.Dq none
273will also make the session transparent even if a tty is used.
274.Pp
Ben Lindstroma6885612000-12-09 03:45:32 +0000275The session terminates when the command or shell on the remote
Damien Miller32aa1441999-10-29 09:15:49 +1000276machine exists and all X11 and TCP/IP connections have been closed.
277The exit status of the remote program is returned as the exit status
278of
279.Nm ssh .
280.Pp
Damien Millere247cc42000-05-07 12:03:14 +1000281.Ss X11 and TCP forwarding
282.Pp
Damien Miller32aa1441999-10-29 09:15:49 +1000283If the user is using X11 (the
284.Ev DISPLAY
285environment variable is set), the connection to the X11 display is
286automatically forwarded to the remote side in such a way that any X11
287programs started from the shell (or command) will go through the
288encrypted channel, and the connection to the real X server will be made
Damien Miller7684ee12000-03-17 23:40:15 +1100289from the local machine.
290The user should not manually set
Damien Miller32aa1441999-10-29 09:15:49 +1000291.Ev DISPLAY .
292Forwarding of X11 connections can be
293configured on the command line or in configuration files.
294.Pp
295The
Damien Miller22c77262000-04-13 12:26:34 +1000296.Ev DISPLAY
Damien Miller32aa1441999-10-29 09:15:49 +1000297value set by
298.Nm
299will point to the server machine, but with a display number greater
Damien Miller7684ee12000-03-17 23:40:15 +1100300than zero.
301This is normal, and happens because
Damien Miller32aa1441999-10-29 09:15:49 +1000302.Nm
303creates a
304.Dq proxy
305X server on the server machine for forwarding the
306connections over the encrypted channel.
307.Pp
308.Nm
309will also automatically set up Xauthority data on the server machine.
310For this purpose, it will generate a random authorization cookie,
311store it in Xauthority on the server, and verify that any forwarded
312connections carry this cookie and replace it by the real cookie when
Damien Miller7684ee12000-03-17 23:40:15 +1100313the connection is opened.
314The real authentication cookie is never
Damien Miller32aa1441999-10-29 09:15:49 +1000315sent to the server machine (and no cookies are sent in the plain).
316.Pp
317If the user is using an authentication agent, the connection to the agent
318is automatically forwarded to the remote side unless disabled on
319command line or in a configuration file.
320.Pp
321Forwarding of arbitrary TCP/IP connections over the secure channel can
Damien Miller7684ee12000-03-17 23:40:15 +1100322be specified either on command line or in a configuration file.
323One possible application of TCP/IP forwarding is a secure connection to an
Damien Miller32aa1441999-10-29 09:15:49 +1000324electronic purse; another is going trough firewalls.
325.Pp
Damien Millere247cc42000-05-07 12:03:14 +1000326.Ss Server authentication
327.Pp
Damien Miller32aa1441999-10-29 09:15:49 +1000328.Nm
Damien Millere247cc42000-05-07 12:03:14 +1000329automatically maintains and checks a database containing
Damien Miller7684ee12000-03-17 23:40:15 +1100330identifications for all hosts it has ever been used with.
Damien Millere247cc42000-05-07 12:03:14 +1000331RSA host keys are stored in
332.Pa $HOME/.ssh/known_hosts
333and
Damien Miller0bc1bd82000-11-13 22:57:25 +1100334host keys used in the protocol version 2 are stored in
Damien Millere247cc42000-05-07 12:03:14 +1000335.Pa $HOME/.ssh/known_hosts2
Damien Miller7684ee12000-03-17 23:40:15 +1100336in the user's home directory.
Damien Millere247cc42000-05-07 12:03:14 +1000337Additionally, the files
Damien Miller886c63a2000-01-20 23:13:36 +1100338.Pa /etc/ssh_known_hosts
Damien Millere247cc42000-05-07 12:03:14 +1000339and
340.Pa /etc/ssh_known_hosts2
341are automatically checked for known hosts.
Damien Miller7684ee12000-03-17 23:40:15 +1100342Any new hosts are automatically added to the user's file.
343If a host's identification
Damien Miller32aa1441999-10-29 09:15:49 +1000344ever changes,
345.Nm
346warns about this and disables password authentication to prevent a
Damien Miller7684ee12000-03-17 23:40:15 +1100347trojan horse from getting the user's password.
348Another purpose of
Damien Miller32aa1441999-10-29 09:15:49 +1000349this mechanism is to prevent man-in-the-middle attacks which could
Damien Miller7684ee12000-03-17 23:40:15 +1100350otherwise be used to circumvent the encryption.
351The
Damien Miller32aa1441999-10-29 09:15:49 +1000352.Cm StrictHostKeyChecking
353option (see below) can be used to prevent logins to machines whose
354host key is not known or has changed.
Damien Miller0bc1bd82000-11-13 22:57:25 +1100355.Pp
356The options are as follows:
Damien Miller32aa1441999-10-29 09:15:49 +1000357.Bl -tag -width Ds
358.It Fl a
Damien Miller450a7a12000-03-26 13:04:51 +1000359Disables forwarding of the authentication agent connection.
Damien Millerb1715dc2000-05-30 13:44:51 +1000360.It Fl A
361Enables forwarding of the authentication agent connection.
362This can also be specified on a per-host basis in a configuration file.
Damien Miller32aa1441999-10-29 09:15:49 +1000363.It Fl c Ar blowfish|3des
Damien Miller22c77262000-04-13 12:26:34 +1000364Selects the cipher to use for encrypting the session.
Damien Miller32aa1441999-10-29 09:15:49 +1000365.Ar 3des
Damien Miller7684ee12000-03-17 23:40:15 +1100366is used by default.
Damien Miller22c77262000-04-13 12:26:34 +1000367It is believed to be secure.
Damien Miller32aa1441999-10-29 09:15:49 +1000368.Ar 3des
369(triple-des) is an encrypt-decrypt-encrypt triple with three different keys.
370It is presumably more secure than the
371.Ar des
Damien Miller69b69aa2000-10-28 14:19:58 +1100372cipher which is no longer fully supported in
Damien Miller30c3d422000-05-09 11:02:59 +1000373.Nm ssh .
Damien Miller32aa1441999-10-29 09:15:49 +1000374.Ar blowfish
375is a fast block cipher, it appears very secure and is much faster than
Damien Miller7684ee12000-03-17 23:40:15 +1100376.Ar 3des .
Ben Lindstrom5ab6ae12001-02-10 22:08:03 +0000377.It Fl c Ar cipher_spec
Damien Miller30c3d422000-05-09 11:02:59 +1000378Additionally, for protocol version 2 a comma-separated list of ciphers can
Damien Miller874d77b2000-10-14 16:23:11 +1100379be specified in order of preference.
Ben Lindstrom5ab6ae12001-02-10 22:08:03 +0000380See
381.Cm Ciphers
382for more information.
Damien Miller32aa1441999-10-29 09:15:49 +1000383.It Fl e Ar ch|^ch|none
384Sets the escape character for sessions with a pty (default:
385.Ql ~ ) .
Damien Miller7684ee12000-03-17 23:40:15 +1100386The escape character is only recognized at the beginning of a line.
387The escape character followed by a dot
Damien Miller32aa1441999-10-29 09:15:49 +1000388.Pq Ql \&.
389closes the connection, followed
390by control-Z suspends the connection, and followed by itself sends the
Damien Miller7684ee12000-03-17 23:40:15 +1100391escape character once.
392Setting the character to
Damien Miller32aa1441999-10-29 09:15:49 +1000393.Dq none
394disables any escapes and makes the session fully transparent.
395.It Fl f
396Requests
397.Nm
Damien Miller7684ee12000-03-17 23:40:15 +1100398to go to background just before command execution.
399This is useful if
Damien Miller32aa1441999-10-29 09:15:49 +1000400.Nm
401is going to ask for passwords or passphrases, but the user
Damien Miller7684ee12000-03-17 23:40:15 +1100402wants it in the background.
Damien Miller22c77262000-04-13 12:26:34 +1000403This implies
Damien Miller32aa1441999-10-29 09:15:49 +1000404.Fl n .
405The recommended way to start X11 programs at a remote site is with
406something like
407.Ic ssh -f host xterm .
Damien Miller396691a2000-01-20 22:44:08 +1100408.It Fl g
409Allows remote hosts to connect to local forwarded ports.
Damien Miller32aa1441999-10-29 09:15:49 +1000410.It Fl i Ar identity_file
Damien Miller22c77262000-04-13 12:26:34 +1000411Selects the file from which the identity (private key) for
Damien Miller0bc1bd82000-11-13 22:57:25 +1100412RSA or DSA authentication is read.
Damien Miller22c77262000-04-13 12:26:34 +1000413Default is
Damien Millere247cc42000-05-07 12:03:14 +1000414.Pa $HOME/.ssh/identity
Damien Miller7684ee12000-03-17 23:40:15 +1100415in the user's home directory.
416Identity files may also be specified on
417a per-host basis in the configuration file.
418It is possible to have multiple
Damien Miller32aa1441999-10-29 09:15:49 +1000419.Fl i
420options (and multiple identities specified in
421configuration files).
Damien Miller32aa1441999-10-29 09:15:49 +1000422.It Fl k
Damien Miller450a7a12000-03-26 13:04:51 +1000423Disables forwarding of Kerberos tickets and AFS tokens.
424This may also be specified on a per-host basis in the configuration file.
Damien Miller32aa1441999-10-29 09:15:49 +1000425.It Fl l Ar login_name
Damien Miller7684ee12000-03-17 23:40:15 +1100426Specifies the user to log in as on the remote machine.
427This also may be specified on a per-host basis in the configuration file.
Damien Miller32aa1441999-10-29 09:15:49 +1000428.It Fl n
429Redirects stdin from
430.Pa /dev/null
431(actually, prevents reading from stdin).
432This must be used when
433.Nm
Damien Miller7684ee12000-03-17 23:40:15 +1100434is run in the background.
435A common trick is to use this to run X11 programs on a remote machine.
436For example,
Damien Miller32aa1441999-10-29 09:15:49 +1000437.Ic ssh -n shadows.cs.hut.fi emacs &
438will start an emacs on shadows.cs.hut.fi, and the X11
439connection will be automatically forwarded over an encrypted channel.
440The
441.Nm
442program will be put in the background.
443(This does not work if
444.Nm
445needs to ask for a password or passphrase; see also the
446.Fl f
447option.)
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000448.It Fl N
449Do not execute a remote command.
Ben Lindstromc72745a2000-12-02 19:03:54 +0000450This is useful if you just want to forward ports
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000451(protocol version 2 only).
Damien Miller32aa1441999-10-29 09:15:49 +1000452.It Fl o Ar option
453Can be used to give options in the format used in the config file.
454This is useful for specifying options for which there is no separate
Damien Miller7684ee12000-03-17 23:40:15 +1100455command-line flag.
456The option has the same format as a line in the configuration file.
Damien Miller32aa1441999-10-29 09:15:49 +1000457.It Fl p Ar port
Damien Miller7684ee12000-03-17 23:40:15 +1100458Port to connect to on the remote host.
459This can be specified on a
Damien Miller32aa1441999-10-29 09:15:49 +1000460per-host basis in the configuration file.
461.It Fl P
462Use a non-privileged port for outgoing connections.
463This can be used if your firewall does
464not permit connections from privileged ports.
Damien Millera34a28b1999-12-14 10:47:15 +1100465Note that this option turns off
Damien Miller32aa1441999-10-29 09:15:49 +1000466.Cm RhostsAuthentication
467and
Kevin Stevesfcec7f82000-12-15 19:55:48 +0000468.Cm RhostsRSAAuthentication
469for older servers.
Damien Miller32aa1441999-10-29 09:15:49 +1000470.It Fl q
Damien Miller7684ee12000-03-17 23:40:15 +1100471Quiet mode.
472Causes all warning and diagnostic messages to be suppressed.
473Only fatal errors are displayed.
Damien Miller832562e2001-01-30 09:30:01 +1100474.It Fl s
475May be used to request invocation of a subsystem on the remote system. Subsystems are a feature of the SSH2 protocol which facilitate the use
476of SSH as a secure transport for other application (eg. sftp). The
477subsystem is specified as the remote command.
Damien Miller32aa1441999-10-29 09:15:49 +1000478.It Fl t
Damien Miller7684ee12000-03-17 23:40:15 +1100479Force pseudo-tty allocation.
Damien Miller450a7a12000-03-26 13:04:51 +1000480This can be used to execute arbitrary
Damien Miller7684ee12000-03-17 23:40:15 +1100481screen-based programs on a remote machine, which can be very useful,
482e.g., when implementing menu services.
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000483Multiple
484.Fl t
485options force tty allocation, even if
486.Nm
487has no local tty.
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000488.It Fl T
Ben Lindstromc72745a2000-12-02 19:03:54 +0000489Disable pseudo-tty allocation.
Damien Miller32aa1441999-10-29 09:15:49 +1000490.It Fl v
Damien Miller7684ee12000-03-17 23:40:15 +1100491Verbose mode.
492Causes
Damien Miller32aa1441999-10-29 09:15:49 +1000493.Nm
Damien Miller7684ee12000-03-17 23:40:15 +1100494to print debugging messages about its progress.
495This is helpful in
Damien Miller32aa1441999-10-29 09:15:49 +1000496debugging connection, authentication, and configuration problems.
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000497Multiple
498.Fl v
499options increases the verbosity.
Damien Miller874d77b2000-10-14 16:23:11 +1100500Maximum is 3.
Damien Miller32aa1441999-10-29 09:15:49 +1000501.It Fl x
Damien Miller7684ee12000-03-17 23:40:15 +1100502Disables X11 forwarding.
Damien Miller32aa1441999-10-29 09:15:49 +1000503.It Fl X
504Enables X11 forwarding.
Damien Millerb1715dc2000-05-30 13:44:51 +1000505This can also be specified on a per-host basis in a configuration file.
Damien Miller32aa1441999-10-29 09:15:49 +1000506.It Fl C
507Requests compression of all data (including stdin, stdout, stderr, and
Damien Miller7684ee12000-03-17 23:40:15 +1100508data for forwarded X11 and TCP/IP connections).
509The compression algorithm is the same used by
Damien Miller396691a2000-01-20 22:44:08 +1100510.Xr gzip 1 ,
511and the
Damien Miller32aa1441999-10-29 09:15:49 +1000512.Dq level
513can be controlled by the
514.Cm CompressionLevel
Damien Miller7684ee12000-03-17 23:40:15 +1100515option (see below).
516Compression is desirable on modem lines and other
Damien Miller32aa1441999-10-29 09:15:49 +1000517slow connections, but will only slow down things on fast networks.
518The default value can be set on a host-by-host basis in the
519configuration files; see the
520.Cm Compress
521option below.
522.It Fl L Ar port:host:hostport
523Specifies that the given port on the local (client) host is to be
Damien Miller7684ee12000-03-17 23:40:15 +1100524forwarded to the given host and port on the remote side.
525This works by allocating a socket to listen to
Damien Miller32aa1441999-10-29 09:15:49 +1000526.Ar port
527on the local side, and whenever a connection is made to this port, the
528connection is forwarded over the secure channel, and a connection is
529made to
Damien Miller34132e52000-01-14 15:45:46 +1100530.Ar host
531port
532.Ar hostport
Damien Miller7684ee12000-03-17 23:40:15 +1100533from the remote machine.
534Port forwardings can also be specified in the configuration file.
535Only root can forward privileged ports.
Damien Miller34132e52000-01-14 15:45:46 +1100536IPv6 addresses can be specified with an alternative syntax:
537.Ar port/host/hostport
Damien Miller32aa1441999-10-29 09:15:49 +1000538.It Fl R Ar port:host:hostport
539Specifies that the given port on the remote (server) host is to be
Damien Miller7684ee12000-03-17 23:40:15 +1100540forwarded to the given host and port on the local side.
541This works by allocating a socket to listen to
Damien Miller32aa1441999-10-29 09:15:49 +1000542.Ar port
543on the remote side, and whenever a connection is made to this port, the
544connection is forwarded over the secure channel, and a connection is
545made to
Damien Miller34132e52000-01-14 15:45:46 +1100546.Ar host
547port
548.Ar hostport
Damien Miller7684ee12000-03-17 23:40:15 +1100549from the local machine.
550Port forwardings can also be specified in the configuration file.
551Privileged ports can be forwarded only when
Damien Miller32aa1441999-10-29 09:15:49 +1000552logging in as root on the remote machine.
Ben Lindstrom5ab6ae12001-02-10 22:08:03 +0000553.It Fl 1
554Forces
555.Nm
556to try protocol version 1 only.
Damien Miller4af51302000-04-16 11:18:38 +1000557.It Fl 2
558Forces
559.Nm
Damien Millere247cc42000-05-07 12:03:14 +1000560to try protocol version 2 only.
Damien Miller34132e52000-01-14 15:45:46 +1100561.It Fl 4
562Forces
563.Nm
564to use IPv4 addresses only.
565.It Fl 6
566Forces
567.Nm
568to use IPv6 addresses only.
Damien Miller32aa1441999-10-29 09:15:49 +1000569.El
570.Sh CONFIGURATION FILES
571.Nm
572obtains configuration data from the following sources (in this order):
573command line options, user's configuration file
574.Pq Pa $HOME/.ssh/config ,
575and system-wide configuration file
Damien Miller886c63a2000-01-20 23:13:36 +1100576.Pq Pa /etc/ssh_config .
Damien Miller32aa1441999-10-29 09:15:49 +1000577For each parameter, the first obtained value
Damien Miller7684ee12000-03-17 23:40:15 +1100578will be used.
579The configuration files contain sections bracketed by
580.Dq Host
581specifications, and that section is only applied for hosts that
582match one of the patterns given in the specification.
583The matched host name is the one given on the command line.
Damien Miller32aa1441999-10-29 09:15:49 +1000584.Pp
585Since the first obtained value for each parameter is used, more
586host-specific declarations should be given near the beginning of the
587file, and general defaults at the end.
588.Pp
589The configuration file has the following format:
590.Pp
591Empty lines and lines starting with
592.Ql #
593are comments.
594.Pp
595Otherwise a line is of the format
596.Dq keyword arguments .
597The possible
598keywords and their meanings are as follows (note that the
599configuration files are case-sensitive):
600.Bl -tag -width Ds
601.It Cm Host
602Restricts the following declarations (up to the next
603.Cm Host
604keyword) to be only for those hosts that match one of the patterns
605given after the keyword.
606.Ql \&*
607and
608.Ql ?
609can be used as wildcards in the
Damien Miller7684ee12000-03-17 23:40:15 +1100610patterns.
611A single
Damien Miller32aa1441999-10-29 09:15:49 +1000612.Ql \&*
613as a pattern can be used to provide global
Damien Miller7684ee12000-03-17 23:40:15 +1100614defaults for all hosts.
615The host is the
Damien Miller32aa1441999-10-29 09:15:49 +1000616.Ar hostname
617argument given on the command line (i.e., the name is not converted to
618a canonicalized host name before matching).
619.It Cm AFSTokenPassing
Damien Miller450a7a12000-03-26 13:04:51 +1000620Specifies whether to pass AFS tokens to remote host.
621The argument to this keyword must be
Damien Miller32aa1441999-10-29 09:15:49 +1000622.Dq yes
623or
624.Dq no .
625.It Cm BatchMode
626If set to
627.Dq yes ,
Damien Miller7684ee12000-03-17 23:40:15 +1100628passphrase/password querying will be disabled.
629This option is useful in scripts and other batch jobs where you have no
630user to supply the password.
631The argument must be
Damien Miller32aa1441999-10-29 09:15:49 +1000632.Dq yes
633or
634.Dq no .
Damien Miller396691a2000-01-20 22:44:08 +1100635.It Cm CheckHostIP
636If this flag is set to
637.Dq yes ,
638ssh will additionally check the host ip address in the
639.Pa known_hosts
Damien Miller450a7a12000-03-26 13:04:51 +1000640file.
641This allows ssh to detect if a host key changed due to DNS spoofing.
Damien Miller396691a2000-01-20 22:44:08 +1100642If the option is set to
643.Dq no ,
644the check will not be executed.
Damien Miller32aa1441999-10-29 09:15:49 +1000645.It Cm Cipher
Damien Miller50a41ed2000-10-16 12:14:42 +1100646Specifies the cipher to use for encrypting the session
Damien Miller69b69aa2000-10-28 14:19:58 +1100647in protocol version 1.
Damien Miller7684ee12000-03-17 23:40:15 +1100648Currently,
Damien Miller69b69aa2000-10-28 14:19:58 +1100649.Dq blowfish
Damien Miller32aa1441999-10-29 09:15:49 +1000650and
651.Dq 3des
Damien Miller7684ee12000-03-17 23:40:15 +1100652are supported.
653The default is
Damien Miller32aa1441999-10-29 09:15:49 +1000654.Dq 3des .
Damien Miller22c77262000-04-13 12:26:34 +1000655.It Cm Ciphers
656Specifies the ciphers allowed for protocol version 2
657in order of preference.
658Multiple ciphers must be comma-separated.
659The default is
Ben Lindstrom5ab6ae12001-02-10 22:08:03 +0000660.Pp
661.Bd -literal
662 ``3des-cbc,blowfish-cbc,cast128-cbc,arcfour,aes128-cbc,
663 aes192-cbc,aes256-cbc,rijndael128-cbc,rijndael192-cbc,
664 rijndael256-cbc,rijndael-cbc@lysator.liu.se''
665.Ed
Damien Miller32aa1441999-10-29 09:15:49 +1000666.It Cm Compression
Damien Miller7684ee12000-03-17 23:40:15 +1100667Specifies whether to use compression.
668The argument must be
Damien Miller32aa1441999-10-29 09:15:49 +1000669.Dq yes
670or
671.Dq no .
672.It Cm CompressionLevel
Damien Miller7684ee12000-03-17 23:40:15 +1100673Specifies the compression level to use if compression is enable.
674The argument must be an integer from 1 (fast) to 9 (slow, best).
675The default level is 6, which is good for most applications.
676The meaning of the values is the same as in
Damien Miller396691a2000-01-20 22:44:08 +1100677.Xr gzip 1 .
Damien Miller32aa1441999-10-29 09:15:49 +1000678.It Cm ConnectionAttempts
679Specifies the number of tries (one per second) to make before falling
Damien Miller7684ee12000-03-17 23:40:15 +1100680back to rsh or exiting.
681The argument must be an integer.
682This may be useful in scripts if the connection sometimes fails.
Damien Miller0bc1bd82000-11-13 22:57:25 +1100683.It Cm PubkeyAuthentication
684Specifies whether to try public key authentication.
Damien Millere247cc42000-05-07 12:03:14 +1000685The argument to this keyword must be
686.Dq yes
687or
688.Dq no .
Damien Millere247cc42000-05-07 12:03:14 +1000689Note that this option applies to protocol version 2 only.
Damien Miller32aa1441999-10-29 09:15:49 +1000690.It Cm EscapeChar
691Sets the escape character (default:
692.Ql ~ ) .
693The escape character can also
Damien Miller7684ee12000-03-17 23:40:15 +1100694be set on the command line.
695The argument should be a single character,
Damien Miller32aa1441999-10-29 09:15:49 +1000696.Ql ^
697followed by a letter, or
698.Dq none
699to disable the escape
700character entirely (making the connection transparent for binary
701data).
Damien Miller22c77262000-04-13 12:26:34 +1000702.It Cm FallBackToRsh
Damien Miller32aa1441999-10-29 09:15:49 +1000703Specifies that if connecting via
704.Nm
705fails due to a connection refused error (there is no
706.Xr sshd 8
Damien Miller22c77262000-04-13 12:26:34 +1000707listening on the remote host),
Damien Miller32aa1441999-10-29 09:15:49 +1000708.Xr rsh 1
709should automatically be used instead (after a suitable warning about
Damien Miller7684ee12000-03-17 23:40:15 +1100710the session being unencrypted).
711The argument must be
Damien Miller32aa1441999-10-29 09:15:49 +1000712.Dq yes
713or
714.Dq no .
715.It Cm ForwardAgent
716Specifies whether the connection to the authentication agent (if any)
Damien Miller7684ee12000-03-17 23:40:15 +1100717will be forwarded to the remote machine.
718The argument must be
Damien Miller32aa1441999-10-29 09:15:49 +1000719.Dq yes
720or
721.Dq no .
Damien Millerb1715dc2000-05-30 13:44:51 +1000722The default is
723.Dq no .
Damien Miller32aa1441999-10-29 09:15:49 +1000724.It Cm ForwardX11
725Specifies whether X11 connections will be automatically redirected
Damien Miller22c77262000-04-13 12:26:34 +1000726over the secure channel and
Damien Miller32aa1441999-10-29 09:15:49 +1000727.Ev DISPLAY
Damien Miller7684ee12000-03-17 23:40:15 +1100728set.
Damien Miller22c77262000-04-13 12:26:34 +1000729The argument must be
Damien Miller32aa1441999-10-29 09:15:49 +1000730.Dq yes
731or
732.Dq no .
Damien Miller98c7ad62000-03-09 21:27:49 +1100733The default is
734.Dq no .
Damien Miller32aa1441999-10-29 09:15:49 +1000735.It Cm GatewayPorts
736Specifies whether remote hosts are allowed to connect to local
737forwarded ports.
738The argument must be
739.Dq yes
740or
741.Dq no .
742The default is
743.Dq no .
744.It Cm GlobalKnownHostsFile
Damien Miller22c77262000-04-13 12:26:34 +1000745Specifies a file to use instead of
Damien Miller886c63a2000-01-20 23:13:36 +1100746.Pa /etc/ssh_known_hosts .
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000747.It Cm HostKeyAlias
748Specifies an alias that should be used instead of the
749real host name when looking up or saving the host key
Damien Miller33804262001-02-04 23:20:18 +1100750in the known_hosts files.
751This option is useful for tunneling ssh connections
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000752or if you have multiple servers running on a single host.
Damien Miller32aa1441999-10-29 09:15:49 +1000753.It Cm HostName
Damien Miller7684ee12000-03-17 23:40:15 +1100754Specifies the real host name to log into.
755This can be used to specify nicknames or abbreviations for hosts.
756Default is the name given on the command line.
757Numeric IP addresses are also permitted (both on the command line and in
Damien Miller32aa1441999-10-29 09:15:49 +1000758.Cm HostName
759specifications).
760.It Cm IdentityFile
761Specifies the file from which the user's RSA authentication identity
762is read (default
Damien Millere247cc42000-05-07 12:03:14 +1000763.Pa $HOME/.ssh/identity
Damien Miller32aa1441999-10-29 09:15:49 +1000764in the user's home directory).
765Additionally, any identities represented by the authentication agent
Damien Miller7684ee12000-03-17 23:40:15 +1100766will be used for authentication.
767The file name may use the tilde
768syntax to refer to a user's home directory.
769It is possible to have
Damien Miller32aa1441999-10-29 09:15:49 +1000770multiple identity files specified in configuration files; all these
771identities will be tried in sequence.
772.It Cm KeepAlive
773Specifies whether the system should send keepalive messages to the
Damien Miller7684ee12000-03-17 23:40:15 +1100774other side.
775If they are sent, death of the connection or crash of one
776of the machines will be properly noticed.
777However, this means that
Damien Miller32aa1441999-10-29 09:15:49 +1000778connections will die if the route is down temporarily, and some people
Damien Miller450a7a12000-03-26 13:04:51 +1000779find it annoying.
Damien Miller32aa1441999-10-29 09:15:49 +1000780.Pp
781The default is
782.Dq yes
783(to send keepalives), and the client will notice
Damien Miller7684ee12000-03-17 23:40:15 +1100784if the network goes down or the remote host dies.
785This is important in scripts, and many users want it too.
Damien Miller32aa1441999-10-29 09:15:49 +1000786.Pp
787To disable keepalives, the value should be set to
788.Dq no
789in both the server and the client configuration files.
790.It Cm KerberosAuthentication
Damien Miller450a7a12000-03-26 13:04:51 +1000791Specifies whether Kerberos authentication will be used.
792The argument to this keyword must be
Damien Miller32aa1441999-10-29 09:15:49 +1000793.Dq yes
794or
795.Dq no .
796.It Cm KerberosTgtPassing
Damien Miller450a7a12000-03-26 13:04:51 +1000797Specifies whether a Kerberos TGT will be forwarded to the server.
798This will only work if the Kerberos server is actually an AFS kaserver.
799The argument to this keyword must be
Damien Miller32aa1441999-10-29 09:15:49 +1000800.Dq yes
801or
802.Dq no .
803.It Cm LocalForward
804Specifies that a TCP/IP port on the local machine be forwarded over
Damien Miller7684ee12000-03-17 23:40:15 +1100805the secure channel to given host:port from the remote machine.
806The first argument must be a port number, and the second must be
807host:port.
808Multiple forwardings may be specified, and additional
809forwardings can be given on the command line.
810Only the superuser can forward privileged ports.
Damien Miller5ce662a1999-11-11 17:57:39 +1100811.It Cm LogLevel
812Gives the verbosity level that is used when logging messages from
813.Nm ssh .
814The possible values are:
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000815QUIET, FATAL, ERROR, INFO, VERBOSE and DEBUG.
816The default is INFO.
Damien Miller32aa1441999-10-29 09:15:49 +1000817.It Cm NumberOfPasswordPrompts
Damien Miller450a7a12000-03-26 13:04:51 +1000818Specifies the number of password prompts before giving up.
819The argument to this keyword must be an integer.
820Default is 3.
Damien Miller396691a2000-01-20 22:44:08 +1100821.It Cm PasswordAuthentication
Damien Miller7684ee12000-03-17 23:40:15 +1100822Specifies whether to use password authentication.
823The argument to this keyword must be
Damien Miller396691a2000-01-20 22:44:08 +1100824.Dq yes
825or
826.Dq no .
Damien Millere247cc42000-05-07 12:03:14 +1000827Note that this option applies to both protocol version 1 and 2.
Damien Miller32aa1441999-10-29 09:15:49 +1000828.It Cm Port
Damien Miller7684ee12000-03-17 23:40:15 +1100829Specifies the port number to connect on the remote host.
830Default is 22.
Damien Miller22c77262000-04-13 12:26:34 +1000831.It Cm Protocol
832Specifies the protocol versions
833.Nm
834should support in order of preference.
835The possible values are
836.Dq 1
837and
838.Dq 2 .
839Multiple versions must be comma-separated.
840The default is
Damien Millere247cc42000-05-07 12:03:14 +1000841.Dq 1,2 .
842This means that
843.Nm
844tries version 1 and falls back to version 2
Damien Miller30c3d422000-05-09 11:02:59 +1000845if version 1 is not available.
Damien Miller32aa1441999-10-29 09:15:49 +1000846.It Cm ProxyCommand
Damien Miller7684ee12000-03-17 23:40:15 +1100847Specifies the command to use to connect to the server.
848The command
849string extends to the end of the line, and is executed with
850.Pa /bin/sh .
851In the command string,
852.Ql %h
853will be substituted by the host name to
854connect and
855.Ql %p
856by the port.
857The command can be basically anything,
858and should read from its standard input and write to its standard output.
859It should eventually connect an
Damien Miller32aa1441999-10-29 09:15:49 +1000860.Xr sshd 8
861server running on some machine, or execute
862.Ic sshd -i
Damien Miller7684ee12000-03-17 23:40:15 +1100863somewhere.
864Host key management will be done using the
Damien Miller32aa1441999-10-29 09:15:49 +1000865HostName of the host being connected (defaulting to the name typed by
866the user).
Damien Milleraae6c611999-12-06 11:47:28 +1100867Note that
868.Cm CheckHostIP
869is not available for connects with a proxy command.
Damien Miller32aa1441999-10-29 09:15:49 +1000870.Pp
871.It Cm RemoteForward
872Specifies that a TCP/IP port on the remote machine be forwarded over
Damien Miller7684ee12000-03-17 23:40:15 +1100873the secure channel to given host:port from the local machine.
874The first argument must be a port number, and the second must be
875host:port.
876Multiple forwardings may be specified, and additional
877forwardings can be given on the command line.
878Only the superuser can forward privileged ports.
Damien Miller32aa1441999-10-29 09:15:49 +1000879.It Cm RhostsAuthentication
Damien Miller7684ee12000-03-17 23:40:15 +1100880Specifies whether to try rhosts based authentication.
881Note that this
Damien Miller32aa1441999-10-29 09:15:49 +1000882declaration only affects the client side and has no effect whatsoever
Damien Miller7684ee12000-03-17 23:40:15 +1100883on security.
884Disabling rhosts authentication may reduce
Damien Miller32aa1441999-10-29 09:15:49 +1000885authentication time on slow connections when rhosts authentication is
Damien Miller7684ee12000-03-17 23:40:15 +1100886not used.
887Most servers do not permit RhostsAuthentication because it
888is not secure (see RhostsRSAAuthentication).
889The argument to this keyword must be
Damien Miller32aa1441999-10-29 09:15:49 +1000890.Dq yes
891or
892.Dq no .
893.It Cm RhostsRSAAuthentication
894Specifies whether to try rhosts based authentication with RSA host
Damien Miller7684ee12000-03-17 23:40:15 +1100895authentication.
896This is the primary authentication method for most sites.
897The argument must be
Damien Miller32aa1441999-10-29 09:15:49 +1000898.Dq yes
899or
900.Dq no .
901.It Cm RSAAuthentication
Damien Miller7684ee12000-03-17 23:40:15 +1100902Specifies whether to try RSA authentication.
903The argument to this keyword must be
Damien Miller32aa1441999-10-29 09:15:49 +1000904.Dq yes
905or
906.Dq no .
907RSA authentication will only be
908attempted if the identity file exists, or an authentication agent is
909running.
Damien Millere247cc42000-05-07 12:03:14 +1000910Note that this option applies to protocol version 1 only.
Damien Miller33804262001-02-04 23:20:18 +1100911.It Cm ChallengeResponseAuthentication
912Specifies whether to use challenge response authentication.
913Currently there is only support for
Damien Miller95def091999-11-25 00:26:21 +1100914.Xr skey 1
Damien Miller7684ee12000-03-17 23:40:15 +1100915authentication.
916The argument to this keyword must be
Damien Miller95def091999-11-25 00:26:21 +1100917.Dq yes
918or
919.Dq no .
920The default is
921.Dq no .
Damien Miller32aa1441999-10-29 09:15:49 +1000922.It Cm StrictHostKeyChecking
923If this flag is set to
Damien Miller22c77262000-04-13 12:26:34 +1000924.Dq yes ,
Damien Miller32aa1441999-10-29 09:15:49 +1000925.Nm
Ben Lindstromeb930d42001-01-29 08:37:08 +0000926will never automatically add host keys to the
Damien Miller32aa1441999-10-29 09:15:49 +1000927.Pa $HOME/.ssh/known_hosts
Damien Millere247cc42000-05-07 12:03:14 +1000928and
929.Pa $HOME/.ssh/known_hosts2
Ben Lindstromeb930d42001-01-29 08:37:08 +0000930files, and refuses to connect to hosts whose host key has changed.
Damien Miller7684ee12000-03-17 23:40:15 +1100931This provides maximum protection against trojan horse attacks.
932However, it can be somewhat annoying if you don't have good
Damien Miller886c63a2000-01-20 23:13:36 +1100933.Pa /etc/ssh_known_hosts
Damien Millere247cc42000-05-07 12:03:14 +1000934and
935.Pa /etc/ssh_known_hosts2
Damien Miller32aa1441999-10-29 09:15:49 +1000936files installed and frequently
Ben Lindstromeb930d42001-01-29 08:37:08 +0000937connect to new hosts.
938This option forces the user to manually
939add all new hosts.
940If this flag is set to
941.Dq no ,
942.Nm
943will automatically add new host keys to the
944user known hosts files.
945If this flag is set to
946.Dq ask ,
947new host keys
948will be added to the user known host files only after the user
949has confirmed that is what they really want to do, and
950.Nm
951will refuse to connect to hosts whose host key has changed.
Damien Miller7684ee12000-03-17 23:40:15 +1100952The host keys of
Ben Lindstromeb930d42001-01-29 08:37:08 +0000953known hosts will be verified automatically in all cases.
Damien Miller7684ee12000-03-17 23:40:15 +1100954The argument must be
Ben Lindstromeb930d42001-01-29 08:37:08 +0000955.Dq yes ,
956.Dq no
Damien Miller32aa1441999-10-29 09:15:49 +1000957or
Ben Lindstromeb930d42001-01-29 08:37:08 +0000958.Dq ask .
959The default is
960.Dq ask .
Damien Miller32aa1441999-10-29 09:15:49 +1000961.It Cm UsePrivilegedPort
962Specifies whether to use a privileged port for outgoing connections.
963The argument must be
964.Dq yes
965or
966.Dq no .
967The default is
968.Dq yes .
969Note that setting this option to
970.Dq no
Damien Millera34a28b1999-12-14 10:47:15 +1100971turns off
Damien Miller32aa1441999-10-29 09:15:49 +1000972.Cm RhostsAuthentication
973and
Kevin Stevesfcec7f82000-12-15 19:55:48 +0000974.Cm RhostsRSAAuthentication
975for older servers.
Damien Miller396691a2000-01-20 22:44:08 +1100976.It Cm User
Damien Miller7684ee12000-03-17 23:40:15 +1100977Specifies the user to log in as.
978This can be useful if you have a different user name on different machines.
979This saves the trouble of
Damien Miller396691a2000-01-20 22:44:08 +1100980having to remember to give the user name on the command line.
981.It Cm UserKnownHostsFile
982Specifies a file to use instead of
983.Pa $HOME/.ssh/known_hosts .
Damien Miller32aa1441999-10-29 09:15:49 +1000984.It Cm UseRsh
Damien Miller7684ee12000-03-17 23:40:15 +1100985Specifies that rlogin/rsh should be used for this host.
986It is possible that the host does not at all support the
Damien Miller32aa1441999-10-29 09:15:49 +1000987.Nm
Damien Miller7684ee12000-03-17 23:40:15 +1100988protocol.
989This causes
Damien Miller32aa1441999-10-29 09:15:49 +1000990.Nm
Damien Miller7684ee12000-03-17 23:40:15 +1100991to immediately execute
Damien Miller32aa1441999-10-29 09:15:49 +1000992.Xr rsh 1 .
993All other options (except
994.Cm HostName )
Damien Miller7684ee12000-03-17 23:40:15 +1100995are ignored if this has been specified.
996The argument must be
Damien Miller32aa1441999-10-29 09:15:49 +1000997.Dq yes
998or
999.Dq no .
Damien Millerd3a18572000-06-07 19:55:44 +10001000.It Cm XAuthLocation
1001Specifies the location of the
1002.Xr xauth 1
1003program.
1004The default is
1005.Pa /usr/X11R6/bin/xauth .
Damien Miller7b28dc52000-09-05 13:34:53 +11001006.El
Damien Miller32aa1441999-10-29 09:15:49 +10001007.Sh ENVIRONMENT
1008.Nm
1009will normally set the following environment variables:
1010.Bl -tag -width Ds
1011.It Ev DISPLAY
1012The
1013.Ev DISPLAY
Damien Miller7684ee12000-03-17 23:40:15 +11001014variable indicates the location of the X11 server.
Damien Miller22c77262000-04-13 12:26:34 +10001015It is automatically set by
Damien Miller32aa1441999-10-29 09:15:49 +10001016.Nm
1017to point to a value of the form
1018.Dq hostname:n
1019where hostname indicates
Damien Miller7684ee12000-03-17 23:40:15 +11001020the host where the shell runs, and n is an integer >= 1.
1021.Nm
1022uses this special value to forward X11 connections over the secure
1023channel.
1024The user should normally not set DISPLAY explicitly, as that
Damien Miller32aa1441999-10-29 09:15:49 +10001025will render the X11 connection insecure (and will require the user to
1026manually copy any required authorization cookies).
1027.It Ev HOME
1028Set to the path of the user's home directory.
1029.It Ev LOGNAME
1030Synonym for
1031.Ev USER ;
1032set for compatibility with systems that use this variable.
1033.It Ev MAIL
1034Set to point the user's mailbox.
Damien Miller7684ee12000-03-17 23:40:15 +11001035.It Ev PATH
Damien Miller32aa1441999-10-29 09:15:49 +10001036Set to the default
1037.Ev PATH ,
1038as specified when compiling
1039.Nm ssh .
1040.It Ev SSH_AUTH_SOCK
1041indicates the path of a unix-domain socket used to communicate with the
1042agent.
1043.It Ev SSH_CLIENT
Damien Miller7684ee12000-03-17 23:40:15 +11001044Identifies the client end of the connection.
1045The variable contains
Damien Miller32aa1441999-10-29 09:15:49 +10001046three space-separated values: client ip-address, client port number,
1047and server port number.
Ben Lindstrom4dccfa52000-12-28 16:40:05 +00001048.It Ev SSH_ORIGINAL_COMMAND
1049The variable contains the original command line if a forced command
1050is executed.
1051It can be used to extract the original arguments.
Damien Miller32aa1441999-10-29 09:15:49 +10001052.It Ev SSH_TTY
1053This is set to the name of the tty (path to the device) associated
Damien Miller7684ee12000-03-17 23:40:15 +11001054with the current shell or command.
1055If the current session has no tty,
Damien Miller32aa1441999-10-29 09:15:49 +10001056this variable is not set.
1057.It Ev TZ
1058The timezone variable is set to indicate the present timezone if it
Damien Miller942da032000-08-18 13:59:06 +10001059was set when the daemon was started (i.e., the daemon passes the value
Damien Miller32aa1441999-10-29 09:15:49 +10001060on to new connections).
1061.It Ev USER
1062Set to the name of the user logging in.
1063.El
1064.Pp
Damien Miller22c77262000-04-13 12:26:34 +10001065Additionally,
Damien Miller32aa1441999-10-29 09:15:49 +10001066.Nm
Damien Miller22c77262000-04-13 12:26:34 +10001067reads
1068.Pa $HOME/.ssh/environment ,
Damien Miller32aa1441999-10-29 09:15:49 +10001069and adds lines of the format
1070.Dq VARNAME=value
1071to the environment.
1072.Sh FILES
Damien Miller98c7ad62000-03-09 21:27:49 +11001073.Bl -tag -width Ds
Damien Miller32aa1441999-10-29 09:15:49 +10001074.It Pa $HOME/.ssh/known_hosts
1075Records host keys for all hosts the user has logged into (that are not
1076in
Damien Miller886c63a2000-01-20 23:13:36 +11001077.Pa /etc/ssh_known_hosts ) .
Damien Miller32aa1441999-10-29 09:15:49 +10001078See
1079.Xr sshd 8 .
Damien Millere247cc42000-05-07 12:03:14 +10001080.It Pa $HOME/.ssh/identity, $HOME/.ssh/id_dsa
1081Contains the RSA and the DSA authentication identity of the user.
1082These files
1083contain sensitive data and should be readable by the user but not
Damien Miller32aa1441999-10-29 09:15:49 +10001084accessible by others (read/write/execute).
1085Note that
1086.Nm
Damien Millere247cc42000-05-07 12:03:14 +10001087ignores a private key file if it is accessible by others.
Damien Miller32aa1441999-10-29 09:15:49 +10001088It is possible to specify a passphrase when
1089generating the key; the passphrase will be used to encrypt the
1090sensitive part of this file using 3DES.
Damien Millere247cc42000-05-07 12:03:14 +10001091.It Pa $HOME/.ssh/identity.pub, $HOME/.ssh/id_dsa.pub
Damien Miller32aa1441999-10-29 09:15:49 +10001092Contains the public key for authentication (public part of the
Damien Miller7684ee12000-03-17 23:40:15 +11001093identity file in human-readable form).
Damien Millere247cc42000-05-07 12:03:14 +10001094The contents of the
1095.Pa $HOME/.ssh/identity.pub
1096file should be added to
Damien Miller32aa1441999-10-29 09:15:49 +10001097.Pa $HOME/.ssh/authorized_keys
1098on all machines
Damien Miller7684ee12000-03-17 23:40:15 +11001099where you wish to log in using RSA authentication.
Damien Millere247cc42000-05-07 12:03:14 +10001100The contents of the
1101.Pa $HOME/.ssh/id_dsa.pub
1102file should be added to
1103.Pa $HOME/.ssh/authorized_keys2
1104on all machines
1105where you wish to log in using DSA authentication.
1106These files are not
Damien Miller7684ee12000-03-17 23:40:15 +11001107sensitive and can (but need not) be readable by anyone.
Damien Millere247cc42000-05-07 12:03:14 +10001108These files are
Kevin Steves3c034ae2001-02-05 13:47:11 +00001109never used automatically and are not necessary; they are only provided for
Damien Miller32aa1441999-10-29 09:15:49 +10001110the convenience of the user.
1111.It Pa $HOME/.ssh/config
Damien Miller7684ee12000-03-17 23:40:15 +11001112This is the per-user configuration file.
1113The format of this file is described above.
1114This file is used by the
Damien Miller32aa1441999-10-29 09:15:49 +10001115.Nm
Damien Miller7684ee12000-03-17 23:40:15 +11001116client.
1117This file does not usually contain any sensitive information,
Damien Miller32aa1441999-10-29 09:15:49 +10001118but the recommended permissions are read/write for the user, and not
1119accessible by others.
1120.It Pa $HOME/.ssh/authorized_keys
Damien Miller7684ee12000-03-17 23:40:15 +11001121Lists the RSA keys that can be used for logging in as this user.
1122The format of this file is described in the
Damien Miller32aa1441999-10-29 09:15:49 +10001123.Xr sshd 8
Damien Miller7684ee12000-03-17 23:40:15 +11001124manual page.
1125In the simplest form the format is the same as the .pub
Damien Miller32aa1441999-10-29 09:15:49 +10001126identity files (that is, each line contains the number of bits in
1127modulus, public exponent, modulus, and comment fields, separated by
Damien Miller7684ee12000-03-17 23:40:15 +11001128spaces).
1129This file is not highly sensitive, but the recommended
Damien Miller32aa1441999-10-29 09:15:49 +10001130permissions are read/write for the user, and not accessible by others.
Damien Millere247cc42000-05-07 12:03:14 +10001131.It Pa $HOME/.ssh/authorized_keys2
Damien Miller0bc1bd82000-11-13 22:57:25 +11001132Lists the public keys (DSA/RSA) that can be used for logging in as this user.
Damien Millere247cc42000-05-07 12:03:14 +10001133This file is not highly sensitive, but the recommended
1134permissions are read/write for the user, and not accessible by others.
1135.It Pa /etc/ssh_known_hosts, /etc/ssh_known_hosts2
Damien Miller7684ee12000-03-17 23:40:15 +11001136Systemwide list of known host keys.
Damien Millere247cc42000-05-07 12:03:14 +10001137.Pa /etc/ssh_known_hosts
1138contains RSA and
1139.Pa /etc/ssh_known_hosts2
Damien Miller0bc1bd82000-11-13 22:57:25 +11001140contains DSA or RSA keys for protocol version 2.
Damien Millere247cc42000-05-07 12:03:14 +10001141These files should be prepared by the
Damien Miller32aa1441999-10-29 09:15:49 +10001142system administrator to contain the public host keys of all machines in the
Damien Miller7684ee12000-03-17 23:40:15 +11001143organization.
1144This file should be world-readable.
1145This file contains
Damien Miller32aa1441999-10-29 09:15:49 +10001146public keys, one per line, in the following format (fields separated
1147by spaces): system name, number of bits in modulus, public exponent,
Damien Miller7684ee12000-03-17 23:40:15 +11001148modulus, and optional comment field.
1149When different names are used
Damien Miller32aa1441999-10-29 09:15:49 +10001150for the same machine, all such names should be listed, separated by
Damien Miller7684ee12000-03-17 23:40:15 +11001151commas.
1152The format is described on the
Damien Miller32aa1441999-10-29 09:15:49 +10001153.Xr sshd 8
1154manual page.
1155.Pp
1156The canonical system name (as returned by name servers) is used by
1157.Xr sshd 8
1158to verify the client host when logging in; other names are needed because
1159.Nm
1160does not convert the user-supplied name to a canonical name before
1161checking the key, because someone with access to the name servers
1162would then be able to fool host authentication.
Damien Miller886c63a2000-01-20 23:13:36 +11001163.It Pa /etc/ssh_config
Damien Miller7684ee12000-03-17 23:40:15 +11001164Systemwide configuration file.
1165This file provides defaults for those
Damien Miller32aa1441999-10-29 09:15:49 +10001166values that are not specified in the user's configuration file, and
Damien Miller7684ee12000-03-17 23:40:15 +11001167for those users who do not have a configuration file.
1168This file must be world-readable.
Damien Miller32aa1441999-10-29 09:15:49 +10001169.It Pa $HOME/.rhosts
1170This file is used in
1171.Pa \&.rhosts
1172authentication to list the
Damien Miller7684ee12000-03-17 23:40:15 +11001173host/user pairs that are permitted to log in.
1174(Note that this file is
Damien Miller32aa1441999-10-29 09:15:49 +10001175also used by rlogin and rsh, which makes using this file insecure.)
1176Each line of the file contains a host name (in the canonical form
1177returned by name servers), and then a user name on that host,
Damien Miller7684ee12000-03-17 23:40:15 +11001178separated by a space.
1179One some machines this file may need to be
Damien Miller32aa1441999-10-29 09:15:49 +10001180world-readable if the user's home directory is on a NFS partition,
1181because
1182.Xr sshd 8
Damien Miller7684ee12000-03-17 23:40:15 +11001183reads it as root.
1184Additionally, this file must be owned by the user,
1185and must not have write permissions for anyone else.
1186The recommended
Damien Miller32aa1441999-10-29 09:15:49 +10001187permission for most machines is read/write for the user, and not
1188accessible by others.
1189.Pp
1190Note that by default
1191.Xr sshd 8
1192will be installed so that it requires successful RSA host
Damien Miller7684ee12000-03-17 23:40:15 +11001193authentication before permitting \s+2.\s0rhosts authentication.
1194If your server machine does not have the client's host key in
Damien Miller886c63a2000-01-20 23:13:36 +11001195.Pa /etc/ssh_known_hosts ,
Damien Miller32aa1441999-10-29 09:15:49 +10001196you can store it in
1197.Pa $HOME/.ssh/known_hosts .
1198The easiest way to do this is to
1199connect back to the client from the server machine using ssh; this
Damien Millere247cc42000-05-07 12:03:14 +10001200will automatically add the host key to
Damien Miller32aa1441999-10-29 09:15:49 +10001201.Pa $HOME/.ssh/known_hosts .
1202.It Pa $HOME/.shosts
1203This file is used exactly the same way as
1204.Pa \&.rhosts .
1205The purpose for
1206having this file is to be able to use rhosts authentication with
1207.Nm
1208without permitting login with
1209.Xr rlogin 1
1210or
1211.Xr rsh 1 .
1212.It Pa /etc/hosts.equiv
1213This file is used during
Damien Miller7684ee12000-03-17 23:40:15 +11001214.Pa \&.rhosts authentication.
1215It contains
Damien Miller32aa1441999-10-29 09:15:49 +10001216canonical hosts names, one per line (the full format is described on
1217the
1218.Xr sshd 8
Damien Miller7684ee12000-03-17 23:40:15 +11001219manual page).
1220If the client host is found in this file, login is
Damien Miller32aa1441999-10-29 09:15:49 +10001221automatically permitted provided client and server user names are the
Damien Miller7684ee12000-03-17 23:40:15 +11001222same.
1223Additionally, successful RSA host authentication is normally
1224required.
1225This file should only be writable by root.
Damien Miller886c63a2000-01-20 23:13:36 +11001226.It Pa /etc/shosts.equiv
Damien Miller22c77262000-04-13 12:26:34 +10001227This file is processed exactly as
Damien Miller32aa1441999-10-29 09:15:49 +10001228.Pa /etc/hosts.equiv .
1229This file may be useful to permit logins using
1230.Nm
1231but not using rsh/rlogin.
Damien Miller886c63a2000-01-20 23:13:36 +11001232.It Pa /etc/sshrc
Damien Miller32aa1441999-10-29 09:15:49 +10001233Commands in this file are executed by
1234.Nm
1235when the user logs in just before the user's shell (or command) is started.
1236See the
1237.Xr sshd 8
1238manual page for more information.
1239.It Pa $HOME/.ssh/rc
1240Commands in this file are executed by
1241.Nm
1242when the user logs in just before the user's shell (or command) is
1243started.
Damien Miller22c77262000-04-13 12:26:34 +10001244See the
Damien Miller32aa1441999-10-29 09:15:49 +10001245.Xr sshd 8
1246manual page for more information.
Damien Miller4f0fa561999-12-26 14:24:41 +11001247.It Pa $HOME/.ssh/environment
1248Contains additional definitions for environment variables, see section
1249.Sx ENVIRONMENT
1250above.
Damien Miller32aa1441999-10-29 09:15:49 +10001251.It Pa libcrypto.so.X.1
1252A version of this library which includes support for the RSA algorithm
1253is required for proper operation.
Damien Miller7b28dc52000-09-05 13:34:53 +11001254.El
Damien Miller0bc1bd82000-11-13 22:57:25 +11001255.Sh AUTHORS
Ben Lindstrom035782e2001-01-29 08:34:16 +00001256OpenSSH is a derivative of the original and free
1257ssh 1.2.12 release by Tatu Ylonen.
1258Aaron Campbell, Bob Beck, Markus Friedl, Niels Provos,
1259Theo de Raadt and Dug Song
1260removed many bugs, re-added newer features and
1261created OpenSSH.
1262Markus Friedl contributed the support for SSH
1263protocol versions 1.5 and 2.0.
Damien Miller32aa1441999-10-29 09:15:49 +10001264.Sh SEE ALSO
1265.Xr rlogin 1 ,
1266.Xr rsh 1 ,
1267.Xr scp 1 ,
Damien Miller33804262001-02-04 23:20:18 +11001268.Xr sftp 1 ,
Damien Miller32aa1441999-10-29 09:15:49 +10001269.Xr ssh-add 1 ,
1270.Xr ssh-agent 1 ,
1271.Xr ssh-keygen 1 ,
1272.Xr telnet 1 ,
Ben Lindstrom5ab6ae12001-02-10 22:08:03 +00001273.Xr sshd 8