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