[BACK]Return to ssh.1 CVS log [TXT][DIR] Up to [local] / src / usr.bin / ssh

Annotation of src/usr.bin/ssh/ssh.1, Revision 1.383

1.1       deraadt     1: .\"
                      2: .\" Author: Tatu Ylonen <ylo@cs.hut.fi>
                      3: .\" Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
                      4: .\"                    All rights reserved
                      5: .\"
1.59      deraadt     6: .\" As far as I am concerned, the code I have written for this software
                      7: .\" can be used freely for any purpose.  Any derived versions of this
                      8: .\" software must be clearly marked as such, and if the derived work is
                      9: .\" incompatible with the protocol description in the RFC file, it must be
                     10: .\" called by a name other than "ssh" or "Secure Shell".
                     11: .\"
1.93      deraadt    12: .\" Copyright (c) 1999,2000 Markus Friedl.  All rights reserved.
                     13: .\" Copyright (c) 1999 Aaron Campbell.  All rights reserved.
                     14: .\" Copyright (c) 1999 Theo de Raadt.  All rights reserved.
1.59      deraadt    15: .\"
                     16: .\" Redistribution and use in source and binary forms, with or without
                     17: .\" modification, are permitted provided that the following conditions
                     18: .\" are met:
                     19: .\" 1. Redistributions of source code must retain the above copyright
                     20: .\"    notice, this list of conditions and the following disclaimer.
                     21: .\" 2. Redistributions in binary form must reproduce the above copyright
                     22: .\"    notice, this list of conditions and the following disclaimer in the
                     23: .\"    documentation and/or other materials provided with the distribution.
1.1       deraadt    24: .\"
1.59      deraadt    25: .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
                     26: .\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
                     27: .\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
                     28: .\" IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
                     29: .\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
                     30: .\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
                     31: .\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
                     32: .\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
                     33: .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
                     34: .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1.1       deraadt    35: .\"
1.383   ! djm        36: .\" $OpenBSD: ssh.1,v 1.382 2017/05/30 18:58:37 bluhm Exp $
        !            37: .Dd $Mdocdate: May 30 2017 $
1.2       deraadt    38: .Dt SSH 1
                     39: .Os
                     40: .Sh NAME
                     41: .Nm ssh
1.96      deraadt    42: .Nd OpenSSH SSH client (remote login program)
1.2       deraadt    43: .Sh SYNOPSIS
                     44: .Nm ssh
1.306     jmc        45: .Bk -words
1.377     djm        46: .Op Fl 46AaCfGgKkMNnqsTtVvXxYy
1.108     markus     47: .Op Fl b Ar bind_address
1.51      markus     48: .Op Fl c Ar cipher_spec
1.306     jmc        49: .Op Fl D Oo Ar bind_address : Oc Ns Ar port
1.331     dtucker    50: .Op Fl E Ar log_file
1.2       deraadt    51: .Op Fl e Ar escape_char
1.176     jmc        52: .Op Fl F Ar configfile
1.292     jmc        53: .Op Fl I Ar pkcs11
1.2       deraadt    54: .Op Fl i Ar identity_file
1.376     jmc        55: .Op Fl J Oo Ar user Ns @ Oc Ns Ar host Ns Op : Ns Ar port
1.360     millert    56: .Op Fl L Ar address
1.176     jmc        57: .Op Fl l Ar login_name
                     58: .Op Fl m Ar mac_spec
1.198     djm        59: .Op Fl O Ar ctl_cmd
1.176     jmc        60: .Op Fl o Ar option
                     61: .Op Fl p Ar port
1.362     djm        62: .Op Fl Q Ar query_option
1.360     millert    63: .Op Fl R Ar address
1.198     djm        64: .Op Fl S Ar ctl_path
1.290     dtucker    65: .Op Fl W Ar host : Ns Ar port
1.306     jmc        66: .Op Fl w Ar local_tun Ns Op : Ns Ar remote_tun
1.176     jmc        67: .Oo Ar user Ns @ Oc Ns Ar hostname
1.2       deraadt    68: .Op Ar command
1.306     jmc        69: .Ek
1.44      aaron      70: .Sh DESCRIPTION
1.2       deraadt    71: .Nm
1.96      deraadt    72: (SSH client) is a program for logging into a remote machine and for
1.40      aaron      73: executing commands on a remote machine.
1.365     mmcc       74: It is intended to provide secure encrypted communications between
1.40      aaron      75: two untrusted hosts over an insecure network.
1.348     millert    76: X11 connections, arbitrary TCP ports and
                     77: .Ux Ns -domain
                     78: sockets can also be forwarded over the secure channel.
1.2       deraadt    79: .Pp
                     80: .Nm
1.44      aaron      81: connects and logs into the specified
1.176     jmc        82: .Ar hostname
                     83: (with optional
                     84: .Ar user
                     85: name).
1.1       deraadt    86: The user must prove
1.49      markus     87: his/her identity to the remote machine using one of several methods
1.365     mmcc       88: (see below).
1.49      markus     89: .Pp
1.176     jmc        90: If
                     91: .Ar command
                     92: is specified,
1.219     jmc        93: it is executed on the remote host instead of a login shell.
1.2       deraadt    94: .Pp
1.218     jmc        95: The options are as follows:
1.361     millert    96: .Pp
1.360     millert    97: .Bl -tag -width Ds -compact
1.218     jmc        98: .It Fl 4
                     99: Forces
1.2       deraadt   100: .Nm
1.218     jmc       101: to use IPv4 addresses only.
1.360     millert   102: .Pp
1.218     jmc       103: .It Fl 6
                    104: Forces
1.2       deraadt   105: .Nm
1.218     jmc       106: to use IPv6 addresses only.
1.360     millert   107: .Pp
1.218     jmc       108: .It Fl A
                    109: Enables forwarding of the authentication agent connection.
                    110: This can also be specified on a per-host basis in a configuration file.
1.2       deraadt   111: .Pp
1.218     jmc       112: Agent forwarding should be enabled with caution.
                    113: Users with the ability to bypass file permissions on the remote host
1.285     sobrado   114: (for the agent's
1.286     sobrado   115: .Ux Ns -domain
                    116: socket) can access the local agent through the forwarded connection.
1.218     jmc       117: An attacker cannot obtain key material from the agent,
                    118: however they can perform operations on the keys that enable them to
                    119: authenticate using the identities loaded into the agent.
1.360     millert   120: .Pp
1.218     jmc       121: .It Fl a
                    122: Disables forwarding of the authentication agent connection.
1.360     millert   123: .Pp
1.218     jmc       124: .It Fl b Ar bind_address
                    125: Use
                    126: .Ar bind_address
                    127: on the local machine as the source address
                    128: of the connection.
                    129: Only useful on systems with more than one address.
1.360     millert   130: .Pp
1.218     jmc       131: .It Fl C
                    132: Requests compression of all data (including stdin, stdout, stderr, and
1.348     millert   133: data for forwarded X11, TCP and
                    134: .Ux Ns -domain
                    135: connections).
1.218     jmc       136: The compression algorithm is the same used by
1.377     djm       137: .Xr gzip 1 .
1.218     jmc       138: Compression is desirable on modem lines and other
                    139: slow connections, but will only slow down things on fast networks.
                    140: The default value can be set on a host-by-host basis in the
                    141: configuration files; see the
                    142: .Cm Compression
                    143: option.
1.360     millert   144: .Pp
1.218     jmc       145: .It Fl c Ar cipher_spec
                    146: Selects the cipher specification for encrypting the session.
                    147: .Ar cipher_spec
                    148: is a comma-separated list of ciphers
                    149: listed in order of preference.
1.283     jmc       150: See the
                    151: .Cm Ciphers
1.307     dtucker   152: keyword in
                    153: .Xr ssh_config 5
                    154: for more information.
1.360     millert   155: .Pp
1.218     jmc       156: .It Fl D Xo
                    157: .Sm off
                    158: .Oo Ar bind_address : Oc
                    159: .Ar port
                    160: .Sm on
                    161: .Xc
                    162: Specifies a local
                    163: .Dq dynamic
                    164: application-level port forwarding.
                    165: This works by allocating a socket to listen to
                    166: .Ar port
                    167: on the local side, optionally bound to the specified
                    168: .Ar bind_address .
                    169: Whenever a connection is made to this port, the
                    170: connection is forwarded over the secure channel, and the application
                    171: protocol is then used to determine where to connect to from the
                    172: remote machine.
                    173: Currently the SOCKS4 and SOCKS5 protocols are supported, and
1.107     markus    174: .Nm
1.218     jmc       175: will act as a SOCKS server.
                    176: Only root can forward privileged ports.
                    177: Dynamic port forwardings can also be specified in the configuration file.
1.49      markus    178: .Pp
1.308     djm       179: IPv6 addresses can be specified by enclosing the address in square brackets.
1.218     jmc       180: Only the superuser can forward privileged ports.
                    181: By default, the local port is bound in accordance with the
                    182: .Cm GatewayPorts
                    183: setting.
                    184: However, an explicit
                    185: .Ar bind_address
                    186: may be used to bind the connection to a specific address.
                    187: The
                    188: .Ar bind_address
                    189: of
                    190: .Dq localhost
                    191: indicates that the listening port be bound for local use only, while an
                    192: empty address or
                    193: .Sq *
                    194: indicates that the port should be available from all interfaces.
