我有一个C#应用程序,它需要通过SSH在硬件上运行某些命令。应用程序使用SSH.Net
进行连接、发送命令和读取结果。如果我使用OpenSSH连接到我的本地机器,我就可以做到这一点。最后,我想更进一步,设置我自己的SSH服务器,这样我就可以一次模拟多个硬件设备(需要模拟有50多个设备可以通过SSH连接(。
为此,我使用nodejs和ssh2
包设置了一个简单的SSH服务器。到目前为止,我已经连接了客户端,并对其进行了身份验证(目前所有连接都已接受(,我可以看到正在创建的session
对象。尽管我碰壁的地方是执行客户端发送的命令。我注意到ssh2
在session
对象上有一个exec
的事件,但这似乎从未触发(无论我在SSH.Net
的ShellStream
中放入了什么(。
启动连接的C#客户端代码如下(command
已定义为要执行的命令字符串(:
using(SshClient client = new SshClient(hostname, port, username, password))
{
try
{
client.ErrorOccurred += Client_ErrorOccurred;
client.Connect();
ShellStream shellStream = client.CreateShellStream("xterm", Columns, Rows, Width, Height, BufferSize, terminalModes);
var initialPrompt = await ReadDataAsync(shellStream);
// The command I write to the stream will get executed on OpenSSH
// but not on the nodejs SSH server
shellStream.WriteLine(command);
var output = await ReadDataAsync(shellStream);
var results = $"Command: {command} nResult: {output}";
client.Disconnect();
Console.WriteLine($"Prompt: {initialPrompt} n{results}n");
}
catch (Exception ex)
{
Console.WriteLine($"Exception during SSH connection: {ex.ToString()}");
}
}
设置ssh2服务器的nodejs服务器代码如下:
new ssh2.Server({
hostKeys: [fs.readFileSync('host.key')]
}, function(client) {
console.log('Client connected!');
client.on('authentication', function(ctx) {
ctx.accept();
}).on('ready', function() {
console.log('Client authenticated!');
client.on('session', function(accept, reject) {
var session = accept();
// Code gets here but never triggers the exec
session.once('exec', function(accept, reject, info) {
console.log('Client wants to execute: ' + inspect(info.command));
var stream = accept();
stream.write('returned resultn');
stream.exit(0);
stream.end();
});
});
}).on('end', function() {
console.log('Client disconnected');
});
}).listen(port, '127.0.0.1', function() {
console.log('Listening on port ' + this.address().port);
});
我看到了调用client.exec
函数的各种ssh2
客户端示例,但我认为我的客户端没有使用ssh2
节点包并不重要。我这里有什么东西不见了吗?
;exec";Node.js服务器会话事件用于";非交互式(exec(命令执行">。他们很可能是指SSH";exec";通道(用于"非交互式命令执行"(。
为了使用";exec";SSH.NET中的SSH通道,使用SshClient.RunCommand
。
相反,CCD_;外壳;通道,用于实现交互式shell会话。
为此,您需要处理";外壳;Node.js服务器会话事件。