我正在使用npm telnet客户端
我想首先在使用Hercules.exe
的终端上对其进行测试。但是,我总是只会得到“连接超时”。
我已将带有TCP服务器的Hercules终端设置为端口23,并且它在IP 192.169.1.79的本地计算机上运行。但是,当我尝试Telnet到Hercules终端时,得到的只是“套接字超时”。任何线索将不胜感激。
var Telnet = require('telnet-client')
var connection = new Telnet()
var params = {
host: '192.168.1.79',
port: 23,
shellPrompt: '/ # ',
timeout: 1500,
// removeEcho: 4
}
connection.on('ready', function(prompt) {
connection.exec(cmd, function(err, response) {
console.log(response)
})
})
connection.on('timeout', function() {
console.log('socket timeout!')
connection.end()
})
connection.on('close', function() {
console.log('connection closed')
})
connection.connect(params)
答案 0 :(得分:0)
弄清楚了。 1.在Hecules TCP Server中。您需要在超时时间范围内发回shell提示符'/#'