我正在像这样连接 phpsеclib:
<?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 不同)。