1

我在我的 linux 64 位机器上安装了 tor 和 privoxy。并取消注释 /etc/privoxy/config 文件中的以下行。

        forward-socks5   /               127.0.0.1:9050 .

然后我开始为两者提供服务。现在,如果我运行以下任一命令,我会得到相同的 IP 地址,这不是 PC 的真实 IP。所以我得出结论,tor 和 privoxy 都在运行。

curl -x 127.0.0.1:8118 curlmyip.com
curl --socks5 127.0.0.1:9050 curlmyip.com

如果我将 chrome 与--proxy-server localhost:8118switch 一起使用,我将再次获得相同的匿名 IP 地址。

问题是,我不能在 firefox/iceweasel 中使用 http 代理 localhost 8118。我去编辑->首选项->高级->网络->设置并将HTTP和SSL代理设置为localhost 8118。Iceweasel说“代理服务器拒绝连接”

有什么解决办法吗?

4

3 回答 3

3

不推荐使用 Tor 浏览器以外的浏览器。Tor 项目很久以前也弃用了 privoxy / polipo。目前的建议是只使用Tor 浏览器,因为只有 Tor 浏览器给你一个统一的网络指纹,你不会脱颖而出。

于 2013-09-19T23:55:21.073 回答
1

我在尝试在家用 PC 上使用 tor 和 privoxy 的组合时遇到了类似的错误。

使用的操作系统是 Kali Linux 2.0。

复制问题的步骤

安装的tor

sudo apt-get install tor

启动 Tor 中继

tor

验证 tor 是否工作

netstat -atnp tor | egrep tor

在输出中,观察到 Tor 输出——很好。

tcp        0      0 127.0.0.1:9050          0.0.0.0:*               LISTEN      2401/tor        
tcp        0      0 192.168.x.x:44278       xx.xxx.xx.xx:443        ESTABLISHED 2401/tor

安装 privoxy

sudo apt-get install privoxy

根据此处如何将 privoxy 与 tor 一起使用”下的说明修改 /etc/privoxy/config 中的默认 privoxy 配置文件,并包括以下几行:

forward-socks4a 127.0.0.1:9050   .
forward         192.168.*.*/     .
forward            10.*.*.*/     .
forward           127.*.*.*/     . 

然后开始 privoxy

privoxy /etc/privoxy/config 

运行命令检查 privoxy 是否正常工作:

netstat -atnp | egrep privoxy

输出显示 privoxy 正在运行(注意 tcp6 是 IPv6 - 我一开始没有注意,但这是问题所在):

tcp6       0      0 ::1:8118                :::*                    LISTEN      3881/privoxy    

然后将 SSL 和 HTTP 代理设置为 127.0.0.1:8118 浏览互联网站点时出现错误,“选择的代理拒绝连接”

使固定:

仔细阅读 privoxy 配置文件后,listen-address 节显示以下信息。

Some operating systems will prefer IPv6 to IPv4 addresses even
if the system has no IPv6 connectivity which is usually not
expected by the user. Some even rely on DNS to resolve
localhost which mean the "localhost" address used may not
actually be local.

**It is therefore recommended to explicitly configure the
intended IP address instead of relying on the operating
system, unless there's a strong reason not to.**

即使我没有 IPv6 连接,KALI 似乎更喜欢绑定到 IPv6 localhost [::1] 而不是 IPv4 本地主机 127.0.0.1。

所以我改变了监听地址行

listen-address localhost:8118

listen-address 127.0.0.1:8118

并重新启动privoxy ...

pkill privoxy  # kills all processes with privoxy in their name
privoxy /etc/privoxy/config 

然后我在 ICEWEASEL 中将 SSL、HTTP 代理设置为 127.0.0.1:8118 并将 SOCKS 代理设置为 127.0.0.1:9050 (Socks 4)。瞧!我能够连接到互联网站点。

为了验证,我运行了 netstat 和 nmap,这表明 privoxy 绑定到 IPv4 localhost IP..

> netstat -atnp | grep privoxy
tcp        0      0 127.0.0.1:8118          0.0.0.0:*               LISTEN      3934/privoxy

> nmap 127.0.0.1 -p 8118 
PORT     STATE SERVICE
8118/tcp open  privoxy

> nmap -6 localhost -p 8118 
PORT     STATE SERVICE
8118/tcp closed  privoxy

注意: 我的 /etc/hosts 文件也有 localhost 的条目:127.0.0.1 localhost

于 2015-12-12T01:50:35.320 回答
0

It works for me. Please try downloading a binary version of Firefox:

ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases/17.0.8esr/linux-i686/en-US/

Following your exact instructions above with this binary on Gentoo worked for me. I'd surmise that you have an off version of Firefox.

于 2013-09-19T12:55:42.583 回答