-
-
Notifications
You must be signed in to change notification settings - Fork 61
Description
I want to switch my VPS server from Alwyzon to Contabo. With Contabo, I get a VPS server with significantly more resources for the same price. I've been successfully using Vproxy on Alwyzon for a while now, obtaining a random IPv6 address via http://user-session-xxx:pass@127.0.0.1:1080.
Unfortunately, the program doesn't work properly on Contabo.
My VPS is configured to use IPv6, and pinging IPv6 services works.
When I run
for i in {10..15}; do
ip -6 addr add xxxx:c207:2293:8873::$i/64 dev eth0
done
for i in {10..15}; do
echo "Testing ::$i"
curl -6 -s --interface xxxx:c207:2293:8873::$i https://ifconfig.co/ip
done
All addresses are working correctly.
When I run
vproxy run auto -u abc -p abc
curl -x http://abc:abc@127.0.0.1:1080 https://ifconfig.co/ip
or
curl -x http://abc-session-xx:abc@127.0.0.1:1080 https://ifconfig.co/ip
I get:
xxx:c207:2293:8873::15 (not xxx:c207:2293:8873::1, which is rather strange)
no matter what number I use instead of xx,
in the logs:
2025-11-29T13:46:33.324060Z INFO vproxy::server::http: [HTTP] 127.0.0.1:40548 -> www.yyyyyy.fi:443 forwarding connection
2025-11-29T13:46:33.329126Z INFO vproxy::connect: [TCP] connect [yyyu:4700::6812:bc6]:443 via [xxxx:c207:2293:8873::15]:48932
If I run
vproxy run -i xxx:c207:2293:8873::/64 auto -u abc -p abc
curl -x http://abc-session-2:abc@127.0.0.1:1080 https://ifconfig.co/ip
curl: (35) Recv failure: Connection reset by peer
in the kig:
2025-11-29T13:58:12.293619Z INFO vproxy::server::http: [HTTP] 127.0.0.1:53800 -> www.yyyyyy.fi:443 forwarding connection
What could be causing Vproxy not to work properly on Contabo VPS?
Best regards