blob: 6f10436a2c5a4d0441d67082c22994d843807fc0 [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.\"
Damien Miller832562e2001-01-30 09:30:01 +110037.\" $OpenBSD: ssh.1,v 1.80 2001/01/29 12:36:10 djm 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
Damien Miller832562e2001-01-30 09:30:01 +110051.Op Fl afgknqstvxACNPTX246
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 .
Damien Miller30c3d422000-05-09 11:02:59 +1000377.It Fl c Ar "3des-cbc,blowfish-cbc,arcfour,cast128-cbc"
378Additionally, for protocol version 2 a comma-separated list of ciphers can
Damien Miller874d77b2000-10-14 16:23:11 +1100379be specified in order of preference.
380Protocol version 2 supports 3DES, Blowfish, and CAST128 in CBC mode
381and Arcfour.
Damien Miller32aa1441999-10-29 09:15:49 +1000382.It Fl e Ar ch|^ch|none
383Sets the escape character for sessions with a pty (default:
384.Ql ~ ) .
Damien Miller7684ee12000-03-17 23:40:15 +1100385The escape character is only recognized at the beginning of a line.
386The escape character followed by a dot
Damien Miller32aa1441999-10-29 09:15:49 +1000387.Pq Ql \&.
388closes the connection, followed
389by control-Z suspends the connection, and followed by itself sends the
Damien Miller7684ee12000-03-17 23:40:15 +1100390escape character once.
391Setting the character to
Damien Miller32aa1441999-10-29 09:15:49 +1000392.Dq none
393disables any escapes and makes the session fully transparent.
394.It Fl f
395Requests
396.Nm
Damien Miller7684ee12000-03-17 23:40:15 +1100397to go to background just before command execution.
398This is useful if
Damien Miller32aa1441999-10-29 09:15:49 +1000399.Nm
400is going to ask for passwords or passphrases, but the user
Damien Miller7684ee12000-03-17 23:40:15 +1100401wants it in the background.
Damien Miller22c77262000-04-13 12:26:34 +1000402This implies
Damien Miller32aa1441999-10-29 09:15:49 +1000403.Fl n .
404The recommended way to start X11 programs at a remote site is with
405something like
406.Ic ssh -f host xterm .
Damien Miller396691a2000-01-20 22:44:08 +1100407.It Fl g
408Allows remote hosts to connect to local forwarded ports.
Damien Miller32aa1441999-10-29 09:15:49 +1000409.It Fl i Ar identity_file
Damien Miller22c77262000-04-13 12:26:34 +1000410Selects the file from which the identity (private key) for
Damien Miller0bc1bd82000-11-13 22:57:25 +1100411RSA or DSA authentication is read.
Damien Miller22c77262000-04-13 12:26:34 +1000412Default is
Damien Millere247cc42000-05-07 12:03:14 +1000413.Pa $HOME/.ssh/identity
Damien Miller7684ee12000-03-17 23:40:15 +1100414in the user's home directory.
415Identity files may also be specified on
416a per-host basis in the configuration file.
417It is possible to have multiple
Damien Miller32aa1441999-10-29 09:15:49 +1000418.Fl i
419options (and multiple identities specified in
420configuration files).
Damien Miller32aa1441999-10-29 09:15:49 +1000421.It Fl k
Damien Miller450a7a12000-03-26 13:04:51 +1000422Disables forwarding of Kerberos tickets and AFS tokens.
423This may also be specified on a per-host basis in the configuration file.
Damien Miller32aa1441999-10-29 09:15:49 +1000424.It Fl l Ar login_name
Damien Miller7684ee12000-03-17 23:40:15 +1100425Specifies the user to log in as on the remote machine.
426This also may be specified on a per-host basis in the configuration file.
Damien Miller32aa1441999-10-29 09:15:49 +1000427.It Fl n
428Redirects stdin from
429.Pa /dev/null
430(actually, prevents reading from stdin).
431This must be used when
432.Nm
Damien Miller7684ee12000-03-17 23:40:15 +1100433is run in the background.
434A common trick is to use this to run X11 programs on a remote machine.
435For example,
Damien Miller32aa1441999-10-29 09:15:49 +1000436.Ic ssh -n shadows.cs.hut.fi emacs &
437will start an emacs on shadows.cs.hut.fi, and the X11
438connection will be automatically forwarded over an encrypted channel.
439The
440.Nm
441program will be put in the background.
442(This does not work if
443.Nm
444needs to ask for a password or passphrase; see also the
445.Fl f
446option.)
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000447.It Fl N
448Do not execute a remote command.
Ben Lindstromc72745a2000-12-02 19:03:54 +0000449This is useful if you just want to forward ports
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000450(protocol version 2 only).
Damien Miller32aa1441999-10-29 09:15:49 +1000451.It Fl o Ar option
452Can be used to give options in the format used in the config file.
453This is useful for specifying options for which there is no separate
Damien Miller7684ee12000-03-17 23:40:15 +1100454command-line flag.
455The option has the same format as a line in the configuration file.
Damien Miller32aa1441999-10-29 09:15:49 +1000456.It Fl p Ar port
Damien Miller7684ee12000-03-17 23:40:15 +1100457Port to connect to on the remote host.
458This can be specified on a
Damien Miller32aa1441999-10-29 09:15:49 +1000459per-host basis in the configuration file.
460.It Fl P
461Use a non-privileged port for outgoing connections.
462This can be used if your firewall does
463not permit connections from privileged ports.
Damien Millera34a28b1999-12-14 10:47:15 +1100464Note that this option turns off
Damien Miller32aa1441999-10-29 09:15:49 +1000465.Cm RhostsAuthentication
466and
Kevin Stevesfcec7f82000-12-15 19:55:48 +0000467.Cm RhostsRSAAuthentication
468for older servers.
Damien Miller32aa1441999-10-29 09:15:49 +1000469.It Fl q
Damien Miller7684ee12000-03-17 23:40:15 +1100470Quiet mode.
471Causes all warning and diagnostic messages to be suppressed.
472Only fatal errors are displayed.
Damien Miller832562e2001-01-30 09:30:01 +1100473.It Fl s
474May be used to request invocation of a subsystem on the remote system. Subsystems are a feature of the SSH2 protocol which facilitate the use
475of SSH as a secure transport for other application (eg. sftp). The
476subsystem is specified as the remote command.
Damien Miller32aa1441999-10-29 09:15:49 +1000477.It Fl t
Damien Miller7684ee12000-03-17 23:40:15 +1100478Force pseudo-tty allocation.
Damien Miller450a7a12000-03-26 13:04:51 +1000479This can be used to execute arbitrary
Damien Miller7684ee12000-03-17 23:40:15 +1100480screen-based programs on a remote machine, which can be very useful,
481e.g., when implementing menu services.
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000482Multiple
483.Fl t
484options force tty allocation, even if
485.Nm
486has no local tty.
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000487.It Fl T
Ben Lindstromc72745a2000-12-02 19:03:54 +0000488Disable pseudo-tty allocation.
Damien Miller32aa1441999-10-29 09:15:49 +1000489.It Fl v
Damien Miller7684ee12000-03-17 23:40:15 +1100490Verbose mode.
491Causes
Damien Miller32aa1441999-10-29 09:15:49 +1000492.Nm
Damien Miller7684ee12000-03-17 23:40:15 +1100493to print debugging messages about its progress.
494This is helpful in
Damien Miller32aa1441999-10-29 09:15:49 +1000495debugging connection, authentication, and configuration problems.
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000496Multiple
497.Fl v
498options increases the verbosity.
Damien Miller874d77b2000-10-14 16:23:11 +1100499Maximum is 3.
Damien Miller32aa1441999-10-29 09:15:49 +1000500.It Fl x
Damien Miller7684ee12000-03-17 23:40:15 +1100501Disables X11 forwarding.
Damien Miller32aa1441999-10-29 09:15:49 +1000502.It Fl X
503Enables X11 forwarding.
Damien Millerb1715dc2000-05-30 13:44:51 +1000504This can also be specified on a per-host basis in a configuration file.
Damien Miller32aa1441999-10-29 09:15:49 +1000505.It Fl C
506Requests compression of all data (including stdin, stdout, stderr, and
Damien Miller7684ee12000-03-17 23:40:15 +1100507data for forwarded X11 and TCP/IP connections).
508The compression algorithm is the same used by
Damien Miller396691a2000-01-20 22:44:08 +1100509.Xr gzip 1 ,
510and the
Damien Miller32aa1441999-10-29 09:15:49 +1000511.Dq level
512can be controlled by the
513.Cm CompressionLevel
Damien Miller7684ee12000-03-17 23:40:15 +1100514option (see below).
515Compression is desirable on modem lines and other
Damien Miller32aa1441999-10-29 09:15:49 +1000516slow connections, but will only slow down things on fast networks.
517The default value can be set on a host-by-host basis in the
518configuration files; see the
519.Cm Compress
520option below.
521.It Fl L Ar port:host:hostport
522Specifies that the given port on the local (client) host is to be
Damien Miller7684ee12000-03-17 23:40:15 +1100523forwarded to the given host and port on the remote side.
524This works by allocating a socket to listen to
Damien Miller32aa1441999-10-29 09:15:49 +1000525.Ar port
526on the local side, and whenever a connection is made to this port, the
527connection is forwarded over the secure channel, and a connection is
528made to
Damien Miller34132e52000-01-14 15:45:46 +1100529.Ar host
530port
531.Ar hostport
Damien Miller7684ee12000-03-17 23:40:15 +1100532from the remote machine.
533Port forwardings can also be specified in the configuration file.
534Only root can forward privileged ports.
Damien Miller34132e52000-01-14 15:45:46 +1100535IPv6 addresses can be specified with an alternative syntax:
536.Ar port/host/hostport
Damien Miller32aa1441999-10-29 09:15:49 +1000537.It Fl R Ar port:host:hostport
538Specifies that the given port on the remote (server) host is to be
Damien Miller7684ee12000-03-17 23:40:15 +1100539forwarded to the given host and port on the local side.
540This works by allocating a socket to listen to
Damien Miller32aa1441999-10-29 09:15:49 +1000541.Ar port
542on the remote side, and whenever a connection is made to this port, the
543connection is forwarded over the secure channel, and a connection is
544made to
Damien Miller34132e52000-01-14 15:45:46 +1100545.Ar host
546port
547.Ar hostport
Damien Miller7684ee12000-03-17 23:40:15 +1100548from the local machine.
549Port forwardings can also be specified in the configuration file.
550Privileged ports can be forwarded only when
Damien Miller32aa1441999-10-29 09:15:49 +1000551logging in as root on the remote machine.
Damien Miller4af51302000-04-16 11:18:38 +1000552.It Fl 2
553Forces
554.Nm
Damien Millere247cc42000-05-07 12:03:14 +1000555to try protocol version 2 only.
Damien Miller34132e52000-01-14 15:45:46 +1100556.It Fl 4
557Forces
558.Nm
559to use IPv4 addresses only.
560.It Fl 6
561Forces
562.Nm
563to use IPv6 addresses only.
Damien Miller32aa1441999-10-29 09:15:49 +1000564.El
Damien Miller0bc1bd82000-11-13 22:57:25 +1100565.Pp
566If
567.Nm
568is not invoked with one of the standard program names
569.Pf ( Dq ssh ,
570.Dq slogin ,
571.Dq rsh ,
572.Dq rlogin ,
573or
574.Dq remsh ) ,
575it uses this name as its
576.Ar hostname
577argument.
578This is consistent with traditional
579.Xr rsh 1
580behavior.
Damien Miller32aa1441999-10-29 09:15:49 +1000581.Sh CONFIGURATION FILES
582.Nm
583obtains configuration data from the following sources (in this order):
584command line options, user's configuration file
585.Pq Pa $HOME/.ssh/config ,
586and system-wide configuration file
Damien Miller886c63a2000-01-20 23:13:36 +1100587.Pq Pa /etc/ssh_config .
Damien Miller32aa1441999-10-29 09:15:49 +1000588For each parameter, the first obtained value
Damien Miller7684ee12000-03-17 23:40:15 +1100589will be used.
590The configuration files contain sections bracketed by
591.Dq Host
592specifications, and that section is only applied for hosts that
593match one of the patterns given in the specification.
594The matched host name is the one given on the command line.
Damien Miller32aa1441999-10-29 09:15:49 +1000595.Pp
596Since the first obtained value for each parameter is used, more
597host-specific declarations should be given near the beginning of the
598file, and general defaults at the end.
599.Pp
600The configuration file has the following format:
601.Pp
602Empty lines and lines starting with
603.Ql #
604are comments.
605.Pp
606Otherwise a line is of the format
607.Dq keyword arguments .
608The possible
609keywords and their meanings are as follows (note that the
610configuration files are case-sensitive):
611.Bl -tag -width Ds
612.It Cm Host
613Restricts the following declarations (up to the next
614.Cm Host
615keyword) to be only for those hosts that match one of the patterns
616given after the keyword.
617.Ql \&*
618and
619.Ql ?
620can be used as wildcards in the
Damien Miller7684ee12000-03-17 23:40:15 +1100621patterns.
622A single
Damien Miller32aa1441999-10-29 09:15:49 +1000623.Ql \&*
624as a pattern can be used to provide global
Damien Miller7684ee12000-03-17 23:40:15 +1100625defaults for all hosts.
626The host is the
Damien Miller32aa1441999-10-29 09:15:49 +1000627.Ar hostname
628argument given on the command line (i.e., the name is not converted to
629a canonicalized host name before matching).
630.It Cm AFSTokenPassing
Damien Miller450a7a12000-03-26 13:04:51 +1000631Specifies whether to pass AFS tokens to remote host.
632The argument to this keyword must be
Damien Miller32aa1441999-10-29 09:15:49 +1000633.Dq yes
634or
635.Dq no .
636.It Cm BatchMode
637If set to
638.Dq yes ,
Damien Miller7684ee12000-03-17 23:40:15 +1100639passphrase/password querying will be disabled.
640This option is useful in scripts and other batch jobs where you have no
641user to supply the password.
642The argument must be
Damien Miller32aa1441999-10-29 09:15:49 +1000643.Dq yes
644or
645.Dq no .
Damien Miller396691a2000-01-20 22:44:08 +1100646.It Cm CheckHostIP
647If this flag is set to
648.Dq yes ,
649ssh will additionally check the host ip address in the
650.Pa known_hosts
Damien Miller450a7a12000-03-26 13:04:51 +1000651file.
652This allows ssh to detect if a host key changed due to DNS spoofing.
Damien Miller396691a2000-01-20 22:44:08 +1100653If the option is set to
654.Dq no ,
655the check will not be executed.
Damien Miller32aa1441999-10-29 09:15:49 +1000656.It Cm Cipher
Damien Miller50a41ed2000-10-16 12:14:42 +1100657Specifies the cipher to use for encrypting the session
Damien Miller69b69aa2000-10-28 14:19:58 +1100658in protocol version 1.
Damien Miller7684ee12000-03-17 23:40:15 +1100659Currently,
Damien Miller69b69aa2000-10-28 14:19:58 +1100660.Dq blowfish
Damien Miller32aa1441999-10-29 09:15:49 +1000661and
662.Dq 3des
Damien Miller7684ee12000-03-17 23:40:15 +1100663are supported.
664The default is
Damien Miller32aa1441999-10-29 09:15:49 +1000665.Dq 3des .
Damien Miller22c77262000-04-13 12:26:34 +1000666.It Cm Ciphers
667Specifies the ciphers allowed for protocol version 2
668in order of preference.
669Multiple ciphers must be comma-separated.
670The default is
Ben Lindstromd26dcf32001-01-06 15:18:16 +0000671.Dq 3des-cbc,blowfish-cbc,cast128-cbc,arcfour,aes128-cbc .
Damien Miller32aa1441999-10-29 09:15:49 +1000672.It Cm Compression
Damien Miller7684ee12000-03-17 23:40:15 +1100673Specifies whether to use compression.
674The argument must be
Damien Miller32aa1441999-10-29 09:15:49 +1000675.Dq yes
676or
677.Dq no .
678.It Cm CompressionLevel
Damien Miller7684ee12000-03-17 23:40:15 +1100679Specifies the compression level to use if compression is enable.
680The argument must be an integer from 1 (fast) to 9 (slow, best).
681The default level is 6, which is good for most applications.
682The meaning of the values is the same as in
Damien Miller396691a2000-01-20 22:44:08 +1100683.Xr gzip 1 .
Damien Miller32aa1441999-10-29 09:15:49 +1000684.It Cm ConnectionAttempts
685Specifies the number of tries (one per second) to make before falling
Damien Miller7684ee12000-03-17 23:40:15 +1100686back to rsh or exiting.
687The argument must be an integer.
688This may be useful in scripts if the connection sometimes fails.
Damien Miller0bc1bd82000-11-13 22:57:25 +1100689.It Cm PubkeyAuthentication
690Specifies whether to try public key authentication.
Damien Millere247cc42000-05-07 12:03:14 +1000691The argument to this keyword must be
692.Dq yes
693or
694.Dq no .
Damien Millere247cc42000-05-07 12:03:14 +1000695Note that this option applies to protocol version 2 only.
Damien Miller32aa1441999-10-29 09:15:49 +1000696.It Cm EscapeChar
697Sets the escape character (default:
698.Ql ~ ) .
699The escape character can also
Damien Miller7684ee12000-03-17 23:40:15 +1100700be set on the command line.
701The argument should be a single character,
Damien Miller32aa1441999-10-29 09:15:49 +1000702.Ql ^
703followed by a letter, or
704.Dq none
705to disable the escape
706character entirely (making the connection transparent for binary
707data).
Damien Miller22c77262000-04-13 12:26:34 +1000708.It Cm FallBackToRsh
Damien Miller32aa1441999-10-29 09:15:49 +1000709Specifies that if connecting via
710.Nm
711fails due to a connection refused error (there is no
712.Xr sshd 8
Damien Miller22c77262000-04-13 12:26:34 +1000713listening on the remote host),
Damien Miller32aa1441999-10-29 09:15:49 +1000714.Xr rsh 1
715should automatically be used instead (after a suitable warning about
Damien Miller7684ee12000-03-17 23:40:15 +1100716the session being unencrypted).
717The argument must be
Damien Miller32aa1441999-10-29 09:15:49 +1000718.Dq yes
719or
720.Dq no .
721.It Cm ForwardAgent
722Specifies whether the connection to the authentication agent (if any)
Damien Miller7684ee12000-03-17 23:40:15 +1100723will be forwarded to the remote machine.
724The argument must be
Damien Miller32aa1441999-10-29 09:15:49 +1000725.Dq yes
726or
727.Dq no .
Damien Millerb1715dc2000-05-30 13:44:51 +1000728The default is
729.Dq no .
Damien Miller32aa1441999-10-29 09:15:49 +1000730.It Cm ForwardX11
731Specifies whether X11 connections will be automatically redirected
Damien Miller22c77262000-04-13 12:26:34 +1000732over the secure channel and
Damien Miller32aa1441999-10-29 09:15:49 +1000733.Ev DISPLAY
Damien Miller7684ee12000-03-17 23:40:15 +1100734set.
Damien Miller22c77262000-04-13 12:26:34 +1000735The argument must be
Damien Miller32aa1441999-10-29 09:15:49 +1000736.Dq yes
737or
738.Dq no .
Damien Miller98c7ad62000-03-09 21:27:49 +1100739The default is
740.Dq no .
Damien Miller32aa1441999-10-29 09:15:49 +1000741.It Cm GatewayPorts
742Specifies whether remote hosts are allowed to connect to local
743forwarded ports.
744The argument must be
745.Dq yes
746or
747.Dq no .
748The default is
749.Dq no .
750.It Cm GlobalKnownHostsFile
Damien Miller22c77262000-04-13 12:26:34 +1000751Specifies a file to use instead of
Damien Miller886c63a2000-01-20 23:13:36 +1100752.Pa /etc/ssh_known_hosts .
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000753.It Cm HostKeyAlias
754Specifies an alias that should be used instead of the
755real host name when looking up or saving the host key
756the kown_hosts files.
757This option is useful for tunneling ssh connection
758or if you have multiple servers running on a single host.
Damien Miller32aa1441999-10-29 09:15:49 +1000759.It Cm HostName
Damien Miller7684ee12000-03-17 23:40:15 +1100760Specifies the real host name to log into.
761This can be used to specify nicknames or abbreviations for hosts.
762Default is the name given on the command line.
763Numeric IP addresses are also permitted (both on the command line and in
Damien Miller32aa1441999-10-29 09:15:49 +1000764.Cm HostName
765specifications).
766.It Cm IdentityFile
767Specifies the file from which the user's RSA authentication identity
768is read (default
Damien Millere247cc42000-05-07 12:03:14 +1000769.Pa $HOME/.ssh/identity
Damien Miller32aa1441999-10-29 09:15:49 +1000770in the user's home directory).
771Additionally, any identities represented by the authentication agent
Damien Miller7684ee12000-03-17 23:40:15 +1100772will be used for authentication.
773The file name may use the tilde
774syntax to refer to a user's home directory.
775It is possible to have
Damien Miller32aa1441999-10-29 09:15:49 +1000776multiple identity files specified in configuration files; all these
777identities will be tried in sequence.
778.It Cm KeepAlive
779Specifies whether the system should send keepalive messages to the
Damien Miller7684ee12000-03-17 23:40:15 +1100780other side.
781If they are sent, death of the connection or crash of one
782of the machines will be properly noticed.
783However, this means that
Damien Miller32aa1441999-10-29 09:15:49 +1000784connections will die if the route is down temporarily, and some people
Damien Miller450a7a12000-03-26 13:04:51 +1000785find it annoying.
Damien Miller32aa1441999-10-29 09:15:49 +1000786.Pp
787The default is
788.Dq yes
789(to send keepalives), and the client will notice
Damien Miller7684ee12000-03-17 23:40:15 +1100790if the network goes down or the remote host dies.
791This is important in scripts, and many users want it too.
Damien Miller32aa1441999-10-29 09:15:49 +1000792.Pp
793To disable keepalives, the value should be set to
794.Dq no
795in both the server and the client configuration files.
796.It Cm KerberosAuthentication
Damien Miller450a7a12000-03-26 13:04:51 +1000797Specifies whether Kerberos authentication will be used.
798The argument to this keyword must be
Damien Miller32aa1441999-10-29 09:15:49 +1000799.Dq yes
800or
801.Dq no .
802.It Cm KerberosTgtPassing
Damien Miller450a7a12000-03-26 13:04:51 +1000803Specifies whether a Kerberos TGT will be forwarded to the server.
804This will only work if the Kerberos server is actually an AFS kaserver.
805The argument to this keyword must be
Damien Miller32aa1441999-10-29 09:15:49 +1000806.Dq yes
807or
808.Dq no .
809.It Cm LocalForward
810Specifies that a TCP/IP port on the local machine be forwarded over
Damien Miller7684ee12000-03-17 23:40:15 +1100811the secure channel to given host:port from the remote machine.
812The first argument must be a port number, and the second must be
813host:port.
814Multiple forwardings may be specified, and additional
815forwardings can be given on the command line.
816Only the superuser can forward privileged ports.
Damien Miller5ce662a1999-11-11 17:57:39 +1100817.It Cm LogLevel
818Gives the verbosity level that is used when logging messages from
819.Nm ssh .
820The possible values are:
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000821QUIET, FATAL, ERROR, INFO, VERBOSE and DEBUG.
822The default is INFO.
Damien Miller32aa1441999-10-29 09:15:49 +1000823.It Cm NumberOfPasswordPrompts
Damien Miller450a7a12000-03-26 13:04:51 +1000824Specifies the number of password prompts before giving up.
825The argument to this keyword must be an integer.
826Default is 3.
Damien Miller396691a2000-01-20 22:44:08 +1100827.It Cm PasswordAuthentication
Damien Miller7684ee12000-03-17 23:40:15 +1100828Specifies whether to use password authentication.
829The argument to this keyword must be
Damien Miller396691a2000-01-20 22:44:08 +1100830.Dq yes
831or
832.Dq no .
Damien Millere247cc42000-05-07 12:03:14 +1000833Note that this option applies to both protocol version 1 and 2.
Damien Miller32aa1441999-10-29 09:15:49 +1000834.It Cm Port
Damien Miller7684ee12000-03-17 23:40:15 +1100835Specifies the port number to connect on the remote host.
836Default is 22.
Damien Miller22c77262000-04-13 12:26:34 +1000837.It Cm Protocol
838Specifies the protocol versions
839.Nm
840should support in order of preference.
841The possible values are
842.Dq 1
843and
844.Dq 2 .
845Multiple versions must be comma-separated.
846The default is
Damien Millere247cc42000-05-07 12:03:14 +1000847.Dq 1,2 .
848This means that
849.Nm
850tries version 1 and falls back to version 2
Damien Miller30c3d422000-05-09 11:02:59 +1000851if version 1 is not available.
Damien Miller32aa1441999-10-29 09:15:49 +1000852.It Cm ProxyCommand
Damien Miller7684ee12000-03-17 23:40:15 +1100853Specifies the command to use to connect to the server.
854The command
855string extends to the end of the line, and is executed with
856.Pa /bin/sh .
857In the command string,
858.Ql %h
859will be substituted by the host name to
860connect and
861.Ql %p
862by the port.
863The command can be basically anything,
864and should read from its standard input and write to its standard output.
865It should eventually connect an
Damien Miller32aa1441999-10-29 09:15:49 +1000866.Xr sshd 8
867server running on some machine, or execute
868.Ic sshd -i
Damien Miller7684ee12000-03-17 23:40:15 +1100869somewhere.
870Host key management will be done using the
Damien Miller32aa1441999-10-29 09:15:49 +1000871HostName of the host being connected (defaulting to the name typed by
872the user).
Damien Milleraae6c611999-12-06 11:47:28 +1100873Note that
874.Cm CheckHostIP
875is not available for connects with a proxy command.
Damien Miller32aa1441999-10-29 09:15:49 +1000876.Pp
877.It Cm RemoteForward
878Specifies that a TCP/IP port on the remote machine be forwarded over
Damien Miller7684ee12000-03-17 23:40:15 +1100879the secure channel to given host:port from the local machine.
880The first argument must be a port number, and the second must be
881host:port.
882Multiple forwardings may be specified, and additional
883forwardings can be given on the command line.
884Only the superuser can forward privileged ports.
Damien Miller32aa1441999-10-29 09:15:49 +1000885.It Cm RhostsAuthentication
Damien Miller7684ee12000-03-17 23:40:15 +1100886Specifies whether to try rhosts based authentication.
887Note that this
Damien Miller32aa1441999-10-29 09:15:49 +1000888declaration only affects the client side and has no effect whatsoever
Damien Miller7684ee12000-03-17 23:40:15 +1100889on security.
890Disabling rhosts authentication may reduce
Damien Miller32aa1441999-10-29 09:15:49 +1000891authentication time on slow connections when rhosts authentication is
Damien Miller7684ee12000-03-17 23:40:15 +1100892not used.
893Most servers do not permit RhostsAuthentication because it
894is not secure (see RhostsRSAAuthentication).
895The argument to this keyword must be
Damien Miller32aa1441999-10-29 09:15:49 +1000896.Dq yes
897or
898.Dq no .
899.It Cm RhostsRSAAuthentication
900Specifies whether to try rhosts based authentication with RSA host
Damien Miller7684ee12000-03-17 23:40:15 +1100901authentication.
902This is the primary authentication method for most sites.
903The argument must be
Damien Miller32aa1441999-10-29 09:15:49 +1000904.Dq yes
905or
906.Dq no .
907.It Cm RSAAuthentication
Damien Miller7684ee12000-03-17 23:40:15 +1100908Specifies whether to try RSA authentication.
909The argument to this keyword must be
Damien Miller32aa1441999-10-29 09:15:49 +1000910.Dq yes
911or
912.Dq no .
913RSA authentication will only be
914attempted if the identity file exists, or an authentication agent is
915running.
Damien Millere247cc42000-05-07 12:03:14 +1000916Note that this option applies to protocol version 1 only.
Damien Miller95def091999-11-25 00:26:21 +1100917.It Cm SkeyAuthentication
918Specifies whether to use
919.Xr skey 1
Damien Miller7684ee12000-03-17 23:40:15 +1100920authentication.
921The argument to this keyword must be
Damien Miller95def091999-11-25 00:26:21 +1100922.Dq yes
923or
924.Dq no .
925The default is
926.Dq no .
Damien Miller32aa1441999-10-29 09:15:49 +1000927.It Cm StrictHostKeyChecking
928If this flag is set to
Damien Miller22c77262000-04-13 12:26:34 +1000929.Dq yes ,
Damien Miller32aa1441999-10-29 09:15:49 +1000930.Nm
Ben Lindstromeb930d42001-01-29 08:37:08 +0000931will never automatically add host keys to the
Damien Miller32aa1441999-10-29 09:15:49 +1000932.Pa $HOME/.ssh/known_hosts
Damien Millere247cc42000-05-07 12:03:14 +1000933and
934.Pa $HOME/.ssh/known_hosts2
Ben Lindstromeb930d42001-01-29 08:37:08 +0000935files, and refuses to connect to hosts whose host key has changed.
Damien Miller7684ee12000-03-17 23:40:15 +1100936This provides maximum protection against trojan horse attacks.
937However, it can be somewhat annoying if you don't have good
Damien Miller886c63a2000-01-20 23:13:36 +1100938.Pa /etc/ssh_known_hosts
Damien Millere247cc42000-05-07 12:03:14 +1000939and
940.Pa /etc/ssh_known_hosts2
Damien Miller32aa1441999-10-29 09:15:49 +1000941files installed and frequently
Ben Lindstromeb930d42001-01-29 08:37:08 +0000942connect to new hosts.
943This option forces the user to manually
944add all new hosts.
945If this flag is set to
946.Dq no ,
947.Nm
948will automatically add new host keys to the
949user known hosts files.
950If this flag is set to
951.Dq ask ,
952new host keys
953will be added to the user known host files only after the user
954has confirmed that is what they really want to do, and
955.Nm
956will refuse to connect to hosts whose host key has changed.
Damien Miller7684ee12000-03-17 23:40:15 +1100957The host keys of
Ben Lindstromeb930d42001-01-29 08:37:08 +0000958known hosts will be verified automatically in all cases.
Damien Miller7684ee12000-03-17 23:40:15 +1100959The argument must be
Ben Lindstromeb930d42001-01-29 08:37:08 +0000960.Dq yes ,
961.Dq no
Damien Miller32aa1441999-10-29 09:15:49 +1000962or
Ben Lindstromeb930d42001-01-29 08:37:08 +0000963.Dq ask .
964The default is
965.Dq ask .
Damien Miller32aa1441999-10-29 09:15:49 +1000966.It Cm UsePrivilegedPort
967Specifies whether to use a privileged port for outgoing connections.
968The argument must be
969.Dq yes
970or
971.Dq no .
972The default is
973.Dq yes .
974Note that setting this option to
975.Dq no
Damien Millera34a28b1999-12-14 10:47:15 +1100976turns off
Damien Miller32aa1441999-10-29 09:15:49 +1000977.Cm RhostsAuthentication
978and
Kevin Stevesfcec7f82000-12-15 19:55:48 +0000979.Cm RhostsRSAAuthentication
980for older servers.
Damien Miller396691a2000-01-20 22:44:08 +1100981.It Cm User
Damien Miller7684ee12000-03-17 23:40:15 +1100982Specifies the user to log in as.
983This can be useful if you have a different user name on different machines.
984This saves the trouble of
Damien Miller396691a2000-01-20 22:44:08 +1100985having to remember to give the user name on the command line.
986.It Cm UserKnownHostsFile
987Specifies a file to use instead of
988.Pa $HOME/.ssh/known_hosts .
Damien Miller32aa1441999-10-29 09:15:49 +1000989.It Cm UseRsh
Damien Miller7684ee12000-03-17 23:40:15 +1100990Specifies that rlogin/rsh should be used for this host.
991It is possible that the host does not at all support the
Damien Miller32aa1441999-10-29 09:15:49 +1000992.Nm
Damien Miller7684ee12000-03-17 23:40:15 +1100993protocol.
994This causes
Damien Miller32aa1441999-10-29 09:15:49 +1000995.Nm
Damien Miller7684ee12000-03-17 23:40:15 +1100996to immediately execute
Damien Miller32aa1441999-10-29 09:15:49 +1000997.Xr rsh 1 .
998All other options (except
999.Cm HostName )
Damien Miller7684ee12000-03-17 23:40:15 +11001000are ignored if this has been specified.
1001The argument must be
Damien Miller32aa1441999-10-29 09:15:49 +10001002.Dq yes
1003or
1004.Dq no .
Damien Millerd3a18572000-06-07 19:55:44 +10001005.It Cm XAuthLocation
1006Specifies the location of the
1007.Xr xauth 1
1008program.
1009The default is
1010.Pa /usr/X11R6/bin/xauth .
Damien Miller7b28dc52000-09-05 13:34:53 +11001011.El
Damien Miller32aa1441999-10-29 09:15:49 +10001012.Sh ENVIRONMENT
1013.Nm
1014will normally set the following environment variables:
1015.Bl -tag -width Ds
1016.It Ev DISPLAY
1017The
1018.Ev DISPLAY
Damien Miller7684ee12000-03-17 23:40:15 +11001019variable indicates the location of the X11 server.
Damien Miller22c77262000-04-13 12:26:34 +10001020It is automatically set by
Damien Miller32aa1441999-10-29 09:15:49 +10001021.Nm
1022to point to a value of the form
1023.Dq hostname:n
1024where hostname indicates
Damien Miller7684ee12000-03-17 23:40:15 +11001025the host where the shell runs, and n is an integer >= 1.
1026.Nm
1027uses this special value to forward X11 connections over the secure
1028channel.
1029The user should normally not set DISPLAY explicitly, as that
Damien Miller32aa1441999-10-29 09:15:49 +10001030will render the X11 connection insecure (and will require the user to
1031manually copy any required authorization cookies).
1032.It Ev HOME
1033Set to the path of the user's home directory.
1034.It Ev LOGNAME
1035Synonym for
1036.Ev USER ;
1037set for compatibility with systems that use this variable.
1038.It Ev MAIL
1039Set to point the user's mailbox.
Damien Miller7684ee12000-03-17 23:40:15 +11001040.It Ev PATH
Damien Miller32aa1441999-10-29 09:15:49 +10001041Set to the default
1042.Ev PATH ,
1043as specified when compiling
1044.Nm ssh .
1045.It Ev SSH_AUTH_SOCK
1046indicates the path of a unix-domain socket used to communicate with the
1047agent.
1048.It Ev SSH_CLIENT
Damien Miller7684ee12000-03-17 23:40:15 +11001049Identifies the client end of the connection.
1050The variable contains
Damien Miller32aa1441999-10-29 09:15:49 +10001051three space-separated values: client ip-address, client port number,
1052and server port number.
Ben Lindstrom4dccfa52000-12-28 16:40:05 +00001053.It Ev SSH_ORIGINAL_COMMAND
1054The variable contains the original command line if a forced command
1055is executed.
1056It can be used to extract the original arguments.
Damien Miller32aa1441999-10-29 09:15:49 +10001057.It Ev SSH_TTY
1058This is set to the name of the tty (path to the device) associated
Damien Miller7684ee12000-03-17 23:40:15 +11001059with the current shell or command.
1060If the current session has no tty,
Damien Miller32aa1441999-10-29 09:15:49 +10001061this variable is not set.
1062.It Ev TZ
1063The timezone variable is set to indicate the present timezone if it
Damien Miller942da032000-08-18 13:59:06 +10001064was set when the daemon was started (i.e., the daemon passes the value
Damien Miller32aa1441999-10-29 09:15:49 +10001065on to new connections).
1066.It Ev USER
1067Set to the name of the user logging in.
1068.El
1069.Pp
Damien Miller22c77262000-04-13 12:26:34 +10001070Additionally,
Damien Miller32aa1441999-10-29 09:15:49 +10001071.Nm
Damien Miller22c77262000-04-13 12:26:34 +10001072reads
1073.Pa $HOME/.ssh/environment ,
Damien Miller32aa1441999-10-29 09:15:49 +10001074and adds lines of the format
1075.Dq VARNAME=value
1076to the environment.
1077.Sh FILES
Damien Miller98c7ad62000-03-09 21:27:49 +11001078.Bl -tag -width Ds
Damien Miller32aa1441999-10-29 09:15:49 +10001079.It Pa $HOME/.ssh/known_hosts
1080Records host keys for all hosts the user has logged into (that are not
1081in
Damien Miller886c63a2000-01-20 23:13:36 +11001082.Pa /etc/ssh_known_hosts ) .
Damien Miller32aa1441999-10-29 09:15:49 +10001083See
1084.Xr sshd 8 .
Damien Millere247cc42000-05-07 12:03:14 +10001085.It Pa $HOME/.ssh/identity, $HOME/.ssh/id_dsa
1086Contains the RSA and the DSA authentication identity of the user.
1087These files
1088contain sensitive data and should be readable by the user but not
Damien Miller32aa1441999-10-29 09:15:49 +10001089accessible by others (read/write/execute).
1090Note that
1091.Nm
Damien Millere247cc42000-05-07 12:03:14 +10001092ignores a private key file if it is accessible by others.
Damien Miller32aa1441999-10-29 09:15:49 +10001093It is possible to specify a passphrase when
1094generating the key; the passphrase will be used to encrypt the
1095sensitive part of this file using 3DES.
Damien Millere247cc42000-05-07 12:03:14 +10001096.It Pa $HOME/.ssh/identity.pub, $HOME/.ssh/id_dsa.pub
Damien Miller32aa1441999-10-29 09:15:49 +10001097Contains the public key for authentication (public part of the
Damien Miller7684ee12000-03-17 23:40:15 +11001098identity file in human-readable form).
Damien Millere247cc42000-05-07 12:03:14 +10001099The contents of the
1100.Pa $HOME/.ssh/identity.pub
1101file should be added to
Damien Miller32aa1441999-10-29 09:15:49 +10001102.Pa $HOME/.ssh/authorized_keys
1103on all machines
Damien Miller7684ee12000-03-17 23:40:15 +11001104where you wish to log in using RSA authentication.
Damien Millere247cc42000-05-07 12:03:14 +10001105The contents of the
1106.Pa $HOME/.ssh/id_dsa.pub
1107file should be added to
1108.Pa $HOME/.ssh/authorized_keys2
1109on all machines
1110where you wish to log in using DSA authentication.
1111These files are not
Damien Miller7684ee12000-03-17 23:40:15 +11001112sensitive and can (but need not) be readable by anyone.
Damien Millere247cc42000-05-07 12:03:14 +10001113These files are
1114never used automatically and are not necessary; they is only provided for
Damien Miller32aa1441999-10-29 09:15:49 +10001115the convenience of the user.
1116.It Pa $HOME/.ssh/config
Damien Miller7684ee12000-03-17 23:40:15 +11001117This is the per-user configuration file.
1118The format of this file is described above.
1119This file is used by the
Damien Miller32aa1441999-10-29 09:15:49 +10001120.Nm
Damien Miller7684ee12000-03-17 23:40:15 +11001121client.
1122This file does not usually contain any sensitive information,
Damien Miller32aa1441999-10-29 09:15:49 +10001123but the recommended permissions are read/write for the user, and not
1124accessible by others.
1125.It Pa $HOME/.ssh/authorized_keys
Damien Miller7684ee12000-03-17 23:40:15 +11001126Lists the RSA keys that can be used for logging in as this user.
1127The format of this file is described in the
Damien Miller32aa1441999-10-29 09:15:49 +10001128.Xr sshd 8
Damien Miller7684ee12000-03-17 23:40:15 +11001129manual page.
1130In the simplest form the format is the same as the .pub
Damien Miller32aa1441999-10-29 09:15:49 +10001131identity files (that is, each line contains the number of bits in
1132modulus, public exponent, modulus, and comment fields, separated by
Damien Miller7684ee12000-03-17 23:40:15 +11001133spaces).
1134This file is not highly sensitive, but the recommended
Damien Miller32aa1441999-10-29 09:15:49 +10001135permissions are read/write for the user, and not accessible by others.
Damien Millere247cc42000-05-07 12:03:14 +10001136.It Pa $HOME/.ssh/authorized_keys2
Damien Miller0bc1bd82000-11-13 22:57:25 +11001137Lists the public keys (DSA/RSA) that can be used for logging in as this user.
Damien Millere247cc42000-05-07 12:03:14 +10001138This file is not highly sensitive, but the recommended
1139permissions are read/write for the user, and not accessible by others.
1140.It Pa /etc/ssh_known_hosts, /etc/ssh_known_hosts2
Damien Miller7684ee12000-03-17 23:40:15 +11001141Systemwide list of known host keys.
Damien Millere247cc42000-05-07 12:03:14 +10001142.Pa /etc/ssh_known_hosts
1143contains RSA and
1144.Pa /etc/ssh_known_hosts2
Damien Miller0bc1bd82000-11-13 22:57:25 +11001145contains DSA or RSA keys for protocol version 2.
Damien Millere247cc42000-05-07 12:03:14 +10001146These files should be prepared by the
Damien Miller32aa1441999-10-29 09:15:49 +10001147system administrator to contain the public host keys of all machines in the
Damien Miller7684ee12000-03-17 23:40:15 +11001148organization.
1149This file should be world-readable.
1150This file contains
Damien Miller32aa1441999-10-29 09:15:49 +10001151public keys, one per line, in the following format (fields separated
1152by spaces): system name, number of bits in modulus, public exponent,
Damien Miller7684ee12000-03-17 23:40:15 +11001153modulus, and optional comment field.
1154When different names are used
Damien Miller32aa1441999-10-29 09:15:49 +10001155for the same machine, all such names should be listed, separated by
Damien Miller7684ee12000-03-17 23:40:15 +11001156commas.
1157The format is described on the
Damien Miller32aa1441999-10-29 09:15:49 +10001158.Xr sshd 8
1159manual page.
1160.Pp
1161The canonical system name (as returned by name servers) is used by
1162.Xr sshd 8
1163to verify the client host when logging in; other names are needed because
1164.Nm
1165does not convert the user-supplied name to a canonical name before
1166checking the key, because someone with access to the name servers
1167would then be able to fool host authentication.
Damien Miller886c63a2000-01-20 23:13:36 +11001168.It Pa /etc/ssh_config
Damien Miller7684ee12000-03-17 23:40:15 +11001169Systemwide configuration file.
1170This file provides defaults for those
Damien Miller32aa1441999-10-29 09:15:49 +10001171values that are not specified in the user's configuration file, and
Damien Miller7684ee12000-03-17 23:40:15 +11001172for those users who do not have a configuration file.
1173This file must be world-readable.
Damien Miller32aa1441999-10-29 09:15:49 +10001174.It Pa $HOME/.rhosts
1175This file is used in
1176.Pa \&.rhosts
1177authentication to list the
Damien Miller7684ee12000-03-17 23:40:15 +11001178host/user pairs that are permitted to log in.
1179(Note that this file is
Damien Miller32aa1441999-10-29 09:15:49 +10001180also used by rlogin and rsh, which makes using this file insecure.)
1181Each line of the file contains a host name (in the canonical form
1182returned by name servers), and then a user name on that host,
Damien Miller7684ee12000-03-17 23:40:15 +11001183separated by a space.
1184One some machines this file may need to be
Damien Miller32aa1441999-10-29 09:15:49 +10001185world-readable if the user's home directory is on a NFS partition,
1186because
1187.Xr sshd 8
Damien Miller7684ee12000-03-17 23:40:15 +11001188reads it as root.
1189Additionally, this file must be owned by the user,
1190and must not have write permissions for anyone else.
1191The recommended
Damien Miller32aa1441999-10-29 09:15:49 +10001192permission for most machines is read/write for the user, and not
1193accessible by others.
1194.Pp
1195Note that by default
1196.Xr sshd 8
1197will be installed so that it requires successful RSA host
Damien Miller7684ee12000-03-17 23:40:15 +11001198authentication before permitting \s+2.\s0rhosts authentication.
1199If your server machine does not have the client's host key in
Damien Miller886c63a2000-01-20 23:13:36 +11001200.Pa /etc/ssh_known_hosts ,
Damien Miller32aa1441999-10-29 09:15:49 +10001201you can store it in
1202.Pa $HOME/.ssh/known_hosts .
1203The easiest way to do this is to
1204connect back to the client from the server machine using ssh; this
Damien Millere247cc42000-05-07 12:03:14 +10001205will automatically add the host key to
Damien Miller32aa1441999-10-29 09:15:49 +10001206.Pa $HOME/.ssh/known_hosts .
1207.It Pa $HOME/.shosts
1208This file is used exactly the same way as
1209.Pa \&.rhosts .
1210The purpose for
1211having this file is to be able to use rhosts authentication with
1212.Nm
1213without permitting login with
1214.Xr rlogin 1
1215or
1216.Xr rsh 1 .
1217.It Pa /etc/hosts.equiv
1218This file is used during
Damien Miller7684ee12000-03-17 23:40:15 +11001219.Pa \&.rhosts authentication.
1220It contains
Damien Miller32aa1441999-10-29 09:15:49 +10001221canonical hosts names, one per line (the full format is described on
1222the
1223.Xr sshd 8
Damien Miller7684ee12000-03-17 23:40:15 +11001224manual page).
1225If the client host is found in this file, login is
Damien Miller32aa1441999-10-29 09:15:49 +10001226automatically permitted provided client and server user names are the
Damien Miller7684ee12000-03-17 23:40:15 +11001227same.
1228Additionally, successful RSA host authentication is normally
1229required.
1230This file should only be writable by root.
Damien Miller886c63a2000-01-20 23:13:36 +11001231.It Pa /etc/shosts.equiv
Damien Miller22c77262000-04-13 12:26:34 +10001232This file is processed exactly as
Damien Miller32aa1441999-10-29 09:15:49 +10001233.Pa /etc/hosts.equiv .
1234This file may be useful to permit logins using
1235.Nm
1236but not using rsh/rlogin.
Damien Miller886c63a2000-01-20 23:13:36 +11001237.It Pa /etc/sshrc
Damien Miller32aa1441999-10-29 09:15:49 +10001238Commands in this file are executed by
1239.Nm
1240when the user logs in just before the user's shell (or command) is started.
1241See the
1242.Xr sshd 8
1243manual page for more information.
1244.It Pa $HOME/.ssh/rc
1245Commands in this file are executed by
1246.Nm
1247when the user logs in just before the user's shell (or command) is
1248started.
Damien Miller22c77262000-04-13 12:26:34 +10001249See the
Damien Miller32aa1441999-10-29 09:15:49 +10001250.Xr sshd 8
1251manual page for more information.
Damien Miller4f0fa561999-12-26 14:24:41 +11001252.It Pa $HOME/.ssh/environment
1253Contains additional definitions for environment variables, see section
1254.Sx ENVIRONMENT
1255above.
Damien Miller32aa1441999-10-29 09:15:49 +10001256.It Pa libcrypto.so.X.1
1257A version of this library which includes support for the RSA algorithm
1258is required for proper operation.
Damien Miller7b28dc52000-09-05 13:34:53 +11001259.El
Damien Miller0bc1bd82000-11-13 22:57:25 +11001260.Sh AUTHORS
Ben Lindstrom035782e2001-01-29 08:34:16 +00001261OpenSSH is a derivative of the original and free
1262ssh 1.2.12 release by Tatu Ylonen.
1263Aaron Campbell, Bob Beck, Markus Friedl, Niels Provos,
1264Theo de Raadt and Dug Song
1265removed many bugs, re-added newer features and
1266created OpenSSH.
1267Markus Friedl contributed the support for SSH
1268protocol versions 1.5 and 2.0.
Damien Miller32aa1441999-10-29 09:15:49 +10001269.Sh SEE ALSO
1270.Xr rlogin 1 ,
1271.Xr rsh 1 ,
1272.Xr scp 1 ,
1273.Xr ssh-add 1 ,
1274.Xr ssh-agent 1 ,
1275.Xr ssh-keygen 1 ,
1276.Xr telnet 1 ,
1277.Xr sshd 8 ,
Ben Lindstromc72745a2000-12-02 19:03:54 +00001278.Xr ssl 8