从Node脚本打开交互式SSH会话

时间:2017-01-03 11:55:03

标签: node.js bash unix ssh

我目前正在将内部CLI工具重建为命令行节点应用程序。部分原因是将bash脚本重建为SSH到此应用程序的特定服务器部分。

我知道如何使用child_process spawn函数来实际执行SSH,但这不会产生与直接在shell中直接进行SSH相同的结果(甚至在-tt命令上使用标志ssh时。例如,键入的命令在屏幕上显示两次,并尝试在这些远程计算机上使用nano根本不起作用(屏幕大小不正确,仅占用控制台窗口的大约一半,并且使用箭头不工作)。

在节点应用中有更好的方法吗?这是我目前用于启动SSH会话的通用代码:

run: function(cmd, args, output) {
    var spawn = require('child_process').spawn,
        ls = spawn(cmd, args);

    ls.stdout.on('data', function(data) {
        console.log(data.toString());
    });

    ls.stderr.on('data', function(data) {
        output.err(data.toString());
    });

    ls.on('exit', function(code) {
        process.exit(code);
    });

    process.stdin.resume();
    process.stdin.on('data', function(chunk) {
        ls.stdin.write(chunk);
    });

    process.on('SIGINT', function() {
        process.exit(0);
    });
}

1 个答案:

答案 0 :(得分:2)

您可以使用ssh2-client

const ssh = require('ssh2-client');

const HOST = 'junk@localhost';

// Exec commands on remote host over ssh
ssh
  .exec(HOST, 'touch junk')
  .then(() => ssh.exec(HOST, 'ls -l junk'))
  .then((output) => {
    const { out, error } = output;
    console.log(out);
    console.error(error);
  })
  .catch(err => console.error(err));

// Setup a live shell on remote host
ssh
  .shell(HOST)
  .then(() => console.log('Done'))
  .catch(err => console.error(err));

免责声明:我是本单元的作者