{
    "content": [
        {
            "type": "text",
            "text": "# ssh (man)\n\n## NAME\n\nssh — OpenSSH remote login client\n\n## SYNOPSIS\n\nssh   [-46AaCfGgKkMNnqsTtVvXxYy]  [-B  bindinterface]  [-b  bindaddress]  [-c  cipherspec]\n[-D [bindaddress:]port] [-E logfile]  [-e  escapechar]  [-F  configfile]  [-I  pkcs11]\n[-i   identityfile]   [-J  destination]  [-L  address]  [-l  loginname]  [-m  macspec]\n[-O ctlcmd] [-o option] [-P tag] [-p port] [-R address]  [-S  ctlpath]  [-W  host:port]\n[-w localtun[:remotetun]] destination [command [argument ...]]\nssh [-Q queryoption]\n\n## DESCRIPTION\n\nssh (SSH client) is a program for logging into a remote machine and for executing commands on\na  remote machine.  It is intended to provide secure encrypted communications between two un‐\ntrusted hosts over an insecure network.  X11 connections, arbitrary TCP ports and Unix-domain\nsockets can also be forwarded over the secure channel.\n\n## TLDR\n\n> Secure Shell is a protocol used to securely log onto remote systems.\n\n- Connect to a remote server:\n  `ssh {{username}}@{{remote_host}}`\n- Connect to a remote server with a specific [i]dentity (private key):\n  `ssh {{username}}@{{remote_host}} -i {{path/to/key_file}}`\n- Connect to a remote server with IP `10.0.0.1` and using a specific [p]ort (Note: `10.0.0.1` can be shortened to `10.1`):\n  `ssh {{username}}@10.0.0.1 -p {{2222}}`\n- Run a command on a remote server with a [t]ty allocation allowing interaction with the remote command:\n  `ssh {{username}}@{{remote_host}} -t {{command}} {{command_arguments}}`\n- SSH tunneling: [D]ynamic port forwarding (SOCKS proxy on `localhost:1080`):\n  `ssh {{username}}@{{remote_host}} -D {{1080}}`\n- SSH tunneling: Forward a specific port (`localhost:9999` to `example.org:80`) along with disabling pseudo-[T]ty allocation and executio[N] of remote commands:\n  `ssh {{username}}@{{remote_host}} -L {{9999}}:{{example.org}}:{{80}} -N -T`\n- SSH [J]umping: Connect through a jumphost to a remote server (Multiple jump hops may be specified separated by comma characters):\n  `ssh {{username}}@{{remote_host}} -J {{username}}@{{jump_host}}`\n- Close a hanged session:\n  `<Enter><~><.>`\n\n*Source: tldr-pages*\n\n## Sections\n\n- **NAME**\n- **SYNOPSIS**\n- **DESCRIPTION** (52 subsections)\n- **AUTHENTICATION**\n- **ESCAPE CHARACTERS**\n- **TCP FORWARDING**\n- **X11 FORWARDING**\n- **VERIFYING HOST KEYS**\n- **SSH-BASED VIRTUAL PRIVATE NETWORKS**\n- **ENVIRONMENT**\n- **FILES**\n- **EXIT STATUS**\n- **SEE ALSO**\n- **STANDARDS**\n- **AUTHORS**\n\nUse structuredContent.sections for detailed options, examples, and full documentation.\n"
        }
    ],
    "structuredContent": {
        "command": "ssh",
        "section": "",
        "mode": "man",
        "summary": "ssh — OpenSSH remote login client",
        "synopsis": "ssh   [-46AaCfGgKkMNnqsTtVvXxYy]  [-B  bindinterface]  [-b  bindaddress]  [-c  cipherspec]\n[-D [bindaddress:]port] [-E logfile]  [-e  escapechar]  [-F  configfile]  [-I  pkcs11]\n[-i   identityfile]   [-J  destination]  [-L  address]  [-l  loginname]  [-m  macspec]\n[-O ctlcmd] [-o option] [-P tag] [-p port] [-R address]  [-S  ctlpath]  [-W  host:port]\n[-w localtun[:remotetun]] destination [command [argument ...]]\nssh [-Q queryoption]",
        "tldr_summary": "Secure Shell is a protocol used to securely log onto remote systems.",
        "tldr_examples": [
            {
                "description": "Connect to a remote server",
                "command": "ssh {{username}}@{{remote_host}}"
            },
            {
                "description": "Connect to a remote server with a specific [i]dentity (private key)",
                "command": "ssh {{username}}@{{remote_host}} -i {{path/to/key_file}}"
            },
            {
                "description": "Connect to a remote server with IP `10.0.0.1` and using a specific [p]ort (Note: `10.0.0.1` can be shortened to `10.1`)",
                "command": "ssh {{username}}@10.0.0.1 -p {{2222}}"
            },
            {
                "description": "Run a command on a remote server with a [t]ty allocation allowing interaction with the remote command",
                "command": "ssh {{username}}@{{remote_host}} -t {{command}} {{command_arguments}}"
            },
            {
                "description": "SSH tunneling: [D]ynamic port forwarding (SOCKS proxy on `localhost:1080`)",
                "command": "ssh {{username}}@{{remote_host}} -D {{1080}}"
            },
            {
                "description": "SSH tunneling: Forward a specific port (`localhost:9999` to `example.org:80`) along with disabling pseudo-[T]ty allocation and executio[N] of remote commands",
                "command": "ssh {{username}}@{{remote_host}} -L {{9999}}:{{example.org}}:{{80}} -N -T"
            },
            {
                "description": "SSH [J]umping: Connect through a jumphost to a remote server (Multiple jump hops may be specified separated by comma characters)",
                "command": "ssh {{username}}@{{remote_host}} -J {{username}}@{{jump_host}}"
            },
            {
                "description": "Close a hanged session",
                "command": "<Enter><~><.>"
            }
        ],
        "tldr_source": "official",
        "flags": [
            {
                "flag": "-4",
                "long": null,
                "arg": null,
                "description": ""
            },
            {
                "flag": "-6",
                "long": null,
                "arg": null,
                "description": ""
            },
            {
                "flag": "-A",
                "long": null,
                "arg": null,
                "description": "This can also be specified on a per-host basis in a configuration file. Agent forwarding should be enabled with caution. Users with the ability to bypass file permissions on the remote host (for the agent's Unix-domain socket) can access the local agent through the forwarded connection. An attacker cannot obtain key ma‐ terial from the agent, however they can perform operations on the keys that enable them to authenticate using the identities loaded into the agent. A safer alternative may be to use a jump host (see -J)."
            },
            {
                "flag": "-a",
                "long": null,
                "arg": null,
                "description": ""
            },
            {
                "flag": "-B",
                "long": null,
                "arg": null,
                "description": "Bind to the address of bindinterface before attempting to connect to the destination host. This is only useful on systems with more than one address."
            },
            {
                "flag": "-b",
                "long": null,
                "arg": null,
                "description": "Use bindaddress on the local machine as the source address of the connection. Only useful on systems with more than one address."
            },
            {
                "flag": "-C",
                "long": null,
                "arg": null,
                "description": "warded X11, TCP and Unix-domain connections). The compression algorithm is the same used by gzip(1). Compression is desirable on modem lines and other slow connections, but will only slow down things on fast networks. The default value can be set on a host-by-host basis in the configuration files; see the Compression option in sshconfig(5)."
            },
            {
                "flag": "-c",
                "long": null,
                "arg": null,
                "description": "Selects the cipher specification for encrypting the session. cipherspec is a comma- separated list of ciphers listed in order of preference. See the Ciphers keyword in sshconfig(5) for more information."
            },
            {
                "flag": "-D",
                "long": null,
                "arg": null,
                "description": "Specifies a local “dynamic” application-level port forwarding. This works by allo‐ cating a socket to listen to port on the local side, optionally bound to the speci‐ fied bindaddress. Whenever a connection is made to this port, the connection is forwarded over the secure channel, and the application protocol is then used to de‐ termine where to connect to from the remote machine. Currently the SOCKS4 and SOCKS5 protocols are supported, and ssh will act as a SOCKS server. Only root can forward privileged ports. Dynamic port forwardings can also be specified in the configura‐ tion file. IPv6 addresses can be specified by enclosing the address in square brackets. Only the superuser can forward privileged ports. By default, the local port is bound in accordance with the GatewayPorts setting. However, an explicit bindaddress may be used to bind the connection to a specific address. The bindaddress of “localhost” indicates that the listening port be bound for local use only, while an empty address or ‘*’ indicates that the port should be available from all interfaces."
            },
            {
                "flag": "-E",
                "long": null,
                "arg": null,
                "description": "Append debug logs to logfile instead of standard error."
            },
            {
                "flag": "-e",
                "long": null,
                "arg": null,
                "description": "Sets the escape character for sessions with a pty (default: ‘~’). The escape charac‐ ter is only recognized at the beginning of a line. The escape character followed by a dot (‘.’) closes the connection; followed by control-Z suspends the connection; and followed by itself sends the escape character once. Setting the character to “none” disables any escapes and makes the session fully transparent."
            },
            {
                "flag": "-F",
                "long": null,
                "arg": null,
                "description": "Specifies an alternative per-user configuration file. If a configuration file is given on the command line, the system-wide configuration file (/etc/ssh/sshconfig) will be ignored. The default for the per-user configuration file is ~/.ssh/config. If set to “none”, no configuration files will be read."
            },
            {
                "flag": "-f",
                "long": null,
                "arg": null,
                "description": "ssh is going to ask for passwords or passphrases, but the user wants it in the back‐ ground. This implies -n. The recommended way to start X11 programs at a remote site is with something like ssh -f host xterm. If the ExitOnForwardFailure configuration option is set to “yes”, then a client started with -f will wait for all remote port forwards to be successfully established before placing itself in the background. Refer to the description of ForkAfterAuthentication in sshconfig(5) for details."
            },
            {
                "flag": "-G",
                "long": null,
                "arg": null,
                "description": "exit."
            },
            {
                "flag": "-g",
                "long": null,
                "arg": null,
                "description": "connection, then this option must be specified on the master process."
            },
            {
                "flag": "-I",
                "long": null,
                "arg": null,
                "description": "Specify the PKCS#11 shared library ssh should use to communicate with a PKCS#11 token providing keys for user authentication."
            },
            {
                "flag": "-i",
                "long": null,
                "arg": null,
                "description": "Selects a file from which the identity (private key) for public key authentication is read. You can also specify a public key file to use the corresponding private key that is loaded in ssh-agent(1) when the private key file is not present locally. The default is ~/.ssh/idrsa, ~/.ssh/idecdsa, ~/.ssh/idecdsask, ~/.ssh/ided25519, ~/.ssh/ided25519sk and ~/.ssh/iddsa. Identity files may also be specified on a per-host basis in the configuration file. It is possible to have multiple -i options (and multiple identities specified in configuration files). If no certificates have been explicitly specified by the CertificateFile directive, ssh will also try to load certificate information from the filename obtained by appending -cert.pub to identity filenames."
            },
            {
                "flag": "-J",
                "long": null,
                "arg": null,
                "description": "Connect to the target host by first making an ssh connection to the jump host de‐ scribed by destination and then establishing a TCP forwarding to the ultimate desti‐ nation from there. Multiple jump hops may be specified separated by comma charac‐ ters. This is a shortcut to specify a ProxyJump configuration directive. Note that configuration directives supplied on the command-line generally apply to the destina‐ tion host and not any specified jump hosts. Use ~/.ssh/config to specify configura‐ tion for jump hosts."
            },
            {
                "flag": "-K",
                "long": null,
                "arg": null,
                "description": "to the server."
            },
            {
                "flag": "-k",
                "long": null,
                "arg": null,
                "description": ""
            },
            {
                "flag": "-L",
                "long": null,
                "arg": null,
                "description": ""
            },
            {
                "flag": "-L",
                "long": null,
                "arg": null,
                "description": ""
            },
            {
                "flag": "-L",
                "long": null,
                "arg": null,
                "description": ""
            },
            {
                "flag": "-L",
                "long": null,
                "arg": null,
                "description": "Specifies that connections to the given TCP port or Unix socket on the local (client) host are to be forwarded to the given host and port, or Unix socket, on the remote side. This works by allocating a socket to listen to either a TCP port on the local side, optionally bound to the specified bindaddress, or to a Unix socket. Whenever a connection is made to the local port or socket, the connection is forwarded over the secure channel, and a connection is made to either host port hostport, or the Unix socket remotesocket, from the remote machine. Port forwardings can also be specified in the configuration file. Only the superuser can forward privileged ports. IPv6 addresses can be specified by enclosing the ad‐ dress in square brackets. By default, the local port is bound in accordance with the GatewayPorts setting. However, an explicit bindaddress may be used to bind the connection to a specific address. The bindaddress of “localhost” indicates that the listening port be bound for local use only, while an empty address or ‘*’ indicates that the port should be available from all interfaces."
            },
            {
                "flag": "-l",
                "long": null,
                "arg": null,
                "description": "Specifies the user to log in as on the remote machine. This also may be specified on a per-host basis in the configuration file."
            },
            {
                "flag": "-M",
                "long": null,
                "arg": null,
                "description": "places ssh into “master” mode but with confirmation required using ssh-askpass(1) be‐ fore each operation that changes the multiplexing state (e.g. opening a new session). Refer to the description of ControlMaster in sshconfig(5) for details."
            },
            {
                "flag": "-m",
                "long": null,
                "arg": null,
                "description": "A comma-separated list of MAC (message authentication code) algorithms, specified in order of preference. See the MACs keyword in sshconfig(5) for more information."
            },
            {
                "flag": "-N",
                "long": null,
                "arg": null,
                "description": "the description of SessionType in sshconfig(5) for details."
            },
            {
                "flag": "-n",
                "long": null,
                "arg": null,
                "description": "used when ssh is run in the background. A common trick is to use this to run X11 programs on a remote machine. For example, ssh -n shadows.cs.hut.fi emacs & will start an emacs on shadows.cs.hut.fi, and the X11 connection will be automatically forwarded over an encrypted channel. The ssh program will be put in the background. (This does not work if ssh needs to ask for a password or passphrase; see also the -f option.) Refer to the description of StdinNull in sshconfig(5) for details."
            },
            {
                "flag": "-O",
                "long": null,
                "arg": null,
                "description": "Control an active connection multiplexing master process. When the -O option is specified, the ctlcmd argument is interpreted and passed to the master process. Valid commands are: “check” (check that the master process is running), “forward” (request forwardings without command execution), “cancel” (cancel forwardings), “exit” (request the master to exit), and “stop” (request the master to stop accepting further multiplexing requests)."
            },
            {
                "flag": "-o",
                "long": null,
                "arg": null,
                "description": "Can be used to give options in the format used in the configuration file. This is useful for specifying options for which there is no separate command-line flag. For full details of the options listed below, and their possible values, see sshconfig(5). AddKeysToAgent AddressFamily BatchMode BindAddress CanonicalDomains CanonicalizeFallbackLocal CanonicalizeHostname CanonicalizeMaxDots CanonicalizePermittedCNAMEs CASignatureAlgorithms CertificateFile CheckHostIP Ciphers ClearAllForwardings Compression ConnectionAttempts ConnectTimeout ControlMaster ControlPath ControlPersist DynamicForward EnableEscapeCommandline EscapeChar ExitOnForwardFailure FingerprintHash ForkAfterAuthentication ForwardAgent ForwardX11 ForwardX11Timeout ForwardX11Trusted GatewayPorts GlobalKnownHostsFile GSSAPIAuthentication GSSAPIKeyExchange GSSAPIClientIdentity GSSAPIDelegateCredentials GSSAPIKexAlgorithms GSSAPIRenewalForcesRekey GSSAPIServerIdentity GSSAPITrustDns HashKnownHosts Host HostbasedAcceptedAlgorithms HostbasedAuthentication HostKeyAlgorithms HostKeyAlias Hostname IdentitiesOnly IdentityAgent IdentityFile IPQoS KbdInteractiveAuthentication KbdInteractiveDevices KexAlgorithms KnownHostsCommand LocalCommand LocalForward LogLevel MACs Match NoHostAuthenticationForLocalhost NumberOfPasswordPrompts PasswordAuthentication PermitLocalCommand PermitRemoteOpen PKCS11Provider Port PreferredAuthentications ProxyCommand ProxyJump ProxyUseFdpass PubkeyAcceptedAlgorithms PubkeyAuthentication RekeyLimit RemoteCommand RemoteForward RequestTTY RequiredRSASize SendEnv ServerAliveInterval ServerAliveCountMax SessionType SetEnv StdinNull StreamLocalBindMask StreamLocalBindUnlink StrictHostKeyChecking TCPKeepAlive Tunnel TunnelDevice UpdateHostKeys User UserKnownHostsFile VerifyHostKeyDNS VisualHostKey XAuthLocation"
            },
            {
                "flag": "-P",
                "long": null,
                "arg": null,
                "description": "to the Tag and Match keywords in sshconfig(5) for more information."
            },
            {
                "flag": "-p",
                "long": null,
                "arg": null,
                "description": "Port to connect to on the remote host. This can be specified on a per-host basis in the configuration file."
            },
            {
                "flag": "-Q",
                "long": null,
                "arg": null,
                "description": "Queries for the algorithms supported by one of the following features: cipher (sup‐ ported symmetric ciphers), cipher-auth (supported symmetric ciphers that support au‐ thenticated encryption), help (supported query terms for use with the -Q flag), mac (supported message integrity codes), kex (key exchange algorithms), kex-gss (GSSAPI key exchange algorithms), key (key types), key-ca-sign (valid CA signature algorithms for certificates), key-cert (certificate key types), key-plain (non-certificate key types), key-sig (all key types and signature algorithms), protocol-version (supported SSH protocol versions), and sig (supported signature algorithms). Alternatively, any keyword from sshconfig(5) or sshdconfig(5) that takes an algorithm list may be used as an alias for the corresponding queryoption."
            },
            {
                "flag": "-q",
                "long": null,
                "arg": null,
                "description": ""
            },
            {
                "flag": "-R",
                "long": null,
                "arg": null,
                "description": ""
            },
            {
                "flag": "-R",
                "long": null,
                "arg": null,
                "description": ""
            },
            {
                "flag": "-R",
                "long": null,
                "arg": null,
                "description": ""
            },
            {
                "flag": "-R",
                "long": null,
                "arg": null,
                "description": ""
            },
            {
                "flag": "-R",
                "long": null,
                "arg": null,
                "description": "Specifies that connections to the given TCP port or Unix socket on the remote (server) host are to be forwarded to the local side. This works by allocating a socket to listen to either a TCP port or to a Unix socket on the remote side. Whenever a connection is made to this port or Unix socket, the connection is forwarded over the secure channel, and a connection is made from the local machine to either an explicit destination specified by host port hostport, or localsocket, or, if no explicit destination was specified, ssh will act as a SOCKS 4/5 proxy and forward connections to the destinations requested by the remote SOCKS client. Port forwardings can also be specified in the configuration file. Privileged ports can be forwarded only when logging in as root on the remote machine. IPv6 addresses can be specified by enclosing the address in square brackets. By default, TCP listening sockets on the server will be bound to the loopback inter‐ face only. This may be overridden by specifying a bindaddress. An empty bindaddress, or the address ‘*’, indicates that the remote socket should listen on all interfaces. Specifying a remote bindaddress will only succeed if the server's GatewayPorts option is enabled (see sshdconfig(5)). If the port argument is ‘0’, the listen port will be dynamically allocated on the server and reported to the client at run time. When used together with -O forward, the allocated port will be printed to the standard output."
            },
            {
                "flag": "-S",
                "long": null,
                "arg": null,
                "description": "Specifies the location of a control socket for connection sharing, or the string “none” to disable connection sharing. Refer to the description of ControlPath and ControlMaster in sshconfig(5) for details."
            },
            {
                "flag": "-s",
                "long": null,
                "arg": null,
                "description": "facilitate the use of SSH as a secure transport for other applications (e.g. sftp(1)). The subsystem is specified as the remote command. Refer to the descrip‐ tion of SessionType in sshconfig(5) for details."
            },
            {
                "flag": "-T",
                "long": null,
                "arg": null,
                "description": ""
            },
            {
                "flag": "-t",
                "long": null,
                "arg": null,
                "description": "programs on a remote machine, which can be very useful, e.g. when implementing menu services. Multiple -t options force tty allocation, even if ssh has no local tty."
            },
            {
                "flag": "-V",
                "long": null,
                "arg": null,
                "description": ""
            },
            {
                "flag": "-v",
                "long": null,
                "arg": null,
                "description": "helpful in debugging connection, authentication, and configuration problems. Multi‐ ple -v options increase the verbosity. The maximum is 3."
            },
            {
                "flag": "-W",
                "long": null,
                "arg": null,
                "description": "Requests that standard input and output on the client be forwarded to host on port over the secure channel. Implies -N, -T, ExitOnForwardFailure and ClearAllForwardings, though these can be overridden in the configuration file or us‐ ing -o command line options."
            },
            {
                "flag": "-w",
                "long": null,
                "arg": null,
                "description": "Requests tunnel device forwarding with the specified tun(4) devices between the client (localtun) and the server (remotetun). The devices may be specified by numerical ID or the keyword “any”, which uses the next available tunnel device. If remotetun is not specified, it defaults to “any”. See also the Tunnel and TunnelDevice directives in sshconfig(5). If the Tunnel directive is unset, it will be set to the default tunnel mode, which is “point-to-point”. If a different Tunnel forwarding mode it desired, then it should be specified before -w."
            },
            {
                "flag": "-X",
                "long": null,
                "arg": null,
                "description": "ration file. X11 forwarding should be enabled with caution. Users with the ability to bypass file permissions on the remote host (for the user's X authorization database) can access the local X11 display through the forwarded connection. An attacker may then be able to perform activities such as keystroke monitoring. For this reason, X11 forwarding is subjected to X11 SECURITY extension restrictions by default. Refer to the ssh -Y option and the ForwardX11Trusted directive in sshconfig(5) for more information. (Debian-specific: X11 forwarding is not subjected to X11 SECURITY extension restric‐ tions by default, because too many programs currently crash in this mode. Set the ForwardX11Trusted option to “no” to restore the upstream behaviour. This may change in future depending on client-side improvements.)"
            },
            {
                "flag": "-x",
                "long": null,
                "arg": null,
                "description": ""
            },
            {
                "flag": "-Y",
                "long": null,
                "arg": null,
                "description": "SECURITY extension controls. (Debian-specific: In the default configuration, this option is equivalent to -X, since ForwardX11Trusted defaults to “yes” as described above. Set the ForwardX11Trusted option to “no” to restore the upstream behaviour. This may change in future depending on client-side improvements.)"
            },
            {
                "flag": "-y",
                "long": null,
                "arg": null,
                "description": "is sent to stderr. ssh may additionally obtain configuration data from a per-user configuration file and a sys‐ tem-wide configuration file. The file format and configuration options are described in sshconfig(5)."
            }
        ],
        "examples": [],
        "see_also": [
            {
                "name": "scp",
                "section": "1",
                "url": "https://www.chedong.com/phpMan.php/man/scp/1/json"
            },
            {
                "name": "sftp",
                "section": "1",
                "url": "https://www.chedong.com/phpMan.php/man/sftp/1/json"
            },
            {
                "name": "ssh-add",
                "section": "1",
                "url": "https://www.chedong.com/phpMan.php/man/ssh-add/1/json"
            },
            {
                "name": "ssh-agent",
                "section": "1",
                "url": "https://www.chedong.com/phpMan.php/man/ssh-agent/1/json"
            },
            {
                "name": "ssh-argv0",
                "section": "1",
                "url": "https://www.chedong.com/phpMan.php/man/ssh-argv0/1/json"
            },
            {
                "name": "ssh-keygen",
                "section": "1",
                "url": "https://www.chedong.com/phpMan.php/man/ssh-keygen/1/json"
            },
            {
                "name": "ssh-keyscan",
                "section": "1",
                "url": "https://www.chedong.com/phpMan.php/man/ssh-keyscan/1/json"
            },
            {
                "name": "tun",
                "section": "4",
                "url": "https://www.chedong.com/phpMan.php/man/tun/4/json"
            },
            {
                "name": "sshconfig",
                "section": "5",
                "url": "https://www.chedong.com/phpMan.php/man/sshconfig/5/json"
            },
            {
                "name": "ssh-keysign",
                "section": "8",
                "url": "https://www.chedong.com/phpMan.php/man/ssh-keysign/8/json"
            },
            {
                "name": "sshd",
                "section": "8",
                "url": "https://www.chedong.com/phpMan.php/man/sshd/8/json"
            }
        ],
        "section_outline": [
            {
                "name": "NAME",
                "lines": 2,
                "subsections": []
            },
            {
                "name": "SYNOPSIS",
                "lines": 7,
                "subsections": []
            },
            {
                "name": "DESCRIPTION",
                "lines": 16,
                "subsections": [
                    {
                        "name": "-4",
                        "lines": 1,
                        "flag": "-4"
                    },
                    {
                        "name": "-6",
                        "lines": 1,
                        "flag": "-6"
                    },
                    {
                        "name": "-A",
                        "lines": 9,
                        "flag": "-A"
                    },
                    {
                        "name": "-a",
                        "lines": 1,
                        "flag": "-a"
                    },
                    {
                        "name": "-B _",
                        "lines": 3,
                        "flag": "-B"
                    },
                    {
                        "name": "-b _",
                        "lines": 3,
                        "flag": "-b"
                    },
                    {
                        "name": "-C",
                        "lines": 6,
                        "flag": "-C"
                    },
                    {
                        "name": "-c _",
                        "lines": 4,
                        "flag": "-c"
                    },
                    {
                        "name": "-D",
                        "lines": 16,
                        "flag": "-D"
                    },
                    {
                        "name": "-E _",
                        "lines": 2,
                        "flag": "-E"
                    },
                    {
                        "name": "-e _",
                        "lines": 6,
                        "flag": "-e"
                    },
                    {
                        "name": "-F _",
                        "lines": 5,
                        "flag": "-F"
                    },
                    {
                        "name": "-f",
                        "lines": 9,
                        "flag": "-f"
                    },
                    {
                        "name": "-G",
                        "lines": 2,
                        "flag": "-G"
                    },
                    {
                        "name": "-g",
                        "lines": 2,
                        "flag": "-g"
                    },
                    {
                        "name": "-I _",
                        "lines": 3,
                        "flag": "-I"
                    },
                    {
                        "name": "-i _",
                        "lines": 11,
                        "flag": "-i"
                    },
                    {
                        "name": "-J _",
                        "lines": 8,
                        "flag": "-J"
                    },
                    {
                        "name": "-K",
                        "lines": 2,
                        "flag": "-K"
                    },
                    {
                        "name": "-k",
                        "lines": 1,
                        "flag": "-k"
                    },
                    {
                        "name": "-L",
                        "lines": 1,
                        "flag": "-L"
                    },
                    {
                        "name": "-L",
                        "lines": 1,
                        "flag": "-L"
                    },
                    {
                        "name": "-L _",
                        "lines": 1,
                        "flag": "-L"
                    },
                    {
                        "name": "-L _",
                        "lines": 18,
                        "flag": "-L"
                    },
                    {
                        "name": "-l _",
                        "lines": 3,
                        "flag": "-l"
                    },
                    {
                        "name": "-M       -M",
                        "lines": 4,
                        "flag": "-M"
                    },
                    {
                        "name": "-m _",
                        "lines": 3,
                        "flag": "-m"
                    },
                    {
                        "name": "-N",
                        "lines": 2,
                        "flag": "-N"
                    },
                    {
                        "name": "-n",
                        "lines": 7,
                        "flag": "-n"
                    },
                    {
                        "name": "-O _",
                        "lines": 7,
                        "flag": "-O"
                    },
                    {
                        "name": "-o _",
                        "lines": 102,
                        "flag": "-o"
                    },
                    {
                        "name": "-P _",
                        "lines": 1,
                        "flag": "-P"
                    },
                    {
                        "name": "-p _",
                        "lines": 3,
                        "flag": "-p"
                    },
                    {
                        "name": "-Q _",
                        "lines": 11,
                        "flag": "-Q"
                    },
                    {
                        "name": "-q",
                        "lines": 1,
                        "flag": "-q"
                    },
                    {
                        "name": "-R",
                        "lines": 1,
                        "flag": "-R"
                    },
                    {
                        "name": "-R",
                        "lines": 1,
                        "flag": "-R"
                    },
                    {
                        "name": "-R _",
                        "lines": 1,
                        "flag": "-R"
                    },
                    {
                        "name": "-R _",
                        "lines": 1,
                        "flag": "-R"
                    },
                    {
                        "name": "-R",
                        "lines": 25,
                        "flag": "-R"
                    },
                    {
                        "name": "-S _",
                        "lines": 4,
                        "flag": "-S"
                    },
                    {
                        "name": "-s",
                        "lines": 4,
                        "flag": "-s"
                    },
                    {
                        "name": "-T",
                        "lines": 1,
                        "flag": "-T"
                    },
                    {
                        "name": "-t",
                        "lines": 3,
                        "flag": "-t"
                    },
                    {
                        "name": "-V",
                        "lines": 1,
                        "flag": "-V"
                    },
                    {
                        "name": "-v",
                        "lines": 3,
                        "flag": "-v"
                    },
                    {
                        "name": "-W _",
                        "lines": 5,
                        "flag": "-W"
                    },
                    {
                        "name": "-w _",
                        "lines": 11,
                        "flag": "-w"
                    },
                    {
                        "name": "-X",
                        "lines": 16,
                        "flag": "-X"
                    },
                    {
                        "name": "-x",
                        "lines": 1,
                        "flag": "-x"
                    },
                    {
                        "name": "-Y",
                        "lines": 7,
                        "flag": "-Y"
                    },
                    {
                        "name": "-y",
                        "lines": 6,
                        "flag": "-y"
                    }
                ]
            },
            {
                "name": "AUTHENTICATION",
                "lines": 93,
                "subsections": []
            },
            {
                "name": "ESCAPE CHARACTERS",
                "lines": 36,
                "subsections": []
            },
            {
                "name": "TCP FORWARDING",
                "lines": 21,
                "subsections": []
            },
            {
                "name": "X11 FORWARDING",
                "lines": 22,
                "subsections": []
            },
            {
                "name": "VERIFYING HOST KEYS",
                "lines": 47,
                "subsections": []
            },
            {
                "name": "SSH-BASED VIRTUAL PRIVATE NETWORKS",
                "lines": 32,
                "subsections": []
            },
            {
                "name": "ENVIRONMENT",
                "lines": 65,
                "subsections": []
            },
            {
                "name": "FILES",
                "lines": 94,
                "subsections": []
            },
            {
                "name": "EXIT STATUS",
                "lines": 2,
                "subsections": []
            },
            {
                "name": "SEE ALSO",
                "lines": 3,
                "subsections": []
            },
            {
                "name": "STANDARDS",
                "lines": 41,
                "subsections": []
            },
            {
                "name": "AUTHORS",
                "lines": 6,
                "subsections": []
            }
        ],
        "sections": {
            "NAME": {
                "content": "ssh — OpenSSH remote login client\n",
                "subsections": []
            },
            "SYNOPSIS": {
                "content": "ssh   [-46AaCfGgKkMNnqsTtVvXxYy]  [-B  bindinterface]  [-b  bindaddress]  [-c  cipherspec]\n[-D [bindaddress:]port] [-E logfile]  [-e  escapechar]  [-F  configfile]  [-I  pkcs11]\n[-i   identityfile]   [-J  destination]  [-L  address]  [-l  loginname]  [-m  macspec]\n[-O ctlcmd] [-o option] [-P tag] [-p port] [-R address]  [-S  ctlpath]  [-W  host:port]\n[-w localtun[:remotetun]] destination [command [argument ...]]\nssh [-Q queryoption]\n",
                "subsections": []
            },
            "DESCRIPTION": {
                "content": "ssh (SSH client) is a program for logging into a remote machine and for executing commands on\na  remote machine.  It is intended to provide secure encrypted communications between two un‐\ntrusted hosts over an insecure network.  X11 connections, arbitrary TCP ports and Unix-domain\nsockets can also be forwarded over the secure channel.\n\nssh connects and logs into the specified  destination,  which  may  be  specified  as  either\n[user@]hostname or a URI of the form ssh://[user@]hostname[:port].  The user must prove their\nidentity to the remote machine using one of several methods (see below).\n\nIf  a  command is specified, it will be executed on the remote host instead of a login shell.\nA complete command line may be specified as command, or it may have additional arguments.  If\nsupplied, the arguments will be appended to the command, separated by spaces,  before  it  is\nsent to the server to be executed.\n\nThe options are as follows:\n",
                "subsections": [
                    {
                        "name": "-4",
                        "content": "",
                        "flag": "-4"
                    },
                    {
                        "name": "-6",
                        "content": "",
                        "flag": "-6"
                    },
                    {
                        "name": "-A",
                        "content": "This can also be specified on a per-host basis in a configuration file.\n\nAgent forwarding should be enabled with caution.  Users with the  ability  to  bypass\nfile  permissions  on the remote host (for the agent's Unix-domain socket) can access\nthe local agent through the forwarded connection.  An attacker cannot obtain key  ma‐\nterial  from  the  agent, however they can perform operations on the keys that enable\nthem to authenticate using the identities loaded into the agent.  A safer alternative\nmay be to use a jump host (see -J).\n",
                        "flag": "-A"
                    },
                    {
                        "name": "-a",
                        "content": "",
                        "flag": "-a"
                    },
                    {
                        "name": "-B _",
                        "content": "Bind to the address of bindinterface before attempting to connect to the destination\nhost.  This is only useful on systems with more than one address.\n",
                        "flag": "-B"
                    },
                    {
                        "name": "-b _",
                        "content": "Use bindaddress on the local machine as the source address of the connection.   Only\nuseful on systems with more than one address.\n",
                        "flag": "-b"
                    },
                    {
                        "name": "-C",
                        "content": "warded X11, TCP and Unix-domain connections).  The compression algorithm is the  same\nused by gzip(1).  Compression is desirable on modem lines and other slow connections,\nbut  will  only slow down things on fast networks.  The default value can be set on a\nhost-by-host basis  in  the  configuration  files;  see  the  Compression  option  in\nsshconfig(5).\n",
                        "flag": "-C"
                    },
                    {
                        "name": "-c _",
                        "content": "Selects the cipher specification for encrypting the session.  cipherspec is a comma-\nseparated  list of ciphers listed in order of preference.  See the Ciphers keyword in\nsshconfig(5) for more information.\n",
                        "flag": "-c"
                    },
                    {
                        "name": "-D",
                        "content": "Specifies a local “dynamic” application-level port forwarding.  This works  by  allo‐\ncating  a  socket to listen to port on the local side, optionally bound to the speci‐\nfied bindaddress.  Whenever a connection is made to this  port,  the  connection  is\nforwarded  over  the secure channel, and the application protocol is then used to de‐\ntermine where to connect to from the remote machine.  Currently the SOCKS4 and SOCKS5\nprotocols are supported, and ssh will act as a SOCKS server.  Only root  can  forward\nprivileged  ports.   Dynamic port forwardings can also be specified in the configura‐\ntion file.\n\nIPv6 addresses can be specified by enclosing the address in  square  brackets.   Only\nthe  superuser  can forward privileged ports.  By default, the local port is bound in\naccordance with the GatewayPorts setting.  However, an explicit bindaddress  may  be\nused  to  bind the connection to a specific address.  The bindaddress of “localhost”\nindicates that the listening port be bound for local use only, while an empty address\nor ‘*’ indicates that the port should be available from all interfaces.\n",
                        "flag": "-D"
                    },
                    {
                        "name": "-E _",
                        "content": "Append debug logs to logfile instead of standard error.\n",
                        "flag": "-E"
                    },
                    {
                        "name": "-e _",
                        "content": "Sets the escape character for sessions with a pty (default: ‘~’).  The escape charac‐\nter is only recognized at the beginning of a line.  The escape character followed  by\na dot (‘.’) closes the connection; followed by control-Z suspends the connection; and\nfollowed  by itself sends the escape character once.  Setting the character to “none”\ndisables any escapes and makes the session fully transparent.\n",
                        "flag": "-e"
                    },
                    {
                        "name": "-F _",
                        "content": "Specifies an alternative per-user configuration file.  If  a  configuration  file  is\ngiven  on  the command line, the system-wide configuration file (/etc/ssh/sshconfig)\nwill be ignored.  The default for the per-user configuration file  is  ~/.ssh/config.\nIf set to “none”, no configuration files will be read.\n",
                        "flag": "-F"
                    },
                    {
                        "name": "-f",
                        "content": "ssh is going to ask for passwords or passphrases, but the user wants it in the  back‐\nground.  This implies -n.  The recommended way to start X11 programs at a remote site\nis with something like ssh -f host xterm.\n\nIf  the  ExitOnForwardFailure  configuration  option  is  set to “yes”, then a client\nstarted with -f will wait for all remote port forwards to be successfully established\nbefore  placing  itself  in  the   background.    Refer   to   the   description   of\nForkAfterAuthentication in sshconfig(5) for details.\n",
                        "flag": "-f"
                    },
                    {
                        "name": "-G",
                        "content": "exit.\n",
                        "flag": "-G"
                    },
                    {
                        "name": "-g",
                        "content": "connection, then this option must be specified on the master process.\n",
                        "flag": "-g"
                    },
                    {
                        "name": "-I _",
                        "content": "Specify the PKCS#11 shared library ssh should use to communicate with a PKCS#11 token\nproviding keys for user authentication.\n",
                        "flag": "-I"
                    },
                    {
                        "name": "-i _",
                        "content": "Selects a file from which the identity (private key) for public key authentication is\nread.   You  can  also specify a public key file to use the corresponding private key\nthat is loaded in ssh-agent(1) when the private key file is not present locally.  The\ndefault is  ~/.ssh/idrsa,  ~/.ssh/idecdsa,  ~/.ssh/idecdsask,  ~/.ssh/ided25519,\n~/.ssh/ided25519sk  and  ~/.ssh/iddsa.   Identity files may also be specified on a\nper-host basis in the configuration file.  It is possible to have multiple -i options\n(and multiple identities specified in configuration files).  If no certificates  have\nbeen explicitly specified by the CertificateFile directive, ssh will also try to load\ncertificate information from the filename obtained by appending -cert.pub to identity\nfilenames.\n",
                        "flag": "-i"
                    },
                    {
                        "name": "-J _",
                        "content": "Connect  to  the  target  host by first making an ssh connection to the jump host de‐\nscribed by destination and then establishing a TCP forwarding to the ultimate  desti‐\nnation  from  there.   Multiple jump hops may be specified separated by comma charac‐\nters.  This is a shortcut to specify a ProxyJump configuration directive.  Note  that\nconfiguration directives supplied on the command-line generally apply to the destina‐\ntion  host and not any specified jump hosts.  Use ~/.ssh/config to specify configura‐\ntion for jump hosts.\n",
                        "flag": "-J"
                    },
                    {
                        "name": "-K",
                        "content": "to the server.\n",
                        "flag": "-K"
                    },
                    {
                        "name": "-k",
                        "content": "",
                        "flag": "-k"
                    },
                    {
                        "name": "-L",
                        "content": "",
                        "flag": "-L"
                    },
                    {
                        "name": "-L",
                        "content": "",
                        "flag": "-L"
                    },
                    {
                        "name": "-L _",
                        "content": "",
                        "flag": "-L"
                    },
                    {
                        "name": "-L _",
                        "content": "Specifies that connections to the given TCP port or Unix socket on the local (client)\nhost are to be forwarded to the given host and port, or Unix socket,  on  the  remote\nside.   This works by allocating a socket to listen to either a TCP port on the local\nside, optionally bound to the specified bindaddress, or to a Unix socket.   Whenever\na  connection  is  made to the local port or socket, the connection is forwarded over\nthe secure channel, and a connection is made to either host  port  hostport,  or  the\nUnix socket remotesocket, from the remote machine.\n\nPort forwardings can also be specified in the configuration file.  Only the superuser\ncan  forward  privileged ports.  IPv6 addresses can be specified by enclosing the ad‐\ndress in square brackets.\n\nBy default, the local port is bound in  accordance  with  the  GatewayPorts  setting.\nHowever,  an  explicit  bindaddress may be used to bind the connection to a specific\naddress.  The bindaddress of “localhost” indicates that the listening port be  bound\nfor  local  use only, while an empty address or ‘*’ indicates that the port should be\navailable from all interfaces.\n",
                        "flag": "-L"
                    },
                    {
                        "name": "-l _",
                        "content": "Specifies the user to log in as on the remote machine.  This also may be specified on\na per-host basis in the configuration file.\n",
                        "flag": "-l"
                    },
                    {
                        "name": "-M       -M",
                        "content": "places ssh into “master” mode but with confirmation required using ssh-askpass(1) be‐\nfore each operation that changes the multiplexing state (e.g. opening a new session).\nRefer to the description of ControlMaster in sshconfig(5) for details.\n",
                        "flag": "-M"
                    },
                    {
                        "name": "-m _",
                        "content": "A comma-separated list of MAC (message authentication code) algorithms, specified  in\norder of preference.  See the MACs keyword in sshconfig(5) for more information.\n",
                        "flag": "-m"
                    },
                    {
                        "name": "-N",
                        "content": "the description of SessionType in sshconfig(5) for details.\n",
                        "flag": "-N"
                    },
                    {
                        "name": "-n",
                        "content": "used  when  ssh  is  run in the background.  A common trick is to use this to run X11\nprograms on a remote machine.  For example, ssh -n  shadows.cs.hut.fi  emacs  &  will\nstart  an  emacs  on  shadows.cs.hut.fi, and the X11 connection will be automatically\nforwarded over an encrypted channel.  The ssh program will be put in the  background.\n(This does not work if ssh needs to ask for a password or passphrase; see also the -f\noption.)  Refer to the description of StdinNull in sshconfig(5) for details.\n",
                        "flag": "-n"
                    },
                    {
                        "name": "-O _",
                        "content": "Control  an  active  connection  multiplexing  master process.  When the -O option is\nspecified, the ctlcmd argument is interpreted and  passed  to  the  master  process.\nValid  commands  are:  “check”  (check that the master process is running), “forward”\n(request forwardings  without  command  execution),  “cancel”  (cancel  forwardings),\n“exit” (request the master to exit), and “stop” (request the master to stop accepting\nfurther multiplexing requests).\n",
                        "flag": "-O"
                    },
                    {
                        "name": "-o _",
                        "content": "Can  be  used  to give options in the format used in the configuration file.  This is\nuseful for specifying options for which there is no separate command-line flag.   For\nfull   details   of  the  options  listed  below,  and  their  possible  values,  see\nsshconfig(5).\n\nAddKeysToAgent\nAddressFamily\nBatchMode\nBindAddress\nCanonicalDomains\nCanonicalizeFallbackLocal\nCanonicalizeHostname\nCanonicalizeMaxDots\nCanonicalizePermittedCNAMEs\nCASignatureAlgorithms\nCertificateFile\nCheckHostIP\nCiphers\nClearAllForwardings\nCompression\nConnectionAttempts\nConnectTimeout\nControlMaster\nControlPath\nControlPersist\nDynamicForward\nEnableEscapeCommandline\nEscapeChar\nExitOnForwardFailure\nFingerprintHash\nForkAfterAuthentication\nForwardAgent\nForwardX11\nForwardX11Timeout\nForwardX11Trusted\nGatewayPorts\nGlobalKnownHostsFile\nGSSAPIAuthentication\nGSSAPIKeyExchange\nGSSAPIClientIdentity\nGSSAPIDelegateCredentials\nGSSAPIKexAlgorithms\nGSSAPIRenewalForcesRekey\nGSSAPIServerIdentity\nGSSAPITrustDns\nHashKnownHosts\nHost\nHostbasedAcceptedAlgorithms\nHostbasedAuthentication\nHostKeyAlgorithms\nHostKeyAlias\nHostname\nIdentitiesOnly\nIdentityAgent\nIdentityFile\nIPQoS\nKbdInteractiveAuthentication\nKbdInteractiveDevices\nKexAlgorithms\nKnownHostsCommand\nLocalCommand\nLocalForward\nLogLevel\nMACs\nMatch\nNoHostAuthenticationForLocalhost\nNumberOfPasswordPrompts\nPasswordAuthentication\nPermitLocalCommand\nPermitRemoteOpen\nPKCS11Provider\nPort\nPreferredAuthentications\nProxyCommand\nProxyJump\nProxyUseFdpass\nPubkeyAcceptedAlgorithms\nPubkeyAuthentication\nRekeyLimit\nRemoteCommand\nRemoteForward\nRequestTTY\nRequiredRSASize\nSendEnv\nServerAliveInterval\nServerAliveCountMax\nSessionType\nSetEnv\nStdinNull\nStreamLocalBindMask\nStreamLocalBindUnlink\nStrictHostKeyChecking\nTCPKeepAlive\nTunnel\nTunnelDevice\nUpdateHostKeys\nUser\nUserKnownHostsFile\nVerifyHostKeyDNS\nVisualHostKey\nXAuthLocation\n",
                        "flag": "-o"
                    },
                    {
                        "name": "-P _",
                        "content": "to the Tag and Match keywords in sshconfig(5) for more information.",
                        "flag": "-P"
                    },
                    {
                        "name": "-p _",
                        "content": "Port  to connect to on the remote host.  This can be specified on a per-host basis in\nthe configuration file.\n",
                        "flag": "-p"
                    },
                    {
                        "name": "-Q _",
                        "content": "Queries for the algorithms supported by one of the following features:  cipher  (sup‐\nported  symmetric ciphers), cipher-auth (supported symmetric ciphers that support au‐\nthenticated encryption), help (supported query terms for use with the -Q  flag),  mac\n(supported  message  integrity codes), kex (key exchange algorithms), kex-gss (GSSAPI\nkey exchange algorithms), key (key types), key-ca-sign (valid CA signature algorithms\nfor certificates), key-cert (certificate key types), key-plain  (non-certificate  key\ntypes), key-sig (all key types and signature algorithms), protocol-version (supported\nSSH protocol versions), and sig (supported signature algorithms).  Alternatively, any\nkeyword from sshconfig(5) or sshdconfig(5) that takes an algorithm list may be used\nas an alias for the corresponding queryoption.\n",
                        "flag": "-Q"
                    },
                    {
                        "name": "-q",
                        "content": "",
                        "flag": "-q"
                    },
                    {
                        "name": "-R",
                        "content": "",
                        "flag": "-R"
                    },
                    {
                        "name": "-R",
                        "content": "",
                        "flag": "-R"
                    },
                    {
                        "name": "-R _",
                        "content": "",
                        "flag": "-R"
                    },
                    {
                        "name": "-R _",
                        "content": "",
                        "flag": "-R"
                    },
                    {
                        "name": "-R",
                        "content": "Specifies  that  connections  to  the  given  TCP  port  or Unix socket on the remote\n(server) host are to be forwarded to the local side.\n\nThis works by allocating a socket to listen to either a TCP port or to a Unix  socket\non  the  remote side.  Whenever a connection is made to this port or Unix socket, the\nconnection is forwarded over the secure channel, and a connection is  made  from  the\nlocal  machine  to either an explicit destination specified by host port hostport, or\nlocalsocket, or, if no explicit destination was specified, ssh will act as  a  SOCKS\n4/5  proxy  and forward connections to the destinations requested by the remote SOCKS\nclient.\n\nPort forwardings can also be specified in the configuration file.   Privileged  ports\ncan  be forwarded only when logging in as root on the remote machine.  IPv6 addresses\ncan be specified by enclosing the address in square brackets.\n\nBy default, TCP listening sockets on the server will be bound to the loopback  inter‐\nface  only.   This  may  be  overridden  by  specifying  a  bindaddress.   An  empty\nbindaddress, or the address ‘*’, indicates that the remote socket should  listen  on\nall  interfaces.   Specifying a remote bindaddress will only succeed if the server's\nGatewayPorts option is enabled (see sshdconfig(5)).\n\nIf the port argument is ‘0’, the listen port will be  dynamically  allocated  on  the\nserver  and  reported to the client at run time.  When used together with -O forward,\nthe allocated port will be printed to the standard output.\n",
                        "flag": "-R"
                    },
                    {
                        "name": "-S _",
                        "content": "Specifies the location of a control socket for  connection  sharing,  or  the  string\n“none”  to  disable  connection sharing.  Refer to the description of ControlPath and\nControlMaster in sshconfig(5) for details.\n",
                        "flag": "-S"
                    },
                    {
                        "name": "-s",
                        "content": "facilitate  the  use  of  SSH  as  a  secure  transport  for other applications (e.g.\nsftp(1)).  The subsystem is specified as the remote command.  Refer to  the  descrip‐\ntion of SessionType in sshconfig(5) for details.\n",
                        "flag": "-s"
                    },
                    {
                        "name": "-T",
                        "content": "",
                        "flag": "-T"
                    },
                    {
                        "name": "-t",
                        "content": "programs  on  a remote machine, which can be very useful, e.g. when implementing menu\nservices.  Multiple -t options force tty allocation, even if ssh has no local tty.\n",
                        "flag": "-t"
                    },
                    {
                        "name": "-V",
                        "content": "",
                        "flag": "-V"
                    },
                    {
                        "name": "-v",
                        "content": "helpful  in debugging connection, authentication, and configuration problems.  Multi‐\nple -v options increase the verbosity.  The maximum is 3.\n",
                        "flag": "-v"
                    },
                    {
                        "name": "-W _",
                        "content": "Requests that standard input and output on the client be forwarded to  host  on  port\nover    the    secure    channel.    Implies   -N,   -T,   ExitOnForwardFailure   and\nClearAllForwardings, though these can be overridden in the configuration file or  us‐\ning -o command line options.\n",
                        "flag": "-W"
                    },
                    {
                        "name": "-w _",
                        "content": "Requests  tunnel  device  forwarding  with  the  specified tun(4) devices between the\nclient (localtun) and the server (remotetun).\n\nThe devices may be specified by numerical ID or the keyword  “any”,  which  uses  the\nnext  available tunnel device.  If remotetun is not specified, it defaults to “any”.\nSee also the Tunnel and TunnelDevice directives in sshconfig(5).\n\nIf the Tunnel directive is unset, it will be set to the default tunnel mode, which is\n“point-to-point”.  If a different Tunnel forwarding mode it desired, then  it  should\nbe specified before -w.\n",
                        "flag": "-w"
                    },
                    {
                        "name": "-X",
                        "content": "ration file.\n\nX11 forwarding should be enabled with caution.  Users with the ability to bypass file\npermissions  on  the remote host (for the user's X authorization database) can access\nthe local X11 display through the forwarded connection.  An attacker may then be able\nto perform activities such as keystroke monitoring.\n\nFor this reason, X11 forwarding is subjected to X11 SECURITY  extension  restrictions\nby  default.   Refer  to  the  ssh  -Y  option and the ForwardX11Trusted directive in\nsshconfig(5) for more information.\n\n(Debian-specific: X11 forwarding is not subjected to X11 SECURITY extension  restric‐\ntions  by  default,  because too many programs currently crash in this mode.  Set the\nForwardX11Trusted option to “no” to restore the upstream behaviour.  This may  change\nin future depending on client-side improvements.)\n",
                        "flag": "-X"
                    },
                    {
                        "name": "-x",
                        "content": "",
                        "flag": "-x"
                    },
                    {
                        "name": "-Y",
                        "content": "SECURITY extension controls.\n\n(Debian-specific:  In  the  default  configuration,  this option is equivalent to -X,\nsince  ForwardX11Trusted  defaults  to   “yes”   as   described   above.    Set   the\nForwardX11Trusted  option to “no” to restore the upstream behaviour.  This may change\nin future depending on client-side improvements.)\n",
                        "flag": "-Y"
                    },
                    {
                        "name": "-y",
                        "content": "is sent to stderr.\n\nssh  may additionally obtain configuration data from a per-user configuration file and a sys‐\ntem-wide configuration file.  The file format and  configuration  options  are  described  in\nsshconfig(5).\n",
                        "flag": "-y"
                    }
                ]
            },
            "AUTHENTICATION": {
                "content": "The OpenSSH SSH client supports SSH protocol 2.\n\nThe methods available for authentication are: GSSAPI-based authentication, host-based authen‐\ntication,  public  key  authentication, keyboard-interactive authentication, and password au‐\nthentication.  Authentication  methods  are  tried  in  the  order  specified  above,  though\nPreferredAuthentications can be used to change the default order.\n\nHost-based authentication works as follows: If the machine the user logs in from is listed in\n/etc/hosts.equiv or /etc/ssh/shosts.equiv on the remote machine, the user is non-root and the\nuser  names  are  the same on both sides, or if the files ~/.rhosts or ~/.shosts exist in the\nuser's home directory on the remote machine and contain a line containing  the  name  of  the\nclient  machine  and  the name of the user on that machine, the user is considered for login.\nAdditionally, the server must be able to verify the client's host key (see the description of\n/etc/ssh/sshknownhosts and ~/.ssh/knownhosts, below) for login to be permitted.  This  au‐\nthentication  method  closes  security  holes  due  to IP spoofing, DNS spoofing, and routing\nspoofing.  [Note to the administrator: /etc/hosts.equiv, ~/.rhosts, and the rlogin/rsh proto‐\ncol in general, are inherently insecure and should be disabled if security is desired.]\n\nPublic key authentication works as follows: The scheme is based on  public-key  cryptography,\nusing  cryptosystems  where encryption and decryption are done using separate keys, and it is\nunfeasible to derive the decryption key from the encryption key.  The idea is that each  user\ncreates  a  public/private key pair for authentication purposes.  The server knows the public\nkey, and only the user knows the private key.  ssh implements public key authentication  pro‐\ntocol  automatically,  using  one  of the DSA, ECDSA, Ed25519 or RSA algorithms.  The HISTORY\nsection        of         ssl(8)         (on         non-OpenBSD         systems,         see\nhttp://www.openbsd.org/cgi-bin/man.cgi?query=ssl&sektion=8#HISTORY)  contains a brief discus‐\nsion of the DSA and RSA algorithms.\n\nThe file ~/.ssh/authorizedkeys lists the public keys that  are  permitted  for  logging  in.\nWhen  the  user logs in, the ssh program tells the server which key pair it would like to use\nfor authentication.  The client proves that it has access to the private key and  the  server\nchecks that the corresponding public key is authorized to accept the account.\n\nThe server may inform the client of errors that prevented public key authentication from suc‐\nceeding  after authentication completes using a different method.  These may be viewed by in‐\ncreasing the LogLevel to DEBUG or higher (e.g. by using the -v flag).\n\nThe user creates their key pair by running ssh-keygen(1).  This stores  the  private  key  in\n~/.ssh/iddsa   (DSA),   ~/.ssh/idecdsa  (ECDSA),  ~/.ssh/idecdsask  (authenticator-hosted\nECDSA), ~/.ssh/ided25519 (Ed25519), ~/.ssh/ided25519sk (authenticator-hosted Ed25519),  or\n~/.ssh/idrsa (RSA) and stores the public key in ~/.ssh/iddsa.pub (DSA), ~/.ssh/idecdsa.pub\n(ECDSA),    ~/.ssh/idecdsask.pub    (authenticator-hosted   ECDSA),   ~/.ssh/ided25519.pub\n(Ed25519),  ~/.ssh/ided25519sk.pub  (authenticator-hosted  Ed25519),  or  ~/.ssh/idrsa.pub\n(RSA)  in  the  user's  home  directory.   The  user  should  then  copy  the  public  key to\n~/.ssh/authorizedkeys in their home directory on the remote  machine.   The  authorizedkeys\nfile  corresponds  to  the  conventional ~/.rhosts file, and has one key per line, though the\nlines can be very long.  After this, the user can log in without giving the password.\n\nA variation on public key authentication is available in the form of certificate  authentica‐\ntion:  instead  of  a set of public/private keys, signed certificates are used.  This has the\nadvantage that a single trusted certification authority can be used in  place  of  many  pub‐\nlic/private keys.  See the CERTIFICATES section of ssh-keygen(1) for more information.\n\nThe  most  convenient  way to use public key or certificate authentication may be with an au‐\nthentication agent.  See  ssh-agent(1)  and  (optionally)  the  AddKeysToAgent  directive  in\nsshconfig(5) for more information.\n\nKeyboard-interactive   authentication  works  as  follows:  The  server  sends  an  arbitrary\n\"challenge\" text and prompts for a response, possibly multiple times.  Examples of  keyboard-\ninteractive  authentication  include  BSD  Authentication  (see  login.conf(5)) and PAM (some\nnon-OpenBSD systems).\n\nFinally, if other authentication methods fail, ssh prompts the  user  for  a  password.   The\npassword  is  sent to the remote host for checking; however, since all communications are en‐\ncrypted, the password cannot be seen by someone listening on the network.\n\nssh automatically maintains and checks a database containing identification for all hosts  it\nhas  ever  been used with.  Host keys are stored in ~/.ssh/knownhosts in the user's home di‐\nrectory.  Additionally, the file /etc/ssh/sshknownhosts is automatically checked for  known\nhosts.  Any new hosts are automatically added to the user's file.  If a host's identification\never  changes,  ssh  warns  about this and disables password authentication to prevent server\nspoofing or man-in-the-middle attacks, which could otherwise be used to  circumvent  the  en‐\ncryption.   The  StrictHostKeyChecking option can be used to control logins to machines whose\nhost key is not known or has changed.\n\nWhen the user's identity has been accepted by the server,  the  server  either  executes  the\ngiven  command  in  a non-interactive session or, if no command has been specified, logs into\nthe machine and gives the user a normal shell as an interactive session.   All  communication\nwith the remote command or shell will be automatically encrypted.\n\nIf  an  interactive  session is requested, ssh by default will only request a pseudo-terminal\n(pty) for interactive sessions when the client has one.  The flags -T and -t can be  used  to\noverride this behaviour.\n\nIf a pseudo-terminal has been allocated, the user may use the escape characters noted below.\n\nIf no pseudo-terminal has been allocated, the session is transparent and can be used to reli‐\nably transfer binary data.  On most systems, setting the escape character to “none” will also\nmake the session transparent even if a tty is used.\n\nThe  session terminates when the command or shell on the remote machine exits and all X11 and\nTCP connections have been closed.\n",
                "subsections": []
            },
            "ESCAPE CHARACTERS": {
                "content": "When a pseudo-terminal has been requested, ssh supports a number of functions through the use\nof an escape character.\n\nA single tilde character can be sent as ~~ or by following the tilde  by  a  character  other\nthan  those  described below.  The escape character must always follow a newline to be inter‐\npreted as special.  The escape character can be changed  in  configuration  files  using  the\nEscapeChar configuration directive or on the command line by the -e option.\n\nThe supported escapes (assuming the default ‘~’) are:\n\n~.      Disconnect.\n\n~^Z     Background ssh.\n\n~#      List forwarded connections.\n\n~&      Background ssh at logout when waiting for forwarded connection / X11 sessions to ter‐\nminate.\n\n~?      Display a list of escape characters.\n\n~B      Send a BREAK to the remote system (only useful if the peer supports it).\n\n~C      Open  command line.  Currently this allows the addition of port forwardings using the\n-L, -R and -D options (see above).  It also allows the cancellation of existing port-\nforwardings with -KL[bindaddress:]port for local, -KR[bindaddress:]port for  remote\nand -KD[bindaddress:]port for dynamic port-forwardings.  !command allows the user to\nexecute a local command if the PermitLocalCommand option is enabled in sshconfig(5).\nBasic help is available, using the -h option.\n\n~R      Request rekeying of the connection (only useful if the peer supports it).\n\n~V      Decrease the verbosity (LogLevel) when errors are being written to stderr.\n\n~v      Increase the verbosity (LogLevel) when errors are being written to stderr.\n",
                "subsections": []
            },
            "TCP FORWARDING": {
                "content": "Forwarding  of arbitrary TCP connections over a secure channel can be specified either on the\ncommand line or in a configuration file.  One possible application of TCP forwarding is a se‐\ncure connection to a mail server; another is going through firewalls.\n\nIn the example below, we look at encrypting communication for an IRC client, even though  the\nIRC  server  it connects to does not directly support encrypted communication.  This works as\nfollows: the user connects to the remote host using ssh, specifying the ports to be  used  to\nforward the connection.  After that it is possible to start the program locally, and ssh will\nencrypt and forward the connection to the remote server.\n\nThe  following  example  tunnels  an  IRC  session  from  the  client  to  an  IRC  server at\n“server.example.com”, joining channel “#users”, nickname  “pinky”,  using  the  standard  IRC\nport, 6667:\n\n$ ssh -f -L 6667:localhost:6667 server.example.com sleep 10\n$ irc -c '#users' pinky IRC/127.0.0.1\n\nThe  -f  option  backgrounds  ssh  and the remote command “sleep 10” is specified to allow an\namount of time (10 seconds, in the example) to start the program which is going  to  use  the\ntunnel.  If no connections are made within the time specified, ssh will exit.\n",
                "subsections": []
            },
            "X11 FORWARDING": {
                "content": "If  the ForwardX11 variable is set to “yes” (or see the description of the -X, -x, and -Y op‐\ntions above) and the user is using X11 (the DISPLAY environment variable is set), the connec‐\ntion to the X11 display is automatically forwarded to the remote side in such a way that  any\nX11  programs  started from the shell (or command) will go through the encrypted channel, and\nthe connection to the real X server will be made from the local machine.  The user should not\nmanually set DISPLAY.  Forwarding of X11 connections can be configured on the command line or\nin configuration files.\n\nThe DISPLAY value set by ssh will point to the server machine,  but  with  a  display  number\ngreater than zero.  This is normal, and happens because ssh creates a “proxy” X server on the\nserver machine for forwarding the connections over the encrypted channel.\n\nssh  will also automatically set up Xauthority data on the server machine.  For this purpose,\nit will generate a random authorization cookie, store it in Xauthority  on  the  server,  and\nverify  that  any  forwarded  connections carry this cookie and replace it by the real cookie\nwhen the connection is opened.  The real authentication cookie is never sent  to  the  server\nmachine (and no cookies are sent in the plain).\n\nIf the ForwardAgent variable is set to “yes” (or see the description of the -A and -a options\nabove) and the user is using an authentication agent, the connection to the agent is automat‐\nically forwarded to the remote side.\n",
                "subsections": []
            },
            "VERIFYING HOST KEYS": {
                "content": "When  connecting  to a server for the first time, a fingerprint of the server's public key is\npresented to the user (unless the option StrictHostKeyChecking has been  disabled).   Finger‐\nprints can be determined using ssh-keygen(1):\n\n$ ssh-keygen -l -f /etc/ssh/sshhostrsakey\n\nIf  the  fingerprint  is  already known, it can be matched and the key can be accepted or re‐\njected.  If only legacy (MD5) fingerprints for the server are available, the ssh-keygen(1) -E\noption may be used to downgrade the fingerprint algorithm to match.\n\nBecause of the difficulty of comparing host keys just  by  looking  at  fingerprint  strings,\nthere  is  also  support  to  compare  host  keys visually, using random art.  By setting the\nVisualHostKey option to “yes”, a small ASCII graphic gets  displayed  on  every  login  to  a\nserver,  no  matter  if  the session itself is interactive or not.  By learning the pattern a\nknown server produces, a user can easily find out that the host key has changed when  a  com‐\npletely  different pattern is displayed.  Because these patterns are not unambiguous however,\na pattern that looks similar to the pattern remembered only gives a good probability that the\nhost key is the same, not guaranteed proof.\n\nTo get a listing of the fingerprints along with their random art for  all  known  hosts,  the\nfollowing command line can be used:\n\n$ ssh-keygen -lv -f ~/.ssh/knownhosts\n\nIf  the  fingerprint is unknown, an alternative method of verification is available: SSH fin‐\ngerprints verified by DNS.  An additional resource record (RR), SSHFP, is added to a zonefile\nand the connecting client is able to match the fingerprint with that of the key presented.\n\nIn this example, we are connecting a client to a server, “host.example.com”.  The  SSHFP  re‐\nsource records should first be added to the zonefile for host.example.com:\n\n$ ssh-keygen -r host.example.com.\n\nThe  output lines will have to be added to the zonefile.  To check that the zone is answering\nfingerprint queries:\n\n$ dig -t SSHFP host.example.com\n\nFinally the client connects:\n\n$ ssh -o \"VerifyHostKeyDNS ask\" host.example.com\n[...]\nMatching host key fingerprint found in DNS.\nAre you sure you want to continue connecting (yes/no)?\n\nSee the VerifyHostKeyDNS option in sshconfig(5) for more information.\n",
                "subsections": []
            },
            "SSH-BASED VIRTUAL PRIVATE NETWORKS": {
                "content": "ssh contains support for Virtual Private Network (VPN) tunnelling using  the  tun(4)  network\npseudo-device, allowing two networks to be joined securely.  The sshdconfig(5) configuration\noption  PermitTunnel controls whether the server supports this, and at what level (layer 2 or\n3 traffic).\n\nThe  following  example  would  connect  client  network  10.0.50.0/24  with  remote  network\n10.0.99.0/24  using  a point-to-point connection from 10.1.1.1 to 10.1.1.2, provided that the\nSSH server running on the gateway to the remote network, at 192.168.1.15, allows it.\n\nOn the client:\n\n# ssh -f -w 0:1 192.168.1.15 true\n# ifconfig tun0 10.1.1.1 10.1.1.2 netmask 255.255.255.252\n# route add 10.0.99.0/24 10.1.1.2\n\nOn the server:\n\n# ifconfig tun1 10.1.1.2 10.1.1.1 netmask 255.255.255.252\n# route add 10.0.50.0/24 10.1.1.1\n\nClient access may be more finely tuned via the /root/.ssh/authorizedkeys  file  (see  below)\nand  the  PermitRootLogin  server  option.   The  following entry would permit connections on\ntun(4) device 1 from user “jane” and on tun device 2 from user “john”, if PermitRootLogin  is\nset to “forced-commands-only”:\n\ntunnel=\"1\",command=\"sh /etc/netstart tun1\" ssh-rsa ... jane\ntunnel=\"2\",command=\"sh /etc/netstart tun2\" ssh-rsa ... john\n\nSince  an  SSH-based setup entails a fair amount of overhead, it may be more suited to tempo‐\nrary setups, such as for wireless VPNs.  More permanent VPNs are  better  provided  by  tools\nsuch as ipsecctl(8) and isakmpd(8).\n",
                "subsections": []
            },
            "ENVIRONMENT": {
                "content": "ssh will normally set the following environment variables:\n\nDISPLAY               The  DISPLAY  variable indicates the location of the X11 server.  It is\nautomatically set by ssh to point to a value of the form  “hostname:n”,\nwhere “hostname” indicates the host where the shell runs, and ‘n’ is an\ninteger  ≥  1.   ssh uses this special value to forward X11 connections\nover the secure channel.  The user should normally not set DISPLAY  ex‐\nplicitly, as that will render the X11 connection insecure (and will re‐\nquire the user to manually copy any required authorization cookies).\n\nHOME                  Set to the path of the user's home directory.\n\nLOGNAME               Synonym  for  USER;  set  for  compatibility with systems that use this\nvariable.\n\nMAIL                  Set to the path of the user's mailbox.\n\nPATH                  Set to the default PATH, as specified when compiling ssh.\n\nSSHASKPASS           If ssh needs a passphrase, it will read the passphrase from the current\nterminal if it was run from a terminal.  If ssh does not have a  termi‐\nnal associated with it but DISPLAY and SSHASKPASS are set, it will ex‐\necute  the  program  specified by SSHASKPASS and open an X11 window to\nread the passphrase.  This is particularly useful when calling ssh from\na .xsession or related script.  (Note that on some machines it  may  be\nnecessary to redirect the input from /dev/null to make this work.)\n\nSSHASKPASSREQUIRE   Allows  further  control  over  the use of an askpass program.  If this\nvariable is set to “never” then ssh will never attempt to use one.   If\nit  is set to “prefer”, then ssh will prefer to use the askpass program\ninstead of the TTY when requesting passwords.  Finally, if the variable\nis set to “force”, then the  askpass  program  will  be  used  for  all\npassphrase input regardless of whether DISPLAY is set.\n\nSSHAUTHSOCK         Identifies  the  path  of a Unix-domain socket used to communicate with\nthe agent.\n\nSSHCONNECTION        Identifies the client and server ends of the connection.  The  variable\ncontains  four  space-separated  values: client IP address, client port\nnumber, server IP address, and server port number.\n\nSSHORIGINALCOMMAND  This variable contains the original command line if a forced command is\nexecuted.  It can be used to extract the original arguments.\n\nSSHTTY               This is set to the name of the tty (path to the device) associated with\nthe current shell or command.  If the current session has no tty,  this\nvariable is not set.\n\nSSHTUNNEL            Optionally  set  by  sshd(8) to contain the interface names assigned if\ntunnel forwarding was requested by the client.\n\nSSHUSERAUTH         Optionally set by sshd(8), this variable may contain a  pathname  to  a\nfile  that  lists the authentication methods successfully used when the\nsession was established, including any public keys that were used.\n\nTZ                    This variable is set to indicate the present time zone if  it  was  set\nwhen the daemon was started (i.e. the daemon passes the value on to new\nconnections).\n\nUSER                  Set to the name of the user logging in.\n\nAdditionally,  ssh  reads ~/.ssh/environment, and adds lines of the format “VARNAME=value” to\nthe environment if the file exists and users are allowed to change  their  environment.   For\nmore information, see the PermitUserEnvironment option in sshdconfig(5).\n",
                "subsections": []
            },
            "FILES": {
                "content": "~/.rhosts\nThis  file  is used for host-based authentication (see above).  On some machines this\nfile may need to be world-readable if the user's home directory is on an  NFS  parti‐\ntion, because sshd(8) reads it as root.  Additionally, this file must be owned by the\nuser,  and  must not have write permissions for anyone else.  The recommended permis‐\nsion for most machines is read/write for the user, and not accessible by others.\n\n~/.shosts\nThis file is used in exactly the same way as .rhosts, but allows host-based authenti‐\ncation without permitting login with rlogin/rsh.\n\n~/.ssh/\nThis directory is the default location for all user-specific  configuration  and  au‐\nthentication  information.   There  is no general requirement to keep the entire con‐\ntents of this directory secret, but the recommended permissions  are  read/write/exe‐\ncute for the user, and not accessible by others.\n\n~/.ssh/authorizedkeys\nLists  the  public keys (DSA, ECDSA, Ed25519, RSA) that can be used for logging in as\nthis user.  The format of this file is described in the sshd(8)  manual  page.   This\nfile  is not highly sensitive, but the recommended permissions are read/write for the\nuser, and not accessible by others.\n\n~/.ssh/config\nThis is the per-user configuration file.  The file format and  configuration  options\nare  described  in sshconfig(5).  Because of the potential for abuse, this file must\nhave strict permissions: read/write for the user, and not writable by others.  It may\nbe group-writable provided that the group in question contains only the user.\n\n~/.ssh/environment\nContains additional definitions for environment variables; see “ENVIRONMENT”, above.\n\n~/.ssh/iddsa\n~/.ssh/idecdsa\n~/.ssh/idecdsask\n~/.ssh/ided25519\n~/.ssh/ided25519sk\n~/.ssh/idrsa\nContains the private key for authentication.  These files contain sensitive data  and\nshould  be  readable  by  the user but not accessible by others (read/write/execute).\nssh will simply ignore a private key file if it is accessible by others.  It is  pos‐\nsible  to  specify a passphrase when generating the key which will be used to encrypt\nthe sensitive part of this file using AES-128.\n\n~/.ssh/iddsa.pub\n~/.ssh/idecdsa.pub\n~/.ssh/idecdsask.pub\n~/.ssh/ided25519.pub\n~/.ssh/ided25519sk.pub\n~/.ssh/idrsa.pub\nContains the public key for authentication.  These files are not  sensitive  and  can\n(but need not) be readable by anyone.\n\n~/.ssh/knownhosts\nContains  a list of host keys for all hosts the user has logged into that are not al‐\nready in the systemwide list of known host keys.  See sshd(8) for further details  of\nthe format of this file.\n\n~/.ssh/rc\nCommands  in  this  file  are  executed by ssh when the user logs in, just before the\nuser's shell (or command) is started.  See the sshd(8) manual page for more  informa‐\ntion.\n\n/etc/hosts.equiv\nThis  file  is for host-based authentication (see above).  It should only be writable\nby root.\n\n/etc/ssh/shosts.equiv\nThis file is used in exactly the same way as hosts.equiv, but allows  host-based  au‐\nthentication without permitting login with rlogin/rsh.\n\n/etc/ssh/sshconfig\nSystemwide  configuration  file.   The  file format and configuration options are de‐\nscribed in sshconfig(5).\n\n/etc/ssh/sshhostkey\n/etc/ssh/sshhostdsakey\n/etc/ssh/sshhostecdsakey\n/etc/ssh/sshhosted25519key\n/etc/ssh/sshhostrsakey\nThese files contain the private parts of the host keys and are  used  for  host-based\nauthentication.\n\n/etc/ssh/sshknownhosts\nSystemwide  list  of known host keys.  This file should be prepared by the system ad‐\nministrator to contain the public host keys of all machines in the organization.   It\nshould  be  world-readable.   See  sshd(8)  for further details of the format of this\nfile.\n\n/etc/ssh/sshrc\nCommands in this file are executed by ssh when the user  logs  in,  just  before  the\nuser's  shell (or command) is started.  See the sshd(8) manual page for more informa‐\ntion.\n",
                "subsections": []
            },
            "EXIT STATUS": {
                "content": "ssh exits with the exit status of the remote command or with 255 if an error occurred.\n",
                "subsections": []
            },
            "SEE ALSO": {
                "content": "scp(1),  sftp(1),  ssh-add(1),  ssh-agent(1),  ssh-argv0(1),  ssh-keygen(1),  ssh-keyscan(1),\ntun(4), sshconfig(5), ssh-keysign(8), sshd(8)\n",
                "subsections": []
            },
            "STANDARDS": {
                "content": "S.  Lehtinen  and  C.  Lonvick,  The  Secure Shell (SSH) Protocol Assigned Numbers, RFC 4250,\nJanuary 2006.\n\nT. Ylonen and C. Lonvick, The Secure Shell (SSH) Protocol  Architecture,  RFC  4251,  January\n2006.\n\nT.  Ylonen  and C. Lonvick, The Secure Shell (SSH) Authentication Protocol, RFC 4252, January\n2006.\n\nT. Ylonen and C. Lonvick, The Secure Shell (SSH) Transport Layer Protocol, RFC 4253,  January\n2006.\n\nT. Ylonen and C. Lonvick, The Secure Shell (SSH) Connection Protocol, RFC 4254, January 2006.\n\nJ.  Schlyter  and  W.  Griffin,  Using  DNS  to  Securely  Publish  Secure  Shell  (SSH)  Key\nFingerprints, RFC 4255, January 2006.\n\nF. Cusack and M. Forssen, Generic  Message  Exchange  Authentication  for  the  Secure  Shell\nProtocol (SSH), RFC 4256, January 2006.\n\nJ.  Galbraith  and  P.  Remaker,  The Secure Shell (SSH) Session Channel Break Extension, RFC\n4335, January 2006.\n\nM. Bellare, T. Kohno, and C. Namprempre, The Secure Shell (SSH)  Transport  Layer  Encryption\nModes, RFC 4344, January 2006.\n\nB.  Harris,  Improved  Arcfour Modes for the Secure Shell (SSH) Transport Layer Protocol, RFC\n4345, January 2006.\n\nM. Friedl, N. Provos, and W. Simpson, Diffie-Hellman Group  Exchange  for  the  Secure  Shell\n(SSH) Transport Layer Protocol, RFC 4419, March 2006.\n\nJ. Galbraith and R. Thayer, The Secure Shell (SSH) Public Key File Format, RFC 4716, November\n2006.\n\nD.  Stebila  and J. Green, Elliptic Curve Algorithm Integration in the Secure Shell Transport\nLayer, RFC 5656, December 2009.\n\nA. Perrig and D. Song, Hash Visualization: a New Technique to  improve  Real-World  Security,\n1999, International Workshop on Cryptographic Techniques and E-Commerce (CrypTEC '99).\n",
                "subsections": []
            },
            "AUTHORS": {
                "content": "OpenSSH  is  a  derivative of the original and free ssh 1.2.12 release by Tatu Ylonen.  Aaron\nCampbell, Bob Beck, Markus Friedl, Niels Provos, Theo de Raadt  and  Dug  Song  removed  many\nbugs, re-added newer features and created OpenSSH.  Markus Friedl contributed the support for\nSSH protocol versions 1.5 and 2.0.\n\nDebian                                    October 11, 2023                                    SSH(1)",
                "subsections": []
            }
        }
    }
}