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.277 2008/07/02 13:47:39 djm Exp $ 38.\" $FreeBSD$ 39.Dd July 2 2008 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 1246AaCfgKkMNnqsTtVvXxY 48.Op Fl b Ar bind_address 49.Op Fl c Ar cipher_spec 50.Oo Fl D\ \& 51.Sm off 52.Oo Ar bind_address : Oc 53.Ar port 54.Sm on 55.Oc 56.Op Fl e Ar escape_char 57.Op Fl F Ar configfile 58.Bk -words 59.Op Fl i Ar identity_file 60.Ek 61.Oo Fl L\ \& 62.Sm off 63.Oo Ar bind_address : Oc 64.Ar port : host : hostport 65.Sm on 66.Oc 67.Bk -words 68.Op Fl l Ar login_name 69.Ek 70.Op Fl m Ar mac_spec 71.Op Fl O Ar ctl_cmd 72.Op Fl o Ar option 73.Op Fl p Ar port 74.Oo Fl R\ \& 75.Sm off 76.Oo Ar bind_address : Oc 77.Ar port : host : hostport 78.Sm on 79.Oc 80.Op Fl S Ar ctl_path 81.Bk -words 82.Oo Fl w Ar local_tun Ns 83.Op : Ns Ar remote_tun Oc 84.Oo Ar user Ns @ Oc Ns Ar hostname 85.Op Ar command 86.Ek 87.Sh DESCRIPTION 88.Nm 89(SSH client) is a program for logging into a remote machine and for 90executing commands on a remote machine. 91It is intended to replace rlogin and rsh, 92and provide secure encrypted communications between 93two untrusted hosts over an insecure network. 94X11 connections and arbitrary TCP ports 95can also be forwarded over the secure channel. 96.Pp 97.Nm 98connects and logs into the specified 99.Ar hostname 100(with optional 101.Ar user 102name). 103The user must prove 104his/her identity to the remote machine using one of several methods 105depending on the protocol version used (see below). 106.Pp 107If 108.Ar command 109is specified, 110it is executed on the remote host instead of a login shell. 111.Pp 112The options are as follows: 113.Bl -tag -width Ds 114.It Fl 1 115Forces 116.Nm 117to try protocol version 1 only. 118.It Fl 2 119Forces 120.Nm 121to try protocol version 2 only. 122.It Fl 4 123Forces 124.Nm 125to use IPv4 addresses only. 126.It Fl 6 127Forces 128.Nm 129to use IPv6 addresses only. 130.It Fl A 131Enables forwarding of the authentication agent connection. 132This can also be specified on a per-host basis in a configuration file. 133.Pp 134Agent forwarding should be enabled with caution. 135Users with the ability to bypass file permissions on the remote host 136(for the agent's Unix-domain socket) 137can access the local agent through the forwarded connection. 138An attacker cannot obtain key material from the agent, 139however they can perform operations on the keys that enable them to 140authenticate using the identities loaded into the agent. 141.It Fl a 142Disables forwarding of the authentication agent connection. 143.It Fl b Ar bind_address 144Use 145.Ar bind_address 146on the local machine as the source address 147of the connection. 148Only useful on systems with more than one address. 149.It Fl C 150Requests compression of all data (including stdin, stdout, stderr, and 151data for forwarded X11 and TCP connections). 152The compression algorithm is the same used by 153.Xr gzip 1 , 154and the 155.Dq level 156can be controlled by the 157.Cm CompressionLevel 158option for protocol version 1. 159Compression is desirable on modem lines and other 160slow connections, but will only slow down things on fast networks. 161The default value can be set on a host-by-host basis in the 162configuration files; see the 163.Cm Compression 164option. 165.It Fl c Ar cipher_spec 166Selects the cipher specification for encrypting the session. 167.Pp 168Protocol version 1 allows specification of a single cipher. 169The supported values are 170.Dq 3des , 171.Dq blowfish , 172and 173.Dq des . 174.Ar 3des 175(triple-des) is an encrypt-decrypt-encrypt triple with three different keys. 176It is believed to be secure. 177.Ar blowfish 178is a fast block cipher; it appears very secure and is much faster than 179.Ar 3des . 180.Ar des 181is only supported in the 182.Nm 183client for interoperability with legacy protocol 1 implementations 184that do not support the 185.Ar 3des 186cipher. 187Its use is strongly discouraged due to cryptographic weaknesses. 188The default is 189.Dq 3des . 190.Pp 191For protocol version 2, 192.Ar cipher_spec 193is a comma-separated list of ciphers 194listed in order of preference. 195The supported ciphers are: 1963des-cbc, 197aes128-cbc, 198aes192-cbc, 199aes256-cbc, 200aes128-ctr, 201aes192-ctr, 202aes256-ctr, 203arcfour128, 204arcfour256, 205arcfour, 206blowfish-cbc, 207and 208cast128-cbc. 209The default is: 210.Bd -literal -offset indent 211aes128-cbc,3des-cbc,blowfish-cbc,cast128-cbc,arcfour128, 212arcfour256,arcfour,aes192-cbc,aes256-cbc,aes128-ctr, 213aes192-ctr,aes256-ctr 214.Ed 215.It Fl D Xo 216.Sm off 217.Oo Ar bind_address : Oc 218.Ar port 219.Sm on 220.Xc 221Specifies a local 222.Dq dynamic 223application-level port forwarding. 224This works by allocating a socket to listen to 225.Ar port 226on the local side, optionally bound to the specified 227.Ar bind_address . 228Whenever a connection is made to this port, the 229connection is forwarded over the secure channel, and the application 230protocol is then used to determine where to connect to from the 231remote machine. 232Currently the SOCKS4 and SOCKS5 protocols are supported, and 233.Nm 234will act as a SOCKS server. 235Only root can forward privileged ports. 236Dynamic port forwardings can also be specified in the configuration file. 237.Pp 238IPv6 addresses can be specified with an alternative syntax: 239.Sm off 240.Xo 241.Op Ar bind_address No / 242.Ar port 243.Xc 244.Sm on 245or by enclosing the address in square brackets. 246Only the superuser can forward privileged ports. 247By default, the local port is bound in accordance with the 248.Cm GatewayPorts 249setting. 250However, an explicit 251.Ar bind_address 252may be used to bind the connection to a specific address. 253The 254.Ar bind_address 255of 256.Dq localhost 257indicates that the listening port be bound for local use only, while an 258empty address or 259.Sq * 260indicates that the port should be available from all interfaces. 261.It Fl e Ar escape_char 262Sets the escape character for sessions with a pty (default: 263.Ql ~ ) . 264The escape character is only recognized at the beginning of a line. 265The escape character followed by a dot 266.Pq Ql \&. 267closes the connection; 268followed by control-Z suspends the connection; 269and followed by itself sends the escape character once. 270Setting the character to 271.Dq none 272disables any escapes and makes the session fully transparent. 273.It Fl F Ar configfile 274Specifies an alternative per-user configuration file. 275If a configuration file is given on the command line, 276the system-wide configuration file 277.Pq Pa /etc/ssh/ssh_config 278will be ignored. 279The default for the per-user configuration file is 280.Pa ~/.ssh/config . 281.It Fl f 282Requests 283.Nm 284to go to background just before command execution. 285This is useful if 286.Nm 287is going to ask for passwords or passphrases, but the user 288wants it in the background. 289This implies 290.Fl n . 291The recommended way to start X11 programs at a remote site is with 292something like 293.Ic ssh -f host xterm . 294.Pp 295If the 296.Cm ExitOnForwardFailure 297configuration option is set to 298.Dq yes , 299then a client started with 300.Fl f 301will wait for all remote port forwards to be successfully established 302before placing itself in the background. 303.It Fl g 304Allows remote hosts to connect to local forwarded ports. 305.It Fl I Ar smartcard_device 306Specify the device 307.Nm 308should use to communicate with a smartcard used for storing the user's 309private RSA key. 310This option is only available if support for smartcard devices 311is compiled in (default is no support). 312.It Fl i Ar identity_file 313Selects a file from which the identity (private key) for 314RSA or DSA authentication is read. 315The default is 316.Pa ~/.ssh/identity 317for protocol version 1, and 318.Pa ~/.ssh/id_rsa 319and 320.Pa ~/.ssh/id_dsa 321for protocol version 2. 322Identity files may also be specified on 323a per-host basis in the configuration file. 324It is possible to have multiple 325.Fl i 326options (and multiple identities specified in 327configuration files). 328.It Fl K 329Enables GSSAPI-based authentication and forwarding (delegation) of GSSAPI 330credentials to the server. 331.It Fl k 332Disables forwarding (delegation) of GSSAPI credentials to the server. 333.It Fl L Xo 334.Sm off 335.Oo Ar bind_address : Oc 336.Ar port : host : hostport 337.Sm on 338.Xc 339Specifies that the given port on the local (client) host is to be 340forwarded to the given host and port on the remote side. 341This works by allocating a socket to listen to 342.Ar port 343on the local side, optionally bound to the specified 344.Ar bind_address . 345Whenever a connection is made to this port, the 346connection is forwarded over the secure channel, and a connection is 347made to 348.Ar host 349port 350.Ar hostport 351from the remote machine. 352Port forwardings can also be specified in the configuration file. 353IPv6 addresses can be specified with an alternative syntax: 354.Sm off 355.Xo 356.Op Ar bind_address No / 357.Ar port No / Ar host No / 358.Ar hostport 359.Xc 360.Sm on 361or by enclosing the address in square brackets. 362Only the superuser can forward privileged ports. 363By default, the local port is bound in accordance with the 364.Cm GatewayPorts 365setting. 366However, an explicit 367.Ar bind_address 368may be used to bind the connection to a specific address. 369The 370.Ar bind_address 371of 372.Dq localhost 373indicates that the listening port be bound for local use only, while an 374empty address or 375.Sq * 376indicates that the port should be available from all interfaces. 377.It Fl l Ar login_name 378Specifies the user to log in as on the remote machine. 379This also may be specified on a per-host basis in the configuration file. 380.It Fl M 381Places the 382.Nm 383client into 384.Dq master 385mode for connection sharing. 386Multiple 387.Fl M 388options places 389.Nm 390into 391.Dq master 392mode with confirmation required before slave connections are accepted. 393Refer to the description of 394.Cm ControlMaster 395in 396.Xr ssh_config 5 397for details. 398.It Fl m Ar mac_spec 399Additionally, for protocol version 2 a comma-separated list of MAC 400(message authentication code) algorithms can 401be specified in order of preference. 402See the 403.Cm MACs 404keyword for more information. 405.It Fl N 406Do not execute a remote command. 407This is useful for just forwarding ports 408(protocol version 2 only). 409.It Fl n 410Redirects stdin from 411.Pa /dev/null 412(actually, prevents reading from stdin). 413This must be used when 414.Nm 415is run in the background. 416A common trick is to use this to run X11 programs on a remote machine. 417For example, 418.Ic ssh -n shadows.cs.hut.fi emacs & 419will start an emacs on shadows.cs.hut.fi, and the X11 420connection will be automatically forwarded over an encrypted channel. 421The 422.Nm 423program will be put in the background. 424(This does not work if 425.Nm 426needs to ask for a password or passphrase; see also the 427.Fl f 428option.) 429.It Fl O Ar ctl_cmd 430Control an active connection multiplexing master process. 431When the 432.Fl O 433option is specified, the 434.Ar ctl_cmd 435argument is interpreted and passed to the master process. 436Valid commands are: 437.Dq check 438(check that the master process is running) and 439.Dq exit 440(request the master to exit). 441.It Fl o Ar option 442Can be used to give options in the format used in the configuration file. 443This is useful for specifying options for which there is no separate 444command-line flag. 445For full details of the options listed below, and their possible values, see 446.Xr ssh_config 5 . 447.Pp 448.Bl -tag -width Ds -offset indent -compact 449.It AddressFamily 450.It BatchMode 451.It BindAddress 452.It ChallengeResponseAuthentication 453.It CheckHostIP 454.It Cipher 455.It Ciphers 456.It ClearAllForwardings 457.It Compression 458.It CompressionLevel 459.It ConnectionAttempts 460.It ConnectTimeout 461.It ControlMaster 462.It ControlPath 463.It DynamicForward 464.It EscapeChar 465.It ExitOnForwardFailure 466.It ForwardAgent 467.It ForwardX11 468.It ForwardX11Trusted 469.It GatewayPorts 470.It GlobalKnownHostsFile 471.It GSSAPIAuthentication 472.It GSSAPIDelegateCredentials 473.It HashKnownHosts 474.It Host 475.It HostbasedAuthentication 476.It HostKeyAlgorithms 477.It HostKeyAlias 478.It HostName 479.It IdentityFile 480.It IdentitiesOnly 481.It KbdInteractiveDevices 482.It LocalCommand 483.It LocalForward 484.It LogLevel 485.It MACs 486.It NoHostAuthenticationForLocalhost 487.It NumberOfPasswordPrompts 488.It PasswordAuthentication 489.It PermitLocalCommand 490.It Port 491.It PreferredAuthentications 492.It Protocol 493.It ProxyCommand 494.It PubkeyAuthentication 495.It RekeyLimit 496.It RemoteForward 497.It RhostsRSAAuthentication 498.It RSAAuthentication 499.It SendEnv 500.It ServerAliveInterval 501.It ServerAliveCountMax 502.It SmartcardDevice 503.It StrictHostKeyChecking 504.It TCPKeepAlive 505.It Tunnel 506.It TunnelDevice 507.It UsePrivilegedPort 508.It User 509.It UserKnownHostsFile 510.It VerifyHostKeyDNS 511.It VersionAddendum 512.It VisualHostKey 513.It XAuthLocation 514.El 515.It Fl p Ar port 516Port to connect to on the remote host. 517This can be specified on a 518per-host basis in the configuration file. 519.It Fl q 520Quiet mode. 521Causes most warning and diagnostic messages to be suppressed. 522.It Fl R Xo 523.Sm off 524.Oo Ar bind_address : Oc 525.Ar port : host : hostport 526.Sm on 527.Xc 528Specifies that the given port on the remote (server) host is to be 529forwarded to the given host and port on the local side. 530This works by allocating a socket to listen to 531.Ar port 532on the remote side, and whenever a connection is made to this port, the 533connection is forwarded over the secure channel, and a connection is 534made to 535.Ar host 536port 537.Ar hostport 538from the local machine. 539.Pp 540Port forwardings can also be specified in the configuration file. 541Privileged ports can be forwarded only when 542logging in as root on the remote machine. 543IPv6 addresses can be specified by enclosing the address in square braces or 544using an alternative syntax: 545.Sm off 546.Xo 547.Op Ar bind_address No / 548.Ar host No / Ar port No / 549.Ar hostport 550.Xc . 551.Sm on 552.Pp 553By default, the listening socket on the server will be bound to the loopback 554interface only. 555This may be overriden by specifying a 556.Ar bind_address . 557An empty 558.Ar bind_address , 559or the address 560.Ql * , 561indicates that the remote socket should listen on all interfaces. 562Specifying a remote 563.Ar bind_address 564will only succeed if the server's 565.Cm GatewayPorts 566option is enabled (see 567.Xr sshd_config 5 ) . 568.It Fl S Ar ctl_path 569Specifies the location of a control socket for connection sharing. 570Refer to the description of 571.Cm ControlPath 572and 573.Cm ControlMaster 574in 575.Xr ssh_config 5 576for details. 577.It Fl s 578May be used to request invocation of a subsystem on the remote system. 579Subsystems are a feature of the SSH2 protocol which facilitate the use 580of SSH as a secure transport for other applications (eg.\& 581.Xr sftp 1 ) . 582The subsystem is specified as the remote command. 583.It Fl T 584Disable pseudo-tty allocation. 585.It Fl t 586Force pseudo-tty allocation. 587This can be used to execute arbitrary 588screen-based programs on a remote machine, which can be very useful, 589e.g. when implementing menu services. 590Multiple 591.Fl t 592options force tty allocation, even if 593.Nm 594has no local tty. 595.It Fl V 596Display the version number and exit. 597.It Fl v 598Verbose mode. 599Causes 600.Nm 601to print debugging messages about its progress. 602This is helpful in 603debugging connection, authentication, and configuration problems. 604Multiple 605.Fl v 606options increase the verbosity. 607The maximum is 3. 608.It Fl w Xo 609.Ar local_tun Ns Op : Ns Ar remote_tun 610.Xc 611Requests 612tunnel 613device forwarding with the specified 614.Xr tun 4 615devices between the client 616.Pq Ar local_tun 617and the server 618.Pq Ar remote_tun . 619.Pp 620The devices may be specified by numerical ID or the keyword 621.Dq any , 622which uses the next available tunnel device. 623If 624.Ar remote_tun 625is not specified, it defaults to 626.Dq any . 627See also the 628.Cm Tunnel 629and 630.Cm TunnelDevice 631directives in 632.Xr ssh_config 5 . 633If the 634.Cm Tunnel 635directive is unset, it is set to the default tunnel mode, which is 636.Dq point-to-point . 637.It Fl X 638Enables X11 forwarding. 639This can also be specified on a per-host basis in a configuration file. 640.Pp 641X11 forwarding should be enabled with caution. 642Users with the ability to bypass file permissions on the remote host 643(for the user's X authorization database) 644can access the local X11 display through the forwarded connection. 645An attacker may then be able to perform activities such as keystroke monitoring. 646.Pp 647For this reason, X11 forwarding is subjected to X11 SECURITY extension 648restrictions by default. 649Please refer to the 650.Nm 651.Fl Y 652option and the 653.Cm ForwardX11Trusted 654directive in 655.Xr ssh_config 5 656for more information. 657.It Fl x 658Disables X11 forwarding. 659.It Fl Y 660Enables trusted X11 forwarding. 661Trusted X11 forwardings are not subjected to the X11 SECURITY extension 662controls. 663.El 664.Pp 665.Nm 666may additionally obtain configuration data from 667a per-user configuration file and a system-wide configuration file. 668The file format and configuration options are described in 669.Xr ssh_config 5 . 670.Pp 671.Nm 672exits with the exit status of the remote command or with 255 673if an error occurred. 674.Sh AUTHENTICATION 675The OpenSSH SSH client supports SSH protocols 1 and 2. 676Protocol 2 is the default, with 677.Nm 678falling back to protocol 1 if it detects protocol 2 is unsupported. 679These settings may be altered using the 680.Cm Protocol 681option in 682.Xr ssh_config 5 , 683or enforced using the 684.Fl 1 685and 686.Fl 2 687options (see above). 688Both protocols support similar authentication methods, 689but protocol 2 is preferred since 690it provides additional mechanisms for confidentiality 691(the traffic is encrypted using AES, 3DES, Blowfish, CAST128, or Arcfour) 692and integrity (hmac-md5, hmac-sha1, umac-64, hmac-ripemd160). 693Protocol 1 lacks a strong mechanism for ensuring the 694integrity of the connection. 695.Pp 696The methods available for authentication are: 697GSSAPI-based authentication, 698host-based authentication, 699public key authentication, 700challenge-response authentication, 701and password authentication. 702Authentication methods are tried in the order specified above, 703though protocol 2 has a configuration option to change the default order: 704.Cm PreferredAuthentications . 705.Pp 706Host-based authentication works as follows: 707If the machine the user logs in from is listed in 708.Pa /etc/hosts.equiv 709or 710.Pa /etc/shosts.equiv 711on the remote machine, and the user names are 712the same on both sides, or if the files 713.Pa ~/.rhosts 714or 715.Pa ~/.shosts 716exist in the user's home directory on the 717remote machine and contain a line containing the name of the client 718machine and the name of the user on that machine, the user is 719considered for login. 720Additionally, the server 721.Em must 722be able to verify the client's 723host key (see the description of 724.Pa /etc/ssh/ssh_known_hosts 725and 726.Pa ~/.ssh/known_hosts , 727below) 728for login to be permitted. 729This authentication method closes security holes due to IP 730spoofing, DNS spoofing, and routing spoofing. 731[Note to the administrator: 732.Pa /etc/hosts.equiv , 733.Pa ~/.rhosts , 734and the rlogin/rsh protocol in general, are inherently insecure and should be 735disabled if security is desired.] 736.Pp 737Public key authentication works as follows: 738The scheme is based on public-key cryptography, 739using cryptosystems 740where encryption and decryption are done using separate keys, 741and it is unfeasible to derive the decryption key from the encryption key. 742The idea is that each user creates a public/private 743key pair for authentication purposes. 744The server knows the public key, and only the user knows the private key. 745.Nm 746implements public key authentication protocol automatically, 747using either the RSA or DSA algorithms. 748Protocol 1 is restricted to using only RSA keys, 749but protocol 2 may use either. 750The 751.Sx HISTORY 752section of 753.Xr ssl 8 754contains a brief discussion of the two algorithms. 755.Pp 756The file 757.Pa ~/.ssh/authorized_keys 758lists the public keys that are permitted for logging in. 759When the user logs in, the 760.Nm 761program tells the server which key pair it would like to use for 762authentication. 763The client proves that it has access to the private key 764and the server checks that the corresponding public key 765is authorized to accept the account. 766.Pp 767The user creates his/her key pair by running 768.Xr ssh-keygen 1 . 769This stores the private key in 770.Pa ~/.ssh/identity 771(protocol 1), 772.Pa ~/.ssh/id_dsa 773(protocol 2 DSA), 774or 775.Pa ~/.ssh/id_rsa 776(protocol 2 RSA) 777and stores the public key in 778.Pa ~/.ssh/identity.pub 779(protocol 1), 780.Pa ~/.ssh/id_dsa.pub 781(protocol 2 DSA), 782or 783.Pa ~/.ssh/id_rsa.pub 784(protocol 2 RSA) 785in the user's home directory. 786The user should then copy the public key 787to 788.Pa ~/.ssh/authorized_keys 789in his/her home directory on the remote machine. 790The 791.Pa authorized_keys 792file corresponds to the conventional 793.Pa ~/.rhosts 794file, and has one key 795per line, though the lines can be very long. 796After this, the user can log in without giving the password. 797.Pp 798The most convenient way to use public key authentication may be with an 799authentication agent. 800See 801.Xr ssh-agent 1 802for more information. 803.Pp 804Challenge-response authentication works as follows: 805The server sends an arbitrary 806.Qq challenge 807text, and prompts for a response. 808Protocol 2 allows multiple challenges and responses; 809protocol 1 is restricted to just one challenge/response. 810Examples of challenge-response authentication include 811BSD Authentication (see 812.Xr login.conf 5 ) 813and PAM (some non-OpenBSD systems). 814.Pp 815Finally, if other authentication methods fail, 816.Nm 817prompts the user for a password. 818The password is sent to the remote 819host for checking; however, since all communications are encrypted, 820the password cannot be seen by someone listening on the network. 821.Pp 822.Nm 823automatically maintains and checks a database containing 824identification for all hosts it has ever been used with. 825Host keys are stored in 826.Pa ~/.ssh/known_hosts 827in the user's home directory. 828Additionally, the file 829.Pa /etc/ssh/ssh_known_hosts 830is automatically checked for known hosts. 831Any new hosts are automatically added to the user's file. 832If a host's identification ever changes, 833.Nm 834warns about this and disables password authentication to prevent 835server spoofing or man-in-the-middle attacks, 836which could otherwise be used to circumvent the encryption. 837The 838.Cm StrictHostKeyChecking 839option can be used to control logins to machines whose 840host key is not known or has changed. 841.Pp 842When the user's identity has been accepted by the server, the server 843either executes the given command, or logs into the machine and gives 844the user a normal shell on the remote machine. 845All communication with 846the remote command or shell will be automatically encrypted. 847.Pp 848If a pseudo-terminal has been allocated (normal login session), the 849user may use the escape characters noted below. 850.Pp 851If no pseudo-tty has been allocated, 852the session is transparent and can be used to reliably transfer binary data. 853On most systems, setting the escape character to 854.Dq none 855will also make the session transparent even if a tty is used. 856.Pp 857The session terminates when the command or shell on the remote 858machine exits and all X11 and TCP connections have been closed. 859.Sh ESCAPE CHARACTERS 860When a pseudo-terminal has been requested, 861.Nm 862supports a number of functions through the use of an escape character. 863.Pp 864A single tilde character can be sent as 865.Ic ~~ 866or by following the tilde by a character other than those described below. 867The escape character must always follow a newline to be interpreted as 868special. 869The escape character can be changed in configuration files using the 870.Cm EscapeChar 871configuration directive or on the command line by the 872.Fl e 873option. 874.Pp 875The supported escapes (assuming the default 876.Ql ~ ) 877are: 878.Bl -tag -width Ds 879.It Cm ~. 880Disconnect. 881.It Cm ~^Z 882Background 883.Nm . 884.It Cm ~# 885List forwarded connections. 886.It Cm ~& 887Background 888.Nm 889at logout when waiting for forwarded connection / X11 sessions to terminate. 890.It Cm ~? 891Display a list of escape characters. 892.It Cm ~B 893Send a BREAK to the remote system 894(only useful for SSH protocol version 2 and if the peer supports it). 895.It Cm ~C 896Open command line. 897Currently this allows the addition of port forwardings using the 898.Fl L 899and 900.Fl R 901options (see above). 902It also allows the cancellation of existing remote port-forwardings 903using 904.Sm off 905.Fl KR Oo Ar bind_address : Oc Ar port . 906.Sm on 907.Ic !\& Ns Ar command 908allows the user to execute a local command if the 909.Ic PermitLocalCommand 910option is enabled in 911.Xr ssh_config 5 . 912Basic help is available, using the 913.Fl h 914option. 915.It Cm ~R 916Request rekeying of the connection 917(only useful for SSH protocol version 2 and if the peer supports it). 918.El 919.Sh TCP FORWARDING 920Forwarding of arbitrary TCP connections over the secure channel can 921be specified either on the command line or in a configuration file. 922One possible application of TCP forwarding is a secure connection to a 923mail server; another is going through firewalls. 924.Pp 925In the example below, we look at encrypting communication between 926an IRC client and server, even though the IRC server does not directly 927support encrypted communications. 928This works as follows: 929the user connects to the remote host using 930.Nm , 931specifying a port to be used to forward connections 932to the remote server. 933After that it is possible to start the service which is to be encrypted 934on the client machine, 935connecting to the same local port, 936and 937.Nm 938will encrypt and forward the connection. 939.Pp 940The following example tunnels an IRC session from client machine 941.Dq 127.0.0.1 942(localhost) 943to remote server 944.Dq server.example.com : 945.Bd -literal -offset 4n 946$ ssh -f -L 1234:localhost:6667 server.example.com sleep 10 947$ irc -c '#users' -p 1234 pinky 127.0.0.1 948.Ed 949.Pp 950This tunnels a connection to IRC server 951.Dq server.example.com , 952joining channel 953.Dq #users , 954nickname 955.Dq pinky , 956using port 1234. 957It doesn't matter which port is used, 958as long as it's greater than 1023 959(remember, only root can open sockets on privileged ports) 960and doesn't conflict with any ports already in use. 961The connection is forwarded to port 6667 on the remote server, 962since that's the standard port for IRC services. 963.Pp 964The 965.Fl f 966option backgrounds 967.Nm 968and the remote command 969.Dq sleep 10 970is specified to allow an amount of time 971(10 seconds, in the example) 972to start the service which is to be tunnelled. 973If no connections are made within the time specified, 974.Nm 975will exit. 976.Sh X11 FORWARDING 977If the 978.Cm ForwardX11 979variable is set to 980.Dq yes 981(or see the description of the 982.Fl X , 983.Fl x , 984and 985.Fl Y 986options above) 987and the user is using X11 (the 988.Ev DISPLAY 989environment variable is set), the connection to the X11 display is 990automatically forwarded to the remote side in such a way that any X11 991programs started from the shell (or command) will go through the 992encrypted channel, and the connection to the real X server will be made 993from the local machine. 994The user should not manually set 995.Ev DISPLAY . 996Forwarding of X11 connections can be 997configured on the command line or in configuration files. 998.Pp 999The 1000.Ev DISPLAY 1001value set by 1002.Nm 1003will point to the server machine, but with a display number greater than zero. 1004This is normal, and happens because 1005.Nm 1006creates a 1007.Dq proxy 1008X server on the server machine for forwarding the 1009connections over the encrypted channel. 1010.Pp 1011.Nm 1012will also automatically set up Xauthority data on the server machine. 1013For this purpose, it will generate a random authorization cookie, 1014store it in Xauthority on the server, and verify that any forwarded 1015connections carry this cookie and replace it by the real cookie when 1016the connection is opened. 1017The real authentication cookie is never 1018sent to the server machine (and no cookies are sent in the plain). 1019.Pp 1020If the 1021.Cm ForwardAgent 1022variable is set to 1023.Dq yes 1024(or see the description of the 1025.Fl A 1026and 1027.Fl a 1028options above) and 1029the user is using an authentication agent, the connection to the agent 1030is automatically forwarded to the remote side. 1031.Sh VERIFYING HOST KEYS 1032When connecting to a server for the first time, 1033a fingerprint of the server's public key is presented to the user 1034(unless the option 1035.Cm StrictHostKeyChecking 1036has been disabled). 1037Fingerprints can be determined using 1038.Xr ssh-keygen 1 : 1039.Pp 1040.Dl $ ssh-keygen -l -f /etc/ssh/ssh_host_rsa_key 1041.Pp 1042If the fingerprint is already known, it can be matched 1043and the key can be accepted or rejected. 1044Because of the difficulty of comparing host keys 1045just by looking at hex strings, 1046there is also support to compare host keys visually, 1047using 1048.Em random art . 1049By setting the 1050.Cm VisualHostKey 1051option to 1052.Dq yes , 1053a small ASCII graphic gets displayed on every login to a server, no matter 1054if the session itself is interactive or not. 1055By learning the pattern a known server produces, a user can easily 1056find out that the host key has changed when a completely different pattern 1057is displayed. 1058Because these patterns are not unambiguous however, a pattern that looks 1059similar to the pattern remembered only gives a good probability that the 1060host key is the same, not guaranteed proof. 1061.Pp 1062To get a listing of the fingerprints along with their random art for 1063all known hosts, the following command line can be used: 1064.Pp 1065.Dl $ ssh-keygen -lv -f ~/.ssh/known_hosts 1066.Pp 1067If the fingerprint is unknown, 1068an alternative method of verification is available: 1069SSH fingerprints verified by DNS. 1070An additional resource record (RR), 1071SSHFP, 1072is added to a zonefile 1073and the connecting client is able to match the fingerprint 1074with that of the key presented. 1075.Pp 1076In this example, we are connecting a client to a server, 1077.Dq host.example.com . 1078The SSHFP resource records should first be added to the zonefile for 1079host.example.com: 1080.Bd -literal -offset indent 1081$ ssh-keygen -r host.example.com. 1082.Ed 1083.Pp 1084The output lines will have to be added to the zonefile. 1085To check that the zone is answering fingerprint queries: 1086.Pp 1087.Dl $ dig -t SSHFP host.example.com 1088.Pp 1089Finally the client connects: 1090.Bd -literal -offset indent 1091$ ssh -o "VerifyHostKeyDNS ask" host.example.com 1092[...] 1093Matching host key fingerprint found in DNS. 1094Are you sure you want to continue connecting (yes/no)? 1095.Ed 1096.Pp 1097See the 1098.Cm VerifyHostKeyDNS 1099option in 1100.Xr ssh_config 5 1101for more information. 1102.Sh SSH-BASED VIRTUAL PRIVATE NETWORKS 1103.Nm 1104contains support for Virtual Private Network (VPN) tunnelling 1105using the 1106.Xr tun 4 1107network pseudo-device, 1108allowing two networks to be joined securely. 1109The 1110.Xr sshd_config 5 1111configuration option 1112.Cm PermitTunnel 1113controls whether the server supports this, 1114and at what level (layer 2 or 3 traffic). 1115.Pp 1116The following example would connect client network 10.0.50.0/24 1117with remote network 10.0.99.0/24 using a point-to-point connection 1118from 10.1.1.1 to 10.1.1.2, 1119provided that the SSH server running on the gateway to the remote network, 1120at 192.168.1.15, allows it. 1121.Pp 1122On the client: 1123.Bd -literal -offset indent 1124# ssh -f -w 0:1 192.168.1.15 true 1125# ifconfig tun0 10.1.1.1 10.1.1.2 netmask 255.255.255.252 1126# route add 10.0.99.0/24 10.1.1.2 1127.Ed 1128.Pp 1129On the server: 1130.Bd -literal -offset indent 1131# ifconfig tun1 10.1.1.2 10.1.1.1 netmask 255.255.255.252 1132# route add 10.0.50.0/24 10.1.1.1 1133.Ed 1134.Pp 1135Client access may be more finely tuned via the 1136.Pa /root/.ssh/authorized_keys 1137file (see below) and the 1138.Cm PermitRootLogin 1139server option. 1140The following entry would permit connections on 1141.Xr tun 4 1142device 1 from user 1143.Dq jane 1144and on tun device 2 from user 1145.Dq john , 1146if 1147.Cm PermitRootLogin 1148is set to 1149.Dq forced-commands-only : 1150.Bd -literal -offset 2n 1151tunnel="1",command="sh /etc/netstart tun1" ssh-rsa ... jane 1152tunnel="2",command="sh /etc/netstart tun2" ssh-rsa ... john 1153.Ed 1154.Pp 1155Since an SSH-based setup entails a fair amount of overhead, 1156it may be more suited to temporary setups, 1157such as for wireless VPNs. 1158More permanent VPNs are better provided by tools such as 1159.Xr ipsecctl 8 1160and 1161.Xr isakmpd 8 . 1162.Sh ENVIRONMENT 1163.Nm 1164will normally set the following environment variables: 1165.Bl -tag -width "SSH_ORIGINAL_COMMAND" 1166.It Ev DISPLAY 1167The 1168.Ev DISPLAY 1169variable indicates the location of the X11 server. 1170It is automatically set by 1171.Nm 1172to point to a value of the form 1173.Dq hostname:n , 1174where 1175.Dq hostname 1176indicates the host where the shell runs, and 1177.Sq n 1178is an integer \*(Ge 1. 1179.Nm 1180uses this special value to forward X11 connections over the secure 1181channel. 1182The user should normally not set 1183.Ev DISPLAY 1184explicitly, as that 1185will render the X11 connection insecure (and will require the user to 1186manually copy any required authorization cookies). 1187.It Ev HOME 1188Set to the path of the user's home directory. 1189.It Ev LOGNAME 1190Synonym for 1191.Ev USER ; 1192set for compatibility with systems that use this variable. 1193.It Ev MAIL 1194Set to the path of the user's mailbox. 1195.It Ev PATH 1196Set to the default 1197.Ev PATH , 1198as specified when compiling 1199.Nm . 1200.It Ev SSH_ASKPASS 1201If 1202.Nm 1203needs a passphrase, it will read the passphrase from the current 1204terminal if it was run from a terminal. 1205If 1206.Nm 1207does not have a terminal associated with it but 1208.Ev DISPLAY 1209and 1210.Ev SSH_ASKPASS 1211are set, it will execute the program specified by 1212.Ev SSH_ASKPASS 1213and open an X11 window to read the passphrase. 1214This is particularly useful when calling 1215.Nm 1216from a 1217.Pa .xsession 1218or related script. 1219(Note that on some machines it 1220may be necessary to redirect the input from 1221.Pa /dev/null 1222to make this work.) 1223.It Ev SSH_AUTH_SOCK 1224Identifies the path of a 1225.Ux Ns -domain 1226socket used to communicate with the agent. 1227.It Ev SSH_CONNECTION 1228Identifies the client and server ends of the connection. 1229The variable contains 1230four space-separated values: client IP address, client port number, 1231server IP address, and server port number. 1232.It Ev SSH_ORIGINAL_COMMAND 1233This variable contains the original command line if a forced command 1234is executed. 1235It can be used to extract the original arguments. 1236.It Ev SSH_TTY 1237This is set to the name of the tty (path to the device) associated 1238with the current shell or command. 1239If the current session has no tty, 1240this variable is not set. 1241.It Ev TZ 1242This variable is set to indicate the present time zone if it 1243was set when the daemon was started (i.e. the daemon passes the value 1244on to new connections). 1245.It Ev USER 1246Set to the name of the user logging in. 1247.El 1248.Pp 1249Additionally, 1250.Nm 1251reads 1252.Pa ~/.ssh/environment , 1253and adds lines of the format 1254.Dq VARNAME=value 1255to the environment if the file exists and users are allowed to 1256change their environment. 1257For more information, see the 1258.Cm PermitUserEnvironment 1259option in 1260.Xr sshd_config 5 . 1261.Sh FILES 1262.Bl -tag -width Ds -compact 1263.It ~/.rhosts 1264This file is used for host-based authentication (see above). 1265On some machines this file may need to be 1266world-readable if the user's home directory is on an NFS partition, 1267because 1268.Xr sshd 8 1269reads it as root. 1270Additionally, this file must be owned by the user, 1271and must not have write permissions for anyone else. 1272The recommended 1273permission for most machines is read/write for the user, and not 1274accessible by others. 1275.Pp 1276.It ~/.shosts 1277This file is used in exactly the same way as 1278.Pa .rhosts , 1279but allows host-based authentication without permitting login with 1280rlogin/rsh. 1281.Pp 1282.It ~/.ssh/ 1283This directory is the default location for all user-specific configuration 1284and authentication information. 1285There is no general requirement to keep the entire contents of this directory 1286secret, but the recommended permissions are read/write/execute for the user, 1287and not accessible by others. 1288.Pp 1289.It ~/.ssh/authorized_keys 1290Lists the public keys (RSA/DSA) that can be used for logging in as this user. 1291The format of this file is described in the 1292.Xr sshd 8 1293manual page. 1294This file is not highly sensitive, but the recommended 1295permissions are read/write for the user, and not accessible by others. 1296.Pp 1297.It ~/.ssh/config 1298This is the per-user configuration file. 1299The file format and configuration options are described in 1300.Xr ssh_config 5 . 1301Because of the potential for abuse, this file must have strict permissions: 1302read/write for the user, and not accessible by others. 1303.Pp 1304.It ~/.ssh/environment 1305Contains additional definitions for environment variables; see 1306.Sx ENVIRONMENT , 1307above. 1308.Pp 1309.It ~/.ssh/identity 1310.It ~/.ssh/id_dsa 1311.It ~/.ssh/id_rsa 1312Contains the private key for authentication. 1313These files 1314contain sensitive data and should be readable by the user but not 1315accessible by others (read/write/execute). 1316.Nm 1317will simply ignore a private key file if it is accessible by others. 1318It is possible to specify a passphrase when 1319generating the key which will be used to encrypt the 1320sensitive part of this file using 3DES. 1321.Pp 1322.It ~/.ssh/identity.pub 1323.It ~/.ssh/id_dsa.pub 1324.It ~/.ssh/id_rsa.pub 1325Contains the public key for authentication. 1326These files are not 1327sensitive and can (but need not) be readable by anyone. 1328.Pp 1329.It ~/.ssh/known_hosts 1330Contains a list of host keys for all hosts the user has logged into 1331that are not already in the systemwide list of known host keys. 1332See 1333.Xr sshd 8 1334for further details of the format of this file. 1335.Pp 1336.It ~/.ssh/rc 1337Commands in this file are executed by 1338.Nm 1339when the user logs in, just before the user's shell (or command) is 1340started. 1341See the 1342.Xr sshd 8 1343manual page for more information. 1344.Pp 1345.It /etc/hosts.equiv 1346This file is for host-based authentication (see above). 1347It should only be writable by root. 1348.Pp 1349.It /etc/shosts.equiv 1350This file is used in exactly the same way as 1351.Pa hosts.equiv , 1352but allows host-based authentication without permitting login with 1353rlogin/rsh. 1354.Pp 1355.It Pa /etc/ssh/ssh_config 1356Systemwide configuration file. 1357The file format and configuration options are described in 1358.Xr ssh_config 5 . 1359.Pp 1360.It /etc/ssh/ssh_host_key 1361.It /etc/ssh/ssh_host_dsa_key 1362.It /etc/ssh/ssh_host_rsa_key 1363These three files contain the private parts of the host keys 1364and are used for host-based authentication. 1365If protocol version 1 is used, 1366.Nm 1367must be setuid root, since the host key is readable only by root. 1368For protocol version 2, 1369.Nm 1370uses 1371.Xr ssh-keysign 8 1372to access the host keys, 1373eliminating the requirement that 1374.Nm 1375be setuid root when host-based authentication is used. 1376By default 1377.Nm 1378is not setuid root. 1379.Pp 1380.It /etc/ssh/ssh_known_hosts 1381Systemwide list of known host keys. 1382This file should be prepared by the 1383system administrator to contain the public host keys of all machines in the 1384organization. 1385It should be world-readable. 1386See 1387.Xr sshd 8 1388for further details of the format of this file. 1389.Pp 1390.It /etc/ssh/sshrc 1391Commands in this file are executed by 1392.Nm 1393when the user logs in, just before the user's shell (or command) is started. 1394See the 1395.Xr sshd 8 1396manual page for more information. 1397.El 1398.Sh SEE ALSO 1399.Xr scp 1 , 1400.Xr sftp 1 , 1401.Xr ssh-add 1 , 1402.Xr ssh-agent 1 , 1403.Xr ssh-keygen 1 , 1404.Xr ssh-keyscan 1 , 1405.Xr tun 4 , 1406.Xr hosts.equiv 5 , 1407.Xr ssh_config 5 , 1408.Xr ssh-keysign 8 , 1409.Xr sshd 8 1410.Rs 1411.%R RFC 4250 1412.%T "The Secure Shell (SSH) Protocol Assigned Numbers" 1413.%D 2006 1414.Re 1415.Rs 1416.%R RFC 4251 1417.%T "The Secure Shell (SSH) Protocol Architecture" 1418.%D 2006 1419.Re 1420.Rs 1421.%R RFC 4252 1422.%T "The Secure Shell (SSH) Authentication Protocol" 1423.%D 2006 1424.Re 1425.Rs 1426.%R RFC 4253 1427.%T "The Secure Shell (SSH) Transport Layer Protocol" 1428.%D 2006 1429.Re 1430.Rs 1431.%R RFC 4254 1432.%T "The Secure Shell (SSH) Connection Protocol" 1433.%D 2006 1434.Re 1435.Rs 1436.%R RFC 4255 1437.%T "Using DNS to Securely Publish Secure Shell (SSH) Key Fingerprints" 1438.%D 2006 1439.Re 1440.Rs 1441.%R RFC 4256 1442.%T "Generic Message Exchange Authentication for the Secure Shell Protocol (SSH)" 1443.%D 2006 1444.Re 1445.Rs 1446.%R RFC 4335 1447.%T "The Secure Shell (SSH) Session Channel Break Extension" 1448.%D 2006 1449.Re 1450.Rs 1451.%R RFC 4344 1452.%T "The Secure Shell (SSH) Transport Layer Encryption Modes" 1453.%D 2006 1454.Re 1455.Rs 1456.%R RFC 4345 1457.%T "Improved Arcfour Modes for the Secure Shell (SSH) Transport Layer Protocol" 1458.%D 2006 1459.Re 1460.Rs 1461.%R RFC 4419 1462.%T "Diffie-Hellman Group Exchange for the Secure Shell (SSH) Transport Layer Protocol" 1463.%D 2006 1464.Re 1465.Rs 1466.%R RFC 4716 1467.%T "The Secure Shell (SSH) Public Key File Format" 1468.%D 2006 1469.Re 1470.Rs 1471.%T "Hash Visualization: a New Technique to improve Real-World Security" 1472.%A A. Perrig 1473.%A D. Song 1474.%D 1999 1475.%O "International Workshop on Cryptographic Techniques and E-Commerce (CrypTEC '99)" 1476.Re 1477.Sh AUTHORS 1478OpenSSH is a derivative of the original and free 1479ssh 1.2.12 release by Tatu Ylonen. 1480Aaron Campbell, Bob Beck, Markus Friedl, Niels Provos, 1481Theo de Raadt and Dug Song 1482removed many bugs, re-added newer features and 1483created OpenSSH. 1484Markus Friedl contributed the support for SSH 1485protocol versions 1.5 and 2.0. 1486