1.360     millert   195: .Pp
1.331     dtucker   196: .It Fl E Ar log_file
                    197: Append debug logs to
                    198: .Ar log_file
                    199: instead of standard error.
1.360     millert   200: .Pp
1.229     jmc       201: .It Fl e Ar escape_char
1.218     jmc       202: Sets the escape character for sessions with a pty (default:
                    203: .Ql ~ ) .
                    204: The escape character is only recognized at the beginning of a line.
                    205: The escape character followed by a dot
                    206: .Pq Ql \&.
                    207: closes the connection;
                    208: followed by control-Z suspends the connection;
                    209: and followed by itself sends the escape character once.
                    210: Setting the character to
1.2       deraadt   211: .Dq none
1.218     jmc       212: disables any escapes and makes the session fully transparent.
1.360     millert   213: .Pp
1.218     jmc       214: .It Fl F Ar configfile
                    215: Specifies an alternative per-user configuration file.
                    216: If a configuration file is given on the command line,
                    217: the system-wide configuration file
                    218: .Pq Pa /etc/ssh/ssh_config
                    219: will be ignored.
                    220: The default for the per-user configuration file is
                    221: .Pa ~/.ssh/config .
1.360     millert   222: .Pp
1.218     jmc       223: .It Fl f
                    224: Requests
                    225: .Nm
                    226: to go to background just before command execution.
                    227: This is useful if
1.176     jmc       228: .Nm
1.218     jmc       229: is going to ask for passwords or passphrases, but the user
                    230: wants it in the background.
                    231: This implies
                    232: .Fl n .
                    233: The recommended way to start X11 programs at a remote site is with
                    234: something like
                    235: .Ic ssh -f host xterm .
1.277     djm       236: .Pp
                    237: If the
                    238: .Cm ExitOnForwardFailure
                    239: configuration option is set to
                    240: .Dq yes ,
                    241: then a client started with
                    242: .Fl f
                    243: will wait for all remote port forwards to be successfully established
                    244: before placing itself in the background.
1.360     millert   245: .Pp
1.350     djm       246: .It Fl G
                    247: Causes
                    248: .Nm
                    249: to print its configuration after evaluating
                    250: .Cm Host
                    251: and
                    252: .Cm Match
                    253: blocks and exit.
1.360     millert   254: .Pp
1.218     jmc       255: .It Fl g
                    256: Allows remote hosts to connect to local forwarded ports.
1.346     djm       257: If used on a multiplexed connection, then this option must be specified
                    258: on the master process.
1.360     millert   259: .Pp
1.291     markus    260: .It Fl I Ar pkcs11
1.294     jmc       261: Specify the PKCS#11 shared library
1.176     jmc       262: .Nm
1.293     markus    263: should use to communicate with a PKCS#11 token providing the user's
1.218     jmc       264: private RSA key.
1.360     millert   265: .Pp
1.218     jmc       266: .It Fl i Ar identity_file
                    267: Selects a file from which the identity (private key) for
1.310     djm       268: public key authentication is read.
1.218     jmc       269: The default is
1.310     djm       270: .Pa ~/.ssh/id_dsa ,
1.343     naddy     271: .Pa ~/.ssh/id_ecdsa ,
                    272: .Pa ~/.ssh/id_ed25519
1.310     djm       273: and
1.381     naddy     274: .Pa ~/.ssh/id_rsa .
1.218     jmc       275: Identity files may also be specified on
                    276: a per-host basis in the configuration file.
                    277: It is possible to have multiple
                    278: .Fl i
                    279: options (and multiple identities specified in
                    280: configuration files).
1.364     jmc       281: If no certificates have been explicitly specified by the
1.363     djm       282: .Cm CertificateFile
                    283: directive,
1.302     djm       284: .Nm
                    285: will also try to load certificate information from the filename obtained
                    286: by appending
                    287: .Pa -cert.pub
                    288: to identity filenames.
1.360     millert   289: .Pp
1.375     djm       290: .It Fl J Xo
                    291: .Sm off
1.376     jmc       292: .Op Ar user No @
                    293: .Ar host
                    294: .Op : Ar port
1.375     djm       295: .Sm on
                    296: .Xc
                    297: Connect to the target host by first making a
                    298: .Nm
1.376     jmc       299: connection to the jump
                    300: .Ar host
                    301: and then establishing a TCP forwarding to the ultimate destination from
1.375     djm       302: there.
                    303: Multiple jump hops may be specified separated by comma characters.
                    304: This is a shortcut to specify a
                    305: .Cm ProxyJump
                    306: configuration directive.
                    307: .Pp
1.269     djm       308: .It Fl K
                    309: Enables GSSAPI-based authentication and forwarding (delegation) of GSSAPI
                    310: credentials to the server.
1.360     millert   311: .Pp
1.218     jmc       312: .It Fl k
                    313: Disables forwarding (delegation) of GSSAPI credentials to the server.
1.360     millert   314: .Pp
1.218     jmc       315: .It Fl L Xo
                    316: .Sm off
                    317: .Oo Ar bind_address : Oc
                    318: .Ar port : host : hostport
                    319: .Sm on
                    320: .Xc
1.360     millert   321: .It Fl L Xo
                    322: .Sm off
                    323: .Oo Ar bind_address : Oc
                    324: .Ar port : remote_socket
                    325: .Sm on
                    326: .Xc
                    327: .It Fl L Xo
                    328: .Sm off
                    329: .Ar local_socket : host : hostport
                    330: .Sm on
                    331: .Xc
                    332: .It Fl L Xo
                    333: .Sm off
                    334: .Ar local_socket : remote_socket
                    335: .Sm on
                    336: .Xc
                    337: Specifies that connections to the given TCP port or Unix socket on the local
                    338: (client) host are to be forwarded to the given host and port, or Unix socket,
                    339: on the remote side.
                    340: This works by allocating a socket to listen to either a TCP
1.218     jmc       341: .Ar port
                    342: on the local side, optionally bound to the specified
1.360     millert   343: .Ar bind_address ,
                    344: or to a Unix socket.
                    345: Whenever a connection is made to the local port or socket, the
1.218     jmc       346: connection is forwarded over the secure channel, and a connection is
1.360     millert   347: made to either
1.218     jmc       348: .Ar host
                    349: port
1.360     millert   350: .Ar hostport ,
                    351: or the Unix socket
                    352: .Ar remote_socket ,
1.218     jmc       353: from the remote machine.
1.360     millert   354: .Pp
1.218     jmc       355: Port forwardings can also be specified in the configuration file.
1.360     millert   356: Only the superuser can forward privileged ports.
1.308     djm       357: IPv6 addresses can be specified by enclosing the address in square brackets.
1.360     millert   358: .Pp
1.218     jmc       359: By default, the local port is bound in accordance with the
                    360: .Cm GatewayPorts
                    361: setting.
                    362: However, an explicit
                    363: .Ar bind_address
                    364: may be used to bind the connection to a specific address.
1.2       deraadt   365: The
1.218     jmc       366: .Ar bind_address
                    367: of
                    368: .Dq localhost
                    369: indicates that the listening port be bound for local use only, while an
                    370: empty address or
                    371: .Sq *
                    372: indicates that the port should be available from all interfaces.
1.360     millert   373: .Pp
1.218     jmc       374: .It Fl l Ar login_name
                    375: Specifies the user to log in as on the remote machine.
                    376: This also may be specified on a per-host basis in the configuration file.
1.360     millert   377: .Pp
1.218     jmc       378: .It Fl M
                    379: Places the
                    380: .Nm
                    381: client into
                    382: .Dq master
                    383: mode for connection sharing.
1.231     stevesk   384: Multiple
                    385: .Fl M
                    386: options places
                    387: .Nm
                    388: into
                    389: .Dq master
                    390: mode with confirmation required before slave connections are accepted.
1.218     jmc       391: Refer to the description of
                    392: .Cm ControlMaster
                    393: in
                    394: .Xr ssh_config 5
                    395: for details.
1.360     millert   396: .Pp
1.218     jmc       397: .It Fl m Ar mac_spec
1.369     jmc       398: A comma-separated list of MAC (message authentication code) algorithms,
                    399: specified in order of preference.
1.218     jmc       400: See the
                    401: .Cm MACs
                    402: keyword for more information.
1.360     millert   403: .Pp
1.218     jmc       404: .It Fl N
                    405: Do not execute a remote command.
1.369     jmc       406: This is useful for just forwarding ports.
1.360     millert   407: .Pp
1.218     jmc       408: .It Fl n
                    409: Redirects stdin from
                    410: .Pa /dev/null
                    411: (actually, prevents reading from stdin).
                    412: This must be used when
1.2       deraadt   413: .Nm
1.218     jmc       414: is run in the background.
                    415: A common trick is to use this to run X11 programs on a remote machine.
                    416: For example,
                    417: .Ic ssh -n shadows.cs.hut.fi emacs &
                    418: will start an emacs on shadows.cs.hut.fi, and the X11
                    419: connection will be automatically forwarded over an encrypted channel.
                    420: The
1.2       deraadt   421: .Nm
1.218     jmc       422: program will be put in the background.
                    423: (This does not work if
1.2       deraadt   424: .Nm
1.218     jmc       425: needs to ask for a password or passphrase; see also the
                    426: .Fl f
                    427: option.)
