我使用此库http://phpseclib.sourceforge.net/ssh/intro.html来创建持久的ssh连接。我需要选择一个子系统(相应的Unix -s
命令中的ssh
参数)。
我怎样才能做到这一点?
这是我的代码
$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'); }
答案 0 :(得分:0)
最新的gpse版本的phpseclib应该支持这一点。例如
<?php
include('Net/SSH2.php');
$ssh = new Net_SSH2('127.0.0.1');
$ssh->login('username', 'password');
$ssh->setTimeout(5);
$ssh->startSubsystem('vim');
echo $ssh->read();
此vim子系统是通过在sshd_config中执行Subsystem vim /usr/bin/vim
来定义的。