我有一个使用ssh2 npm模块和readline的简单inseractive ssh客户端。我在每一行上都将数据发送到服务器流,但是由于某种原因输入的命令也发送了
var Client = require('ssh2').Client;
var readline = require('readline')
var conn = new Client();
conn.on('ready', function() {
console.log('Client :: ready');
conn.shell(function(err, stream) {
if (err) throw err;
// create readline interface
var rl = readline.createInterface(process.stdin, process.stdout)
stream.on('close', function() {
process.stdout.write('Connection closed.')
console.log('Stream :: close');
conn.end();
}).on('data', function(data) {
// pause to prevent more data from coming in
process.stdin.pause()
process.stdout.write('DATA: ' + data)
process.stdin.resume()
}).stderr.on('data', function(data) {
process.stderr.write(data);
});
rl.on('line', function (d) {
// send data to through the client to the host
stream.write(d.trim() + '\n')
})
rl.on('SIGINT', function () {
// stop input
process.stdin.pause()
process.stdout.write('\nEnding session\n')
rl.close()
// close connection
stream.end('exit\n')
})
});
}).connect({
host: 'www58.lan',
port: 22,
username: 'gorod',
password: '123qwe'
});
,但是每个输入的命令都是重复的。如何做到没有重复?谢谢!
输出:
gorod@www58:~$ ls
ls
temp.sql yo sm_www94
a.out sm_dev1017 System Volume Information
dump20180801 sm_qa1017 www58_sm_2310
dumps sm_www58
gorod@www58:~$
预期输出:
gorod@www58:~$ ls
temp.sql yo sm_www94
a.out sm_dev1017 System Volume Information
dump20180801 sm_qa1017 www58_sm_2310
dumps sm_www58
gorod@www58:~$
答案 0 :(得分:0)
尽管ssh2
已经支持,但在为交互式shell会话设置伪TTY时,当前ssh2-streams
不支持传递终端模式(例如,禁用远程终端回显)。
在将该功能添加到ssh2
之前,至少有两种可能的解决方法:
自动将'stty -echo\n'
一次写入shell流。除了将回显stty命令本身之外,这将与禁用get-go的远程终端回显有效地做相同的事情。
使用process.stdin.setRawMode(true)
禁用本地回显,仅接收远程终端回显。但是,这样做有两个缺点:远程终端回显可能会延迟(引起混乱),并且您将无法通过'SIGINT'
事件处理程序捕获ctrl-c(这可能是一个功能,因为它将透明地分派ctrl-c转到远程服务器,这在某些情况下会很有用)。