]> andersk Git - openssh.git/blame - ssh.1
- (djm) Update versions in RPM specfiles
[openssh.git] / ssh.1
CommitLineData
bf740959 1.\" -*- nroff -*-
2.\"
bf740959 3.\" Author: Tatu Ylonen <ylo@cs.hut.fi>
bf740959 4.\" Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5.\" All rights reserved
6.\"
bcbf86ec 7.\" As far as I am concerned, the code I have written for this software
8.\" can be used freely for any purpose. Any derived versions of this
9.\" software must be clearly marked as such, and if the derived work is
10.\" incompatible with the protocol description in the RFC file, it must be
11.\" called by a name other than "ssh" or "Secure Shell".
12.\"
13.\" Copyright (c) 1999,2000 Markus Friedl. All rights reserved.
14.\" Copyright (c) 1999 Aaron Campbell. All rights reserved.
15.\" Copyright (c) 1999 Theo de Raadt. All rights reserved.
16.\"
17.\" Redistribution and use in source and binary forms, with or without
18.\" modification, are permitted provided that the following conditions
19.\" are met:
20.\" 1. Redistributions of source code must retain the above copyright
21.\" notice, this list of conditions and the following disclaimer.
22.\" 2. Redistributions in binary form must reproduce the above copyright
23.\" notice, this list of conditions and the following disclaimer in the
24.\" documentation and/or other materials provided with the distribution.
bf740959 25.\"
bcbf86ec 26.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
27.\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
28.\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
29.\" IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
30.\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
31.\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32.\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33.\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
35.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
bf740959 36.\"
bbcf899f 37.\" $OpenBSD: ssh.1,v 1.76 2001/01/07 11:28:06 markus Exp $
bf740959 38.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
71276795 51.Op Fl afgknqtvxACNPTX246
d0c832f3 52.Op Fl c Ar cipher_spec
bf740959 53.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
bf740959 60.Ar port :
7b2ea3a1 61.Ar host :
bf740959 62.Ar hostport
63.Sm on
64.Xc
65.Oc
66.Oo Fl R Xo
67.Sm off
bf740959 68.Ar port :
7b2ea3a1 69.Ar host :
bf740959 70.Ar hostport
71.Sm on
72.Xc
73.Oc
74.Op Ar hostname | user@hostname
75.Op Ar command
f54651ce 76.Sh DESCRIPTION
bf740959 77.Nm
78(Secure Shell) is a program for logging into a remote machine and for
610cd5c6 79executing commands on a remote machine.
80It is intended to replace
bf740959 81rlogin and rsh, and provide secure encrypted communications between
610cd5c6 82two untrusted hosts over an insecure network.
83X11 connections and
bf740959 84arbitrary TCP/IP ports can also be forwarded over the secure channel.
85.Pp
86.Nm
f54651ce 87connects and logs into the specified
bf740959 88.Ar hostname .
89The user must prove
1d1ffb87 90his/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
bf740959 94.Pp
95First, if the machine the user logs in from is listed in
96.Pa /etc/hosts.equiv
97or
5f4fdfae 98.Pa /etc/shosts.equiv
bf740959 99on the remote machine, and the user names are
100the same on both sides, the user is immediately permitted to log in.
f54651ce 101Second, if
bf740959 102.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
610cd5c6 108permitted to log in.
109This form of authentication alone is normally not
bf740959 110allowed 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
610cd5c6 116method combined with RSA-based host authentication.
117It means that if the login would be permitted by
1d1ffb87 118.Pa $HOME/.rhosts ,
119.Pa $HOME/.shosts ,
bf740959 120.Pa /etc/hosts.equiv ,
121or
5f4fdfae 122.Pa /etc/shosts.equiv ,
bf740959 123and if additionally the server can verify the client's
f54651ce 124host key (see
5f4fdfae 125.Pa /etc/ssh_known_hosts
5bbb5681 126and
127.Pa $HOME/.ssh/known_hosts
bf740959 128in the
129.Sx FILES
610cd5c6 130section), 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:
bf740959 134.Pa /etc/hosts.equiv ,
1d1ffb87 135.Pa $HOME/.rhosts ,
bf740959 136and the rlogin/rsh protocol in general, are inherently insecure and should be
137disabled if security is desired.]
138.Pp
f54651ce 139As a third authentication method,
bf740959 140.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.
610cd5c6 145RSA is one such system.
f54651ce 146The idea is that each user creates a public/private
610cd5c6 147key pair for authentication purposes.
148The server knows the public key, and only the user knows the private key.
f54651ce 149The file
bf740959 150.Pa $HOME/.ssh/authorized_keys
151lists the public keys that are permitted for logging
610cd5c6 152in.
153When the user logs in, the
bf740959 154.Nm
155program tells the server which key pair it would like to use for
610cd5c6 156authentication.
157The server checks if this key is permitted, and if
bf740959 158so, sends the user (actually the
159.Nm
160program running on behalf of the user) a challenge, a random number,
610cd5c6 161encrypted by the user's public key.
162The challenge can only be
163decrypted using the proper private key.
164The user's client then decrypts the
bf740959 165challenge using the private key, proving that he/she knows the private
166key but without disclosing it to the server.
167.Pp
168.Nm
610cd5c6 169implements the RSA authentication protocol automatically.
170The user creates his/her RSA key pair by running
bf740959 171.Xr ssh-keygen 1 .
f54651ce 172This stores the private key in
1d1ffb87 173.Pa $HOME/.ssh/identity
bf740959 174and the public key in
1d1ffb87 175.Pa $HOME/.ssh/identity.pub
610cd5c6 176in the user's home directory.
177The user should then copy the
bf740959 178.Pa identity.pub
f54651ce 179to
1d1ffb87 180.Pa $HOME/.ssh/authorized_keys
f54651ce 181in his/her home directory on the remote machine (the
bf740959 182.Pa authorized_keys
f54651ce 183file corresponds to the conventional
1d1ffb87 184.Pa $HOME/.rhosts
bf740959 185file, and has one key
610cd5c6 186per line, though the lines can be very long).
187After this, the user can log in without giving the password.
188RSA authentication is much
bf740959 189more secure than rhosts authentication.
190.Pp
191The most convenient way to use RSA authentication may be with an
610cd5c6 192authentication agent.
193See
bf740959 194.Xr ssh-agent 1
195for more information.
196.Pp
f54651ce 197If other authentication methods fail,
bf740959 198.Nm
610cd5c6 199prompts the user for a password.
200The password is sent to the remote
bf740959 201host for checking; however, since all communications are encrypted,
202the password cannot be seen by someone listening on the network.
203.Pp
1d1ffb87 204.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
fa08c86b 212in the previous section except that the DSA or RSA algorithm is used
213instead.
214The client uses his private key
1d1ffb87 215.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
d0c832f3 229(the traffic is encrypted using 3DES, Blowfish, CAST128 or Arcfour)
1d1ffb87 230and 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
bf740959 236When the user's identity has been accepted by the server, the server
237either executes the given command, or logs into the machine and gives
610cd5c6 238the user a normal shell on the remote machine.
239All communication with
bf740959 240the 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
f54651ce 250.Ic ~#
bf740959 251and 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
610cd5c6 256shell to hang).
257All available escapes can be listed with
bf740959 258.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
610cd5c6 264special.
265The escape character can be changed in configuration files
266or on the command line.
bf740959 267.Pp
268If no pseudo tty has been allocated, the
269session is transparent and can be used to reliably transfer binary
610cd5c6 270data.
271On most systems, setting the escape character to
bf740959 272.Dq none
273will also make the session transparent even if a tty is used.
274.Pp
ce9c0b75 275The session terminates when the command or shell on the remote
bf740959 276machine 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
1d1ffb87 281.Ss X11 and TCP forwarding
282.Pp
bf740959 283If 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
610cd5c6 289from the local machine.
290The user should not manually set
bf740959 291.Ev DISPLAY .
292Forwarding of X11 connections can be
293configured on the command line or in configuration files.
294.Pp
295The
f54651ce 296.Ev DISPLAY
bf740959 297value set by
298.Nm
299will point to the server machine, but with a display number greater
610cd5c6 300than zero.
301This is normal, and happens because
bf740959 302.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
610cd5c6 313the connection is opened.
314The real authentication cookie is never
bf740959 315sent 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
610cd5c6 322be specified either on command line or in a configuration file.
323One possible application of TCP/IP forwarding is a secure connection to an
bf740959 324electronic purse; another is going trough firewalls.
325.Pp
1d1ffb87 326.Ss Server authentication
327.Pp
bf740959 328.Nm
1d1ffb87 329automatically maintains and checks a database containing
610cd5c6 330identifications for all hosts it has ever been used with.
1d1ffb87 331RSA host keys are stored in
332.Pa $HOME/.ssh/known_hosts
333and
fa08c86b 334host keys used in the protocol version 2 are stored in
1d1ffb87 335.Pa $HOME/.ssh/known_hosts2
610cd5c6 336in the user's home directory.
1d1ffb87 337Additionally, the files
5f4fdfae 338.Pa /etc/ssh_known_hosts
1d1ffb87 339and
340.Pa /etc/ssh_known_hosts2
341are automatically checked for known hosts.
610cd5c6 342Any new hosts are automatically added to the user's file.
343If a host's identification
bf740959 344ever changes,
345.Nm
346warns about this and disables password authentication to prevent a
610cd5c6 347trojan horse from getting the user's password.
348Another purpose of
bf740959 349this mechanism is to prevent man-in-the-middle attacks which could
610cd5c6 350otherwise be used to circumvent the encryption.
351The
bf740959 352.Cm StrictHostKeyChecking
353option (see below) can be used to prevent logins to machines whose
354host key is not known or has changed.
fa08c86b 355.Pp
356The options are as follows:
bf740959 357.Bl -tag -width Ds
358.It Fl a
4fe2af09 359Disables forwarding of the authentication agent connection.
71276795 360.It Fl A
361Enables forwarding of the authentication agent connection.
362This can also be specified on a per-host basis in a configuration file.
bf740959 363.It Fl c Ar blowfish|3des
f54651ce 364Selects the cipher to use for encrypting the session.
bf740959 365.Ar 3des
610cd5c6 366is used by default.
f54651ce 367It is believed to be secure.
bf740959 368.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
a22aff1f 372cipher which is no longer fully supported in
d0c832f3 373.Nm ssh .
bf740959 374.Ar blowfish
375is a fast block cipher, it appears very secure and is much faster than
610cd5c6 376.Ar 3des .
d0c832f3 377.It Fl c Ar "3des-cbc,blowfish-cbc,arcfour,cast128-cbc"
378Additionally, for protocol version 2 a comma-separated list of ciphers can
94ec8c6b 379be specified in order of preference.
380Protocol version 2 supports 3DES, Blowfish, and CAST128 in CBC mode
381and Arcfour.
bf740959 382.It Fl e Ar ch|^ch|none
383Sets the escape character for sessions with a pty (default:
384.Ql ~ ) .
610cd5c6 385The escape character is only recognized at the beginning of a line.
386The escape character followed by a dot
bf740959 387.Pq Ql \&.
388closes the connection, followed
389by control-Z suspends the connection, and followed by itself sends the
610cd5c6 390escape character once.
391Setting the character to
bf740959 392.Dq none
393disables any escapes and makes the session fully transparent.
394.It Fl f
395Requests
396.Nm
610cd5c6 397to go to background just before command execution.
398This is useful if
bf740959 399.Nm
400is going to ask for passwords or passphrases, but the user
610cd5c6 401wants it in the background.
f54651ce 402This implies
bf740959 403.Fl n .
404The recommended way to start X11 programs at a remote site is with
405something like
406.Ic ssh -f host xterm .
7b2ea3a1 407.It Fl g
408Allows remote hosts to connect to local forwarded ports.
bf740959 409.It Fl i Ar identity_file
f54651ce 410Selects the file from which the identity (private key) for
fa08c86b 411RSA or DSA authentication is read.
f54651ce 412Default is
1d1ffb87 413.Pa $HOME/.ssh/identity
610cd5c6 414in 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
bf740959 418.Fl i
419options (and multiple identities specified in
420configuration files).
bf740959 421.It Fl k
4fe2af09 422Disables forwarding of Kerberos tickets and AFS tokens.
423This may also be specified on a per-host basis in the configuration file.
bf740959 424.It Fl l Ar login_name
610cd5c6 425Specifies the user to log in as on the remote machine.
426This also may be specified on a per-host basis in the configuration file.
bf740959 427.It Fl n
428Redirects stdin from
429.Pa /dev/null
430(actually, prevents reading from stdin).
431This must be used when
432.Nm
610cd5c6 433is run in the background.
434A common trick is to use this to run X11 programs on a remote machine.
435For example,
bf740959 436.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.)
0e73cc53 447.It Fl N
448Do not execute a remote command.
0b6fbf03 449This is useful if you just want to forward ports
0e73cc53 450(protocol version 2 only).
bf740959 451.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
610cd5c6 454command-line flag.
455The option has the same format as a line in the configuration file.
bf740959 456.It Fl p Ar port
610cd5c6 457Port to connect to on the remote host.
458This can be specified on a
bf740959 459per-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.
95f1eccc 464Note that this option turns off
bf740959 465.Cm RhostsAuthentication
466and
6ffc9c88 467.Cm RhostsRSAAuthentication
468for older servers.
bf740959 469.It Fl q
610cd5c6 470Quiet mode.
471Causes all warning and diagnostic messages to be suppressed.
472Only fatal errors are displayed.
bf740959 473.It Fl t
610cd5c6 474Force pseudo-tty allocation.
4fe2af09 475This can be used to execute arbitrary
610cd5c6 476screen-based programs on a remote machine, which can be very useful,
477e.g., when implementing menu services.
8abcdba4 478Multiple
479.Fl t
480options force tty allocation, even if
481.Nm
482has no local tty.
0e73cc53 483.It Fl T
0b6fbf03 484Disable pseudo-tty allocation.
bf740959 485.It Fl v
610cd5c6 486Verbose mode.
487Causes
bf740959 488.Nm
610cd5c6 489to print debugging messages about its progress.
490This is helpful in
bf740959 491debugging connection, authentication, and configuration problems.
8abcdba4 492Multiple
493.Fl v
494options increases the verbosity.
94ec8c6b 495Maximum is 3.
bf740959 496.It Fl x
610cd5c6 497Disables X11 forwarding.
bf740959 498.It Fl X
499Enables X11 forwarding.
71276795 500This can also be specified on a per-host basis in a configuration file.
bf740959 501.It Fl C
502Requests compression of all data (including stdin, stdout, stderr, and
610cd5c6 503data for forwarded X11 and TCP/IP connections).
504The compression algorithm is the same used by
7b2ea3a1 505.Xr gzip 1 ,
506and the
bf740959 507.Dq level
508can be controlled by the
509.Cm CompressionLevel
610cd5c6 510option (see below).
511Compression is desirable on modem lines and other
bf740959 512slow connections, but will only slow down things on fast networks.
513The default value can be set on a host-by-host basis in the
514configuration files; see the
515.Cm Compress
516option below.
517.It Fl L Ar port:host:hostport
518Specifies that the given port on the local (client) host is to be
610cd5c6 519forwarded to the given host and port on the remote side.
520This works by allocating a socket to listen to
bf740959 521.Ar port
522on the local side, and whenever a connection is made to this port, the
523connection is forwarded over the secure channel, and a connection is
524made to
48e671d5 525.Ar host
526port
527.Ar hostport
610cd5c6 528from the remote machine.
529Port forwardings can also be specified in the configuration file.
530Only root can forward privileged ports.
48e671d5 531IPv6 addresses can be specified with an alternative syntax:
532.Ar port/host/hostport
bf740959 533.It Fl R Ar port:host:hostport
534Specifies that the given port on the remote (server) host is to be
610cd5c6 535forwarded to the given host and port on the local side.
536This works by allocating a socket to listen to
bf740959 537.Ar port
538on the remote side, and whenever a connection is made to this port, the
539connection is forwarded over the secure channel, and a connection is
540made to
48e671d5 541.Ar host
542port
543.Ar hostport
610cd5c6 544from the local machine.
545Port forwardings can also be specified in the configuration file.
546Privileged ports can be forwarded only when
bf740959 547logging in as root on the remote machine.
6ae2364d 548.It Fl 2
549Forces
550.Nm
1d1ffb87 551to try protocol version 2 only.
48e671d5 552.It Fl 4
553Forces
554.Nm
555to use IPv4 addresses only.
556.It Fl 6
557Forces
558.Nm
559to use IPv6 addresses only.
bf740959 560.El
fa08c86b 561.Pp
562If
563.Nm
564is not invoked with one of the standard program names
565.Pf ( Dq ssh ,
566.Dq slogin ,
567.Dq rsh ,
568.Dq rlogin ,
569or
570.Dq remsh ) ,
571it uses this name as its
572.Ar hostname
573argument.
574This is consistent with traditional
575.Xr rsh 1
576behavior.
bf740959 577.Sh CONFIGURATION FILES
578.Nm
579obtains configuration data from the following sources (in this order):
580command line options, user's configuration file
581.Pq Pa $HOME/.ssh/config ,
582and system-wide configuration file
5f4fdfae 583.Pq Pa /etc/ssh_config .
bf740959 584For each parameter, the first obtained value
610cd5c6 585will be used.
586The configuration files contain sections bracketed by
587.Dq Host
588specifications, and that section is only applied for hosts that
589match one of the patterns given in the specification.
590The matched host name is the one given on the command line.
bf740959 591.Pp
592Since the first obtained value for each parameter is used, more
593host-specific declarations should be given near the beginning of the
594file, and general defaults at the end.
595.Pp
596The configuration file has the following format:
597.Pp
598Empty lines and lines starting with
599.Ql #
600are comments.
601.Pp
602Otherwise a line is of the format
603.Dq keyword arguments .
604The possible
605keywords and their meanings are as follows (note that the
606configuration files are case-sensitive):
607.Bl -tag -width Ds
608.It Cm Host
609Restricts the following declarations (up to the next
610.Cm Host
611keyword) to be only for those hosts that match one of the patterns
612given after the keyword.
613.Ql \&*
614and
615.Ql ?
616can be used as wildcards in the
610cd5c6 617patterns.
618A single
bf740959 619.Ql \&*
620as a pattern can be used to provide global
610cd5c6 621defaults for all hosts.
622The host is the
bf740959 623.Ar hostname
624argument given on the command line (i.e., the name is not converted to
625a canonicalized host name before matching).
626.It Cm AFSTokenPassing
4fe2af09 627Specifies whether to pass AFS tokens to remote host.
628The argument to this keyword must be
bf740959 629.Dq yes
630or
631.Dq no .
632.It Cm BatchMode
633If set to
634.Dq yes ,
610cd5c6 635passphrase/password querying will be disabled.
636This option is useful in scripts and other batch jobs where you have no
637user to supply the password.
638The argument must be
bf740959 639.Dq yes
640or
641.Dq no .
7b2ea3a1 642.It Cm CheckHostIP
643If this flag is set to
644.Dq yes ,
645ssh will additionally check the host ip address in the
646.Pa known_hosts
4fe2af09 647file.
648This allows ssh to detect if a host key changed due to DNS spoofing.
7b2ea3a1 649If the option is set to
650.Dq no ,
651the check will not be executed.
bf740959 652.It Cm Cipher
33de75a3 653Specifies the cipher to use for encrypting the session
a22aff1f 654in protocol version 1.
610cd5c6 655Currently,
a22aff1f 656.Dq blowfish
bf740959 657and
658.Dq 3des
610cd5c6 659are supported.
660The default is
bf740959 661.Dq 3des .
f54651ce 662.It Cm Ciphers
663Specifies the ciphers allowed for protocol version 2
664in order of preference.
665Multiple ciphers must be comma-separated.
666The default is
9616313f 667.Dq 3des-cbc,blowfish-cbc,cast128-cbc,arcfour,aes128-cbc .
bf740959 668.It Cm Compression
610cd5c6 669Specifies whether to use compression.
670The argument must be
bf740959 671.Dq yes
672or
673.Dq no .
674.It Cm CompressionLevel
610cd5c6 675Specifies the compression level to use if compression is enable.
676The argument must be an integer from 1 (fast) to 9 (slow, best).
677The default level is 6, which is good for most applications.
678The meaning of the values is the same as in
7b2ea3a1 679.Xr gzip 1 .
bf740959 680.It Cm ConnectionAttempts
681Specifies the number of tries (one per second) to make before falling
610cd5c6 682back to rsh or exiting.
683The argument must be an integer.
684This may be useful in scripts if the connection sometimes fails.
fa08c86b 685.It Cm PubkeyAuthentication
686Specifies whether to try public key authentication.
1d1ffb87 687The argument to this keyword must be
688.Dq yes
689or
690.Dq no .
1d1ffb87 691Note that this option applies to protocol version 2 only.
bf740959 692.It Cm EscapeChar
693Sets the escape character (default:
694.Ql ~ ) .
695The escape character can also
610cd5c6 696be set on the command line.
697The argument should be a single character,
bf740959 698.Ql ^
699followed by a letter, or
700.Dq none
701to disable the escape
702character entirely (making the connection transparent for binary
703data).
f54651ce 704.It Cm FallBackToRsh
bf740959 705Specifies that if connecting via
706.Nm
707fails due to a connection refused error (there is no
708.Xr sshd 8
f54651ce 709listening on the remote host),
bf740959 710.Xr rsh 1
711should automatically be used instead (after a suitable warning about
610cd5c6 712the session being unencrypted).
713The argument must be
bf740959 714.Dq yes
715or
716.Dq no .
717.It Cm ForwardAgent
718Specifies whether the connection to the authentication agent (if any)
610cd5c6 719will be forwarded to the remote machine.
720The argument must be
bf740959 721.Dq yes
722or
723.Dq no .
71276795 724The default is
725.Dq no .
bf740959 726.It Cm ForwardX11
727Specifies whether X11 connections will be automatically redirected
f54651ce 728over the secure channel and
bf740959 729.Ev DISPLAY
610cd5c6 730set.
f54651ce 731The argument must be
bf740959 732.Dq yes
733or
734.Dq no .
c8d54615 735The default is
736.Dq no .
bf740959 737.It Cm GatewayPorts
738Specifies whether remote hosts are allowed to connect to local
739forwarded ports.
740The argument must be
741.Dq yes
742or
743.Dq no .
744The default is
745.Dq no .
746.It Cm GlobalKnownHostsFile
f54651ce 747Specifies a file to use instead of
5f4fdfae 748.Pa /etc/ssh_known_hosts .
8abcdba4 749.It Cm HostKeyAlias
750Specifies an alias that should be used instead of the
751real host name when looking up or saving the host key
752the kown_hosts files.
753This option is useful for tunneling ssh connection
754or if you have multiple servers running on a single host.
bf740959 755.It Cm HostName
610cd5c6 756Specifies the real host name to log into.
757This can be used to specify nicknames or abbreviations for hosts.
758Default is the name given on the command line.
759Numeric IP addresses are also permitted (both on the command line and in
bf740959 760.Cm HostName
761specifications).
762.It Cm IdentityFile
763Specifies the file from which the user's RSA authentication identity
764is read (default
1d1ffb87 765.Pa $HOME/.ssh/identity
bf740959 766in the user's home directory).
767Additionally, any identities represented by the authentication agent
610cd5c6 768will be used for authentication.
769The file name may use the tilde
770syntax to refer to a user's home directory.
771It is possible to have
bf740959 772multiple identity files specified in configuration files; all these
773identities will be tried in sequence.
774.It Cm KeepAlive
775Specifies whether the system should send keepalive messages to the
610cd5c6 776other side.
777If they are sent, death of the connection or crash of one
778of the machines will be properly noticed.
779However, this means that
bf740959 780connections will die if the route is down temporarily, and some people
4fe2af09 781find it annoying.
bf740959 782.Pp
783The default is
784.Dq yes
785(to send keepalives), and the client will notice
610cd5c6 786if the network goes down or the remote host dies.
787This is important in scripts, and many users want it too.
bf740959 788.Pp
789To disable keepalives, the value should be set to
790.Dq no
791in both the server and the client configuration files.
792.It Cm KerberosAuthentication
4fe2af09 793Specifies whether Kerberos authentication will be used.
794The argument to this keyword must be
bf740959 795.Dq yes
796or
797.Dq no .
798.It Cm KerberosTgtPassing
4fe2af09 799Specifies whether a Kerberos TGT will be forwarded to the server.
800This will only work if the Kerberos server is actually an AFS kaserver.
801The argument to this keyword must be
bf740959 802.Dq yes
803or
804.Dq no .
805.It Cm LocalForward
806Specifies that a TCP/IP port on the local machine be forwarded over
610cd5c6 807the secure channel to given host:port from the remote machine.
808The first argument must be a port number, and the second must be
809host:port.
810Multiple forwardings may be specified, and additional
811forwardings can be given on the command line.
812Only the superuser can forward privileged ports.
6a17f9c2 813.It Cm LogLevel
814Gives the verbosity level that is used when logging messages from
815.Nm ssh .
816The possible values are:
bbcf899f 817QUIET, FATAL, ERROR, NOTICE, VERBOSE and DEBUG.
818The default is NOTICE.
bf740959 819.It Cm NumberOfPasswordPrompts
4fe2af09 820Specifies the number of password prompts before giving up.
821The argument to this keyword must be an integer.
822Default is 3.
7b2ea3a1 823.It Cm PasswordAuthentication
610cd5c6 824Specifies whether to use password authentication.
825The argument to this keyword must be
7b2ea3a1 826.Dq yes
827or
828.Dq no .
1d1ffb87 829Note that this option applies to both protocol version 1 and 2.
bf740959 830.It Cm Port
610cd5c6 831Specifies the port number to connect on the remote host.
832Default is 22.
f54651ce 833.It Cm Protocol
834Specifies the protocol versions
835.Nm
836should support in order of preference.
837The possible values are
838.Dq 1
839and
840.Dq 2 .
841Multiple versions must be comma-separated.
842The default is
1d1ffb87 843.Dq 1,2 .
844This means that
845.Nm
846tries version 1 and falls back to version 2
d0c832f3 847if version 1 is not available.
bf740959 848.It Cm ProxyCommand
610cd5c6 849Specifies the command to use to connect to the server.
850The command
851string extends to the end of the line, and is executed with
852.Pa /bin/sh .
853In the command string,
854.Ql %h
855will be substituted by the host name to
856connect and
857.Ql %p
858by the port.
859The command can be basically anything,
860and should read from its standard input and write to its standard output.
861It should eventually connect an
bf740959 862.Xr sshd 8
863server running on some machine, or execute
864.Ic sshd -i
610cd5c6 865somewhere.
866Host key management will be done using the
bf740959 867HostName of the host being connected (defaulting to the name typed by
868the user).
57112b5a 869Note that
870.Cm CheckHostIP
871is not available for connects with a proxy command.
bf740959 872.Pp
873.It Cm RemoteForward
874Specifies that a TCP/IP port on the remote machine be forwarded over
610cd5c6 875the secure channel to given host:port from the local machine.
876The first argument must be a port number, and the second must be
877host:port.
878Multiple forwardings may be specified, and additional
879forwardings can be given on the command line.
880Only the superuser can forward privileged ports.
bf740959 881.It Cm RhostsAuthentication
610cd5c6 882Specifies whether to try rhosts based authentication.
883Note that this
bf740959 884declaration only affects the client side and has no effect whatsoever
610cd5c6 885on security.
886Disabling rhosts authentication may reduce
bf740959 887authentication time on slow connections when rhosts authentication is
610cd5c6 888not used.
889Most servers do not permit RhostsAuthentication because it
890is not secure (see RhostsRSAAuthentication).
891The argument to this keyword must be
bf740959 892.Dq yes
893or
894.Dq no .
895.It Cm RhostsRSAAuthentication
896Specifies whether to try rhosts based authentication with RSA host
610cd5c6 897authentication.
898This is the primary authentication method for most sites.
899The argument must be
bf740959 900.Dq yes
901or
902.Dq no .
903.It Cm RSAAuthentication
610cd5c6 904Specifies whether to try RSA authentication.
905The argument to this keyword must be
bf740959 906.Dq yes
907or
908.Dq no .
909RSA authentication will only be
910attempted if the identity file exists, or an authentication agent is
911running.
1d1ffb87 912Note that this option applies to protocol version 1 only.
5260325f 913.It Cm SkeyAuthentication
914Specifies whether to use
915.Xr skey 1
610cd5c6 916authentication.
917The argument to this keyword must be
5260325f 918.Dq yes
919or
920.Dq no .
921The default is
922.Dq no .
bf740959 923.It Cm StrictHostKeyChecking
924If this flag is set to
f54651ce 925.Dq yes ,
bf740959 926.Nm
927ssh will never automatically add host keys to the
928.Pa $HOME/.ssh/known_hosts
1d1ffb87 929and
930.Pa $HOME/.ssh/known_hosts2
931files, and refuses to connect hosts whose host key has changed.
610cd5c6 932This provides maximum protection against trojan horse attacks.
933However, it can be somewhat annoying if you don't have good
5f4fdfae 934.Pa /etc/ssh_known_hosts
1d1ffb87 935and
936.Pa /etc/ssh_known_hosts2
bf740959 937files installed and frequently
610cd5c6 938connect new hosts.
939Basically this option forces the user to manually
940add any new hosts.
941Normally this option is disabled, and new hosts
942will automatically be added to the known host files.
943The host keys of
944known hosts will be verified automatically in either case.
945The argument must be
bf740959 946.Dq yes
947or
948.Dq no .
bf740959 949.It Cm UsePrivilegedPort
950Specifies whether to use a privileged port for outgoing connections.
951The argument must be
952.Dq yes
953or
954.Dq no .
955The default is
956.Dq yes .
957Note that setting this option to
958.Dq no
95f1eccc 959turns off
bf740959 960.Cm RhostsAuthentication
961and
6ffc9c88 962.Cm RhostsRSAAuthentication
963for older servers.
7b2ea3a1 964.It Cm User
610cd5c6 965Specifies the user to log in as.
966This can be useful if you have a different user name on different machines.
967This saves the trouble of
7b2ea3a1 968having to remember to give the user name on the command line.
969.It Cm UserKnownHostsFile
970Specifies a file to use instead of
971.Pa $HOME/.ssh/known_hosts .
bf740959 972.It Cm UseRsh
610cd5c6 973Specifies that rlogin/rsh should be used for this host.
974It is possible that the host does not at all support the
bf740959 975.Nm
610cd5c6 976protocol.
977This causes
bf740959 978.Nm
610cd5c6 979to immediately execute
bf740959 980.Xr rsh 1 .
981All other options (except
982.Cm HostName )
610cd5c6 983are ignored if this has been specified.
984The argument must be
bf740959 985.Dq yes
986or
987.Dq no .
fa649821 988.It Cm XAuthLocation
989Specifies the location of the
990.Xr xauth 1
991program.
992The default is
993.Pa /usr/X11R6/bin/xauth .
b5e300c2 994.El
bf740959 995.Sh ENVIRONMENT
996.Nm
997will normally set the following environment variables:
998.Bl -tag -width Ds
999.It Ev DISPLAY
1000The
1001.Ev DISPLAY
610cd5c6 1002variable indicates the location of the X11 server.
f54651ce 1003It is automatically set by
bf740959 1004.Nm
1005to point to a value of the form
1006.Dq hostname:n
1007where hostname indicates
610cd5c6 1008the host where the shell runs, and n is an integer >= 1.
1009.Nm
1010uses this special value to forward X11 connections over the secure
1011channel.
1012The user should normally not set DISPLAY explicitly, as that
bf740959 1013will render the X11 connection insecure (and will require the user to
1014manually copy any required authorization cookies).
1015.It Ev HOME
1016Set to the path of the user's home directory.
1017.It Ev LOGNAME
1018Synonym for
1019.Ev USER ;
1020set for compatibility with systems that use this variable.
1021.It Ev MAIL
1022Set to point the user's mailbox.
610cd5c6 1023.It Ev PATH
bf740959 1024Set to the default
1025.Ev PATH ,
1026as specified when compiling
1027.Nm ssh .
1028.It Ev SSH_AUTH_SOCK
1029indicates the path of a unix-domain socket used to communicate with the
1030agent.
1031.It Ev SSH_CLIENT
610cd5c6 1032Identifies the client end of the connection.
1033The variable contains
bf740959 1034three space-separated values: client ip-address, client port number,
1035and server port number.
8abcdba4 1036.It Ev SSH_ORIGINAL_COMMAND
1037The variable contains the original command line if a forced command
1038is executed.
1039It can be used to extract the original arguments.
bf740959 1040.It Ev SSH_TTY
1041This is set to the name of the tty (path to the device) associated
610cd5c6 1042with the current shell or command.
1043If the current session has no tty,
bf740959 1044this variable is not set.
1045.It Ev TZ
1046The timezone variable is set to indicate the present timezone if it
c345cf9d 1047was set when the daemon was started (i.e., the daemon passes the value
bf740959 1048on to new connections).
1049.It Ev USER
1050Set to the name of the user logging in.
1051.El
1052.Pp
f54651ce 1053Additionally,
bf740959 1054.Nm
f54651ce 1055reads
1056.Pa $HOME/.ssh/environment ,
bf740959 1057and adds lines of the format
1058.Dq VARNAME=value
1059to the environment.
1060.Sh FILES
c8d54615 1061.Bl -tag -width Ds
bf740959 1062.It Pa $HOME/.ssh/known_hosts
1063Records host keys for all hosts the user has logged into (that are not
1064in
5f4fdfae 1065.Pa /etc/ssh_known_hosts ) .
bf740959 1066See
1067.Xr sshd 8 .
1d1ffb87 1068.It Pa $HOME/.ssh/identity, $HOME/.ssh/id_dsa
1069Contains the RSA and the DSA authentication identity of the user.
1070These files
1071contain sensitive data and should be readable by the user but not
bf740959 1072accessible by others (read/write/execute).
1073Note that
1074.Nm
1d1ffb87 1075ignores a private key file if it is accessible by others.
bf740959 1076It is possible to specify a passphrase when
1077generating the key; the passphrase will be used to encrypt the
1078sensitive part of this file using 3DES.
1d1ffb87 1079.It Pa $HOME/.ssh/identity.pub, $HOME/.ssh/id_dsa.pub
bf740959 1080Contains the public key for authentication (public part of the
610cd5c6 1081identity file in human-readable form).
1d1ffb87 1082The contents of the
1083.Pa $HOME/.ssh/identity.pub
1084file should be added to
bf740959 1085.Pa $HOME/.ssh/authorized_keys
1086on all machines
610cd5c6 1087where you wish to log in using RSA authentication.
1d1ffb87 1088The contents of the
1089.Pa $HOME/.ssh/id_dsa.pub
1090file should be added to
1091.Pa $HOME/.ssh/authorized_keys2
1092on all machines
1093where you wish to log in using DSA authentication.
1094These files are not
610cd5c6 1095sensitive and can (but need not) be readable by anyone.
1d1ffb87 1096These files are
1097never used automatically and are not necessary; they is only provided for
bf740959 1098the convenience of the user.
1099.It Pa $HOME/.ssh/config
610cd5c6 1100This is the per-user configuration file.
1101The format of this file is described above.
1102This file is used by the
bf740959 1103.Nm
610cd5c6 1104client.
1105This file does not usually contain any sensitive information,
bf740959 1106but the recommended permissions are read/write for the user, and not
1107accessible by others.
1108.It Pa $HOME/.ssh/authorized_keys
610cd5c6 1109Lists the RSA keys that can be used for logging in as this user.
1110The format of this file is described in the
bf740959 1111.Xr sshd 8
610cd5c6 1112manual page.
1113In the simplest form the format is the same as the .pub
bf740959 1114identity files (that is, each line contains the number of bits in
1115modulus, public exponent, modulus, and comment fields, separated by
610cd5c6 1116spaces).
1117This file is not highly sensitive, but the recommended
bf740959 1118permissions are read/write for the user, and not accessible by others.
1d1ffb87 1119.It Pa $HOME/.ssh/authorized_keys2
fa08c86b 1120Lists the public keys (DSA/RSA) that can be used for logging in as this user.
1d1ffb87 1121This file is not highly sensitive, but the recommended
1122permissions are read/write for the user, and not accessible by others.
1123.It Pa /etc/ssh_known_hosts, /etc/ssh_known_hosts2
610cd5c6 1124Systemwide list of known host keys.
1d1ffb87 1125.Pa /etc/ssh_known_hosts
1126contains RSA and
1127.Pa /etc/ssh_known_hosts2
fa08c86b 1128contains DSA or RSA keys for protocol version 2.
1d1ffb87 1129These files should be prepared by the
bf740959 1130system administrator to contain the public host keys of all machines in the
610cd5c6 1131organization.
1132This file should be world-readable.
1133This file contains
bf740959 1134public keys, one per line, in the following format (fields separated
1135by spaces): system name, number of bits in modulus, public exponent,
610cd5c6 1136modulus, and optional comment field.
1137When different names are used
bf740959 1138for the same machine, all such names should be listed, separated by
610cd5c6 1139commas.
1140The format is described on the
bf740959 1141.Xr sshd 8
1142manual page.
1143.Pp
1144The canonical system name (as returned by name servers) is used by
1145.Xr sshd 8
1146to verify the client host when logging in; other names are needed because
1147.Nm
1148does not convert the user-supplied name to a canonical name before
1149checking the key, because someone with access to the name servers
1150would then be able to fool host authentication.
5f4fdfae 1151.It Pa /etc/ssh_config
610cd5c6 1152Systemwide configuration file.
1153This file provides defaults for those
bf740959 1154values that are not specified in the user's configuration file, and
610cd5c6 1155for those users who do not have a configuration file.
1156This file must be world-readable.
bf740959 1157.It Pa $HOME/.rhosts
1158This file is used in
1159.Pa \&.rhosts
1160authentication to list the
610cd5c6 1161host/user pairs that are permitted to log in.
1162(Note that this file is
bf740959 1163also used by rlogin and rsh, which makes using this file insecure.)
1164Each line of the file contains a host name (in the canonical form
1165returned by name servers), and then a user name on that host,
610cd5c6 1166separated by a space.
1167One some machines this file may need to be
bf740959 1168world-readable if the user's home directory is on a NFS partition,
1169because
1170.Xr sshd 8
610cd5c6 1171reads it as root.
1172Additionally, this file must be owned by the user,
1173and must not have write permissions for anyone else.
1174The recommended
bf740959 1175permission for most machines is read/write for the user, and not
1176accessible by others.
1177.Pp
1178Note that by default
1179.Xr sshd 8
1180will be installed so that it requires successful RSA host
610cd5c6 1181authentication before permitting \s+2.\s0rhosts authentication.
1182If your server machine does not have the client's host key in
5f4fdfae 1183.Pa /etc/ssh_known_hosts ,
bf740959 1184you can store it in
1185.Pa $HOME/.ssh/known_hosts .
1186The easiest way to do this is to
1187connect back to the client from the server machine using ssh; this
1d1ffb87 1188will automatically add the host key to
bf740959 1189.Pa $HOME/.ssh/known_hosts .
1190.It Pa $HOME/.shosts
1191This file is used exactly the same way as
1192.Pa \&.rhosts .
1193The purpose for
1194having this file is to be able to use rhosts authentication with
1195.Nm
1196without permitting login with
1197.Xr rlogin 1
1198or
1199.Xr rsh 1 .
1200.It Pa /etc/hosts.equiv
1201This file is used during
610cd5c6 1202.Pa \&.rhosts authentication.
1203It contains
bf740959 1204canonical hosts names, one per line (the full format is described on
1205the
1206.Xr sshd 8
610cd5c6 1207manual page).
1208If the client host is found in this file, login is
bf740959 1209automatically permitted provided client and server user names are the
610cd5c6 1210same.
1211Additionally, successful RSA host authentication is normally
1212required.
1213This file should only be writable by root.
5f4fdfae 1214.It Pa /etc/shosts.equiv
f54651ce 1215This file is processed exactly as
bf740959 1216.Pa /etc/hosts.equiv .
1217This file may be useful to permit logins using
1218.Nm
1219but not using rsh/rlogin.
5f4fdfae 1220.It Pa /etc/sshrc
bf740959 1221Commands in this file are executed by
1222.Nm
1223when the user logs in just before the user's shell (or command) is started.
1224See the
1225.Xr sshd 8
1226manual page for more information.
1227.It Pa $HOME/.ssh/rc
1228Commands in this file are executed by
1229.Nm
1230when the user logs in just before the user's shell (or command) is
1231started.
f54651ce 1232See the
bf740959 1233.Xr sshd 8
1234manual page for more information.
83b7f649 1235.It Pa $HOME/.ssh/environment
1236Contains additional definitions for environment variables, see section
1237.Sx ENVIRONMENT
1238above.
bf740959 1239.It Pa libcrypto.so.X.1
1240A version of this library which includes support for the RSA algorithm
1241is required for proper operation.
b5e300c2 1242.El
fa08c86b 1243.Sh AUTHORS
bf740959 1244OpenSSH
c8d54615 1245is a derivative of the original (free) ssh 1.2.12 release by Tatu Ylonen,
610cd5c6 1246but with bugs removed and newer features re-added.
1247Rapidly after the
c8d54615 12481.2.12 release, newer versions of the original ssh bore successively
1249more restrictive licenses, and thus demand for a free version was born.
1d1ffb87 1250.Pp
c8d54615 1251This version of OpenSSH
bf740959 1252.Bl -bullet
1253.It
bcbf86ec 1254has all components of a restrictive nature (i.e., patents, see
0b6fbf03 1255.Xr ssl 8 )
bf740959 1256directly removed from the source code; any licensed or patented components
1257are chosen from
1258external libraries.
1259.It
1d1ffb87 1260has been updated to support SSH protocol 1.5 and 2, making it compatible with
1261all other SSH clients and servers.
bf740959 1262.It
f54651ce 1263contains added support for
bf740959 1264.Xr kerberos 8
1265authentication and ticket passing.
1266.It
1267supports one-time password authentication with
1268.Xr skey 1 .
1269.El
1270.Pp
0c16a097 1271OpenSSH has been created by Aaron Campbell, Bob Beck, Markus Friedl,
f095fcc7 1272Niels Provos, Theo de Raadt, and Dug Song.
1d1ffb87 1273.Pp
1274The support for SSH protocol 2 was written by Markus Friedl.
bf740959 1275.Sh SEE ALSO
1276.Xr rlogin 1 ,
1277.Xr rsh 1 ,
1278.Xr scp 1 ,
1279.Xr ssh-add 1 ,
1280.Xr ssh-agent 1 ,
1281.Xr ssh-keygen 1 ,
1282.Xr telnet 1 ,
1283.Xr sshd 8 ,
0b6fbf03 1284.Xr ssl 8
This page took 0.282688 seconds and 5 git commands to generate.