1.360     millert   428: .Pp
1.218     jmc       429: .It Fl O Ar ctl_cmd
                    430: Control an active connection multiplexing master process.
                    431: When the
                    432: .Fl O
                    433: option is specified, the
                    434: .Ar ctl_cmd
                    435: argument is interpreted and passed to the master process.
                    436: Valid commands are:
                    437: .Dq check
1.305     markus    438: (check that the master process is running),
                    439: .Dq forward
1.318     jmc       440: (request forwardings without command execution),
1.323     okan      441: .Dq cancel
                    442: (cancel forwardings),
1.218     jmc       443: .Dq exit
1.318     jmc       444: (request the master to exit), and
1.317     djm       445: .Dq stop
                    446: (request the master to stop accepting further multiplexing requests).
1.360     millert   447: .Pp
1.218     jmc       448: .It Fl o Ar option
                    449: Can be used to give options in the format used in the configuration file.
                    450: This is useful for specifying options for which there is no separate
                    451: command-line flag.
                    452: For full details of the options listed below, and their possible values, see
                    453: .Xr ssh_config 5 .
1.2       deraadt   454: .Pp
1.218     jmc       455: .Bl -tag -width Ds -offset indent -compact
1.366     jcs       456: .It AddKeysToAgent
1.218     jmc       457: .It AddressFamily
                    458: .It BatchMode
                    459: .It BindAddress
1.338     djm       460: .It CanonicalDomains
1.339     djm       461: .It CanonicalizeFallbackLocal
                    462: .It CanonicalizeHostname
                    463: .It CanonicalizeMaxDots
                    464: .It CanonicalizePermittedCNAMEs
1.363     djm       465: .It CertificateFile
1.218     jmc       466: .It ChallengeResponseAuthentication
                    467: .It CheckHostIP
                    468: .It Ciphers
                    469: .It ClearAllForwardings
                    470: .It Compression
1.380     naddy     471: .It ConnectionAttempts
1.218     jmc       472: .It ConnectTimeout
                    473: .It ControlMaster
                    474: .It ControlPath
1.321     djm       475: .It ControlPersist
1.218     jmc       476: .It DynamicForward
                    477: .It EscapeChar
1.263     markus    478: .It ExitOnForwardFailure
1.353     jmc       479: .It FingerprintHash
1.218     jmc       480: .It ForwardAgent
                    481: .It ForwardX11
1.321     djm       482: .It ForwardX11Timeout
1.218     jmc       483: .It ForwardX11Trusted
                    484: .It GatewayPorts
                    485: .It GlobalKnownHostsFile
                    486: .It GSSAPIAuthentication
                    487: .It GSSAPIDelegateCredentials
                    488: .It HashKnownHosts
                    489: .It Host
                    490: .It HostbasedAuthentication
1.355     djm       491: .It HostbasedKeyTypes
1.218     jmc       492: .It HostKeyAlgorithms
                    493: .It HostKeyAlias
                    494: .It HostName
1.374     jmc       495: .It IdentitiesOnly
1.371     markus    496: .It IdentityAgent
1.218     jmc       497: .It IdentityFile
1.370     djm       498: .It Include
1.316     jmc       499: .It IPQoS
1.321     djm       500: .It KbdInteractiveAuthentication
1.218     jmc       501: .It KbdInteractiveDevices
1.314     jmc       502: .It KexAlgorithms
1.218     jmc       503: .It LocalCommand
                    504: .It LocalForward
                    505: .It LogLevel
                    506: .It MACs
1.337     jmc       507: .It Match
1.218     jmc       508: .It NoHostAuthenticationForLocalhost
                    509: .It NumberOfPasswordPrompts
                    510: .It PasswordAuthentication
                    511: .It PermitLocalCommand
1.291     markus    512: .It PKCS11Provider
1.218     jmc       513: .It Port
                    514: .It PreferredAuthentications
                    515: .It ProxyCommand
1.375     djm       516: .It ProxyJump
1.336     jmc       517: .It ProxyUseFdpass
1.359     markus    518: .It PubkeyAcceptedKeyTypes
1.218     jmc       519: .It PubkeyAuthentication
1.251     dtucker   520: .It RekeyLimit
1.382     bluhm     521: .It RemoteCommand
1.218     jmc       522: .It RemoteForward
1.319     jmc       523: .It RequestTTY
1.218     jmc       524: .It SendEnv
                    525: .It ServerAliveInterval
                    526: .It ServerAliveCountMax
1.347     jmc       527: .It StreamLocalBindMask
                    528: .It StreamLocalBindUnlink
1.218     jmc       529: .It StrictHostKeyChecking
                    530: .It TCPKeepAlive
                    531: .It Tunnel
                    532: .It TunnelDevice
1.354     djm       533: .It UpdateHostKeys
1.218     jmc       534: .It UsePrivilegedPort
                    535: .It User
                    536: .It UserKnownHostsFile
                    537: .It VerifyHostKeyDNS
1.276     jmc       538: .It VisualHostKey
1.218     jmc       539: .It XAuthLocation
                    540: .El
1.360     millert   541: .Pp
1.218     jmc       542: .It Fl p Ar port
                    543: Port to connect to on the remote host.
                    544: This can be specified on a
                    545: per-host basis in the configuration file.
1.360     millert   546: .Pp
1.362     djm       547: .It Fl Q Ar query_option
1.332     djm       548: Queries
                    549: .Nm
1.341     deraadt   550: for the algorithms supported for the specified version 2.
                    551: The available features are:
                    552: .Ar cipher
1.332     djm       553: (supported symmetric ciphers),
1.341     deraadt   554: .Ar cipher-auth
1.340     djm       555: (supported symmetric ciphers that support authenticated encryption),
1.341     deraadt   556: .Ar mac
1.332     djm       557: (supported message integrity codes),
1.341     deraadt   558: .Ar kex
1.332     djm       559: (key exchange algorithms),
1.341     deraadt   560: .Ar key
1.362     djm       561: (key types),
                    562: .Ar key-cert
                    563: (certificate key types),
                    564: .Ar key-plain
                    565: (non-certificate key types), and
1.356     djm       566: .Ar protocol-version
                    567: (supported SSH protocol versions).
1.360     millert   568: .Pp
1.218     jmc       569: .It Fl q
                    570: Quiet mode.
1.271     djm       571: Causes most warning and diagnostic messages to be suppressed.
1.360     millert   572: .Pp
1.218     jmc       573: .It Fl R Xo
                    574: .Sm off
                    575: .Oo Ar bind_address : Oc
                    576: .Ar port : host : hostport
                    577: .Sm on
                    578: .Xc
1.360     millert   579: .It Fl R Xo
                    580: .Sm off
                    581: .Oo Ar bind_address : Oc
                    582: .Ar port : local_socket
                    583: .Sm on
                    584: .Xc
                    585: .It Fl R Xo
                    586: .Sm off
                    587: .Ar remote_socket : host : hostport
                    588: .Sm on
                    589: .Xc
                    590: .It Fl R Xo
                    591: .Sm off
                    592: .Ar remote_socket : local_socket
                    593: .Sm on
                    594: .Xc
                    595: Specifies that connections to the given TCP port or Unix socket on the remote
                    596: (server) host are to be forwarded to the given host and port, or Unix socket,
                    597: on the local side.
                    598: This works by allocating a socket to listen to either a TCP
1.218     jmc       599: .Ar port
1.360     millert   600: or to a Unix socket on the remote side.
                    601: Whenever a connection is made to this port or Unix socket, the
                    602: connection is forwarded over the secure channel, and a connection
                    603: is made to either
1.218     jmc       604: .Ar host
                    605: port
1.360     millert   606: .Ar hostport ,
                    607: or
                    608: .Ar local_socket ,
1.218     jmc       609: from the local machine.
1.2       deraadt   610: .Pp
1.218     jmc       611: Port forwardings can also be specified in the configuration file.
                    612: Privileged ports can be forwarded only when
                    613: logging in as root on the remote machine.
1.324     jmc       614: IPv6 addresses can be specified by enclosing the address in square brackets.
1.194     jakob     615: .Pp
1.360     millert   616: By default, TCP listening sockets on the server will be bound to the loopback
1.218     jmc       617: interface only.
1.280     tobias    618: This may be overridden by specifying a
1.218     jmc       619: .Ar bind_address .
                    620: An empty
                    621: .Ar bind_address ,
                    622: or the address
                    623: .Ql * ,
                    624: indicates that the remote socket should listen on all interfaces.
                    625: Specifying a remote
                    626: .Ar bind_address
                    627: will only succeed if the server's
                    628: .Cm GatewayPorts
                    629: option is enabled (see
                    630: .Xr sshd_config 5 ) .
1.281     djm       631: .Pp
                    632: If the
                    633: .Ar port
                    634: argument is
1.282     djm       635: .Ql 0 ,
1.281     djm       636: the listen port will be dynamically allocated on the server and reported
                    637: to the client at run time.
1.305     markus    638: When used together with
                    639: .Ic -O forward
                    640: the allocated port will be printed to the standard output.
1.360     millert   641: .Pp
1.218     jmc       642: .It Fl S Ar ctl_path
1.304     jmc       643: Specifies the location of a control socket for connection sharing,
1.303     djm       644: or the string
                    645: .Dq none
                    646: to disable connection sharing.
