Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在亚马逊 EC2 上运行网络蜘蛛,我想每 30 分钟自动更改一次 IP 地址,我不知道该怎么做。
请帮忙
我愿意从第三方租用 IP 或使用亚马逊的现有解决方案
在用户代理对象中附加代理 IP。
open(F,"IP.txt"); while(<F>) { my $ip=$_; $ua->proxy('http', $ip); } close F;