谁不想要 2^64 个 IP 的代理池 ? #53
Replies: 27 comments 78 replies
-
送了1000个,现在还是白嫖状态 |
Beta Was this translation helpful? Give feedback.
-
只是允许绑定非本地存在IP,因为整个段可以用,所以等于绑定到任意,但是由于大量NDP报文,有时候会当作是一种flood. |
Beta Was this translation helpful? Give feedback.
-
HE 的 tunnel broker 现在还开放注册吧?给 /48 的,而且是 route 过来的,没有什么 NDP 的问题( |
Beta Was this translation helpful? Give feedback.
-
事实上大部分网站的IPv6限流都是根据整个/48段来的,例如 Let's Encrypt
Google/Facebook也是这样,因此Linode等IDC的IPv6地址访问Google要求人机验证的概率在未登录账号的情况接近100%(以前测试是这样),而IPv4地址则很少出现人机验证。 |
Beta Was this translation helpful? Give feedback.
-
前些日子刚好用openresty的bind_ip实现了,有些网站的waf还是有问题的,偷着乐就行了。 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))
}
proxy_bind $bind_ip;
proxy_pass http://example.com;
proxy_set_header Host example.com;
}
} |
Beta Was this translation helpful? Give feedback.
-
CloudFlare增加IPv6黑名单的时候是以/64段封禁的 https://developers.cloudflare.com/firewall/cf-dashboard/rules-lists/manage-items#add-items-to-a-list |
Beta Was this translation helpful? Give feedback.
-
github的代理池可以用来扫描网站吗 |
Beta Was this translation helpful? Give feedback.
-
not working... |
Beta Was this translation helpful? Give feedback.
-
请问下大佬是怎么自动切换ipv6地址去访问的?我用 |
Beta Was this translation helpful? Give feedback.
-
Vultr 不会限制吗? |
Beta Was this translation helpful? Give feedback.
-
buyvm可以吗? 分配的是一个Link-local IPv6 Subnet, 但是需要手动分配ipv6,最多一次8个 |
Beta Was this translation helpful? Give feedback.
-
为何我用curl 测试 发现返回 ‘Empty reply from server’, 但不挂代理就是正常返回的,求解 |
Beta Was this translation helpful? Give feedback.
-
太棒了,我一直没找到ipv6的这个用法。 |
Beta Was this translation helpful? Give feedback.
-
是否可以实现用户名密码方式的代理池呢,每个用户对应一个IP,对于每个用户来说,分配的代理IP是静态的 |
Beta Was this translation helpful? Give feedback.
-
我已经有 1 台 vultr 服务器 |
Beta Was this translation helpful? Give feedback.
-
openvz 怎么搞 ip a 出来的网卡不是一般的 enp1s0
ip route
这个 ipv6 是有 65536 个子网的意思吗 |
Beta Was this translation helpful? Give feedback.
-
大佬您好 |
Beta Was this translation helpful? Give feedback.
-
Currently Installed: Debian 11 x64 (bullseye) root@vultr:~# ip a
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
inet 127.0.0.1/8 scope host lo
valid_lft forever preferred_lft forever
inet6 ::1/128 scope host
valid_lft forever preferred_lft forever
2: enp1s0: <BROADCAST,MULTICAST,ALLMULTI,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP group default qlen 1000
link/ether 56:00:04:61:18:3d brd ff:ff:ff:ff:ff:ff
inet 45.32.16.212/23 brd 45.32.17.255 scope global dynamic enp1s0
valid_lft 82550sec preferred_lft 82550sec
inet6 2001:19f0:7001:200a:5400:4ff:fe61:183d/64 scope global dynamic mngtmpaddr
valid_lft 2591924sec preferred_lft 604724sec
inet6 fe80::5400:4ff:fe61:183d/64 scope link
valid_lft forever preferred_lft forever
root@vultr:~# ip route add local 2001:19f0:7001:200a::64 dev enp1s0
root@vultr:~# sysctl net.ipv6.ip_nonlocal_bind=1
net.ipv6.ip_nonlocal_bind = 1
root@vultr:~# apt install ndppd
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
The following NEW packages will be installed:
ndppd
0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
Need to get 65.1 kB of archives.
After this operation, 197 kB of additional disk space will be used.
Get:1 https://deb.debian.org/debian bullseye/main amd64 ndppd amd64 0.2.5-6 [65.1 kB]
Fetched 65.1 kB in 0s (369 kB/s)
Selecting previously unselected package ndppd.
(Reading database ... 73902 files and directories currently installed.)
Preparing to unpack .../ndppd_0.2.5-6_amd64.deb ...
Progress: [ 0%] [..........................................................................................................................................................]
Unpacking ndppd (0.2.5-6) ...###################............................................................................................................................]
Setting up ndppd (0.2.5-6) ...#################################################.............................................................................................]
Progress: [ 60%] [############################################################################################..............................................................]
Processing triggers for man-db (2.9.4-2) ...#################################################################################################...............................]
root@vultr:~# systemctl start ndppd
root@vultr:~# curl --interface 2001:19f0:7001:200a::64 ipv6.ip.sb
2001:19f0:7001:200a::64
root@vultr:~# curl --interface 2001:19f0:7001:200a::2 ipv6.ip.sb
curl: (28) Failed to connect to ipv6.ip.sb port 80: Connection timed out 会卡住不知道为什么?? |
Beta Was this translation helpful? Give feedback.
-
阿里云是不是不行 |
Beta Was this translation helpful? Give feedback.
-
很奇怪,手动配置一个IP 然后使用curl --interface 可以访问 |
Beta Was this translation helpful? Give feedback.
-
你们的能访问谷歌吗? 服务器上正常返回
本机不行
好像因为连接没成功就返回了? 还是被gfw给墙了? 能解决吗? |
Beta Was this translation helpful? Give feedback.
-
我用Puppeteer使用代理,会出现net::ERR_CONNECTION_RESET,好像是connect的问题. |
Beta Was this translation helpful? Give feedback.
-
其实 v6 并没有成本,在 RIPE NCC 这样的 RIR 可以不需要任何理由拿一个 /29 的几辈子用不完的 v6 地址段,(前提你得跟我一样是 RIPE NCC 会员);或者你可以去一些网站自己租用 /48 /44 等等 v6地址段 自己通过一些服务商广播,成本更低; |
Beta Was this translation helpful? Give feedback.
-
Warning: Ignores instruction to use SSLv3
any help? |
Beta Was this translation helpful? Give feedback.
-
能不能转换为socks5的代理?http代理的限制太多了 |
Beta Was this translation helpful? Give feedback.
-
使用ip6tables实现了伪随机 |
Beta Was this translation helpful? Give feedback.
-
哈哈 感谢大佬的文章 |
Beta Was this translation helpful? Give feedback.
-
谁不想要 2^64 个 IP 的代理池 ?
哪个小伙子不想要一个拥有 1844 6744 0737 0955 1616 个 IP 的代理池?本文中我将介绍一种充分利用 IPv6 资源来构建代理池的方法
https://zu1k.com/posts/tutorials/http-proxy-ipv6-pool/
Beta Was this translation helpful? Give feedback.
All reactions