我正在尝试将远程 destop(3389) 代理到端口 8889。
var net = require('net');
var client_port = 8889;
var host = '127.0.0.1';
host = '192.168.7.69';
var client = net.createServer(function(c) {
var loc = net.connect(3389, host, function() {
console.log('connet to 3389 success.');
loc.pipe(c);
c.pipe(loc);
});
}).listen(client_port, host, function(c) {
console.log('proxy opened, visit: %j',client.address());
});
然后使用win7的远程桌面,访问自己,它失败了。
更新:
remotedestop connect 长时间显示“连接到 127.0.0.1:8889”,然后超时。