1.218     jmc       647: Refer to the description of
                    648: .Cm ControlPath
                    649: and
                    650: .Cm ControlMaster
                    651: in
                    652: .Xr ssh_config 5
                    653: for details.
1.360     millert   654: .Pp
1.218     jmc       655: .It Fl s
                    656: May be used to request invocation of a subsystem on the remote system.
1.369     jmc       657: Subsystems facilitate the use of SSH
                    658: as a secure transport for other applications (e.g.\&
1.218     jmc       659: .Xr sftp 1 ) .
                    660: The subsystem is specified as the remote command.
1.360     millert   661: .Pp
1.218     jmc       662: .It Fl T
1.357     dtucker   663: Disable pseudo-terminal allocation.
1.360     millert   664: .Pp
1.218     jmc       665: .It Fl t
1.357     dtucker   666: Force pseudo-terminal allocation.
1.218     jmc       667: This can be used to execute arbitrary
                    668: screen-based programs on a remote machine, which can be very useful,
1.257     jmc       669: e.g. when implementing menu services.
1.218     jmc       670: Multiple
                    671: .Fl t
                    672: options force tty allocation, even if
1.194     jakob     673: .Nm
1.218     jmc       674: has no local tty.
1.360     millert   675: .Pp
1.218     jmc       676: .It Fl V
                    677: Display the version number and exit.
1.360     millert   678: .Pp
1.218     jmc       679: .It Fl v
                    680: Verbose mode.
                    681: Causes
1.176     jmc       682: .Nm
1.218     jmc       683: to print debugging messages about its progress.
                    684: This is helpful in
                    685: debugging connection, authentication, and configuration problems.
                    686: Multiple
                    687: .Fl v
                    688: options increase the verbosity.
                    689: The maximum is 3.
1.360     millert   690: .Pp
1.290     dtucker   691: .It Fl W Ar host : Ns Ar port
                    692: Requests that standard input and output on the client be forwarded to
                    693: .Ar host
                    694: on
                    695: .Ar port
                    696: over the secure channel.
                    697: Implies
                    698: .Fl N ,
                    699: .Fl T ,
                    700: .Cm ExitOnForwardFailure
                    701: and
1.373     jmc       702: .Cm ClearAllForwardings ,
                    703: though these can be overridden in the configuration file or using
1.372     dtucker   704: .Fl o
                    705: command line options.
1.360     millert   706: .Pp
1.261     stevesk   707: .It Fl w Xo
                    708: .Ar local_tun Ns Op : Ns Ar remote_tun
                    709: .Xc
                    710: Requests
                    711: tunnel
                    712: device forwarding with the specified
1.218     jmc       713: .Xr tun 4
1.261     stevesk   714: devices between the client
                    715: .Pq Ar local_tun
                    716: and the server
                    717: .Pq Ar remote_tun .
                    718: .Pp
1.228     jmc       719: The devices may be specified by numerical ID or the keyword
                    720: .Dq any ,
                    721: which uses the next available tunnel device.
1.261     stevesk   722: If
                    723: .Ar remote_tun
                    724: is not specified, it defaults to
                    725: .Dq any .
1.228     jmc       726: See also the
1.218     jmc       727: .Cm Tunnel
1.261     stevesk   728: and
                    729: .Cm TunnelDevice
                    730: directives in
1.218     jmc       731: .Xr ssh_config 5 .
1.261     stevesk   732: If the
                    733: .Cm Tunnel
                    734: directive is unset, it is set to the default tunnel mode, which is
                    735: .Dq point-to-point .
1.360     millert   736: .Pp
1.218     jmc       737: .It Fl X
                    738: Enables X11 forwarding.
