如何让tor自动更改IP?

发布于 2024-11-11 14:07:50 字数 92 浏览 3 评论 0原文

在 Vidalia 上单击“使用新标识”按钮后,我将获得一个新的代理 IP。 Tor可以自动更改IP吗?

我的程序需要随机代理,因此服务器不会阻止连接。

After i click the "Use a New Identify" button on Vidalia, i will get a new proxy ip.
Can tor change ip automatically?

My program needs random proxies, so the server will not block the connection.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

攀登最高峰 2024-11-18 14:07:50

您可以修改“/etc/tor/torrc”或“path/to/your/torbrowser/Data/Tor/torrc”以更快地循环代理:

MaxCircuitDirtiness NUM

随意重用最多 NUM 秒前首次使用的电路,但切勿将新流附加到太旧的电路。 (默认:10 分钟)

You could modify "/etc/tor/torrc" or in "path/to/your/torbrowser/Data/Tor/torrc" to cycle proxies faster:

MaxCircuitDirtiness NUM

Feel free to reuse a circuit that was first used at most NUM seconds ago, but never attach a new stream to a circuit that is too old. (Default: 10 minutes)

山川志 2024-11-18 14:07:50

Tor 每十分钟就会自行创建新电路。请注意,新电路并不一定意味着新 IP,有关详细信息,请参阅 stem 的常见问题解答条目

Tor creates new circuits on its own every ten minutes. Note that a new circuit does not necessarily mean a new IP, for more information see stem's faq entry on this.

×纯※雪 2024-11-18 14:07:50

我发现即使您设置了 MaxCircuitDirtiness,Tor 也不会更新某些网站的 IP(例如 vk.com) 。我不知道他们是否发送了一些标头,或者他们是否只是向 Tor 开发人员支付费用 =D。

为了解决这个问题,较旧的 Tor 版本 (6.5.1) 中有一个“此站点的新 Tor 电路”按钮Ctrl+Shift+L 快捷键。我所做的是打开网站页面并使用 xdotool 终端应用程序:

while true; do 
    xdotool keydown ctrl; 
    xdotool keydown shift; 
    xdotool key l; 
    xdotool keyup ctrl; 
    xdotool keyup shift; 
    sleep 60; 
done

唯一的缺点是您必须始终保持此窗口打开并聚焦=3。

I experienced that Tor does not update ip for some sites (like vk.com) even when you set the MaxCircuitDirtiness. I dunno if it is some headers they send or if they just pay Tor developers for that =D.

To get around that there was a "New Tor Circuit for this Site" button in older Tor versions (6.5.1) with a Ctrl+Shift+L shortcut. What I did was opening a page of the web site and triggering the Ctrl+Shift+L key combiation every minute using xdotool terminal app:

while true; do 
    xdotool keydown ctrl; 
    xdotool keydown shift; 
    xdotool key l; 
    xdotool keyup ctrl; 
    xdotool keyup shift; 
    sleep 60; 
done

The only downside is that you have to keep this window opened and focused the whole time =3.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文