(PECL ssh2 >= 0.9.0)
ssh2_tunnel — リモートサーバを経由するトンネルをオープンする
現在接続している SSH サーバを経由して、 任意のホスト/ポートへのソケットストリームをオープンします。
例1 任意のホストへのトンネルのオープン
<?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);
?>