SSH - force IPv4 (use 127.0.0.1 instead of localhost)

This commit is contained in:
SPRINX0\prochazka
2025-01-02 17:03:49 +01:00
parent 28a206c7ed
commit 144777da58

View File

@@ -228,9 +228,9 @@ class SSHConnection {
options.toPort options.toPort
); );
connection.forwardOut( connection.forwardOut(
'localhost', '127.0.0.1',
options.fromPort, options.fromPort,
options.toHost || 'localhost', options.toHost || '127.0.0.1',
options.toPort, options.toPort,
(error, stream) => { (error, stream) => {
if (error) { if (error) {
@@ -241,7 +241,7 @@ class SSHConnection {
} }
); );
}) })
.listen(options.fromPort, 'localhost', () => { .listen(options.fromPort, '127.0.0.1', () => {
return resolve(); return resolve();
}); });
}); });