= 0.9.0)ssh2_tunnel — Open a tunnel through a remote server說明ssh2_tunnel(resource $session, string $host, int $port): resourceO">

ssh2_tunnel

(PECL ssh2 >= 0.9.0)

ssh2_tunnelOpen a tunnel through a remote server

說明

ssh2_tunnel(resource $session, string $host, int $port): resource

Open a socket stream to an arbitrary host/port by way of the currently connected SSH server.

參數(shù)

session

An SSH connection link identifier, obtained from a call to ssh2_connect().

host

port

返回值

范例

示例 #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);
?>

參見

  • ssh2_connect() - Connect to an SSH server
  • fsockopen() - 打開一個(gè)網(wǎng)絡(luò)連接或者一個(gè)Unix套接字連接