#!/bin/bash
# net/tool/ssh - ``openssh`` Support


######
# Outbound Connections

# $ssh_user - User name to use for outbound SSH connections.
ssh_user=$USER

# $ssh_host - Host name to use for outbound SSH connections.
#; ssh_host=localhost

# $ssh_port - Port to use for outbound SSH connections.
#; ssh_port=22

# $ssh_identity - Identity to use for outbound SSH connections.
#; ssh_identity=


######
# Client Options

# $ssh_logfile - If set, specifies filename for the SSH client log.
#; ssh_logfile=ssh.log

# $ssh_background - If ``true``, runs the SSH process in the background.
ssh_background=false

# $ssh_no_stdin - If ``true``, disconnects ``stdin`` from the SSH process.
ssh_no_stdin=false

# $ssh_no_login - If ``true``, disables running a command on the remote host.
ssh_no_login=false

# $ssh_force_pty - If ``true``, forces allocation of a pseudo-terminal.
ssh_force_pty=false


######
# Port Forwarding

# $ssh_remote_portmap[] - List of port mappings for creating SSH tunnels
ssh_remote_portmap=( )

View the Developer Guide Index

View the Reference Manual Index


Generated on Fri Jul 28 14:36:29 PDT 2017 by mcsh d14 v0.23.0.