Query: ssh2_tunnel
OS: php
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
SSH2_TUNNEL(3) 1 SSH2_TUNNEL(3) ssh2_tunnel - Open a tunnel through a remote serverSYNOPSISresource ssh2_tunnel (resource $session, string $host, int $port)DESCRIPTIONOpen a socket stream to an arbitrary host/port by way of the currently connected SSH server.PARAMETERSo $session - An SSH connection link identifier, obtained from a call to ssh2_connect(3). o $host - o $port -RETURN VALUESEXAMPLESExample #1 Opening a tunnel to an arbitrary host <?php $connection = ssh2_connect('shell.example.com', 22); ssh2_auth_pubkey_file($connection, 'username', 'id_dsa.pub', 'id_dsa'); $tunnel = ssh2_tunnel($connection, '10.0.0.101', 12345); ?>SEE ALSOssh2_connect(3), fsockopen(3). PHP Documentation Group SSH2_TUNNEL(3)