1.54      markus    739: This can also be specified on a per-host basis in a configuration file.
1.165     stevesk   740: .Pp
1.218     jmc       741: X11 forwarding should be enabled with caution.
1.168     jmc       742: Users with the ability to bypass file permissions on the remote host
1.218     jmc       743: (for the user's X authorization database)
                    744: can access the local X11 display through the forwarded connection.
                    745: An attacker may then be able to perform activities such as keystroke monitoring.
                    746: .Pp
                    747: For this reason, X11 forwarding is subjected to X11 SECURITY extension
                    748: restrictions by default.
                    749: Please refer to the
                    750: .Nm
                    751: .Fl Y
                    752: option and the
                    753: .Cm ForwardX11Trusted
                    754: directive in
                    755: .Xr ssh_config 5
                    756: for more information.
1.360     millert   757: .Pp
1.218     jmc       758: .It Fl x
                    759: Disables X11 forwarding.
1.360     millert   760: .Pp
1.218     jmc       761: .It Fl Y
                    762: Enables trusted X11 forwarding.
                    763: Trusted X11 forwardings are not subjected to the X11 SECURITY extension
                    764: controls.
1.360     millert   765: .Pp
1.278     djm       766: .It Fl y
                    767: Send log information using the
                    768: .Xr syslog 3
                    769: system module.
                    770: By default this information is sent to stderr.
1.218     jmc       771: .El
1.224     jmc       772: .Pp
                    773: .Nm
                    774: may additionally obtain configuration data from
                    775: a per-user configuration file and a system-wide configuration file.
                    776: The file format and configuration options are described in
                    777: .Xr ssh_config 5 .
1.222     jmc       778: .Sh AUTHENTICATION
1.377     djm       779: The OpenSSH SSH client supports SSH protocol 2.
1.222     jmc       780: .Pp
                    781: The methods available for authentication are:
1.260     jmc       782: GSSAPI-based authentication,
1.222     jmc       783: host-based authentication,
                    784: public key authentication,
                    785: challenge-response authentication,
                    786: and password authentication.
                    787: Authentication methods are tried in the order specified above,
1.369     jmc       788: though
                    789: .Cm PreferredAuthentications
                    790: can be used to change the default order.
1.222     jmc       791: .Pp
                    792: Host-based authentication works as follows:
1.218     jmc       793: If the machine the user logs in from is listed in
                    794: .Pa /etc/hosts.equiv
                    795: or
                    796: .Pa /etc/shosts.equiv
                    797: on the remote machine, and the user names are
                    798: the same on both sides, or if the files
                    799: .Pa ~/.rhosts
                    800: or
                    801: .Pa ~/.shosts
                    802: exist in the user's home directory on the
                    803: remote machine and contain a line containing the name of the client
                    804: machine and the name of the user on that machine, the user is
1.222     jmc       805: considered for login.
                    806: Additionally, the server
                    807: .Em must
                    808: be able to verify the client's
                    809: host key (see the description of
1.218     jmc       810: .Pa /etc/ssh/ssh_known_hosts
1.189     dtucker   811: and
1.222     jmc       812: .Pa ~/.ssh/known_hosts ,
                    813: below)
                    814: for login to be permitted.
1.218     jmc       815: This authentication method closes security holes due to IP
1.222     jmc       816: spoofing, DNS spoofing, and routing spoofing.
1.218     jmc       817: [Note to the administrator:
                    818: .Pa /etc/hosts.equiv ,
                    819: .Pa ~/.rhosts ,
                    820: and the rlogin/rsh protocol in general, are inherently insecure and should be
                    821: disabled if security is desired.]
1.189     dtucker   822: .Pp
1.222     jmc       823: Public key authentication works as follows:
                    824: The scheme is based on public-key cryptography,
                    825: using cryptosystems
                    826: where encryption and decryption are done using separate keys,
                    827: and it is unfeasible to derive the decryption key from the encryption key.
1.218     jmc       828: The idea is that each user creates a public/private
                    829: key pair for authentication purposes.
                    830: The server knows the public key, and only the user knows the private key.
1.222     jmc       831: .Nm
                    832: implements public key authentication protocol automatically,
1.349     sobrado   833: using one of the DSA, ECDSA, Ed25519 or RSA algorithms.
1.333     jmc       834: The HISTORY section of
1.222     jmc       835: .Xr ssl 8
1.311     jmc       836: contains a brief discussion of the DSA and RSA algorithms.
1.210     djm       837: .Pp
1.218     jmc       838: The file
                    839: .Pa ~/.ssh/authorized_keys
                    840: lists the public keys that are permitted for logging in.
                    841: When the user logs in, the
1.2       deraadt   842: .Nm
1.218     jmc       843: program tells the server which key pair it would like to use for
                    844: authentication.
1.222     jmc       845: The client proves that it has access to the private key
                    846: and the server checks that the corresponding public key
                    847: is authorized to accept the account.
1.383   ! djm       848: .Pp
        !           849: The server may inform the client of errors that prevented public key
        !           850: authentication from succeeding after authentication completes using a
        !           851: different method.
        !           852: These may be viewed by increasing the
        !           853: .Cm LogLevel
        !           854: to
        !           855: .Cm DEBUG
        !           856: or higher (e.g. by using the
        !           857: .Fl v
        !           858: flag).
1.218     jmc       859: .Pp
1.222     jmc       860: The user creates his/her key pair by running
1.218     jmc       861: .Xr ssh-keygen 1 .
                    862: This stores the private key in
1.222     jmc       863: .Pa ~/.ssh/id_dsa
1.369     jmc       864: (DSA),
1.310     djm       865: .Pa ~/.ssh/id_ecdsa
1.369     jmc       866: (ECDSA),
1.343     naddy     867: .Pa ~/.ssh/id_ed25519
1.369     jmc       868: (Ed25519),
1.222     jmc       869: or
                    870: .Pa ~/.ssh/id_rsa
1.369     jmc       871: (RSA)
1.218     jmc       872: and stores the public key in
1.222     jmc       873: .Pa ~/.ssh/id_dsa.pub
1.369     jmc       874: (DSA),
1.310     djm       875: .Pa ~/.ssh/id_ecdsa.pub
1.369     jmc       876: (ECDSA),
1.343     naddy     877: .Pa ~/.ssh/id_ed25519.pub
1.369     jmc       878: (Ed25519),
1.222     jmc       879: or
                    880: .Pa ~/.ssh/id_rsa.pub
1.369     jmc       881: (RSA)
1.218     jmc       882: in the user's home directory.
1.222     jmc       883: The user should then copy the public key
1.218     jmc       884: to
                    885: .Pa ~/.ssh/authorized_keys
1.222     jmc       886: in his/her home directory on the remote machine.
                    887: The
1.218     jmc       888: .Pa authorized_keys
                    889: file corresponds to the conventional
                    890: .Pa ~/.rhosts
                    891: file, and has one key
1.222     jmc       892: per line, though the lines can be very long.
1.218     jmc       893: After this, the user can log in without giving the password.
                    894: .Pp
1.301     jmc       895: A variation on public key authentication
                    896: is available in the form of certificate authentication:
                    897: instead of a set of public/private keys,
                    898: signed certificates are used.
                    899: This has the advantage that a single trusted certification authority
                    900: can be used in place of many public/private keys.
1.333     jmc       901: See the CERTIFICATES section of
1.301     jmc       902: .Xr ssh-keygen 1
                    903: for more information.
                    904: .Pp
                    905: The most convenient way to use public key or certificate authentication
                    906: may be with an authentication agent.
1.218     jmc       907: See
                    908: .Xr ssh-agent 1
1.366     jcs       909: and (optionally) the
                    910: .Cm AddKeysToAgent
                    911: directive in
                    912: .Xr ssh_config 5
1.218     jmc       913: for more information.
                    914: .Pp
1.222     jmc       915: Challenge-response authentication works as follows:
                    916: The server sends an arbitrary
                    917: .Qq challenge
                    918: text, and prompts for a response.
                    919: Examples of challenge-response authentication include
1.335     jmc       920: .Bx
                    921: Authentication (see
1.222     jmc       922: .Xr login.conf 5 )
1.335     jmc       923: and PAM (some
                    924: .Pf non- Ox
                    925: systems).
1.222     jmc       926: .Pp
                    927: Finally, if other authentication methods fail,
1.218     jmc       928: .Nm
                    929: prompts the user for a password.
                    930: The password is sent to the remote
                    931: host for checking; however, since all communications are encrypted,
                    932: the password cannot be seen by someone listening on the network.
1.232     jmc       933: .Pp
                    934: .Nm
                    935: automatically maintains and checks a database containing
                    936: identification for all hosts it has ever been used with.
                    937: Host keys are stored in
                    938: .Pa ~/.ssh/known_hosts
                    939: in the user's home directory.
                    940: Additionally, the file
                    941: .Pa /etc/ssh/ssh_known_hosts
                    942: is automatically checked for known hosts.
                    943: Any new hosts are automatically added to the user's file.
                    944: If a host's identification ever changes,
                    945: .Nm
                    946: warns about this and disables password authentication to prevent
                    947: server spoofing or man-in-the-middle attacks,
                    948: which could otherwise be used to circumvent the encryption.
                    949: The
                    950: .Cm StrictHostKeyChecking
                    951: option can be used to control logins to machines whose
                    952: host key is not known or has changed.
                    953: .Pp
1.218     jmc       954: When the user's identity has been accepted by the server, the server
1.357     dtucker   955: either executes the given command in a non-interactive session or,
                    956: if no command has been specified, logs into the machine and gives
                    957: the user a normal shell as an interactive session.
1.218     jmc       958: All communication with
                    959: the remote command or shell will be automatically encrypted.
                    960: .Pp
1.357     dtucker   961: If an interactive session is requested
                    962: .Nm
                    963: by default will only request a pseudo-terminal (pty) for interactive
                    964: sessions when the client has one.
                    965: The flags
                    966: .Fl T
                    967: and
                    968: .Fl t
                    969: can be used to override this behaviour.
                    970: .Pp
                    971: If a pseudo-terminal has been allocated the
1.218     jmc       972: user may use the escape characters noted below.
                    973: .Pp
1.357     dtucker   974: If no pseudo-terminal has been allocated,
1.218     jmc       975: the session is transparent and can be used to reliably transfer binary data.
                    976: On most systems, setting the escape character to
                    977: .Dq none
                    978: will also make the session transparent even if a tty is used.
                    979: .Pp
                    980: The session terminates when the command or shell on the remote
1.247     jmc       981: machine exits and all X11 and TCP connections have been closed.
1.223     jmc       982: .Sh ESCAPE CHARACTERS
1.218     jmc       983: When a pseudo-terminal has been requested,
1.2       deraadt   984: .Nm
1.218     jmc       985: supports a number of functions through the use of an escape character.
                    986: .Pp
                    987: A single tilde character can be sent as
                    988: .Ic ~~
                    989: or by following the tilde by a character other than those described below.
                    990: The escape character must always follow a newline to be interpreted as
                    991: special.
                    992: The escape character can be changed in configuration files using the
                    993: .Cm EscapeChar
                    994: configuration directive or on the command line by the
                    995: .Fl e
                    996: option.
                    997: .Pp
                    998: The supported escapes (assuming the default
                    999: .Ql ~ )
                   1000: are:
                   1001: .Bl -tag -width Ds
                   1002: .It Cm ~.
                   1003: Disconnect.
                   1004: .It Cm ~^Z
                   1005: Background
1.234     jmc      1006: .Nm .
1.218     jmc      1007: .It Cm ~#
                   1008: List forwarded connections.
                   1009: .It Cm ~&
                   1010: Background
1.2       deraadt  1011: .Nm
1.218     jmc      1012: at logout when waiting for forwarded connection / X11 sessions to terminate.
                   1013: .It Cm ~?
                   1014: Display a list of escape characters.
                   1015: .It Cm ~B
                   1016: Send a BREAK to the remote system
1.369     jmc      1017: (only useful if the peer supports it).
1.218     jmc      1018: .It Cm ~C
                   1019: Open command line.
                   1020: Currently this allows the addition of port forwardings using the
1.279     stevesk  1021: .Fl L ,
                   1022: .Fl R
1.218     jmc      1023: and
1.279     stevesk  1024: .Fl D
1.225     jmc      1025: options (see above).
1.322     markus   1026: It also allows the cancellation of existing port-forwardings
                   1027: with
1.262     stevesk  1028: .Sm off
1.322     markus   1029: .Fl KL Oo Ar bind_address : Oc Ar port
1.262     stevesk  1030: .Sm on
1.322     markus   1031: for local,
                   1032: .Sm off
                   1033: .Fl KR Oo Ar bind_address : Oc Ar port
                   1034: .Sm on
                   1035: for remote and
                   1036: .Sm off
                   1037: .Fl KD Oo Ar bind_address : Oc Ar port
                   1038: .Sm on
                   1039: for dynamic port-forwardings.
1.218     jmc      1040: .Ic !\& Ns Ar command
                   1041: allows the user to execute a local command if the
                   1042: .Ic PermitLocalCommand
                   1043: option is enabled in
1.176     jmc      1044: .Xr ssh_config 5 .
1.218     jmc      1045: Basic help is available, using the
                   1046: .Fl h
                   1047: option.
                   1048: .It Cm ~R
                   1049: Request rekeying of the connection
1.369     jmc      1050: (only useful if the peer supports it).
1.327     dtucker  1051: .It Cm ~V
                   1052: Decrease the verbosity
                   1053: .Pq Ic LogLevel
                   1054: when errors are being written to stderr.
                   1055: .It Cm ~v
1.328     jmc      1056: Increase the verbosity
1.327     dtucker  1057: .Pq Ic LogLevel
                   1058: when errors are being written to stderr.
1.176     jmc      1059: .El
1.246     jmc      1060: .Sh TCP FORWARDING
                   1061: Forwarding of arbitrary TCP connections over the secure channel can
                   1062: be specified either on the command line or in a configuration file.
                   1063: One possible application of TCP forwarding is a secure connection to a
                   1064: mail server; another is going through firewalls.
                   1065: .Pp
                   1066: In the example below, we look at encrypting communication between
                   1067: an IRC client and server, even though the IRC server does not directly
                   1068: support encrypted communications.
                   1069: This works as follows:
                   1070: the user connects to the remote host using
                   1071: .Nm ,
                   1072: specifying a port to be used to forward connections
                   1073: to the remote server.
                   1074: After that it is possible to start the service which is to be encrypted
                   1075: on the client machine,
                   1076: connecting to the same local port,
                   1077: and
                   1078: .Nm
                   1079: will encrypt and forward the connection.
                   1080: .Pp
                   1081: The following example tunnels an IRC session from client machine
                   1082: .Dq 127.0.0.1
                   1083: (localhost)
                   1084: to remote server
                   1085: .Dq server.example.com :
                   1086: .Bd -literal -offset 4n
                   1087: $ ssh -f -L 1234:localhost:6667 server.example.com sleep 10
                   1088: $ irc -c '#users' -p 1234 pinky 127.0.0.1
                   1089: .Ed
                   1090: .Pp
                   1091: This tunnels a connection to IRC server
                   1092: .Dq server.example.com ,
                   1093: joining channel
                   1094: .Dq #users ,
                   1095: nickname
                   1096: .Dq pinky ,
                   1097: using port 1234.
                   1098: It doesn't matter which port is used,
                   1099: as long as it's greater than 1023
                   1100: (remember, only root can open sockets on privileged ports)
                   1101: and doesn't conflict with any ports already in use.
                   1102: The connection is forwarded to port 6667 on the remote server,
                   1103: since that's the standard port for IRC services.
                   1104: .Pp
                   1105: The
                   1106: .Fl f
                   1107: option backgrounds
                   1108: .Nm
                   1109: and the remote command
                   1110: .Dq sleep 10
                   1111: is specified to allow an amount of time
                   1112: (10 seconds, in the example)
                   1113: to start the service which is to be tunnelled.
                   1114: If no connections are made within the time specified,
                   1115: .Nm
                   1116: will exit.
                   1117: .Sh X11 FORWARDING
1.218     jmc      1118: If the
                   1119: .Cm ForwardX11
                   1120: variable is set to
                   1121: .Dq yes
                   1122: (or see the description of the
1.227     jmc      1123: .Fl X ,
                   1124: .Fl x ,
1.218     jmc      1125: and
1.227     jmc      1126: .Fl Y
1.226     jmc      1127: options above)
1.218     jmc      1128: and the user is using X11 (the
                   1129: .Ev DISPLAY
                   1130: environment variable is set), the connection to the X11 display is
                   1131: automatically forwarded to the remote side in such a way that any X11
                   1132: programs started from the shell (or command) will go through the
                   1133: encrypted channel, and the connection to the real X server will be made
1.176     jmc      1134: from the local machine.
1.218     jmc      1135: The user should not manually set
                   1136: .Ev DISPLAY .
                   1137: Forwarding of X11 connections can be
                   1138: configured on the command line or in configuration files.
                   1139: .Pp
                   1140: The
                   1141: .Ev DISPLAY
                   1142: value set by
                   1143: .Nm
                   1144: will point to the server machine, but with a display number greater than zero.
                   1145: This is normal, and happens because
                   1146: .Nm
                   1147: creates a
                   1148: .Dq proxy
                   1149: X server on the server machine for forwarding the
                   1150: connections over the encrypted channel.
1.200     djm      1151: .Pp
1.218     jmc      1152: .Nm
                   1153: will also automatically set up Xauthority data on the server machine.
                   1154: For this purpose, it will generate a random authorization cookie,
                   1155: store it in Xauthority on the server, and verify that any forwarded
                   1156: connections carry this cookie and replace it by the real cookie when
                   1157: the connection is opened.
                   1158: The real authentication cookie is never
                   1159: sent to the server machine (and no cookies are sent in the plain).
1.200     djm      1160: .Pp
1.218     jmc      1161: If the
                   1162: .Cm ForwardAgent
                   1163: variable is set to
                   1164: .Dq yes
                   1165: (or see the description of the
                   1166: .Fl A
1.191     djm      1167: and
1.218     jmc      1168: .Fl a
1.226     jmc      1169: options above) and
1.218     jmc      1170: the user is using an authentication agent, the connection to the agent
                   1171: is automatically forwarded to the remote side.
1.252     jmc      1172: .Sh VERIFYING HOST KEYS
                   1173: When connecting to a server for the first time,
                   1174: a fingerprint of the server's public key is presented to the user
                   1175: (unless the option
                   1176: .Cm StrictHostKeyChecking
                   1177: has been disabled).
                   1178: Fingerprints can be determined using
                   1179: .Xr ssh-keygen 1 :
                   1180: .Pp
                   1181: .Dl $ ssh-keygen -l -f /etc/ssh/ssh_host_rsa_key
                   1182: .Pp
1.274     grunk    1183: If the fingerprint is already known, it can be matched
                   1184: and the key can be accepted or rejected.
1.358     djm      1185: If only legacy (MD5) fingerprints for the server are available, the
                   1186: .Xr ssh-keygen 1
                   1187: .Fl E
                   1188: option may be used to downgrade the fingerprint algorithm to match.
                   1189: .Pp
1.274     grunk    1190: Because of the difficulty of comparing host keys
1.352     djm      1191: just by looking at fingerprint strings,
1.274     grunk    1192: there is also support to compare host keys visually,
                   1193: using
                   1194: .Em random art .
                   1195: By setting the
1.275     grunk    1196: .Cm VisualHostKey
1.274     grunk    1197: option to
1.275     grunk    1198: .Dq yes ,
1.274     grunk    1199: a small ASCII graphic gets displayed on every login to a server, no matter
                   1200: if the session itself is interactive or not.
                   1201: By learning the pattern a known server produces, a user can easily
                   1202: find out that the host key has changed when a completely different pattern
                   1203: is displayed.
                   1204: Because these patterns are not unambiguous however, a pattern that looks
                   1205: similar to the pattern remembered only gives a good probability that the
                   1206: host key is the same, not guaranteed proof.
                   1207: .Pp
                   1208: To get a listing of the fingerprints along with their random art for
                   1209: all known hosts, the following command line can be used:
                   1210: .Pp
                   1211: .Dl $ ssh-keygen -lv -f ~/.ssh/known_hosts
                   1212: .Pp
1.252     jmc      1213: If the fingerprint is unknown,
                   1214: an alternative method of verification is available:
                   1215: SSH fingerprints verified by DNS.
                   1216: An additional resource record (RR),
                   1217: SSHFP,
                   1218: is added to a zonefile
                   1219: and the connecting client is able to match the fingerprint
                   1220: with that of the key presented.
                   1221: .Pp
                   1222: In this example, we are connecting a client to a server,
                   1223: .Dq host.example.com .
                   1224: The SSHFP resource records should first be added to the zonefile for
                   1225: host.example.com:
                   1226: .Bd -literal -offset indent
1.259     jakob    1227: $ ssh-keygen -r host.example.com.
1.252     jmc      1228: .Ed
                   1229: .Pp
                   1230: The output lines will have to be added to the zonefile.
                   1231: To check that the zone is answering fingerprint queries:
                   1232: .Pp
                   1233: .Dl $ dig -t SSHFP host.example.com
                   1234: .Pp
                   1235: Finally the client connects:
                   1236: .Bd -literal -offset indent
                   1237: $ ssh -o "VerifyHostKeyDNS ask" host.example.com
                   1238: [...]
                   1239: Matching host key fingerprint found in DNS.
                   1240: Are you sure you want to continue connecting (yes/no)?
                   1241: .Ed
                   1242: .Pp
                   1243: See the
                   1244: .Cm VerifyHostKeyDNS
                   1245: option in
                   1246: .Xr ssh_config 5
                   1247: for more information.
1.250     jmc      1248: .Sh SSH-BASED VIRTUAL PRIVATE NETWORKS
                   1249: .Nm
                   1250: contains support for Virtual Private Network (VPN) tunnelling
                   1251: using the
                   1252: .Xr tun 4
                   1253: network pseudo-device,
                   1254: allowing two networks to be joined securely.
                   1255: The
                   1256: .Xr sshd_config 5
                   1257: configuration option
                   1258: .Cm PermitTunnel
                   1259: controls whether the server supports this,
                   1260: and at what level (layer 2 or 3 traffic).
                   1261: .Pp
                   1262: The following example would connect client network 10.0.50.0/24
1.265     otto     1263: with remote network 10.0.99.0/24 using a point-to-point connection
                   1264: from 10.1.1.1 to 10.1.1.2,
                   1265: provided that the SSH server running on the gateway to the remote network,
                   1266: at 192.168.1.15, allows it.
                   1267: .Pp
                   1268: On the client:
1.250     jmc      1269: .Bd -literal -offset indent
                   1270: # ssh -f -w 0:1 192.168.1.15 true
1.265     otto     1271: # ifconfig tun0 10.1.1.1 10.1.1.2 netmask 255.255.255.252
                   1272: # route add 10.0.99.0/24 10.1.1.2
                   1273: .Ed
                   1274: .Pp
                   1275: On the server:
                   1276: .Bd -literal -offset indent
                   1277: # ifconfig tun1 10.1.1.2 10.1.1.1 netmask 255.255.255.252
                   1278: # route add 10.0.50.0/24 10.1.1.1
1.250     jmc      1279: .Ed
                   1280: .Pp
                   1281: Client access may be more finely tuned via the
                   1282: .Pa /root/.ssh/authorized_keys
                   1283: file (see below) and the
                   1284: .Cm PermitRootLogin
                   1285: server option.
1.255     jmc      1286: The following entry would permit connections on
1.250     jmc      1287: .Xr tun 4
1.255     jmc      1288: device 1 from user
1.250     jmc      1289: .Dq jane
1.255     jmc      1290: and on tun device 2 from user
1.250     jmc      1291: .Dq john ,
                   1292: if
                   1293: .Cm PermitRootLogin
                   1294: is set to
                   1295: .Dq forced-commands-only :
                   1296: .Bd -literal -offset 2n
                   1297: tunnel="1",command="sh /etc/netstart tun1" ssh-rsa ... jane
1.254     msf      1298: tunnel="2",command="sh /etc/netstart tun2" ssh-rsa ... john
1.250     jmc      1299: .Ed
                   1300: .Pp
1.264     ray      1301: Since an SSH-based setup entails a fair amount of overhead,
1.250     jmc      1302: it may be more suited to temporary setups,
                   1303: such as for wireless VPNs.
                   1304: More permanent VPNs are better provided by tools such as
                   1305: .Xr ipsecctl 8
                   1306: and
                   1307: .Xr isakmpd 8 .
1.2       deraadt  1308: .Sh ENVIRONMENT
                   1309: .Nm
1.1       deraadt  1310: will normally set the following environment variables:
1.237     jmc      1311: .Bl -tag -width "SSH_ORIGINAL_COMMAND"
1.2       deraadt  1312: .It Ev DISPLAY
                   1313: The
                   1314: .Ev DISPLAY
1.40      aaron    1315: variable indicates the location of the X11 server.
1.44      aaron    1316: It is automatically set by
1.2       deraadt  1317: .Nm
                   1318: to point to a value of the form
1.233     jmc      1319: .Dq hostname:n ,
                   1320: where
                   1321: .Dq hostname
                   1322: indicates the host where the shell runs, and
                   1323: .Sq n
                   1324: is an integer \*(Ge 1.
1.40      aaron    1325: .Nm
                   1326: uses this special value to forward X11 connections over the secure
                   1327: channel.
1.107     markus   1328: The user should normally not set
                   1329: .Ev DISPLAY
                   1330: explicitly, as that
1.1       deraadt  1331: will render the X11 connection insecure (and will require the user to
                   1332: manually copy any required authorization cookies).
1.2       deraadt  1333: .It Ev HOME
1.1       deraadt  1334: Set to the path of the user's home directory.
1.2       deraadt  1335: .It Ev LOGNAME
                   1336: Synonym for
1.12      aaron    1337: .Ev USER ;
                   1338: set for compatibility with systems that use this variable.
1.2       deraadt  1339: .It Ev MAIL
1.129     stevesk  1340: Set to the path of the user's mailbox.
1.40      aaron    1341: .It Ev PATH
1.2       deraadt  1342: Set to the default
                   1343: .Ev PATH ,
                   1344: as specified when compiling
1.234     jmc      1345: .Nm .
1.118     markus   1346: .It Ev SSH_ASKPASS
                   1347: If
                   1348: .Nm
                   1349: needs a passphrase, it will read the passphrase from the current
                   1350: terminal if it was run from a terminal.
                   1351: If
                   1352: .Nm
                   1353: does not have a terminal associated with it but
                   1354: .Ev DISPLAY
                   1355: and
                   1356: .Ev SSH_ASKPASS
                   1357: are set, it will execute the program specified by
                   1358: .Ev SSH_ASKPASS
                   1359: and open an X11 window to read the passphrase.
                   1360: This is particularly useful when calling
                   1361: .Nm
                   1362: from a
1.196     jmc      1363: .Pa .xsession
1.118     markus   1364: or related script.
                   1365: (Note that on some machines it
                   1366: may be necessary to redirect the input from
                   1367: .Pa /dev/null
                   1368: to make this work.)
1.18      markus   1369: .It Ev SSH_AUTH_SOCK
1.233     jmc      1370: Identifies the path of a
                   1371: .Ux Ns -domain
                   1372: socket used to communicate with the agent.
1.166     stevesk  1373: .It Ev SSH_CONNECTION
                   1374: Identifies the client and server ends of the connection.
1.40      aaron    1375: The variable contains
1.233     jmc      1376: four space-separated values: client IP address, client port number,
                   1377: server IP address, and server port number.
1.73      markus   1378: .It Ev SSH_ORIGINAL_COMMAND
1.233     jmc      1379: This variable contains the original command line if a forced command
1.73      markus   1380: is executed.
                   1381: It can be used to extract the original arguments.
1.2       deraadt  1382: .It Ev SSH_TTY
1.1       deraadt  1383: This is set to the name of the tty (path to the device) associated
1.40      aaron    1384: with the current shell or command.
                   1385: If the current session has no tty,
1.1       deraadt  1386: this variable is not set.
1.2       deraadt  1387: .It Ev TZ
1.214     jmc      1388: This variable is set to indicate the present time zone if it
1.257     jmc      1389: was set when the daemon was started (i.e. the daemon passes the value
1.1       deraadt  1390: on to new connections).
1.2       deraadt  1391: .It Ev USER
1.1       deraadt  1392: Set to the name of the user logging in.
1.2       deraadt  1393: .El
                   1394: .Pp
1.44      aaron    1395: Additionally,
1.2       deraadt  1396: .Nm
1.44      aaron    1397: reads
1.207     djm      1398: .Pa ~/.ssh/environment ,
1.2       deraadt  1399: and adds lines of the format
                   1400: .Dq VARNAME=value
1.233     jmc      1401: to the environment if the file exists and users are allowed to
1.161     marc     1402: change their environment.
1.176     jmc      1403: For more information, see the
1.161     marc     1404: .Cm PermitUserEnvironment
1.162     stevesk  1405: option in
1.161     marc     1406: .Xr sshd_config 5 .
1.2       deraadt  1407: .Sh FILES
1.236     jmc      1408: .Bl -tag -width Ds -compact
1.309     jmc      1409: .It Pa ~/.rhosts
1.240     jmc      1410: This file is used for host-based authentication (see above).
1.92      markus   1411: On some machines this file may need to be
1.240     jmc      1412: world-readable if the user's home directory is on an NFS partition,
1.1       deraadt  1413: because
1.2       deraadt  1414: .Xr sshd 8
1.40      aaron    1415: reads it as root.
                   1416: Additionally, this file must be owned by the user,
                   1417: and must not have write permissions for anyone else.
                   1418: The recommended
1.1       deraadt  1419: permission for most machines is read/write for the user, and not
                   1420: accessible by others.
1.2       deraadt  1421: .Pp
1.309     jmc      1422: .It Pa ~/.shosts
1.240     jmc      1423: This file is used in exactly the same way as
                   1424: .Pa .rhosts ,
                   1425: but allows host-based authentication without permitting login with
                   1426: rlogin/rsh.
1.272     mcbride  1427: .Pp
1.309     jmc      1428: .It Pa ~/.ssh/
1.272     mcbride  1429: This directory is the default location for all user-specific configuration
                   1430: and authentication information.
                   1431: There is no general requirement to keep the entire contents of this directory
                   1432: secret, but the recommended permissions are read/write/execute for the user,
                   1433: and not accessible by others.
1.236     jmc      1434: .Pp
1.309     jmc      1435: .It Pa ~/.ssh/authorized_keys
1.349     sobrado  1436: Lists the public keys (DSA, ECDSA, Ed25519, RSA)
1.343     naddy    1437: that can be used for logging in as this user.
1.238     jmc      1438: The format of this file is described in the
                   1439: .Xr sshd 8
                   1440: manual page.
                   1441: This file is not highly sensitive, but the recommended
                   1442: permissions are read/write for the user, and not accessible by others.
                   1443: .Pp
1.309     jmc      1444: .It Pa ~/.ssh/config
1.238     jmc      1445: This is the per-user configuration file.
                   1446: The file format and configuration options are described in
                   1447: .Xr ssh_config 5 .
                   1448: Because of the potential for abuse, this file must have strict permissions:
1.334     djm      1449: read/write for the user, and not writable by others.
1.238     jmc      1450: .Pp
1.309     jmc      1451: .It Pa ~/.ssh/environment
1.239     jmc      1452: Contains additional definitions for environment variables; see
                   1453: .Sx ENVIRONMENT ,
1.238     jmc      1454: above.
                   1455: .Pp
1.309     jmc      1456: .It Pa ~/.ssh/id_dsa
1.310     djm      1457: .It Pa ~/.ssh/id_ecdsa
1.343     naddy    1458: .It Pa ~/.ssh/id_ed25519
1.309     jmc      1459: .It Pa ~/.ssh/id_rsa
1.238     jmc      1460: Contains the private key for authentication.
                   1461: These files
                   1462: contain sensitive data and should be readable by the user but not
                   1463: accessible by others (read/write/execute).
                   1464: .Nm
                   1465: will simply ignore a private key file if it is accessible by others.
                   1466: It is possible to specify a passphrase when
                   1467: generating the key which will be used to encrypt the
                   1468: sensitive part of this file using 3DES.
                   1469: .Pp
1.309     jmc      1470: .It Pa ~/.ssh/id_dsa.pub
1.310     djm      1471: .It Pa ~/.ssh/id_ecdsa.pub
1.343     naddy    1472: .It Pa ~/.ssh/id_ed25519.pub
1.309     jmc      1473: .It Pa ~/.ssh/id_rsa.pub
1.238     jmc      1474: Contains the public key for authentication.
                   1475: These files are not
                   1476: sensitive and can (but need not) be readable by anyone.
                   1477: .Pp
1.309     jmc      1478: .It Pa ~/.ssh/known_hosts
1.244     jmc      1479: Contains a list of host keys for all hosts the user has logged into
                   1480: that are not already in the systemwide list of known host keys.
1.238     jmc      1481: See
1.244     jmc      1482: .Xr sshd 8
                   1483: for further details of the format of this file.
1.238     jmc      1484: .Pp
1.309     jmc      1485: .It Pa ~/.ssh/rc
1.238     jmc      1486: Commands in this file are executed by
                   1487: .Nm
1.245     jmc      1488: when the user logs in, just before the user's shell (or command) is
1.238     jmc      1489: started.
                   1490: See the
                   1491: .Xr sshd 8
                   1492: manual page for more information.
                   1493: .Pp
1.309     jmc      1494: .It Pa /etc/hosts.equiv
1.240     jmc      1495: This file is for host-based authentication (see above).
                   1496: It should only be writable by root.
1.236     jmc      1497: .Pp
1.309     jmc      1498: .It Pa /etc/shosts.equiv
1.240     jmc      1499: This file is used in exactly the same way as
                   1500: .Pa hosts.equiv ,
                   1501: but allows host-based authentication without permitting login with
                   1502: rlogin/rsh.
1.236     jmc      1503: .Pp
1.238     jmc      1504: .It Pa /etc/ssh/ssh_config
                   1505: Systemwide configuration file.
                   1506: The file format and configuration options are described in
                   1507: .Xr ssh_config 5 .
                   1508: .Pp
1.309     jmc      1509: .It Pa /etc/ssh/ssh_host_key
                   1510: .It Pa /etc/ssh/ssh_host_dsa_key
1.310     djm      1511: .It Pa /etc/ssh/ssh_host_ecdsa_key
1.343     naddy    1512: .It Pa /etc/ssh/ssh_host_ed25519_key
1.309     jmc      1513: .It Pa /etc/ssh/ssh_host_rsa_key
1.325     dtucker  1514: These files contain the private parts of the host keys
1.245     jmc      1515: and are used for host-based authentication.
1.238     jmc      1516: .Pp
1.309     jmc      1517: .It Pa /etc/ssh/ssh_known_hosts
1.238     jmc      1518: Systemwide list of known host keys.
                   1519: This file should be prepared by the
                   1520: system administrator to contain the public host keys of all machines in the
                   1521: organization.
1.244     jmc      1522: It should be world-readable.
                   1523: See
1.238     jmc      1524: .Xr sshd 8
1.244     jmc      1525: for further details of the format of this file.
1.236     jmc      1526: .Pp
1.309     jmc      1527: .It Pa /etc/ssh/sshrc
1.1       deraadt  1528: Commands in this file are executed by
1.2       deraadt  1529: .Nm
1.245     jmc      1530: when the user logs in, just before the user's shell (or command) is started.
1.44      aaron    1531: See the
1.2       deraadt  1532: .Xr sshd 8
1.1       deraadt  1533: manual page for more information.
1.58      itojun   1534: .El
1.312     jmc      1535: .Sh EXIT STATUS
                   1536: .Nm
                   1537: exits with the exit status of the remote command or with 255
                   1538: if an error occurred.
1.2       deraadt  1539: .Sh SEE ALSO
                   1540: .Xr scp 1 ,
1.83      djm      1541: .Xr sftp 1 ,
1.2       deraadt  1542: .Xr ssh-add 1 ,
                   1543: .Xr ssh-agent 1 ,
                   1544: .Xr ssh-keygen 1 ,
1.242     jmc      1545: .Xr ssh-keyscan 1 ,
1.250     jmc      1546: .Xr tun 4 ,
1.159     stevesk  1547: .Xr ssh_config 5 ,
1.160     naddy    1548: .Xr ssh-keysign 8 ,
1.87      itojun   1549: .Xr sshd 8
1.329     jmc      1550: .Sh STANDARDS
1.106     markus   1551: .Rs
1.329     jmc      1552: .%A S. Lehtinen
                   1553: .%A C. Lonvick
                   1554: .%D January 2006
1.256     jmc      1555: .%R RFC 4250
1.329     jmc      1556: .%T The Secure Shell (SSH) Protocol Assigned Numbers
1.256     jmc      1557: .Re
1.329     jmc      1558: .Pp
1.256     jmc      1559: .Rs
1.329     jmc      1560: .%A T. Ylonen
                   1561: .%A C. Lonvick
                   1562: .%D January 2006
1.256     jmc      1563: .%R RFC 4251
1.329     jmc      1564: .%T The Secure Shell (SSH) Protocol Architecture
1.256     jmc      1565: .Re
1.329     jmc      1566: .Pp
1.256     jmc      1567: .Rs
1.329     jmc      1568: .%A T. Ylonen
                   1569: .%A C. Lonvick
                   1570: .%D January 2006
1.256     jmc      1571: .%R RFC 4252
1.329     jmc      1572: .%T The Secure Shell (SSH) Authentication Protocol
1.256     jmc      1573: .Re
1.329     jmc      1574: .Pp
1.256     jmc      1575: .Rs
1.329     jmc      1576: .%A T. Ylonen
                   1577: .%A C. Lonvick
                   1578: .%D January 2006
1.256     jmc      1579: .%R RFC 4253
1.329     jmc      1580: .%T The Secure Shell (SSH) Transport Layer Protocol
1.256     jmc      1581: .Re
1.329     jmc      1582: .Pp
1.256     jmc      1583: .Rs
1.329     jmc      1584: .%A T. Ylonen
                   1585: .%A C. Lonvick
                   1586: .%D January 2006
1.256     jmc      1587: .%R RFC 4254
1.329     jmc      1588: .%T The Secure Shell (SSH) Connection Protocol
1.256     jmc      1589: .Re
1.329     jmc      1590: .Pp
1.256     jmc      1591: .Rs
1.329     jmc      1592: .%A J. Schlyter
                   1593: .%A W. Griffin
                   1594: .%D January 2006
1.256     jmc      1595: .%R RFC 4255
1.329     jmc      1596: .%T Using DNS to Securely Publish Secure Shell (SSH) Key Fingerprints
1.256     jmc      1597: .Re
1.329     jmc      1598: .Pp
1.256     jmc      1599: .Rs
1.329     jmc      1600: .%A F. Cusack
                   1601: .%A M. Forssen
                   1602: .%D January 2006
1.256     jmc      1603: .%R RFC 4256
1.329     jmc      1604: .%T Generic Message Exchange Authentication for the Secure Shell Protocol (SSH)
1.256     jmc      1605: .Re
1.329     jmc      1606: .Pp
1.256     jmc      1607: .Rs
1.329     jmc      1608: .%A J. Galbraith
                   1609: .%A P. Remaker
                   1610: .%D January 2006
1.256     jmc      1611: .%R RFC 4335
1.329     jmc      1612: .%T The Secure Shell (SSH) Session Channel Break Extension
1.256     jmc      1613: .Re
1.329     jmc      1614: .Pp
1.256     jmc      1615: .Rs
1.329     jmc      1616: .%A M. Bellare
                   1617: .%A T. Kohno
                   1618: .%A C. Namprempre
                   1619: .%D January 2006
1.256     jmc      1620: .%R RFC 4344
1.329     jmc      1621: .%T The Secure Shell (SSH) Transport Layer Encryption Modes
1.256     jmc      1622: .Re
1.329     jmc      1623: .Pp
1.256     jmc      1624: .Rs
1.329     jmc      1625: .%A B. Harris
                   1626: .%D January 2006
1.256     jmc      1627: .%R RFC 4345
1.329     jmc      1628: .%T Improved Arcfour Modes for the Secure Shell (SSH) Transport Layer Protocol
1.258     djm      1629: .Re
1.329     jmc      1630: .Pp
1.258     djm      1631: .Rs
1.329     jmc      1632: .%A M. Friedl
                   1633: .%A N. Provos
                   1634: .%A W. Simpson
                   1635: .%D March 2006
1.258     djm      1636: .%R RFC 4419
1.329     jmc      1637: .%T Diffie-Hellman Group Exchange for the Secure Shell (SSH) Transport Layer Protocol
1.266     markus   1638: .Re
1.329     jmc      1639: .Pp
1.266     markus   1640: .Rs
1.329     jmc      1641: .%A J. Galbraith
                   1642: .%A R. Thayer
                   1643: .%D November 2006
1.266     markus   1644: .%R RFC 4716
1.329     jmc      1645: .%T The Secure Shell (SSH) Public Key File Format
1.313     djm      1646: .Re
1.329     jmc      1647: .Pp
1.313     djm      1648: .Rs
1.329     jmc      1649: .%A D. Stebila
                   1650: .%A J. Green
                   1651: .%D December 2009
1.313     djm      1652: .%R RFC 5656
1.329     jmc      1653: .%T Elliptic Curve Algorithm Integration in the Secure Shell Transport Layer
1.274     grunk    1654: .Re
1.329     jmc      1655: .Pp
1.274     grunk    1656: .Rs
                   1657: .%A A. Perrig
                   1658: .%A D. Song
                   1659: .%D 1999
1.329     jmc      1660: .%O International Workshop on Cryptographic Techniques and E-Commerce (CrypTEC '99)
                   1661: .%T Hash Visualization: a New Technique to improve Real-World Security
1.106     markus   1662: .Re
1.173     jmc      1663: .Sh AUTHORS
                   1664: OpenSSH is a derivative of the original and free
                   1665: ssh 1.2.12 release by Tatu Ylonen.
                   1666: Aaron Campbell, Bob Beck, Markus Friedl, Niels Provos,
                   1667: Theo de Raadt and Dug Song
                   1668: removed many bugs, re-added newer features and
                   1669: created OpenSSH.
                   1670: Markus Friedl contributed the support for SSH
                   1671: protocol versions 1.5 and 2.0.