我使用这个库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'); }