我正在像這樣連接 phpseclib:
<?php
include('Net/SSH2.php');
$ssh = new Net_SSH2('www.domain.tld');
if (!$ssh->login('username', 'password')) {
exit('Login Failed');
}
echo $ssh->read('username@username:~$');
$ssh->write("some commands"); // here is the question
echo $ssh->read('username@username:~$');
?>
我想檢查我的 ssh 是否仍然可以隧道流量並取得外部 IP。
我所說的外部IP是指我們在連接後獲得的IP(有時它與我們連接的IP不同)。