다음과 같이 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와 다릅니다).