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