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