blob: 6cef0851df39242a87f2fe9419855b43965f6219 [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.\"
Ben Lindstrom92a2e382001-03-05 06:59:27 +000013.\" 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.
Damien Millere4340be2000-09-16 13:29:08 +110016.\"
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 Miller05202ff2004-06-15 10:30:39 +100037.\" $OpenBSD: ssh.1,v 1.189 2004/06/13 14:01:42 dtucker 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
Ben Lindstromd58eb5f2001-03-07 06:07:22 +000043.Nd OpenSSH SSH client (remote login program)
Damien Miller32aa1441999-10-29 09:15:49 +100044.Sh SYNOPSIS
45.Nm ssh
Darren Tucker0a118da2003-10-15 15:54:32 +100046.Op Fl 1246AaCfgkNnqsTtVvXxY
Ben Lindstrome0f88042001-04-30 13:06:24 +000047.Op Fl b Ar bind_address
Damien Miller30c3d422000-05-09 11:02:59 +100048.Op Fl c Ar cipher_spec
Darren Tucker61776952003-10-02 16:19:47 +100049.Op Fl D Ar port
Damien Miller32aa1441999-10-29 09:15:49 +100050.Op Fl e Ar escape_char
Ben Lindstrom14f31ab2001-09-12 17:48:04 +000051.Op Fl F Ar configfile
Darren Tucker61776952003-10-02 16:19:47 +100052.Op Fl i Ar identity_file
53.Bk -words
Damien Miller32aa1441999-10-29 09:15:49 +100054.Oo Fl L Xo
55.Sm off
Damien Miller32aa1441999-10-29 09:15:49 +100056.Ar port :
Damien Miller396691a2000-01-20 22:44:08 +110057.Ar host :
Damien Miller32aa1441999-10-29 09:15:49 +100058.Ar hostport
59.Sm on
60.Xc
61.Oc
Damien Miller495dca32003-04-01 21:42:14 +100062.Ek
Darren Tucker61776952003-10-02 16:19:47 +100063.Op Fl l Ar login_name
64.Op Fl m Ar mac_spec
65.Op Fl o Ar option
Damien Miller495dca32003-04-01 21:42:14 +100066.Bk -words
Darren Tucker61776952003-10-02 16:19:47 +100067.Op Fl p Ar port
68.Ek
Damien Miller32aa1441999-10-29 09:15:49 +100069.Oo Fl R Xo
70.Sm off
Damien Miller32aa1441999-10-29 09:15:49 +100071.Ar port :
Damien Miller396691a2000-01-20 22:44:08 +110072.Ar host :
Damien Miller32aa1441999-10-29 09:15:49 +100073.Ar hostport
74.Sm on
75.Xc
76.Oc
Darren Tucker61776952003-10-02 16:19:47 +100077.Oo Ar user Ns @ Oc Ns Ar hostname
Damien Miller32aa1441999-10-29 09:15:49 +100078.Op Ar command
Damien Miller22c77262000-04-13 12:26:34 +100079.Sh DESCRIPTION
Damien Miller32aa1441999-10-29 09:15:49 +100080.Nm
Ben Lindstromd58eb5f2001-03-07 06:07:22 +000081(SSH client) is a program for logging into a remote machine and for
Damien Miller7684ee12000-03-17 23:40:15 +110082executing commands on a remote machine.
Darren Tucker61776952003-10-02 16:19:47 +100083It is intended to replace rlogin and rsh,
84and provide secure encrypted communications between
Damien Miller7684ee12000-03-17 23:40:15 +110085two untrusted hosts over an insecure network.
Darren Tucker61776952003-10-02 16:19:47 +100086X11 connections and arbitrary TCP/IP ports
87can also be forwarded over the secure channel.
Damien Miller32aa1441999-10-29 09:15:49 +100088.Pp
89.Nm
Damien Miller22c77262000-04-13 12:26:34 +100090connects and logs into the specified
Darren Tucker61776952003-10-02 16:19:47 +100091.Ar hostname
92(with optional
93.Ar user
94name).
Damien Miller32aa1441999-10-29 09:15:49 +100095The user must prove
Damien Millere247cc42000-05-07 12:03:14 +100096his/her identity to the remote machine using one of several methods
Darren Tucker61776952003-10-02 16:19:47 +100097depending on the protocol version used.
Damien Millere247cc42000-05-07 12:03:14 +100098.Pp
Darren Tucker61776952003-10-02 16:19:47 +100099If
100.Ar command
101is specified,
102.Ar command
103is executed on the remote host instead of a login shell.
Damien Millere247cc42000-05-07 12:03:14 +1000104.Ss SSH protocol version 1
Damien Miller32aa1441999-10-29 09:15:49 +1000105First, if the machine the user logs in from is listed in
106.Pa /etc/hosts.equiv
107or
Damien Miller886c63a2000-01-20 23:13:36 +1100108.Pa /etc/shosts.equiv
Damien Miller32aa1441999-10-29 09:15:49 +1000109on the remote machine, and the user names are
110the same on both sides, the user is immediately permitted to log in.
Damien Miller22c77262000-04-13 12:26:34 +1000111Second, if
Darren Tucker61776952003-10-02 16:19:47 +1000112.Pa .rhosts
Damien Miller32aa1441999-10-29 09:15:49 +1000113or
Darren Tucker61776952003-10-02 16:19:47 +1000114.Pa .shosts
Damien Miller32aa1441999-10-29 09:15:49 +1000115exists in the user's home directory on the
116remote machine and contains a line containing the name of the client
117machine and the name of the user on that machine, the user is
Damien Miller7684ee12000-03-17 23:40:15 +1100118permitted to log in.
119This form of authentication alone is normally not
Damien Miller32aa1441999-10-29 09:15:49 +1000120allowed by the server because it is not secure.
121.Pp
Ben Lindstromc65e6a02001-04-23 13:02:16 +0000122The second authentication method is the
Darren Tucker61776952003-10-02 16:19:47 +1000123.Em rhosts
Damien Miller32aa1441999-10-29 09:15:49 +1000124or
Darren Tucker61776952003-10-02 16:19:47 +1000125.Em hosts.equiv
Damien Miller7684ee12000-03-17 23:40:15 +1100126method combined with RSA-based host authentication.
127It means that if the login would be permitted by
Damien Millere247cc42000-05-07 12:03:14 +1000128.Pa $HOME/.rhosts ,
129.Pa $HOME/.shosts ,
Damien Miller32aa1441999-10-29 09:15:49 +1000130.Pa /etc/hosts.equiv ,
131or
Damien Miller886c63a2000-01-20 23:13:36 +1100132.Pa /etc/shosts.equiv ,
Damien Miller32aa1441999-10-29 09:15:49 +1000133and if additionally the server can verify the client's
Damien Miller22c77262000-04-13 12:26:34 +1000134host key (see
Damien Miller05eda432002-02-10 18:32:28 +1100135.Pa /etc/ssh/ssh_known_hosts
Damien Miller33e511e1999-11-11 11:43:13 +1100136and
137.Pa $HOME/.ssh/known_hosts
Damien Miller32aa1441999-10-29 09:15:49 +1000138in the
139.Sx FILES
Darren Tucker61776952003-10-02 16:19:47 +1000140section), only then is login permitted.
Damien Miller7684ee12000-03-17 23:40:15 +1100141This authentication method closes security holes due to IP
142spoofing, DNS spoofing and routing spoofing.
143[Note to the administrator:
Damien Miller32aa1441999-10-29 09:15:49 +1000144.Pa /etc/hosts.equiv ,
Damien Millere247cc42000-05-07 12:03:14 +1000145.Pa $HOME/.rhosts ,
Damien Miller32aa1441999-10-29 09:15:49 +1000146and the rlogin/rsh protocol in general, are inherently insecure and should be
147disabled if security is desired.]
148.Pp
Damien Miller22c77262000-04-13 12:26:34 +1000149As a third authentication method,
Damien Miller32aa1441999-10-29 09:15:49 +1000150.Nm
151supports RSA based authentication.
152The scheme is based on public-key cryptography: there are cryptosystems
153where encryption and decryption are done using separate keys, and it
154is not possible to derive the decryption key from the encryption key.
Damien Miller7684ee12000-03-17 23:40:15 +1100155RSA is one such system.
Damien Miller22c77262000-04-13 12:26:34 +1000156The idea is that each user creates a public/private
Damien Miller7684ee12000-03-17 23:40:15 +1100157key pair for authentication purposes.
158The server knows the public key, and only the user knows the private key.
Darren Tucker61776952003-10-02 16:19:47 +1000159.Pp
Damien Miller22c77262000-04-13 12:26:34 +1000160The file
Damien Miller32aa1441999-10-29 09:15:49 +1000161.Pa $HOME/.ssh/authorized_keys
Darren Tucker61776952003-10-02 16:19:47 +1000162lists the public keys that are permitted for logging in.
Damien Miller7684ee12000-03-17 23:40:15 +1100163When the user logs in, the
Damien Miller32aa1441999-10-29 09:15:49 +1000164.Nm
165program tells the server which key pair it would like to use for
Damien Miller7684ee12000-03-17 23:40:15 +1100166authentication.
Darren Tucker61776952003-10-02 16:19:47 +1000167The server checks if this key is permitted, and if so,
168sends the user (actually the
Damien Miller32aa1441999-10-29 09:15:49 +1000169.Nm
170program running on behalf of the user) a challenge, a random number,
Damien Miller7684ee12000-03-17 23:40:15 +1100171encrypted by the user's public key.
Darren Tucker61776952003-10-02 16:19:47 +1000172The challenge can only be decrypted using the proper private key.
173The user's client then decrypts the challenge using the private key,
174proving that he/she knows the private key
175but without disclosing it to the server.
Damien Miller32aa1441999-10-29 09:15:49 +1000176.Pp
177.Nm
Damien Miller7684ee12000-03-17 23:40:15 +1100178implements the RSA authentication protocol automatically.
179The user creates his/her RSA key pair by running
Damien Miller32aa1441999-10-29 09:15:49 +1000180.Xr ssh-keygen 1 .
Damien Miller22c77262000-04-13 12:26:34 +1000181This stores the private key in
Damien Millere247cc42000-05-07 12:03:14 +1000182.Pa $HOME/.ssh/identity
Darren Tucker61776952003-10-02 16:19:47 +1000183and stores the public key in
Damien Millere247cc42000-05-07 12:03:14 +1000184.Pa $HOME/.ssh/identity.pub
Damien Miller7684ee12000-03-17 23:40:15 +1100185in the user's home directory.
186The user should then copy the
Damien Miller32aa1441999-10-29 09:15:49 +1000187.Pa identity.pub
Damien Miller22c77262000-04-13 12:26:34 +1000188to
Damien Millere247cc42000-05-07 12:03:14 +1000189.Pa $HOME/.ssh/authorized_keys
Damien Miller22c77262000-04-13 12:26:34 +1000190in his/her home directory on the remote machine (the
Damien Miller32aa1441999-10-29 09:15:49 +1000191.Pa authorized_keys
Damien Miller22c77262000-04-13 12:26:34 +1000192file corresponds to the conventional
Damien Millere247cc42000-05-07 12:03:14 +1000193.Pa $HOME/.rhosts
Damien Miller32aa1441999-10-29 09:15:49 +1000194file, and has one key
Damien Miller7684ee12000-03-17 23:40:15 +1100195per line, though the lines can be very long).
196After this, the user can log in without giving the password.
Darren Tucker61776952003-10-02 16:19:47 +1000197RSA authentication is much more secure than
198.Em rhosts
199authentication.
Damien Miller32aa1441999-10-29 09:15:49 +1000200.Pp
201The most convenient way to use RSA authentication may be with an
Damien Miller7684ee12000-03-17 23:40:15 +1100202authentication agent.
203See
Damien Miller32aa1441999-10-29 09:15:49 +1000204.Xr ssh-agent 1
205for more information.
206.Pp
Damien Miller22c77262000-04-13 12:26:34 +1000207If other authentication methods fail,
Damien Miller32aa1441999-10-29 09:15:49 +1000208.Nm
Damien Miller7684ee12000-03-17 23:40:15 +1100209prompts the user for a password.
210The password is sent to the remote
Damien Miller32aa1441999-10-29 09:15:49 +1000211host for checking; however, since all communications are encrypted,
212the password cannot be seen by someone listening on the network.
Damien Millere247cc42000-05-07 12:03:14 +1000213.Ss SSH protocol version 2
Darren Tucker61776952003-10-02 16:19:47 +1000214When a user connects using protocol version 2,
Damien Miller07a2d422002-02-05 12:16:15 +1100215similar authentication methods are available.
Ben Lindstromc65e6a02001-04-23 13:02:16 +0000216Using the default values for
217.Cm PreferredAuthentications ,
Ben Lindstroma9086a12001-08-06 20:58:51 +0000218the client will try to authenticate first using the hostbased method;
Darren Tucker61776952003-10-02 16:19:47 +1000219if this method fails, public key authentication is attempted,
220and finally if this method fails, keyboard-interactive and
Ben Lindstroma9086a12001-08-06 20:58:51 +0000221password authentication are tried.
Damien Millere247cc42000-05-07 12:03:14 +1000222.Pp
223The public key method is similar to RSA authentication described
Ben Lindstromc65e6a02001-04-23 13:02:16 +0000224in the previous section and allows the RSA or DSA algorithm to be used:
Ben Lindstrom18a82ac2001-04-11 15:59:35 +0000225The client uses his private key,
Damien Millere247cc42000-05-07 12:03:14 +1000226.Pa $HOME/.ssh/id_dsa
Ben Lindstrom18a82ac2001-04-11 15:59:35 +0000227or
228.Pa $HOME/.ssh/id_rsa ,
Damien Millere247cc42000-05-07 12:03:14 +1000229to sign the session identifier and sends the result to the server.
230The server checks whether the matching public key is listed in
Ben Lindstromf96704d2001-06-25 04:17:12 +0000231.Pa $HOME/.ssh/authorized_keys
Damien Millere247cc42000-05-07 12:03:14 +1000232and grants access if both the key is found and the signature is correct.
233The session identifier is derived from a shared Diffie-Hellman value
234and is only known to the client and the server.
235.Pp
Darren Tucker61776952003-10-02 16:19:47 +1000236If public key authentication fails or is not available, a password
237can be sent encrypted to the remote host to prove the user's identity.
Ben Lindstromc65e6a02001-04-23 13:02:16 +0000238.Pp
239Additionally,
240.Nm
241supports hostbased or challenge response authentication.
Damien Millere247cc42000-05-07 12:03:14 +1000242.Pp
243Protocol 2 provides additional mechanisms for confidentiality
Damien Miller05202ff2004-06-15 10:30:39 +1000244(the traffic is encrypted using AES, 3DES, Blowfish, CAST128 or Arcfour)
245and integrity (hmac-md5, hmac-sha1, hmac-ripemd160).
Damien Millere247cc42000-05-07 12:03:14 +1000246Note that protocol 1 lacks a strong mechanism for ensuring the
247integrity of the connection.
Damien Millere247cc42000-05-07 12:03:14 +1000248.Ss Login session and remote execution
Damien Miller32aa1441999-10-29 09:15:49 +1000249When the user's identity has been accepted by the server, the server
250either executes the given command, or logs into the machine and gives
Damien Miller7684ee12000-03-17 23:40:15 +1100251the user a normal shell on the remote machine.
252All communication with
Damien Miller32aa1441999-10-29 09:15:49 +1000253the remote command or shell will be automatically encrypted.
254.Pp
255If a pseudo-terminal has been allocated (normal login session), the
Ben Lindstrom9ffdcb52001-04-20 12:50:51 +0000256user may use the escape characters noted below.
Damien Miller32aa1441999-10-29 09:15:49 +1000257.Pp
Darren Tucker61776952003-10-02 16:19:47 +1000258If no pseudo-tty has been allocated,
259the session is transparent and can be used to reliably transfer binary data.
Damien Miller7684ee12000-03-17 23:40:15 +1100260On most systems, setting the escape character to
Damien Miller32aa1441999-10-29 09:15:49 +1000261.Dq none
262will also make the session transparent even if a tty is used.
263.Pp
Ben Lindstroma6885612000-12-09 03:45:32 +0000264The session terminates when the command or shell on the remote
Ben Lindstromebd888d2001-03-05 05:49:29 +0000265machine exits and all X11 and TCP/IP connections have been closed.
Darren Tucker61776952003-10-02 16:19:47 +1000266The exit status of the remote program is returned as the exit status of
Damien Miller32aa1441999-10-29 09:15:49 +1000267.Nm ssh .
Ben Lindstrom9ffdcb52001-04-20 12:50:51 +0000268.Ss Escape Characters
Darren Tucker61776952003-10-02 16:19:47 +1000269When a pseudo-terminal has been requested,
270.Nm
271supports a number of functions through the use of an escape character.
Ben Lindstrom9ffdcb52001-04-20 12:50:51 +0000272.Pp
273A single tilde character can be sent as
274.Ic ~~
Ben Lindstrom66007692001-07-22 20:41:59 +0000275or by following the tilde by a character other than those described below.
Ben Lindstrom9ffdcb52001-04-20 12:50:51 +0000276The escape character must always follow a newline to be interpreted as
277special.
278The escape character can be changed in configuration files using the
279.Cm EscapeChar
Ben Lindstrom24643222001-06-25 05:08:11 +0000280configuration directive or on the command line by the
Ben Lindstrom9ffdcb52001-04-20 12:50:51 +0000281.Fl e
282option.
283.Pp
284The supported escapes (assuming the default
285.Ql ~ )
286are:
287.Bl -tag -width Ds
288.It Cm ~.
Darren Tucker61776952003-10-02 16:19:47 +1000289Disconnect.
Ben Lindstrom9ffdcb52001-04-20 12:50:51 +0000290.It Cm ~^Z
Darren Tucker61776952003-10-02 16:19:47 +1000291Background
292.Nm ssh .
Ben Lindstrom9ffdcb52001-04-20 12:50:51 +0000293.It Cm ~#
Darren Tucker61776952003-10-02 16:19:47 +1000294List forwarded connections.
Ben Lindstrom9ffdcb52001-04-20 12:50:51 +0000295.It Cm ~&
Darren Tucker61776952003-10-02 16:19:47 +1000296Background
297.Nm
298at logout when waiting for forwarded connection / X11 sessions to terminate.
Ben Lindstrom9ffdcb52001-04-20 12:50:51 +0000299.It Cm ~?
Darren Tucker61776952003-10-02 16:19:47 +1000300Display a list of escape characters.
Damien Miller54c45982003-05-15 10:20:13 +1000301.It Cm ~B
Darren Tucker61776952003-10-02 16:19:47 +1000302Send a BREAK to the remote system
303(only useful for SSH protocol version 2 and if the peer supports it).
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000304.It Cm ~C
Darren Tuckere7066df2004-05-24 10:18:05 +1000305Open command line.
306Currently this allows the addition of port forwardings using the
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000307.Fl L
308and
309.Fl R
Darren Tuckere7066df2004-05-24 10:18:05 +1000310options (see below).
Darren Tuckere534e122004-05-24 10:35:14 +1000311It also allows the cancellation of existing remote port-forwardings
Darren Tuckere7066df2004-05-24 10:18:05 +1000312using
313.Fl KR Ar hostport .
Darren Tucker1973c882004-05-24 10:34:36 +1000314Basic help is available, using the
315.Fl h
Darren Tuckere7066df2004-05-24 10:18:05 +1000316option.
Ben Lindstrom9ffdcb52001-04-20 12:50:51 +0000317.It Cm ~R
Darren Tucker61776952003-10-02 16:19:47 +1000318Request rekeying of the connection
319(only useful for SSH protocol version 2 and if the peer supports it).
Ben Lindstrom9ffdcb52001-04-20 12:50:51 +0000320.El
Damien Millere247cc42000-05-07 12:03:14 +1000321.Ss X11 and TCP forwarding
Ben Lindstrom71215072001-05-17 03:16:18 +0000322If the
323.Cm ForwardX11
324variable is set to
325.Dq yes
Darren Tucker61776952003-10-02 16:19:47 +1000326(or see the description of the
Ben Lindstrom71215072001-05-17 03:16:18 +0000327.Fl X
328and
329.Fl x
330options described later)
331and the user is using X11 (the
Damien Miller32aa1441999-10-29 09:15:49 +1000332.Ev DISPLAY
333environment variable is set), the connection to the X11 display is
334automatically forwarded to the remote side in such a way that any X11
335programs started from the shell (or command) will go through the
336encrypted channel, and the connection to the real X server will be made
Damien Miller7684ee12000-03-17 23:40:15 +1100337from the local machine.
338The user should not manually set
Damien Miller32aa1441999-10-29 09:15:49 +1000339.Ev DISPLAY .
340Forwarding of X11 connections can be
341configured on the command line or in configuration files.
342.Pp
343The
Damien Miller22c77262000-04-13 12:26:34 +1000344.Ev DISPLAY
Damien Miller32aa1441999-10-29 09:15:49 +1000345value set by
346.Nm
Darren Tucker61776952003-10-02 16:19:47 +1000347will point to the server machine, but with a display number greater than zero.
Damien Miller7684ee12000-03-17 23:40:15 +1100348This is normal, and happens because
Damien Miller32aa1441999-10-29 09:15:49 +1000349.Nm
350creates a
351.Dq proxy
352X server on the server machine for forwarding the
353connections over the encrypted channel.
354.Pp
355.Nm
356will also automatically set up Xauthority data on the server machine.
357For this purpose, it will generate a random authorization cookie,
358store it in Xauthority on the server, and verify that any forwarded
359connections carry this cookie and replace it by the real cookie when
Damien Miller7684ee12000-03-17 23:40:15 +1100360the connection is opened.
361The real authentication cookie is never
Damien Miller32aa1441999-10-29 09:15:49 +1000362sent to the server machine (and no cookies are sent in the plain).
363.Pp
Ben Lindstrom3541f182002-08-20 19:03:20 +0000364If the
365.Cm ForwardAgent
366variable is set to
367.Dq yes
Darren Tucker61776952003-10-02 16:19:47 +1000368(or see the description of the
Ben Lindstrom3541f182002-08-20 19:03:20 +0000369.Fl A
370and
371.Fl a
Damien Miller495dca32003-04-01 21:42:14 +1000372options described later) and
Ben Lindstrom3541f182002-08-20 19:03:20 +0000373the user is using an authentication agent, the connection to the agent
374is automatically forwarded to the remote side.
Damien Miller32aa1441999-10-29 09:15:49 +1000375.Pp
376Forwarding of arbitrary TCP/IP connections over the secure channel can
Ben Lindstrom979c9812001-07-22 20:45:39 +0000377be specified either on the command line or in a configuration file.
Damien Miller7684ee12000-03-17 23:40:15 +1100378One possible application of TCP/IP forwarding is a secure connection to an
Ben Lindstromebd888d2001-03-05 05:49:29 +0000379electronic purse; another is going through firewalls.
Damien Millere247cc42000-05-07 12:03:14 +1000380.Ss Server authentication
Damien Miller32aa1441999-10-29 09:15:49 +1000381.Nm
Damien Millere247cc42000-05-07 12:03:14 +1000382automatically maintains and checks a database containing
Damien Miller7684ee12000-03-17 23:40:15 +1100383identifications for all hosts it has ever been used with.
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000384Host keys are stored in
Damien Millere247cc42000-05-07 12:03:14 +1000385.Pa $HOME/.ssh/known_hosts
Damien Miller7684ee12000-03-17 23:40:15 +1100386in the user's home directory.
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000387Additionally, the file
Damien Miller05eda432002-02-10 18:32:28 +1100388.Pa /etc/ssh/ssh_known_hosts
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000389is automatically checked for known hosts.
Damien Miller7684ee12000-03-17 23:40:15 +1100390Any new hosts are automatically added to the user's file.
Darren Tucker61776952003-10-02 16:19:47 +1000391If a host's identification ever changes,
Damien Miller32aa1441999-10-29 09:15:49 +1000392.Nm
393warns about this and disables password authentication to prevent a
Damien Miller7684ee12000-03-17 23:40:15 +1100394trojan horse from getting the user's password.
Darren Tucker61776952003-10-02 16:19:47 +1000395Another purpose of this mechanism is to prevent man-in-the-middle attacks
396which could otherwise be used to circumvent the encryption.
Damien Miller7684ee12000-03-17 23:40:15 +1100397The
Damien Miller32aa1441999-10-29 09:15:49 +1000398.Cm StrictHostKeyChecking
Ben Lindstrom9f049032002-06-21 00:59:05 +0000399option can be used to prevent logins to machines whose
Damien Miller32aa1441999-10-29 09:15:49 +1000400host key is not known or has changed.
Damien Miller0bc1bd82000-11-13 22:57:25 +1100401.Pp
402The options are as follows:
Damien Miller32aa1441999-10-29 09:15:49 +1000403.Bl -tag -width Ds
Darren Tucker61776952003-10-02 16:19:47 +1000404.It Fl 1
405Forces
406.Nm
407to try protocol version 1 only.
408.It Fl 2
409Forces
410.Nm
411to try protocol version 2 only.
412.It Fl 4
413Forces
414.Nm
415to use IPv4 addresses only.
416.It Fl 6
417Forces
418.Nm
419to use IPv6 addresses only.
Damien Millerb1715dc2000-05-30 13:44:51 +1000420.It Fl A
421Enables forwarding of the authentication agent connection.
422This can also be specified on a per-host basis in a configuration file.
Damien Millerb5fdfaa2002-09-12 09:52:03 +1000423.Pp
Damien Miller495dca32003-04-01 21:42:14 +1000424Agent forwarding should be enabled with caution.
425Users with the ability to bypass file permissions on the remote host
426(for the agent's Unix-domain socket)
427can access the local agent through the forwarded connection.
428An attacker cannot obtain key material from the agent,
Damien Millerb5fdfaa2002-09-12 09:52:03 +1000429however they can perform operations on the keys that enable them to
430authenticate using the identities loaded into the agent.
Darren Tucker61776952003-10-02 16:19:47 +1000431.It Fl a
432Disables forwarding of the authentication agent connection.
Ben Lindstrome0f88042001-04-30 13:06:24 +0000433.It Fl b Ar bind_address
434Specify the interface to transmit from on machines with multiple
435interfaces or aliased addresses.
Darren Tucker61776952003-10-02 16:19:47 +1000436.It Fl C
437Requests compression of all data (including stdin, stdout, stderr, and
438data for forwarded X11 and TCP/IP connections).
439The compression algorithm is the same used by
440.Xr gzip 1 ,
441and the
442.Dq level
443can be controlled by the
444.Cm CompressionLevel
445option for protocol version 1.
446Compression is desirable on modem lines and other
447slow connections, but will only slow down things on fast networks.
448The default value can be set on a host-by-host basis in the
449configuration files; see the
450.Cm Compression
451option.
Damien Miller05202ff2004-06-15 10:30:39 +1000452.It Fl c Ar cipher_spec
453Selects the cipher specification for encrypting the session.
454.Pp
455Protocol version 1 allows specification of a single cipher.
456The suported values are
457.Dq 3des ,
458.Dq blowfish
459and
460.Dq des .
Damien Miller32aa1441999-10-29 09:15:49 +1000461.Ar 3des
462(triple-des) is an encrypt-decrypt-encrypt triple with three different keys.
Damien Miller05202ff2004-06-15 10:30:39 +1000463It is believed to be secure.
Damien Miller32aa1441999-10-29 09:15:49 +1000464.Ar blowfish
Darren Tucker61776952003-10-02 16:19:47 +1000465is a fast block cipher; it appears very secure and is much faster than
Damien Miller7684ee12000-03-17 23:40:15 +1100466.Ar 3des .
Ben Lindstromffa1dd62001-09-12 16:52:28 +0000467.Ar des
468is only supported in the
469.Nm
470client for interoperability with legacy protocol 1 implementations
471that do not support the
472.Ar 3des
Damien Miller495dca32003-04-01 21:42:14 +1000473cipher.
474Its use is strongly discouraged due to cryptographic weaknesses.
Damien Miller05202ff2004-06-15 10:30:39 +1000475The default is
476.Dq 3des .
477.Pp
478For protocol version 2
479.Ar cipher_spec
480is a comma-separated list of ciphers
481listed in order of preference.
482The supported ciphers are
483.Dq 3des-cbc ,
484.Dq aes128-cbc ,
485.Dq aes192-cbc ,
486.Dq aes256-cbc ,
487.Dq aes128-ctr ,
488.Dq aes192-ctr ,
489.Dq aes256-ctr ,
490.Dq arcfour ,
491.Dq blowfish-cbc ,
492and
493.Dq cast128-cbc .
494The default is
495.Bd -literal
496 ``aes128-cbc,3des-cbc,blowfish-cbc,cast128-cbc,arcfour,
497 aes192-cbc,aes256-cbc''
498.Ed
Darren Tucker61776952003-10-02 16:19:47 +1000499.It Fl D Ar port
500Specifies a local
501.Dq dynamic
502application-level port forwarding.
503This works by allocating a socket to listen to
504.Ar port
505on the local side, and whenever a connection is made to this port, the
506connection is forwarded over the secure channel, and the application
507protocol is then used to determine where to connect to from the
508remote machine.
509Currently the SOCKS4 and SOCKS5 protocols are supported, and
510.Nm
511will act as a SOCKS server.
512Only root can forward privileged ports.
513Dynamic port forwardings can also be specified in the configuration file.
514.It Fl e Ar ch | ^ch | none
Damien Miller32aa1441999-10-29 09:15:49 +1000515Sets the escape character for sessions with a pty (default:
516.Ql ~ ) .
Damien Miller7684ee12000-03-17 23:40:15 +1100517The escape character is only recognized at the beginning of a line.
518The escape character followed by a dot
Damien Miller32aa1441999-10-29 09:15:49 +1000519.Pq Ql \&.
Darren Tucker61776952003-10-02 16:19:47 +1000520closes the connection;
521followed by control-Z suspends the connection;
522and followed by itself sends the escape character once.
Damien Miller7684ee12000-03-17 23:40:15 +1100523Setting the character to
Damien Miller32aa1441999-10-29 09:15:49 +1000524.Dq none
525disables any escapes and makes the session fully transparent.
Darren Tucker61776952003-10-02 16:19:47 +1000526.It Fl F Ar configfile
527Specifies an alternative per-user configuration file.
528If a configuration file is given on the command line,
529the system-wide configuration file
530.Pq Pa /etc/ssh/ssh_config
531will be ignored.
532The default for the per-user configuration file is
533.Pa $HOME/.ssh/config .
Damien Miller32aa1441999-10-29 09:15:49 +1000534.It Fl f
535Requests
536.Nm
Damien Miller7684ee12000-03-17 23:40:15 +1100537to go to background just before command execution.
538This is useful if
Damien Miller32aa1441999-10-29 09:15:49 +1000539.Nm
540is going to ask for passwords or passphrases, but the user
Damien Miller7684ee12000-03-17 23:40:15 +1100541wants it in the background.
Damien Miller22c77262000-04-13 12:26:34 +1000542This implies
Damien Miller32aa1441999-10-29 09:15:49 +1000543.Fl n .
544The recommended way to start X11 programs at a remote site is with
545something like
546.Ic ssh -f host xterm .
Damien Miller396691a2000-01-20 22:44:08 +1100547.It Fl g
548Allows remote hosts to connect to local forwarded ports.
Darren Tucker61776952003-10-02 16:19:47 +1000549.It Fl I Ar smartcard_device
550Specifies which smartcard device to use.
551The argument is the device
552.Nm
553should use to communicate with a smartcard used for storing the user's
554private RSA key.
Damien Miller32aa1441999-10-29 09:15:49 +1000555.It Fl i Ar identity_file
Damien Millerfae23862002-01-22 23:32:26 +1100556Selects a file from which the identity (private key) for
Damien Miller0bc1bd82000-11-13 22:57:25 +1100557RSA or DSA authentication is read.
Damien Millerfae23862002-01-22 23:32:26 +1100558The default is
Damien Millere247cc42000-05-07 12:03:14 +1000559.Pa $HOME/.ssh/identity
Damien Millerfae23862002-01-22 23:32:26 +1100560for protocol version 1, and
561.Pa $HOME/.ssh/id_rsa
562and
563.Pa $HOME/.ssh/id_dsa
564for protocol version 2.
Damien Miller7684ee12000-03-17 23:40:15 +1100565Identity files may also be specified on
566a per-host basis in the configuration file.
567It is possible to have multiple
Damien Miller32aa1441999-10-29 09:15:49 +1000568.Fl i
569options (and multiple identities specified in
570configuration files).
Damien Miller32aa1441999-10-29 09:15:49 +1000571.It Fl k
Damien Millere0113cc2003-11-24 13:10:09 +1100572Disables forwarding (delegation) of GSSAPI credentials to the server.
Darren Tucker61776952003-10-02 16:19:47 +1000573.It Fl L Xo
574.Sm off
575.Ar port : host : hostport
576.Sm on
577.Xc
578Specifies that the given port on the local (client) host is to be
579forwarded to the given host and port on the remote side.
580This works by allocating a socket to listen to
581.Ar port
582on the local side, and whenever a connection is made to this port, the
583connection is forwarded over the secure channel, and a connection is
584made to
585.Ar host
586port
587.Ar hostport
588from the remote machine.
589Port forwardings can also be specified in the configuration file.
590Only root can forward privileged ports.
591IPv6 addresses can be specified with an alternative syntax:
592.Sm off
593.Xo
594.Ar port No / Ar host No /
595.Ar hostport .
596.Xc
597.Sm on
Damien Miller32aa1441999-10-29 09:15:49 +1000598.It Fl l Ar login_name
Damien Miller7684ee12000-03-17 23:40:15 +1100599Specifies the user to log in as on the remote machine.
600This also may be specified on a per-host basis in the configuration file.
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000601.It Fl m Ar mac_spec
602Additionally, for protocol version 2 a comma-separated list of MAC
603(message authentication code) algorithms can
604be specified in order of preference.
605See the
606.Cm MACs
607keyword for more information.
Darren Tucker61776952003-10-02 16:19:47 +1000608.It Fl N
609Do not execute a remote command.
610This is useful for just forwarding ports
611(protocol version 2 only).
Damien Miller32aa1441999-10-29 09:15:49 +1000612.It Fl n
613Redirects stdin from
614.Pa /dev/null
615(actually, prevents reading from stdin).
616This must be used when
617.Nm
Damien Miller7684ee12000-03-17 23:40:15 +1100618is run in the background.
619A common trick is to use this to run X11 programs on a remote machine.
620For example,
Damien Miller32aa1441999-10-29 09:15:49 +1000621.Ic ssh -n shadows.cs.hut.fi emacs &
622will start an emacs on shadows.cs.hut.fi, and the X11
623connection will be automatically forwarded over an encrypted channel.
624The
625.Nm
626program will be put in the background.
627(This does not work if
628.Nm
629needs to ask for a password or passphrase; see also the
630.Fl f
631option.)
632.It Fl o Ar option
Ben Lindstrom14c62eb2001-08-15 23:25:46 +0000633Can be used to give options in the format used in the configuration file.
Damien Miller32aa1441999-10-29 09:15:49 +1000634This is useful for specifying options for which there is no separate
Damien Miller7684ee12000-03-17 23:40:15 +1100635command-line flag.
Darren Tucker61776952003-10-02 16:19:47 +1000636For full details of the options listed below, and their possible values, see
637.Xr ssh_config 5 .
638.Pp
639.Bl -tag -width Ds -offset indent -compact
640.It AddressFamily
641.It BatchMode
642.It BindAddress
643.It ChallengeResponseAuthentication
644.It CheckHostIP
645.It Cipher
646.It Ciphers
647.It ClearAllForwardings
648.It Compression
649.It CompressionLevel
650.It ConnectionAttempts
Darren Tuckeredae0ec2004-05-02 22:15:52 +1000651.It ConnectTimeout
Darren Tucker61776952003-10-02 16:19:47 +1000652.It DynamicForward
Darren Tucker61776952003-10-02 16:19:47 +1000653.It EscapeChar
654.It ForwardAgent
655.It ForwardX11
Darren Tucker0a118da2003-10-15 15:54:32 +1000656.It ForwardX11Trusted
Darren Tucker61776952003-10-02 16:19:47 +1000657.It GatewayPorts
658.It GlobalKnownHostsFile
659.It GSSAPIAuthentication
660.It GSSAPIDelegateCredentials
661.It Host
662.It HostbasedAuthentication
663.It HostKeyAlgorithms
664.It HostKeyAlias
665.It HostName
666.It IdentityFile
Damien Millerbd394c32004-03-08 23:12:36 +1100667.It IdentitiesOnly
Darren Tucker61776952003-10-02 16:19:47 +1000668.It LocalForward
669.It LogLevel
670.It MACs
671.It NoHostAuthenticationForLocalhost
672.It NumberOfPasswordPrompts
673.It PasswordAuthentication
674.It Port
675.It PreferredAuthentications
676.It Protocol
677.It ProxyCommand
678.It PubkeyAuthentication
679.It RemoteForward
680.It RhostsRSAAuthentication
681.It RSAAuthentication
Darren Tucker7a6c0662004-05-02 22:14:03 +1000682.It SendEnv
Damien Miller509b0102003-12-17 16:33:10 +1100683.It ServerAliveInterval
684.It ServerAliveCountMax
Darren Tucker61776952003-10-02 16:19:47 +1000685.It SmartcardDevice
686.It StrictHostKeyChecking
Damien Miller12c150e2003-12-17 16:31:10 +1100687.It TCPKeepAlive
Darren Tucker61776952003-10-02 16:19:47 +1000688.It UsePrivilegedPort
689.It User
690.It UserKnownHostsFile
691.It VerifyHostKeyDNS
692.It XAuthLocation
693.El
Damien Miller32aa1441999-10-29 09:15:49 +1000694.It Fl p Ar port
Damien Miller7684ee12000-03-17 23:40:15 +1100695Port to connect to on the remote host.
696This can be specified on a
Damien Miller32aa1441999-10-29 09:15:49 +1000697per-host basis in the configuration file.
Damien Miller32aa1441999-10-29 09:15:49 +1000698.It Fl q
Damien Miller7684ee12000-03-17 23:40:15 +1100699Quiet mode.
700Causes all warning and diagnostic messages to be suppressed.
Darren Tucker61776952003-10-02 16:19:47 +1000701.It Fl R Xo
702.Sm off
703.Ar port : host : hostport
704.Sm on
705.Xc
Damien Miller32aa1441999-10-29 09:15:49 +1000706Specifies that the given port on the remote (server) host is to be
Damien Miller7684ee12000-03-17 23:40:15 +1100707forwarded to the given host and port on the local side.
708This works by allocating a socket to listen to
Damien Miller32aa1441999-10-29 09:15:49 +1000709.Ar port
710on the remote side, and whenever a connection is made to this port, the
711connection is forwarded over the secure channel, and a connection is
712made to
Damien Miller34132e52000-01-14 15:45:46 +1100713.Ar host
714port
715.Ar hostport
Damien Miller7684ee12000-03-17 23:40:15 +1100716from the local machine.
717Port forwardings can also be specified in the configuration file.
718Privileged ports can be forwarded only when
Damien Miller32aa1441999-10-29 09:15:49 +1000719logging in as root on the remote machine.
Ben Lindstromc65e6a02001-04-23 13:02:16 +0000720IPv6 addresses can be specified with an alternative syntax:
Darren Tucker61776952003-10-02 16:19:47 +1000721.Sm off
722.Xo
723.Ar port No / Ar host No /
724.Ar hostport .
725.Xc
726.Sm on
727.It Fl s
728May be used to request invocation of a subsystem on the remote system.
729Subsystems are a feature of the SSH2 protocol which facilitate the use
730of SSH as a secure transport for other applications (eg.\&
731.Xr sftp 1 ) .
732The subsystem is specified as the remote command.
733.It Fl T
734Disable pseudo-tty allocation.
735.It Fl t
736Force pseudo-tty allocation.
737This can be used to execute arbitrary
738screen-based programs on a remote machine, which can be very useful,
739e.g., when implementing menu services.
740Multiple
741.Fl t
742options force tty allocation, even if
Ben Lindstrom19ceb172001-09-12 17:54:24 +0000743.Nm
Darren Tucker61776952003-10-02 16:19:47 +1000744has no local tty.
745.It Fl V
746Display the version number and exit.
747.It Fl v
748Verbose mode.
749Causes
Ben Lindstrom5ab6ae12001-02-10 22:08:03 +0000750.Nm
Darren Tucker61776952003-10-02 16:19:47 +1000751to print debugging messages about its progress.
752This is helpful in
753debugging connection, authentication, and configuration problems.
754Multiple
755.Fl v
756options increase the verbosity.
757The maximum is 3.
758.It Fl X
759Enables X11 forwarding.
760This can also be specified on a per-host basis in a configuration file.
761.Pp
762X11 forwarding should be enabled with caution.
763Users with the ability to bypass file permissions on the remote host
764(for the user's X authorization database)
765can access the local X11 display through the forwarded connection.
766An attacker may then be able to perform activities such as keystroke monitoring.
767.It Fl x
768Disables X11 forwarding.
Darren Tucker0a118da2003-10-15 15:54:32 +1000769.It Fl Y
770Enables trusted X11 forwarding.
Damien Miller32aa1441999-10-29 09:15:49 +1000771.El
772.Sh CONFIGURATION FILES
773.Nm
Ben Lindstrom9f049032002-06-21 00:59:05 +0000774may additionally obtain configuration data from
775a per-user configuration file and a system-wide configuration file.
776The file format and configuration options are described in
777.Xr ssh_config 5 .
Damien Miller32aa1441999-10-29 09:15:49 +1000778.Sh ENVIRONMENT
779.Nm
780will normally set the following environment variables:
Darren Tucker61776952003-10-02 16:19:47 +1000781.Bl -tag -width LOGNAME
Damien Miller32aa1441999-10-29 09:15:49 +1000782.It Ev DISPLAY
783The
784.Ev DISPLAY
Damien Miller7684ee12000-03-17 23:40:15 +1100785variable indicates the location of the X11 server.
Damien Miller22c77262000-04-13 12:26:34 +1000786It is automatically set by
Damien Miller32aa1441999-10-29 09:15:49 +1000787.Nm
788to point to a value of the form
789.Dq hostname:n
790where hostname indicates
Darren Tucker61776952003-10-02 16:19:47 +1000791the host where the shell runs, and n is an integer \*(Ge 1.
Damien Miller7684ee12000-03-17 23:40:15 +1100792.Nm
793uses this special value to forward X11 connections over the secure
794channel.
Ben Lindstromc65e6a02001-04-23 13:02:16 +0000795The user should normally not set
796.Ev DISPLAY
797explicitly, as that
Damien Miller32aa1441999-10-29 09:15:49 +1000798will render the X11 connection insecure (and will require the user to
799manually copy any required authorization cookies).
800.It Ev HOME
801Set to the path of the user's home directory.
802.It Ev LOGNAME
803Synonym for
804.Ev USER ;
805set for compatibility with systems that use this variable.
806.It Ev MAIL
Ben Lindstrome59433d2001-09-12 16:41:37 +0000807Set to the path of the user's mailbox.
Damien Miller7684ee12000-03-17 23:40:15 +1100808.It Ev PATH
Damien Miller32aa1441999-10-29 09:15:49 +1000809Set to the default
810.Ev PATH ,
811as specified when compiling
812.Nm ssh .
Ben Lindstrom5bf5d672001-07-04 04:31:38 +0000813.It Ev SSH_ASKPASS
814If
815.Nm
816needs a passphrase, it will read the passphrase from the current
817terminal if it was run from a terminal.
818If
819.Nm
820does not have a terminal associated with it but
821.Ev DISPLAY
822and
823.Ev SSH_ASKPASS
824are set, it will execute the program specified by
825.Ev SSH_ASKPASS
826and open an X11 window to read the passphrase.
827This is particularly useful when calling
828.Nm
829from a
830.Pa .Xsession
831or related script.
832(Note that on some machines it
833may be necessary to redirect the input from
834.Pa /dev/null
835to make this work.)
Damien Miller32aa1441999-10-29 09:15:49 +1000836.It Ev SSH_AUTH_SOCK
Ben Lindstrome59433d2001-09-12 16:41:37 +0000837Identifies the path of a unix-domain socket used to communicate with the
Damien Miller32aa1441999-10-29 09:15:49 +1000838agent.
Damien Millerf37e2462002-09-19 11:47:55 +1000839.It Ev SSH_CONNECTION
840Identifies the client and server ends of the connection.
Damien Miller7684ee12000-03-17 23:40:15 +1100841The variable contains
Damien Millerf37e2462002-09-19 11:47:55 +1000842four space-separated values: client ip-address, client port number,
843server ip-address and server port number.
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000844.It Ev SSH_ORIGINAL_COMMAND
845The variable contains the original command line if a forced command
846is executed.
847It can be used to extract the original arguments.
Damien Miller32aa1441999-10-29 09:15:49 +1000848.It Ev SSH_TTY
849This is set to the name of the tty (path to the device) associated
Damien Miller7684ee12000-03-17 23:40:15 +1100850with the current shell or command.
851If the current session has no tty,
Damien Miller32aa1441999-10-29 09:15:49 +1000852this variable is not set.
853.It Ev TZ
854The timezone variable is set to indicate the present timezone if it
Damien Miller942da032000-08-18 13:59:06 +1000855was set when the daemon was started (i.e., the daemon passes the value
Damien Miller32aa1441999-10-29 09:15:49 +1000856on to new connections).
857.It Ev USER
858Set to the name of the user logging in.
859.El
860.Pp
Damien Miller22c77262000-04-13 12:26:34 +1000861Additionally,
Damien Miller32aa1441999-10-29 09:15:49 +1000862.Nm
Damien Miller22c77262000-04-13 12:26:34 +1000863reads
864.Pa $HOME/.ssh/environment ,
Damien Miller32aa1441999-10-29 09:15:49 +1000865and adds lines of the format
866.Dq VARNAME=value
Ben Lindstromdc7adf22002-08-20 18:38:02 +0000867to the environment if the file exists and if users are allowed to
868change their environment.
Darren Tucker61776952003-10-02 16:19:47 +1000869For more information, see the
Ben Lindstromdc7adf22002-08-20 18:38:02 +0000870.Cm PermitUserEnvironment
Ben Lindstrombd9bf382002-08-20 18:54:20 +0000871option in
Ben Lindstromdc7adf22002-08-20 18:38:02 +0000872.Xr sshd_config 5 .
Damien Miller32aa1441999-10-29 09:15:49 +1000873.Sh FILES
Damien Miller98c7ad62000-03-09 21:27:49 +1100874.Bl -tag -width Ds
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000875.It Pa $HOME/.ssh/known_hosts
Ben Lindstrome59433d2001-09-12 16:41:37 +0000876Records host keys for all hosts the user has logged into that are not
Damien Miller32aa1441999-10-29 09:15:49 +1000877in
Damien Miller05eda432002-02-10 18:32:28 +1100878.Pa /etc/ssh/ssh_known_hosts .
Damien Miller32aa1441999-10-29 09:15:49 +1000879See
880.Xr sshd 8 .
Ben Lindstrom18a82ac2001-04-11 15:59:35 +0000881.It Pa $HOME/.ssh/identity, $HOME/.ssh/id_dsa, $HOME/.ssh/id_rsa
882Contains the authentication identity of the user.
883They are for protocol 1 RSA, protocol 2 DSA, and protocol 2 RSA, respectively.
Damien Millere247cc42000-05-07 12:03:14 +1000884These files
885contain sensitive data and should be readable by the user but not
Damien Miller32aa1441999-10-29 09:15:49 +1000886accessible by others (read/write/execute).
887Note that
888.Nm
Damien Millere247cc42000-05-07 12:03:14 +1000889ignores a private key file if it is accessible by others.
Damien Miller32aa1441999-10-29 09:15:49 +1000890It is possible to specify a passphrase when
891generating the key; the passphrase will be used to encrypt the
892sensitive part of this file using 3DES.
Ben Lindstrom18a82ac2001-04-11 15:59:35 +0000893.It Pa $HOME/.ssh/identity.pub, $HOME/.ssh/id_dsa.pub, $HOME/.ssh/id_rsa.pub
Damien Miller32aa1441999-10-29 09:15:49 +1000894Contains the public key for authentication (public part of the
Damien Miller7684ee12000-03-17 23:40:15 +1100895identity file in human-readable form).
Damien Millere247cc42000-05-07 12:03:14 +1000896The contents of the
897.Pa $HOME/.ssh/identity.pub
Darren Tucker61776952003-10-02 16:19:47 +1000898file should be added to the file
Damien Miller32aa1441999-10-29 09:15:49 +1000899.Pa $HOME/.ssh/authorized_keys
900on all machines
Ben Lindstrom594e2032001-09-12 18:35:30 +0000901where the user wishes to log in using protocol version 1 RSA authentication.
Damien Millere247cc42000-05-07 12:03:14 +1000902The contents of the
903.Pa $HOME/.ssh/id_dsa.pub
Ben Lindstrom18a82ac2001-04-11 15:59:35 +0000904and
905.Pa $HOME/.ssh/id_rsa.pub
Damien Millere247cc42000-05-07 12:03:14 +1000906file should be added to
Ben Lindstromf96704d2001-06-25 04:17:12 +0000907.Pa $HOME/.ssh/authorized_keys
Damien Millere247cc42000-05-07 12:03:14 +1000908on all machines
Ben Lindstrom594e2032001-09-12 18:35:30 +0000909where the user wishes to log in using protocol version 2 DSA/RSA authentication.
Damien Millere247cc42000-05-07 12:03:14 +1000910These files are not
Damien Miller7684ee12000-03-17 23:40:15 +1100911sensitive and can (but need not) be readable by anyone.
Damien Millere247cc42000-05-07 12:03:14 +1000912These files are
Kevin Steves3c034ae2001-02-05 13:47:11 +0000913never used automatically and are not necessary; they are only provided for
Damien Miller32aa1441999-10-29 09:15:49 +1000914the convenience of the user.
915.It Pa $HOME/.ssh/config
Damien Miller7684ee12000-03-17 23:40:15 +1100916This is the per-user configuration file.
Ben Lindstrom9f049032002-06-21 00:59:05 +0000917The file format and configuration options are described in
918.Xr ssh_config 5 .
Damien Millerc970cb92004-04-20 20:12:53 +1000919Because of the potential for abuse, this file must have strict permissions:
920read/write for the user, and not accessible by others.
Damien Miller32aa1441999-10-29 09:15:49 +1000921.It Pa $HOME/.ssh/authorized_keys
Ben Lindstromf96704d2001-06-25 04:17:12 +0000922Lists the public keys (RSA/DSA) that can be used for logging in as this user.
Damien Miller7684ee12000-03-17 23:40:15 +1100923The format of this file is described in the
Damien Miller32aa1441999-10-29 09:15:49 +1000924.Xr sshd 8
Damien Miller7684ee12000-03-17 23:40:15 +1100925manual page.
Darren Tucker61776952003-10-02 16:19:47 +1000926In the simplest form the format is the same as the
927.Pa .pub
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000928identity files.
Damien Millere247cc42000-05-07 12:03:14 +1000929This file is not highly sensitive, but the recommended
930permissions are read/write for the user, and not accessible by others.
Damien Miller05eda432002-02-10 18:32:28 +1100931.It Pa /etc/ssh/ssh_known_hosts
Damien Miller7684ee12000-03-17 23:40:15 +1100932Systemwide list of known host keys.
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000933This file should be prepared by the
Damien Miller32aa1441999-10-29 09:15:49 +1000934system administrator to contain the public host keys of all machines in the
Damien Miller7684ee12000-03-17 23:40:15 +1100935organization.
936This file should be world-readable.
937This file contains
Damien Miller32aa1441999-10-29 09:15:49 +1000938public keys, one per line, in the following format (fields separated
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000939by spaces): system name, public key and optional comment field.
Damien Miller7684ee12000-03-17 23:40:15 +1100940When different names are used
Damien Miller32aa1441999-10-29 09:15:49 +1000941for the same machine, all such names should be listed, separated by
Damien Miller7684ee12000-03-17 23:40:15 +1100942commas.
Darren Tucker61776952003-10-02 16:19:47 +1000943The format is described in the
Damien Miller32aa1441999-10-29 09:15:49 +1000944.Xr sshd 8
945manual page.
946.Pp
947The canonical system name (as returned by name servers) is used by
948.Xr sshd 8
949to verify the client host when logging in; other names are needed because
950.Nm
951does not convert the user-supplied name to a canonical name before
952checking the key, because someone with access to the name servers
953would then be able to fool host authentication.
Damien Miller05eda432002-02-10 18:32:28 +1100954.It Pa /etc/ssh/ssh_config
Damien Miller7684ee12000-03-17 23:40:15 +1100955Systemwide configuration file.
Ben Lindstrom9f049032002-06-21 00:59:05 +0000956The file format and configuration options are described in
957.Xr ssh_config 5 .
Damien Miller05eda432002-02-10 18:32:28 +1100958.It Pa /etc/ssh/ssh_host_key, /etc/ssh/ssh_host_dsa_key, /etc/ssh/ssh_host_rsa_key
Damien Miller705499b2001-11-12 11:05:38 +1100959These three files contain the private parts of the host keys
960and are used for
961.Cm RhostsRSAAuthentication
962and
963.Cm HostbasedAuthentication .
Ben Lindstrom5cac4232002-06-11 15:45:02 +0000964If the protocol version 1
965.Cm RhostsRSAAuthentication
Ben Lindstromcb72e4f2002-06-21 00:41:51 +0000966method is used,
Damien Miller705499b2001-11-12 11:05:38 +1100967.Nm
Ben Lindstrom5cac4232002-06-11 15:45:02 +0000968must be setuid root, since the host key is readable only by root.
969For protocol version 2,
970.Nm
971uses
972.Xr ssh-keysign 8
973to access the host keys for
974.Cm HostbasedAuthentication .
975This eliminates the requirement that
976.Nm
977be setuid root when that authentication method is used.
978By default
979.Nm
980is not setuid root.
Damien Miller32aa1441999-10-29 09:15:49 +1000981.It Pa $HOME/.rhosts
982This file is used in
Darren Tucker61776952003-10-02 16:19:47 +1000983.Em rhosts
Damien Miller32aa1441999-10-29 09:15:49 +1000984authentication to list the
Damien Miller7684ee12000-03-17 23:40:15 +1100985host/user pairs that are permitted to log in.
986(Note that this file is
Damien Miller32aa1441999-10-29 09:15:49 +1000987also used by rlogin and rsh, which makes using this file insecure.)
988Each line of the file contains a host name (in the canonical form
989returned by name servers), and then a user name on that host,
Damien Miller7684ee12000-03-17 23:40:15 +1100990separated by a space.
Ben Lindstromebd888d2001-03-05 05:49:29 +0000991On some machines this file may need to be
Damien Miller32aa1441999-10-29 09:15:49 +1000992world-readable if the user's home directory is on a NFS partition,
993because
994.Xr sshd 8
Damien Miller7684ee12000-03-17 23:40:15 +1100995reads it as root.
996Additionally, this file must be owned by the user,
997and must not have write permissions for anyone else.
998The recommended
Damien Miller32aa1441999-10-29 09:15:49 +1000999permission for most machines is read/write for the user, and not
1000accessible by others.
1001.Pp
1002Note that by default
1003.Xr sshd 8
1004will be installed so that it requires successful RSA host
Darren Tucker61776952003-10-02 16:19:47 +10001005authentication before permitting
1006.Em rhosts
1007authentication.
Ben Lindstrom594e2032001-09-12 18:35:30 +00001008If the server machine does not have the client's host key in
Damien Miller05eda432002-02-10 18:32:28 +11001009.Pa /etc/ssh/ssh_known_hosts ,
Ben Lindstrom594e2032001-09-12 18:35:30 +00001010it can be stored in
Damien Miller32aa1441999-10-29 09:15:49 +10001011.Pa $HOME/.ssh/known_hosts .
1012The easiest way to do this is to
1013connect back to the client from the server machine using ssh; this
Damien Millere247cc42000-05-07 12:03:14 +10001014will automatically add the host key to
Damien Miller32aa1441999-10-29 09:15:49 +10001015.Pa $HOME/.ssh/known_hosts .
1016.It Pa $HOME/.shosts
1017This file is used exactly the same way as
Darren Tucker61776952003-10-02 16:19:47 +10001018.Pa .rhosts .
Damien Miller32aa1441999-10-29 09:15:49 +10001019The purpose for
1020having this file is to be able to use rhosts authentication with
1021.Nm
1022without permitting login with
Darren Tucker61776952003-10-02 16:19:47 +10001023.Xr rlogin
Damien Miller32aa1441999-10-29 09:15:49 +10001024or
1025.Xr rsh 1 .
1026.It Pa /etc/hosts.equiv
1027This file is used during
Darren Tucker61776952003-10-02 16:19:47 +10001028.Em rhosts
Damien Millerf1ce5052003-06-11 22:04:39 +10001029authentication.
Damien Miller7684ee12000-03-17 23:40:15 +11001030It contains
Darren Tucker61776952003-10-02 16:19:47 +10001031canonical hosts names, one per line (the full format is described in the
Damien Miller32aa1441999-10-29 09:15:49 +10001032.Xr sshd 8
Damien Miller7684ee12000-03-17 23:40:15 +11001033manual page).
1034If the client host is found in this file, login is
Damien Miller32aa1441999-10-29 09:15:49 +10001035automatically permitted provided client and server user names are the
Damien Miller7684ee12000-03-17 23:40:15 +11001036same.
1037Additionally, successful RSA host authentication is normally
1038required.
1039This file should only be writable by root.
Damien Miller886c63a2000-01-20 23:13:36 +11001040.It Pa /etc/shosts.equiv
Damien Miller22c77262000-04-13 12:26:34 +10001041This file is processed exactly as
Damien Miller32aa1441999-10-29 09:15:49 +10001042.Pa /etc/hosts.equiv .
1043This file may be useful to permit logins using
1044.Nm
1045but not using rsh/rlogin.
Damien Miller05eda432002-02-10 18:32:28 +11001046.It Pa /etc/ssh/sshrc
Damien Miller32aa1441999-10-29 09:15:49 +10001047Commands in this file are executed by
1048.Nm
1049when the user logs in just before the user's shell (or command) is started.
1050See the
1051.Xr sshd 8
1052manual page for more information.
1053.It Pa $HOME/.ssh/rc
1054Commands in this file are executed by
1055.Nm
1056when the user logs in just before the user's shell (or command) is
1057started.
Damien Miller22c77262000-04-13 12:26:34 +10001058See the
Damien Miller32aa1441999-10-29 09:15:49 +10001059.Xr sshd 8
1060manual page for more information.
Damien Miller4f0fa561999-12-26 14:24:41 +11001061.It Pa $HOME/.ssh/environment
1062Contains additional definitions for environment variables, see section
1063.Sx ENVIRONMENT
1064above.
Damien Miller7b28dc52000-09-05 13:34:53 +11001065.El
Damien Miller07a2d422002-02-05 12:16:15 +11001066.Sh DIAGNOSTICS
1067.Nm
1068exits with the exit status of the remote command or with 255
1069if an error occurred.
Damien Miller32aa1441999-10-29 09:15:49 +10001070.Sh SEE ALSO
Darren Tucker61776952003-10-02 16:19:47 +10001071.Xr gzip 1 ,
Damien Miller32aa1441999-10-29 09:15:49 +10001072.Xr rsh 1 ,
1073.Xr scp 1 ,
Damien Miller33804262001-02-04 23:20:18 +11001074.Xr sftp 1 ,
Damien Miller32aa1441999-10-29 09:15:49 +10001075.Xr ssh-add 1 ,
1076.Xr ssh-agent 1 ,
1077.Xr ssh-keygen 1 ,
1078.Xr telnet 1 ,
Darren Tucker61776952003-10-02 16:19:47 +10001079.Xr hosts.equiv 5 ,
Ben Lindstrombf69e3b2002-06-23 00:31:24 +00001080.Xr ssh_config 5 ,
Ben Lindstromc001cd32002-06-23 00:32:11 +00001081.Xr ssh-keysign 8 ,
Ben Lindstrom5ab6ae12001-02-10 22:08:03 +00001082.Xr sshd 8
Ben Lindstrom160ec622001-04-22 17:17:46 +00001083.Rs
1084.%A T. Ylonen
1085.%A T. Kivinen
1086.%A M. Saarinen
1087.%A T. Rinne
1088.%A S. Lehtinen
1089.%T "SSH Protocol Architecture"
Ben Lindstromf1813842002-03-27 17:18:31 +00001090.%N draft-ietf-secsh-architecture-12.txt
1091.%D January 2002
Ben Lindstrom160ec622001-04-22 17:17:46 +00001092.%O work in progress material
1093.Re
Damien Millerf1ce5052003-06-11 22:04:39 +10001094.Sh AUTHORS
1095OpenSSH is a derivative of the original and free
1096ssh 1.2.12 release by Tatu Ylonen.
1097Aaron Campbell, Bob Beck, Markus Friedl, Niels Provos,
1098Theo de Raadt and Dug Song
1099removed many bugs, re-added newer features and
1100created OpenSSH.
1101Markus Friedl contributed the support for SSH
1102protocol versions 1.5 and 2.0.