帮助设置匿名代理!

帮助设置匿名代理!

所以我有一个有 20 个不同 IP 地址的 VPS。我安装了 squid3,它正在运行。问题是,当我在线搜索“我的 IP 是什么”时,显示的 IP 是 VPS IP。我想要实现的是,每次我向服务器发送请求时,它都会切换网络接口,因此如果我执行完全相同的搜索查询,它每次都会显示不同的 IP。

我不知道这是否可行。所以,有人能帮助我吗?顺便说一下,操作系统是 Ubuntu 14.04。

答案1

这是有可能的,您必须分担 20 个传出 IP 的负载。

您可以在此处找到相关信息。关联

在你的 squid 配置中,类似这样的操作应该可以工作......

acl r_20 random 1/20
acl r_19 random 1/19
acl r_18 random 1/18
acl r_17 random 1/17
acl r_16 random 1/16
acl r_15 random 1/15
acl r_14 random 1/14
acl r_13 random 1/13
acl r_12 random 1/12
acl r_11 random 1/11
acl r_10 random 1/10
acl r_9 random 1/9
acl r_8 random 1/8
acl r_7 random 1/7
acl r_6 random 1/6
acl r_5 random 1/5
acl r_4 random 1/4
acl r_3 random 1/3
acl r_2 random 1/2
acl r_1 random 1/1

tcp_outgoing_address x.x.0.20 r_20
tcp_outgoing_address x.x.0.19 r_19
tcp_outgoing_address x.x.0.18 r_18
tcp_outgoing_address x.x.0.17 r_17
tcp_outgoing_address x.x.0.16 r_16
tcp_outgoing_address x.x.0.15 r_15
tcp_outgoing_address x.x.0.14 r_14
tcp_outgoing_address x.x.0.13 r_13
tcp_outgoing_address x.x.0.12 r_12
tcp_outgoing_address x.x.0.11 r_11
tcp_outgoing_address x.x.0.10 r_10
tcp_outgoing_address x.x.0.9 r_9
tcp_outgoing_address x.x.0.8 r_8
tcp_outgoing_address x.x.0.7 r_7
tcp_outgoing_address x.x.0.6 r_6
tcp_outgoing_address x.x.0.5 r_5
tcp_outgoing_address x.x.0.4 r_4
tcp_outgoing_address x.x.0.3 r_3
tcp_outgoing_address x.x.0.2 r_2
tcp_outgoing_address x.x.0.1 r_1

相关内容