使用终端时如何使用/启用Tor?


5

我住在一个阻止大多数类型的Internet访问和协议的国家,所以我需要从命令行使用Tor。在这方面我没有得到很多有用的信息,所以任何信息都会有所帮助。

我已经下载了Tor / Vidalia软件包,虽然它似乎只能通过它使用的提供的网络浏览器工作。这对搜索网络等非常有用,但我需要 ssh 并使用 curl等等。

Answers:


2

运行Tor提供了一个标准代理,您可以使用支持SOCKS协议的任何东西连接到localhost:9050。只需在线搜索“SSH over Tor”,或者如果失败,“SSH通过SOCKS代理”。

两个例子:

  • SSH

    ssh -o ProxyCommand =“nc -X 4 -x localhost:9050%h%p”example.com

  • 卷曲:

    curl --socks4a localhost:9050 example.com


嗨,你有一个使用perl脚本的例子吗?我需要像以下一样使用它: perl script.pl -scriptargs -moreargs -args
Mustafa A.

这取决于脚本。必须编写它才能使用SOCKS代理。
gabedwrds
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.