]> andersk Git - openssh.git/blame - ssh.1
- djm@cvs.openbsd.org 2004/06/13 12:53:24
[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.\"
f3c7c613 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.
bcbf86ec 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.\"
790029d9 37.\" $OpenBSD: ssh.1,v 1.188 2004/05/22 16:01:05 jmc Exp $
bf740959 38.Dd September 25, 1999
39.Dt SSH 1
40.Os
41.Sh NAME
42.Nm ssh
2c86906e 43.Nd OpenSSH SSH client (remote login program)
bf740959 44.Sh SYNOPSIS
45.Nm ssh
d73a67d7 46.Op Fl 1246AaCfgkNnqsTtVvXxY
3435f5a6 47.Op Fl b Ar bind_address
d0c832f3 48.Op Fl c Ar cipher_spec
5f4a0c58 49.Op Fl D Ar port
bf740959 50.Op Fl e Ar escape_char
e591b98a 51.Op Fl F Ar configfile
5f4a0c58 52.Op Fl i Ar identity_file
53.Bk -words
bf740959 54.Oo Fl L Xo
55.Sm off
bf740959 56.Ar port :
7b2ea3a1 57.Ar host :
bf740959 58.Ar hostport
59.Sm on
60.Xc
61.Oc
a4e5acef 62.Ek
5f4a0c58 63.Op Fl l Ar login_name
64.Op Fl m Ar mac_spec
65.Op Fl o Ar option
a4e5acef 66.Bk -words
5f4a0c58 67.Op Fl p Ar port
68.Ek
bf740959 69.Oo Fl R Xo
70.Sm off
bf740959 71.Ar port :
7b2ea3a1 72.Ar host :
bf740959 73.Ar hostport
74.Sm on
75.Xc
76.Oc
5f4a0c58 77.Oo Ar user Ns @ Oc Ns Ar hostname
bf740959 78.Op Ar command
f54651ce 79.Sh DESCRIPTION
bf740959 80.Nm
2c86906e 81(SSH client) is a program for logging into a remote machine and for
610cd5c6 82executing commands on a remote machine.
5f4a0c58 83It is intended to replace rlogin and rsh,
84and provide secure encrypted communications between
610cd5c6 85two untrusted hosts over an insecure network.
5f4a0c58 86X11 connections and arbitrary TCP/IP ports
87can also be forwarded over the secure channel.
bf740959 88.Pp
89.Nm
f54651ce 90connects and logs into the specified
5f4a0c58 91.Ar hostname
92(with optional
93.Ar user
94name).
bf740959 95The user must prove
1d1ffb87 96his/her identity to the remote machine using one of several methods
5f4a0c58 97depending on the protocol version used.
1d1ffb87 98.Pp
5f4a0c58 99If
100.Ar command
101is specified,
102.Ar command
103is executed on the remote host instead of a login shell.
1d1ffb87 104.Ss SSH protocol version 1
bf740959 105First, if the machine the user logs in from is listed in
106.Pa /etc/hosts.equiv
107or
5f4fdfae 108.Pa /etc/shosts.equiv
bf740959 109on the remote machine, and the user names are
110the same on both sides, the user is immediately permitted to log in.
f54651ce 111Second, if
5f4a0c58 112.Pa .rhosts
bf740959 113or
5f4a0c58 114.Pa .shosts
bf740959 115exists in the user's home directory on the
116remote machine and contains a line containing the name of the client
117machine and the name of the user on that machine, the user is
610cd5c6 118permitted to log in.
119This form of authentication alone is normally not
bf740959 120allowed by the server because it is not secure.
121.Pp
da89cf4d 122The second authentication method is the
5f4a0c58 123.Em rhosts
bf740959 124or
5f4a0c58 125.Em hosts.equiv
610cd5c6 126method combined with RSA-based host authentication.
127It means that if the login would be permitted by
1d1ffb87 128.Pa $HOME/.rhosts ,
129.Pa $HOME/.shosts ,
bf740959 130.Pa /etc/hosts.equiv ,
131or
5f4fdfae 132.Pa /etc/shosts.equiv ,
bf740959 133and if additionally the server can verify the client's
f54651ce 134host key (see
2a8a6488 135.Pa /etc/ssh/ssh_known_hosts
5bbb5681 136and
137.Pa $HOME/.ssh/known_hosts
bf740959 138in the
139.Sx FILES
5f4a0c58 140section), only then is login permitted.
610cd5c6 141This authentication method closes security holes due to IP
142spoofing, DNS spoofing and routing spoofing.
143[Note to the administrator:
bf740959 144.Pa /etc/hosts.equiv ,
1d1ffb87 145.Pa $HOME/.rhosts ,
bf740959 146and the rlogin/rsh protocol in general, are inherently insecure and should be
147disabled if security is desired.]
148.Pp
f54651ce 149As a third authentication method,
bf740959 150.Nm
151supports RSA based authentication.
152The scheme is based on public-key cryptography: there are cryptosystems
153where encryption and decryption are done using separate keys, and it
154is not possible to derive the decryption key from the encryption key.
610cd5c6 155RSA is one such system.
f54651ce 156The idea is that each user creates a public/private
610cd5c6 157key pair for authentication purposes.
158The server knows the public key, and only the user knows the private key.
5f4a0c58 159.Pp
f54651ce 160The file
bf740959 161.Pa $HOME/.ssh/authorized_keys
5f4a0c58 162lists the public keys that are permitted for logging in.
610cd5c6 163When the user logs in, the
bf740959 164.Nm
165program tells the server which key pair it would like to use for
610cd5c6 166authentication.
5f4a0c58 167The server checks if this key is permitted, and if so,
168sends the user (actually the
bf740959 169.Nm
170program running on behalf of the user) a challenge, a random number,
610cd5c6 171encrypted by the user's public key.
5f4a0c58 172The challenge can only be decrypted using the proper private key.
173The user's client then decrypts the challenge using the private key,
174proving that he/she knows the private key
175but without disclosing it to the server.
bf740959 176.Pp
177.Nm
610cd5c6 178implements the RSA authentication protocol automatically.
179The user creates his/her RSA key pair by running
bf740959 180.Xr ssh-keygen 1 .
f54651ce 181This stores the private key in
1d1ffb87 182.Pa $HOME/.ssh/identity
5f4a0c58 183and stores the public key in
1d1ffb87 184.Pa $HOME/.ssh/identity.pub
610cd5c6 185in the user's home directory.
186The user should then copy the
bf740959 187.Pa identity.pub
f54651ce 188to
1d1ffb87 189.Pa $HOME/.ssh/authorized_keys
f54651ce 190in his/her home directory on the remote machine (the
bf740959 191.Pa authorized_keys
f54651ce 192file corresponds to the conventional
1d1ffb87 193.Pa $HOME/.rhosts
bf740959 194file, and has one key
610cd5c6 195per line, though the lines can be very long).
196After this, the user can log in without giving the password.
5f4a0c58 197RSA authentication is much more secure than
198.Em rhosts
199authentication.
bf740959 200.Pp
201The most convenient way to use RSA authentication may be with an
610cd5c6 202authentication agent.
203See
bf740959 204.Xr ssh-agent 1
205for more information.
206.Pp
f54651ce 207If other authentication methods fail,
bf740959 208.Nm
610cd5c6 209prompts the user for a password.
210The password is sent to the remote
bf740959 211host for checking; however, since all communications are encrypted,
212the password cannot be seen by someone listening on the network.
1d1ffb87 213.Ss SSH protocol version 2
5f4a0c58 214When a user connects using protocol version 2,
16210ef7 215similar authentication methods are available.
da89cf4d 216Using the default values for
217.Cm PreferredAuthentications ,
29c440a0 218the client will try to authenticate first using the hostbased method;
5f4a0c58 219if this method fails, public key authentication is attempted,
220and finally if this method fails, keyboard-interactive and
29c440a0 221password authentication are tried.
1d1ffb87 222.Pp
223The public key method is similar to RSA authentication described
da89cf4d 224in the previous section and allows the RSA or DSA algorithm to be used:
c0ecc314 225The client uses his private key,
1d1ffb87 226.Pa $HOME/.ssh/id_dsa
c0ecc314 227or
228.Pa $HOME/.ssh/id_rsa ,
1d1ffb87 229to sign the session identifier and sends the result to the server.
230The server checks whether the matching public key is listed in
96a7b0cc 231.Pa $HOME/.ssh/authorized_keys
1d1ffb87 232and grants access if both the key is found and the signature is correct.
233The session identifier is derived from a shared Diffie-Hellman value
234and is only known to the client and the server.
235.Pp
5f4a0c58 236If public key authentication fails or is not available, a password
237can be sent encrypted to the remote host to prove the user's identity.
da89cf4d 238.Pp
239Additionally,
240.Nm
241supports hostbased or challenge response authentication.
1d1ffb87 242.Pp
243Protocol 2 provides additional mechanisms for confidentiality
d0c832f3 244(the traffic is encrypted using 3DES, Blowfish, CAST128 or Arcfour)
f2ba0775 245and integrity (hmac-md5, hmac-sha1).
1d1ffb87 246Note that protocol 1 lacks a strong mechanism for ensuring the
247integrity of the connection.
1d1ffb87 248.Ss Login session and remote execution
bf740959 249When the user's identity has been accepted by the server, the server
250either executes the given command, or logs into the machine and gives
610cd5c6 251the user a normal shell on the remote machine.
252All communication with
bf740959 253the remote command or shell will be automatically encrypted.
254.Pp
255If a pseudo-terminal has been allocated (normal login session), the
df841692 256user may use the escape characters noted below.
bf740959 257.Pp
5f4a0c58 258If no pseudo-tty has been allocated,
259the session is transparent and can be used to reliably transfer binary data.
610cd5c6 260On most systems, setting the escape character to
bf740959 261.Dq none
262will also make the session transparent even if a tty is used.
263.Pp
ce9c0b75 264The session terminates when the command or shell on the remote
e91c60f2 265machine exits and all X11 and TCP/IP connections have been closed.
5f4a0c58 266The exit status of the remote program is returned as the exit status of
bf740959 267.Nm ssh .
df841692 268.Ss Escape Characters
5f4a0c58 269When a pseudo-terminal has been requested,
270.Nm
271supports a number of functions through the use of an escape character.
df841692 272.Pp
273A single tilde character can be sent as
274.Ic ~~
5bef3c35 275or by following the tilde by a character other than those described below.
df841692 276The escape character must always follow a newline to be interpreted as
277special.
278The escape character can be changed in configuration files using the
279.Cm EscapeChar
3730bb22 280configuration directive or on the command line by the
df841692 281.Fl e
282option.
283.Pp
284The supported escapes (assuming the default
285.Ql ~ )
286are:
287.Bl -tag -width Ds
288.It Cm ~.
5f4a0c58 289Disconnect.
df841692 290.It Cm ~^Z
5f4a0c58 291Background
292.Nm ssh .
df841692 293.It Cm ~#
5f4a0c58 294List forwarded connections.
df841692 295.It Cm ~&
5f4a0c58 296Background
297.Nm
298at logout when waiting for forwarded connection / X11 sessions to terminate.
df841692 299.It Cm ~?
5f4a0c58 300Display a list of escape characters.
16a79097 301.It Cm ~B
5f4a0c58 302Send a BREAK to the remote system
303(only useful for SSH protocol version 2 and if the peer supports it).
c53c54c2 304.It Cm ~C
d740ec16 305Open command line.
306Currently this allows the addition of port forwardings using the
c53c54c2 307.Fl L
308and
309.Fl R
d740ec16 310options (see below).
790029d9 311It also allows the cancellation of existing remote port-forwardings
d740ec16 312using
313.Fl KR Ar hostport .
7069a5e2 314Basic help is available, using the
315.Fl h
d740ec16 316option.
df841692 317.It Cm ~R
5f4a0c58 318Request rekeying of the connection
319(only useful for SSH protocol version 2 and if the peer supports it).
df841692 320.El
1d1ffb87 321.Ss X11 and TCP forwarding
6efa3d14 322If the
323.Cm ForwardX11
324variable is set to
325.Dq yes
5f4a0c58 326(or see the description of the
6efa3d14 327.Fl X
328and
329.Fl x
330options described later)
331and the user is using X11 (the
bf740959 332.Ev DISPLAY
333environment variable is set), the connection to the X11 display is
334automatically forwarded to the remote side in such a way that any X11
335programs started from the shell (or command) will go through the
336encrypted channel, and the connection to the real X server will be made
610cd5c6 337from the local machine.
338The user should not manually set
bf740959 339.Ev DISPLAY .
340Forwarding of X11 connections can be
341configured on the command line or in configuration files.
342.Pp
343The
f54651ce 344.Ev DISPLAY
bf740959 345value set by
346.Nm
5f4a0c58 347will point to the server machine, but with a display number greater than zero.
610cd5c6 348This is normal, and happens because
bf740959 349.Nm
350creates a
351.Dq proxy
352X server on the server machine for forwarding the
353connections over the encrypted channel.
354.Pp
355.Nm
356will also automatically set up Xauthority data on the server machine.
357For this purpose, it will generate a random authorization cookie,
358store it in Xauthority on the server, and verify that any forwarded
359connections carry this cookie and replace it by the real cookie when
610cd5c6 360the connection is opened.
361The real authentication cookie is never
bf740959 362sent to the server machine (and no cookies are sent in the plain).
363.Pp
24794905 364If the
365.Cm ForwardAgent
366variable is set to
367.Dq yes
5f4a0c58 368(or see the description of the
24794905 369.Fl A
370and
371.Fl a
a4e5acef 372options described later) and
24794905 373the user is using an authentication agent, the connection to the agent
374is automatically forwarded to the remote side.
bf740959 375.Pp
376Forwarding of arbitrary TCP/IP connections over the secure channel can
491f5f7b 377be specified either on the command line or in a configuration file.
610cd5c6 378One possible application of TCP/IP forwarding is a secure connection to an
e91c60f2 379electronic purse; another is going through firewalls.
1d1ffb87 380.Ss Server authentication
bf740959 381.Nm
1d1ffb87 382automatically maintains and checks a database containing
610cd5c6 383identifications for all hosts it has ever been used with.
f49bc4f7 384Host keys are stored in
1d1ffb87 385.Pa $HOME/.ssh/known_hosts
610cd5c6 386in the user's home directory.
f49bc4f7 387Additionally, the file
2a8a6488 388.Pa /etc/ssh/ssh_known_hosts
f49bc4f7 389is automatically checked for known hosts.
610cd5c6 390Any new hosts are automatically added to the user's file.
5f4a0c58 391If a host's identification ever changes,
bf740959 392.Nm
393warns about this and disables password authentication to prevent a
610cd5c6 394trojan horse from getting the user's password.
5f4a0c58 395Another purpose of this mechanism is to prevent man-in-the-middle attacks
396which could otherwise be used to circumvent the encryption.
610cd5c6 397The
bf740959 398.Cm StrictHostKeyChecking
588df31a 399option can be used to prevent logins to machines whose
bf740959 400host key is not known or has changed.
fa08c86b 401.Pp
402The options are as follows:
bf740959 403.Bl -tag -width Ds
5f4a0c58 404.It Fl 1
405Forces
406.Nm
407to try protocol version 1 only.
408.It Fl 2
409Forces
410.Nm
411to try protocol version 2 only.
412.It Fl 4
413Forces
414.Nm
415to use IPv4 addresses only.
416.It Fl 6
417Forces
418.Nm
419to use IPv6 addresses only.
71276795 420.It Fl A
421Enables forwarding of the authentication agent connection.
422This can also be specified on a per-host basis in a configuration file.
07d688d5 423.Pp
a4e5acef 424Agent forwarding should be enabled with caution.
425Users with the ability to bypass file permissions on the remote host
426(for the agent's Unix-domain socket)
427can access the local agent through the forwarded connection.
428An attacker cannot obtain key material from the agent,
07d688d5 429however they can perform operations on the keys that enable them to
430authenticate using the identities loaded into the agent.
5f4a0c58 431.It Fl a
432Disables forwarding of the authentication agent connection.
3435f5a6 433.It Fl b Ar bind_address
434Specify the interface to transmit from on machines with multiple
435interfaces or aliased addresses.
5f4a0c58 436.It Fl C
437Requests compression of all data (including stdin, stdout, stderr, and
438data for forwarded X11 and TCP/IP connections).
439The compression algorithm is the same used by
440.Xr gzip 1 ,
441and the
442.Dq level
443can be controlled by the
444.Cm CompressionLevel
445option for protocol version 1.
446Compression is desirable on modem lines and other
447slow connections, but will only slow down things on fast networks.
448The default value can be set on a host-by-host basis in the
449configuration files; see the
450.Cm Compression
451option.
452.It Fl c Ar blowfish | 3des | des
f54651ce 453Selects the cipher to use for encrypting the session.
bf740959 454.Ar 3des
610cd5c6 455is used by default.
f54651ce 456It is believed to be secure.
bf740959 457.Ar 3des
458(triple-des) is an encrypt-decrypt-encrypt triple with three different keys.
bf740959 459.Ar blowfish
5f4a0c58 460is a fast block cipher; it appears very secure and is much faster than
610cd5c6 461.Ar 3des .
29999e54 462.Ar des
463is only supported in the
464.Nm
465client for interoperability with legacy protocol 1 implementations
466that do not support the
467.Ar 3des
a4e5acef 468cipher.
469Its use is strongly discouraged due to cryptographic weaknesses.
9afadca8 470.It Fl c Ar cipher_spec
d0c832f3 471Additionally, for protocol version 2 a comma-separated list of ciphers can
94ec8c6b 472be specified in order of preference.
9afadca8 473See
474.Cm Ciphers
475for more information.
5f4a0c58 476.It Fl D Ar port
477Specifies a local
478.Dq dynamic
479application-level port forwarding.
480This works by allocating a socket to listen to
481.Ar port
482on the local side, and whenever a connection is made to this port, the
483connection is forwarded over the secure channel, and the application
484protocol is then used to determine where to connect to from the
485remote machine.
486Currently the SOCKS4 and SOCKS5 protocols are supported, and
487.Nm
488will act as a SOCKS server.
489Only root can forward privileged ports.
490Dynamic port forwardings can also be specified in the configuration file.
491.It Fl e Ar ch | ^ch | none
bf740959 492Sets the escape character for sessions with a pty (default:
493.Ql ~ ) .
610cd5c6 494The escape character is only recognized at the beginning of a line.
495The escape character followed by a dot
bf740959 496.Pq Ql \&.
5f4a0c58 497closes the connection;
498followed by control-Z suspends the connection;
499and followed by itself sends the escape character once.
610cd5c6 500Setting the character to
bf740959 501.Dq none
502disables any escapes and makes the session fully transparent.
5f4a0c58 503.It Fl F Ar configfile
504Specifies an alternative per-user configuration file.
505If a configuration file is given on the command line,
506the system-wide configuration file
507.Pq Pa /etc/ssh/ssh_config
508will be ignored.
509The default for the per-user configuration file is
510.Pa $HOME/.ssh/config .
bf740959 511.It Fl f
512Requests
513.Nm
610cd5c6 514to go to background just before command execution.
515This is useful if
bf740959 516.Nm
517is going to ask for passwords or passphrases, but the user
610cd5c6 518wants it in the background.
f54651ce 519This implies
bf740959 520.Fl n .
521The recommended way to start X11 programs at a remote site is with
522something like
523.Ic ssh -f host xterm .
7b2ea3a1 524.It Fl g
525Allows remote hosts to connect to local forwarded ports.
5f4a0c58 526.It Fl I Ar smartcard_device
527Specifies which smartcard device to use.
528The argument is the device
529.Nm
530should use to communicate with a smartcard used for storing the user's
531private RSA key.
bf740959 532.It Fl i Ar identity_file
cf5a07a8 533Selects a file from which the identity (private key) for
fa08c86b 534RSA or DSA authentication is read.
cf5a07a8 535The default is
1d1ffb87 536.Pa $HOME/.ssh/identity
cf5a07a8 537for protocol version 1, and
538.Pa $HOME/.ssh/id_rsa
539and
540.Pa $HOME/.ssh/id_dsa
541for protocol version 2.
610cd5c6 542Identity files may also be specified on
543a per-host basis in the configuration file.
544It is possible to have multiple
bf740959 545.Fl i
546options (and multiple identities specified in
547configuration files).
bf740959 548.It Fl k
f7926e97 549Disables forwarding (delegation) of GSSAPI credentials to the server.
5f4a0c58 550.It Fl L Xo
551.Sm off
552.Ar port : host : hostport
553.Sm on
554.Xc
555Specifies that the given port on the local (client) host is to be
556forwarded to the given host and port on the remote side.
557This works by allocating a socket to listen to
558.Ar port
559on the local side, and whenever a connection is made to this port, the
560connection is forwarded over the secure channel, and a connection is
561made to
562.Ar host
563port
564.Ar hostport
565from the remote machine.
566Port forwardings can also be specified in the configuration file.
567Only root can forward privileged ports.
568IPv6 addresses can be specified with an alternative syntax:
569.Sm off
570.Xo
571.Ar port No / Ar host No /
572.Ar hostport .
573.Xc
574.Sm on
bf740959 575.It Fl l Ar login_name
610cd5c6 576Specifies the user to log in as on the remote machine.
577This also may be specified on a per-host basis in the configuration file.
b2552997 578.It Fl m Ar mac_spec
579Additionally, for protocol version 2 a comma-separated list of MAC
580(message authentication code) algorithms can
581be specified in order of preference.
582See the
583.Cm MACs
584keyword for more information.
5f4a0c58 585.It Fl N
586Do not execute a remote command.
587This is useful for just forwarding ports
588(protocol version 2 only).
bf740959 589.It Fl n
590Redirects stdin from
591.Pa /dev/null
592(actually, prevents reading from stdin).
593This must be used when
594.Nm
610cd5c6 595is run in the background.
596A common trick is to use this to run X11 programs on a remote machine.
597For example,
bf740959 598.Ic ssh -n shadows.cs.hut.fi emacs &
599will start an emacs on shadows.cs.hut.fi, and the X11
600connection will be automatically forwarded over an encrypted channel.
601The
602.Nm
603program will be put in the background.
604(This does not work if
605.Nm
606needs to ask for a password or passphrase; see also the
607.Fl f
608option.)
609.It Fl o Ar option
38539909 610Can be used to give options in the format used in the configuration file.
bf740959 611This is useful for specifying options for which there is no separate
610cd5c6 612command-line flag.
5f4a0c58 613For full details of the options listed below, and their possible values, see
614.Xr ssh_config 5 .
615.Pp
616.Bl -tag -width Ds -offset indent -compact
617.It AddressFamily
618.It BatchMode
619.It BindAddress
620.It ChallengeResponseAuthentication
621.It CheckHostIP
622.It Cipher
623.It Ciphers
624.It ClearAllForwardings
625.It Compression
626.It CompressionLevel
627.It ConnectionAttempts
20b267fb 628.It ConnectTimeout
5f4a0c58 629.It DynamicForward
5f4a0c58 630.It EscapeChar
631.It ForwardAgent
632.It ForwardX11
d73a67d7 633.It ForwardX11Trusted
5f4a0c58 634.It GatewayPorts
635.It GlobalKnownHostsFile
636.It GSSAPIAuthentication
637.It GSSAPIDelegateCredentials
638.It Host
639.It HostbasedAuthentication
640.It HostKeyAlgorithms
641.It HostKeyAlias
642.It HostName
643.It IdentityFile
3a065ed0 644.It IdentitiesOnly
5f4a0c58 645.It LocalForward
646.It LogLevel
647.It MACs
648.It NoHostAuthenticationForLocalhost
649.It NumberOfPasswordPrompts
650.It PasswordAuthentication
651.It Port
652.It PreferredAuthentications
653.It Protocol
654.It ProxyCommand
655.It PubkeyAuthentication
656.It RemoteForward
657.It RhostsRSAAuthentication
658.It RSAAuthentication
8e99a198 659.It SendEnv
5d8d32a3 660.It ServerAliveInterval
661.It ServerAliveCountMax
5f4a0c58 662.It SmartcardDevice
663.It StrictHostKeyChecking
fd573618 664.It TCPKeepAlive
5f4a0c58 665.It UsePrivilegedPort
666.It User
667.It UserKnownHostsFile
668.It VerifyHostKeyDNS
669.It XAuthLocation
670.El
bf740959 671.It Fl p Ar port
610cd5c6 672Port to connect to on the remote host.
673This can be specified on a
bf740959 674per-host basis in the configuration file.
bf740959 675.It Fl q
610cd5c6 676Quiet mode.
677Causes all warning and diagnostic messages to be suppressed.
5f4a0c58 678.It Fl R Xo
679.Sm off
680.Ar port : host : hostport
681.Sm on
682.Xc
683Specifies that the given port on the remote (server) host is to be
684forwarded to the given host and port on the local side.
685This works by allocating a socket to listen to
686.Ar port
687on the remote side, and whenever a connection is made to this port, the
688connection is forwarded over the secure channel, and a connection is
689made to
690.Ar host
691port
692.Ar hostport
693from the local machine.
694Port forwardings can also be specified in the configuration file.
695Privileged ports can be forwarded only when
696logging in as root on the remote machine.
697IPv6 addresses can be specified with an alternative syntax:
698.Sm off
699.Xo
700.Ar port No / Ar host No /
701.Ar hostport .
702.Xc
703.Sm on
ae810de7 704.It Fl s
3cbc677d 705May be used to request invocation of a subsystem on the remote system.
706Subsystems are a feature of the SSH2 protocol which facilitate the use
5f4a0c58 707of SSH as a secure transport for other applications (eg.\&
708.Xr sftp 1 ) .
3cbc677d 709The subsystem is specified as the remote command.
5f4a0c58 710.It Fl T
711Disable pseudo-tty allocation.
bf740959 712.It Fl t
610cd5c6 713Force pseudo-tty allocation.
4fe2af09 714This can be used to execute arbitrary
610cd5c6 715screen-based programs on a remote machine, which can be very useful,
716e.g., when implementing menu services.
8abcdba4 717Multiple
718.Fl t
719options force tty allocation, even if
720.Nm
721has no local tty.
5f4a0c58 722.It Fl V
723Display the version number and exit.
bf740959 724.It Fl v
610cd5c6 725Verbose mode.
726Causes
bf740959 727.Nm
610cd5c6 728to print debugging messages about its progress.
729This is helpful in
bf740959 730debugging connection, authentication, and configuration problems.
8abcdba4 731Multiple
732.Fl v
c825cd79 733options increase the verbosity.
734The maximum is 3.
bf740959 735.It Fl X
736Enables X11 forwarding.
71276795 737This can also be specified on a per-host basis in a configuration file.
07d688d5 738.Pp
a4e5acef 739X11 forwarding should be enabled with caution.
740Users with the ability to bypass file permissions on the remote host
741(for the user's X authorization database)
742can access the local X11 display through the forwarded connection.
743An attacker may then be able to perform activities such as keystroke monitoring.
5f4a0c58 744.It Fl x
745Disables X11 forwarding.
d73a67d7 746.It Fl Y
747Enables trusted X11 forwarding.
bf740959 748.El
749.Sh CONFIGURATION FILES
750.Nm
588df31a 751may additionally obtain configuration data from
752a per-user configuration file and a system-wide configuration file.
753The file format and configuration options are described in
754.Xr ssh_config 5 .
bf740959 755.Sh ENVIRONMENT
756.Nm
757will normally set the following environment variables:
5f4a0c58 758.Bl -tag -width LOGNAME
bf740959 759.It Ev DISPLAY
760The
761.Ev DISPLAY
610cd5c6 762variable indicates the location of the X11 server.
f54651ce 763It is automatically set by
bf740959 764.Nm
765to point to a value of the form
766.Dq hostname:n
767where hostname indicates
5f4a0c58 768the host where the shell runs, and n is an integer \*(Ge 1.
610cd5c6 769.Nm
770uses this special value to forward X11 connections over the secure
771channel.
da89cf4d 772The user should normally not set
773.Ev DISPLAY
774explicitly, as that
bf740959 775will render the X11 connection insecure (and will require the user to
776manually copy any required authorization cookies).
777.It Ev HOME
778Set to the path of the user's home directory.
779.It Ev LOGNAME
780Synonym for
781.Ev USER ;
782set for compatibility with systems that use this variable.
783.It Ev MAIL
ae897d7c 784Set to the path of the user's mailbox.
610cd5c6 785.It Ev PATH
bf740959 786Set to the default
787.Ev PATH ,
788as specified when compiling
789.Nm ssh .
3474b2b4 790.It Ev SSH_ASKPASS
791If
792.Nm
793needs a passphrase, it will read the passphrase from the current
794terminal if it was run from a terminal.
795If
796.Nm
797does not have a terminal associated with it but
798.Ev DISPLAY
799and
800.Ev SSH_ASKPASS
801are set, it will execute the program specified by
802.Ev SSH_ASKPASS
803and open an X11 window to read the passphrase.
804This is particularly useful when calling
805.Nm
806from a
807.Pa .Xsession
808or related script.
809(Note that on some machines it
810may be necessary to redirect the input from
811.Pa /dev/null
812to make this work.)
bf740959 813.It Ev SSH_AUTH_SOCK
ae897d7c 814Identifies the path of a unix-domain socket used to communicate with the
bf740959 815agent.
da0561eb 816.It Ev SSH_CONNECTION
817Identifies the client and server ends of the connection.
610cd5c6 818The variable contains
da0561eb 819four space-separated values: client ip-address, client port number,
820server ip-address and server port number.
8abcdba4 821.It Ev SSH_ORIGINAL_COMMAND
822The variable contains the original command line if a forced command
823is executed.
824It can be used to extract the original arguments.
bf740959 825.It Ev SSH_TTY
826This is set to the name of the tty (path to the device) associated
610cd5c6 827with the current shell or command.
828If the current session has no tty,
bf740959 829this variable is not set.
830.It Ev TZ
831The timezone variable is set to indicate the present timezone if it
c345cf9d 832was set when the daemon was started (i.e., the daemon passes the value
bf740959 833on to new connections).
834.It Ev USER
835Set to the name of the user logging in.
836.El
837.Pp
f54651ce 838Additionally,
bf740959 839.Nm
f54651ce 840reads
841.Pa $HOME/.ssh/environment ,
bf740959 842and adds lines of the format
843.Dq VARNAME=value
6a342527 844to the environment if the file exists and if users are allowed to
845change their environment.
5f4a0c58 846For more information, see the
6a342527 847.Cm PermitUserEnvironment
35453849 848option in
6a342527 849.Xr sshd_config 5 .
bf740959 850.Sh FILES
c8d54615 851.Bl -tag -width Ds
f49bc4f7 852.It Pa $HOME/.ssh/known_hosts
ae897d7c 853Records host keys for all hosts the user has logged into that are not
bf740959 854in
2a8a6488 855.Pa /etc/ssh/ssh_known_hosts .
bf740959 856See
857.Xr sshd 8 .
c0ecc314 858.It Pa $HOME/.ssh/identity, $HOME/.ssh/id_dsa, $HOME/.ssh/id_rsa
859Contains the authentication identity of the user.
860They are for protocol 1 RSA, protocol 2 DSA, and protocol 2 RSA, respectively.
1d1ffb87 861These files
862contain sensitive data and should be readable by the user but not
bf740959 863accessible by others (read/write/execute).
864Note that
865.Nm
1d1ffb87 866ignores a private key file if it is accessible by others.
bf740959 867It is possible to specify a passphrase when
868generating the key; the passphrase will be used to encrypt the
869sensitive part of this file using 3DES.
c0ecc314 870.It Pa $HOME/.ssh/identity.pub, $HOME/.ssh/id_dsa.pub, $HOME/.ssh/id_rsa.pub
bf740959 871Contains the public key for authentication (public part of the
610cd5c6 872identity file in human-readable form).
1d1ffb87 873The contents of the
874.Pa $HOME/.ssh/identity.pub
5f4a0c58 875file should be added to the file
bf740959 876.Pa $HOME/.ssh/authorized_keys
877on all machines
91789042 878where the user wishes to log in using protocol version 1 RSA authentication.
1d1ffb87 879The contents of the
880.Pa $HOME/.ssh/id_dsa.pub
c0ecc314 881and
882.Pa $HOME/.ssh/id_rsa.pub
1d1ffb87 883file should be added to
96a7b0cc 884.Pa $HOME/.ssh/authorized_keys
1d1ffb87 885on all machines
91789042 886where the user wishes to log in using protocol version 2 DSA/RSA authentication.
1d1ffb87 887These files are not
610cd5c6 888sensitive and can (but need not) be readable by anyone.
1d1ffb87 889These files are
c44559d2 890never used automatically and are not necessary; they are only provided for
bf740959 891the convenience of the user.
892.It Pa $HOME/.ssh/config
610cd5c6 893This is the per-user configuration file.
588df31a 894The file format and configuration options are described in
895.Xr ssh_config 5 .
e1520719 896Because of the potential for abuse, this file must have strict permissions:
897read/write for the user, and not accessible by others.
bf740959 898.It Pa $HOME/.ssh/authorized_keys
96a7b0cc 899Lists the public keys (RSA/DSA) that can be used for logging in as this user.
610cd5c6 900The format of this file is described in the
bf740959 901.Xr sshd 8
610cd5c6 902manual page.
5f4a0c58 903In the simplest form the format is the same as the
904.Pa .pub
f49bc4f7 905identity files.
1d1ffb87 906This file is not highly sensitive, but the recommended
907permissions are read/write for the user, and not accessible by others.
2a8a6488 908.It Pa /etc/ssh/ssh_known_hosts
610cd5c6 909Systemwide list of known host keys.
f49bc4f7 910This file should be prepared by the
bf740959 911system administrator to contain the public host keys of all machines in the
610cd5c6 912organization.
913This file should be world-readable.
914This file contains
bf740959 915public keys, one per line, in the following format (fields separated
f49bc4f7 916by spaces): system name, public key and optional comment field.
610cd5c6 917When different names are used
bf740959 918for the same machine, all such names should be listed, separated by
610cd5c6 919commas.
5f4a0c58 920The format is described in the
bf740959 921.Xr sshd 8
922manual page.
923.Pp
924The canonical system name (as returned by name servers) is used by
925.Xr sshd 8
926to verify the client host when logging in; other names are needed because
927.Nm
928does not convert the user-supplied name to a canonical name before
929checking the key, because someone with access to the name servers
930would then be able to fool host authentication.
2a8a6488 931.It Pa /etc/ssh/ssh_config
610cd5c6 932Systemwide configuration file.
588df31a 933The file format and configuration options are described in
934.Xr ssh_config 5 .
2a8a6488 935.It Pa /etc/ssh/ssh_host_key, /etc/ssh/ssh_host_dsa_key, /etc/ssh/ssh_host_rsa_key
dd58cb5e 936These three files contain the private parts of the host keys
937and are used for
938.Cm RhostsRSAAuthentication
939and
940.Cm HostbasedAuthentication .
d83cbdc3 941If the protocol version 1
942.Cm RhostsRSAAuthentication
7203d6bb 943method is used,
d83cbdc3 944.Nm
945must be setuid root, since the host key is readable only by root.
946For protocol version 2,
947.Nm
948uses
949.Xr ssh-keysign 8
950to access the host keys for
951.Cm HostbasedAuthentication .
952This eliminates the requirement that
953.Nm
954be setuid root when that authentication method is used.
955By default
dd58cb5e 956.Nm
d83cbdc3 957is not setuid root.
bf740959 958.It Pa $HOME/.rhosts
959This file is used in
5f4a0c58 960.Em rhosts
bf740959 961authentication to list the
610cd5c6 962host/user pairs that are permitted to log in.
963(Note that this file is
bf740959 964also used by rlogin and rsh, which makes using this file insecure.)
965Each line of the file contains a host name (in the canonical form
966returned by name servers), and then a user name on that host,
610cd5c6 967separated by a space.
e91c60f2 968On some machines this file may need to be
bf740959 969world-readable if the user's home directory is on a NFS partition,
970because
971.Xr sshd 8
610cd5c6 972reads it as root.
973Additionally, this file must be owned by the user,
974and must not have write permissions for anyone else.
975The recommended
bf740959 976permission for most machines is read/write for the user, and not
977accessible by others.
978.Pp
979Note that by default
980.Xr sshd 8
981will be installed so that it requires successful RSA host
5f4a0c58 982authentication before permitting
983.Em rhosts
984authentication.
91789042 985If the server machine does not have the client's host key in
2a8a6488 986.Pa /etc/ssh/ssh_known_hosts ,
91789042 987it can be stored in
bf740959 988.Pa $HOME/.ssh/known_hosts .
989The easiest way to do this is to
990connect back to the client from the server machine using ssh; this
1d1ffb87 991will automatically add the host key to
bf740959 992.Pa $HOME/.ssh/known_hosts .
993.It Pa $HOME/.shosts
994This file is used exactly the same way as
5f4a0c58 995.Pa .rhosts .
bf740959 996The purpose for
997having this file is to be able to use rhosts authentication with
998.Nm
999without permitting login with
5f4a0c58 1000.Xr rlogin
bf740959 1001or
1002.Xr rsh 1 .
1003.It Pa /etc/hosts.equiv
1004This file is used during
5f4a0c58 1005.Em rhosts
be193d89 1006authentication.
610cd5c6 1007It contains
5f4a0c58 1008canonical hosts names, one per line (the full format is described in the
bf740959 1009.Xr sshd 8
610cd5c6 1010manual page).
1011If the client host is found in this file, login is
bf740959 1012automatically permitted provided client and server user names are the
610cd5c6 1013same.
1014Additionally, successful RSA host authentication is normally
1015required.
1016This file should only be writable by root.
5f4fdfae 1017.It Pa /etc/shosts.equiv
f54651ce 1018This file is processed exactly as
bf740959 1019.Pa /etc/hosts.equiv .
1020This file may be useful to permit logins using
1021.Nm
1022but not using rsh/rlogin.
2a8a6488 1023.It Pa /etc/ssh/sshrc
bf740959 1024Commands in this file are executed by
1025.Nm
1026when the user logs in just before the user's shell (or command) is started.
1027See the
1028.Xr sshd 8
1029manual page for more information.
1030.It Pa $HOME/.ssh/rc
1031Commands in this file are executed by
1032.Nm
1033when the user logs in just before the user's shell (or command) is
1034started.
f54651ce 1035See the
bf740959 1036.Xr sshd 8
1037manual page for more information.
83b7f649 1038.It Pa $HOME/.ssh/environment
1039Contains additional definitions for environment variables, see section
1040.Sx ENVIRONMENT
1041above.
b5e300c2 1042.El
16210ef7 1043.Sh DIAGNOSTICS
1044.Nm
1045exits with the exit status of the remote command or with 255
1046if an error occurred.
bf740959 1047.Sh SEE ALSO
5f4a0c58 1048.Xr gzip 1 ,
bf740959 1049.Xr rsh 1 ,
1050.Xr scp 1 ,
61e96248 1051.Xr sftp 1 ,
bf740959 1052.Xr ssh-add 1 ,
1053.Xr ssh-agent 1 ,
1054.Xr ssh-keygen 1 ,
1055.Xr telnet 1 ,
5f4a0c58 1056.Xr hosts.equiv 5 ,
1ae02182 1057.Xr ssh_config 5 ,
b2843ec6 1058.Xr ssh-keysign 8 ,
9afadca8 1059.Xr sshd 8
2cad6cef 1060.Rs
1061.%A T. Ylonen
1062.%A T. Kivinen
1063.%A M. Saarinen
1064.%A T. Rinne
1065.%A S. Lehtinen
1066.%T "SSH Protocol Architecture"
17f5e68a 1067.%N draft-ietf-secsh-architecture-12.txt
1068.%D January 2002
2cad6cef 1069.%O work in progress material
1070.Re
be193d89 1071.Sh AUTHORS
1072OpenSSH is a derivative of the original and free
1073ssh 1.2.12 release by Tatu Ylonen.
1074Aaron Campbell, Bob Beck, Markus Friedl, Niels Provos,
1075Theo de Raadt and Dug Song
1076removed many bugs, re-added newer features and
1077created OpenSSH.
1078Markus Friedl contributed the support for SSH
1079protocol versions 1.5 and 2.0.
This page took 0.574942 seconds and 5 git commands to generate.