摘要
正在生成中……
这是一种可以绕过单ip限制的方法,在某些情况下可替代 ip 代理池,除非waf开启ipv6网段屏蔽。但cloudflare通常以/64屏蔽网段
server {
listen 80;
server_name localhost;
location / {
set_by_lua_block $bind_ip {
return '2001:1111:1111:1111:1111:1111:1111:' .. string.format('%x', math.random(1, 1000)):two_men_holding_hands:
}
proxy_bind $bind_ip;
proxy_pass http://example.com;
proxy_set_header Host example.com;
}
}
来源原文下的评论
谁不想要 2^64 个 IP 的代理池 ? - zu1k
参考资料:
- https://zu1k.com/posts/tutorials/http-proxy-ipv6-pool/