无法通过 tor 网络运行 ssh

无法通过 tor 网络运行 ssh

我可以通过 SSH 连接到运行 openssh 的机器。我想增加匿名性,这就是我对 Tor 感兴趣的原因。我偶然发现了我正在尝试 SSH:方法 3(socat)。

我的 sshd_config 文件如下所示:

Host MyHost-tor
ProxyCommand socat - SOCKS4A:localhost:192.168.*.*:22,socksport=9050

说明看起来很简单,它说“现在您可以简单地使用 ssh MyHost-tor。”

我运行 ssh MyHost-tor 并得到以下结果:

ssh: Could not resolve hostname myhost-tor: Name or service not known

我是不是完全误解了什么或者忽略了什么?

答案1

Host MyHost-tor
...
ssh: Could not resolve hostname myhost-tor: Name or service not known

配置文件“Host”值区分大小写。运行 ssh 时,必须按照配置文件中显示的方式提供主机名。

相关内容