このライブラリhttp://phpseclib.sourceforge.net/ssh/intro.htmlを使用して、永続的な ssh 接続を作成します。-s
サブシステム (対応する Unixssh
コマンドのパラメーター) を選択する必要があります。
どうすればこれを達成できますか?
これが私のコードです
$this->ssh = new Net_SSH2($this->host, $this->port);
$key = new Crypt_RSA();
$key->loadKey(file_get_contents($this->key));
if (!$this->con->login('username', $key)) { exit('Login Failed'); }