如何在 Ubuntu 11.10 中通过 Tor 使用 SSH 客户端?我已经运行 Tor(并成功匿名化 HTTP 流量)。
答案1
运行时Tor
,您可以使用torify
命令。例如:
torify ssh user@remotehost
torify curl curlmyip.com
答案2
从 http://www.howtoforge.com/anonymous-ssh-sessions-with-tor:
将以下块添加到您的~/.ssh/config file.
Host *
CheckHostIP no
Compression yes
Protocol 2
ProxyCommand connect -4 -S localhost:9050 $(tor-resolve %h localhost:9050) %p
答案3
使用proxychains
它。它预先配置为使用本地 tor 代理。此外,您可能希望避免在这些活动中使用 DNS 名称,因为这些名称可能会解析 tor 之外的 IP,这是不受欢迎的。(虽然我没有检查开箱即用代理链时是否是这种情况。)
答案4
只需使用安装tor
sudo apt-get install tor -y
然后用户 ssh 作为
tor ssh user@ip_of_server -p port
就那么简单