The software can listen and receive requests, but never responds:
$ pm2 logs 2
/home/test/.pm2/logs/64-out.log last 15 lines:
2|64 | ifconfig.co:443 via [####:####:####:####:####:####:####:####]:53169
2|64 | ipv6.ip.sb via ####:####:####:####:####:####:####:####
2|64 | ifconfig.co:443 via [####:####:####:####:####:####:####:####]:27327
2|64 | ipv6.ip.sb via ####:####:####:####:####:####:####:####
2|64 | ipv6.ip.sb via ####:####:####:####:####:####:####:####
2|64 | ifconfig.co:443 via [####:####:####:####:####:####:####:####]:52845
2|64 | ifconfig.co:443 via [####:####:####:####:####:####:####:####]:42326
2|64 | example.com via ####:####:####:####:####:####:####:####
2|64 | example.com via ####:####:####:####:####:####:####:####
2|64 | ipv6.ip.sb via ####:####:####:####:####:####:####:####
$ curl -6 ipv6.ip.sb
####:####:####:####::
$ curl -v -x http://127.0.0.1:51080 http://ipv6.ip.sb
* Trying 127.0.0.1:51080...
* Connected to 127.0.0.1 (127.0.0.1) port 51080
> GET http://ipv6.ip.sb/ HTTP/1.1
> Host: ipv6.ip.sb
> User-Agent: curl/8.5.0
> Accept: */*
> Proxy-Connection: Keep-Alive
>
* Empty reply from server
* Closing connection
curl: (52) Empty reply from server
$ curl -v --proxy http://127.0.0.1:51080 http://ipv6.ip.sb
* Trying 127.0.0.1:51080...
* Connected to 127.0.0.1 (127.0.0.1) port 51080
> GET http://ipv6.ip.sb/ HTTP/1.1
> Host: ipv6.ip.sb
> User-Agent: curl/8.5.0
> Accept: */*
> Proxy-Connection: Keep-Alive
>
I've followed everything in the README and IPv6 is clearly working on the server.
The software can listen and receive requests, but never responds:
I've followed everything in the README and IPv6 is clearly working on the server.