From 9c6acf99d05a7eb872b4147f38b7eb5d6d4ef48e Mon Sep 17 00:00:00 2001 From: Eugene Pankov Date: Fri, 15 Apr 2022 19:03:21 +0200 Subject: [PATCH] ssh: allow SOCKS proxy-side DNS resolving - fixes #6100 --- tabby-ssh/src/services/ssh.service.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/tabby-ssh/src/services/ssh.service.ts b/tabby-ssh/src/services/ssh.service.ts index 01cba789..4b99769a 100644 --- a/tabby-ssh/src/services/ssh.service.ts +++ b/tabby-ssh/src/services/ssh.service.ts @@ -117,6 +117,7 @@ export class SocksProxyStream extends SSHProxyStream { proxyHost: this.profile.options.socksProxyHost ?? '127.0.0.1', proxyPort: this.profile.options.socksProxyPort ?? 5000, auths: [socksv5.auth.None()], + strictLocalDNS: false, }, s => { resolve(s) this.header = s.read()