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