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