Make IPv6 Proxies?

Frenzied

Senior Member
Joined
Feb 16, 2016
Messages
1,010
Reaction score
726
I'm looking to create IPv6 proxies.

I know that for now, all you need is a linux VPS.

My only issue is that the only script available costs $400, and the dev hasn't been online in ages.

Can anyone help?
 
You can use Ipv4 gateway proxy for IPV6
For example: I was able to use IPV6 on on 1-2 out of many servers of dsl root. Yet proxy and port was ipv4
 
check the download section here. If I recall right there was one listed awhile back
 
Hi.
Care to explain what You mean making proxies ?
Proxies are registered and You just can not make them out of thin air if You want to use them globally. Hmm
Local proxies is other thing.
 
You can use a standard open source proxy solution for Linux such as Squid:

https://www.tecmint.com/install-squid-in-ubuntu/

It's pretty easy to setup but less us know if you get stuck.

Also, if you have an existing VPS, check with the hosting company what kind of IPV6 address space they give you, most will give you a /96 subnet (over 4 billion addresses)
 
Please I need this :( Amazon EC2 Is so hard to setup

this script as reference i cant make it working like that https://github.com/dukaev/ipv4-ipv6-proxy
 
IPv6 is the protocol designed to solve the address shortage and to eventually replace IPv4. Until that happens IPv4 and IPv6 will be used side by side because many existing systems still need IPv4 to function.IPv4 is currently still needed but there are not enough IPv4 addresses. That means that to be able to use IPv4 the addresses have to be shared with NAT. When providing content to the Internet the use of NAT by the internet service provider on the side of the user can have a negative impact.
 
There's an ebook called Proxy Know for sale in this forum. It has detailed guides on how to make IPV6 proxies in bulk. It also comes with scripts where you can make free proxies from Digital Ocean and Vultr VPS. I bought it and I really liked it and found it useful.
 
There's an ebook called Proxy Know for sale in this forum. It has detailed guides on how to make IPV6 proxies in bulk. It also comes with scripts where you can make free proxies from Digital Ocean and Vultr VPS. I bought it and I really liked it and found it useful.

The script is always working? Also does the proxy die because of too much request?
 
Google Squid IPv6 setup guide should be able to find one. Maybe even some scripts on Github
 
Really interested by this aswell.
Found this repo that is quite useful https://github.com/alatas/squid-alpine-ssl

Forked it, updated config, added it to a DigitalOcean droplet with ipv6 enabled, launched the container.
Proxy is working, but unfortunately, even when I add some header rules, I still get IPv4 address when going on whatsmyipaddress websites.

Anyone experienced with this that could help?
 
Really interested by this aswell.
Found this repo that is quite useful https://github.com/alatas/squid-alpine-ssl

Forked it, updated config, added it to a DigitalOcean droplet with ipv6 enabled, launched the container.
Proxy is working, but unfortunately, even when I add some header rules, I still get IPv4 address when going on whatsmyipaddress websites.

Anyone experienced with this that could help?
I have the same problem. did you solve the problem?
 
Start by installing squid https://github.com/squid-cache/squid

Then post your config here and I'll tell you what to do to make it work.

Make sure the VPS you use is IPV6 enabled, and make sure you know the IPV6 gateway.
I downloaded the latest version of squid on ubuntu 20.04 x64 vps server (Vultr). ipv6 is enabled and dedicated on my server. I added the ip with ifconfig. with squid.conf below;
##############################################
forwarded_for delete

acl ipv4_ip_1 localip 45.***.***.**1
acl ipv4_ip_2 localip 45.***.***.**2
acl ipv6_ip_1 localip 2001:****:****:****:****:****:****:***1
acl ipv6_ip_2 localip 2001:****:****:****:****:****:****:***2
acl ipv4_port_1 localport 10000
acl ipv4_port_2 localport 10001

tcp_outgoing_address 2001:****:****:****:****:****:****:***1 ipv4_ip_1 ipv4_port_1
tcp_outgoing_address 2001:****:****:****:****:****:****:***2 ipv4_ip_1 ipv4_port_1

http_access allow ipv4_ip_1 ipv4_port_1
http_access allow ipv4_ip_2 ipv4_port_2

http_access deny all

http_port 45.***.***.**1:10000
http_port 45.***.***.**2:10001
###############################################
After doing the squid configuration, I connected to the proxy and this came across
1596558891113.png


both my ipv4 and ipv6 address appears. i just want it to appear ipv6. I tried to do it with iptables but I couldn't.
I would be glad if you help.
 
I downloaded the latest version of squid on ubuntu 20.04 x64 vps server (Vultr). ipv6 is enabled and dedicated on my server. I added the ip with ifconfig. with squid.conf below;
##############################################
forwarded_for delete

acl ipv4_ip_1 localip 45.***.***.**1
acl ipv4_ip_2 localip 45.***.***.**2
acl ipv6_ip_1 localip 2001:****:****:****:****:****:****:***1
acl ipv6_ip_2 localip 2001:****:****:****:****:****:****:***2
acl ipv4_port_1 localport 10000
acl ipv4_port_2 localport 10001

tcp_outgoing_address 2001:****:****:****:****:****:****:***1 ipv4_ip_1 ipv4_port_1
tcp_outgoing_address 2001:****:****:****:****:****:****:***2 ipv4_ip_1 ipv4_port_1

http_access allow ipv4_ip_1 ipv4_port_1
http_access allow ipv4_ip_2 ipv4_port_2

http_access deny all

http_port 45.***.***.**1:10000
http_port 45.***.***.**2:10001
###############################################
After doing the squid configuration, I connected to the proxy and this came across
1596558891113.png


both my ipv4 and ipv6 address appears. i just want it to appear ipv6. I tried to do it with iptables but I couldn't.
I would be glad if you help.
did you find any awser to yourt probleme where the ipv4 ecause i got the same issue ='(
 
Back
Top