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