I configured the remote access for my nextbox a while ago and everything worked fine. A week ago I found that there was a warning in the “Remote Access” settings of the Nextbox app saying that the reachability test for the IPv6 failed (Resolving works). I am sure that this used to work before. The only change to the system I am aware of is an update for my Fritzbox (6591 Cable). Therefore I set up the DNS Rebind protection once again, rebootet the Fritzbox but didn’t get an improvement.
I have been watching this behaviour over some days and it’s strange that I sometimes can reach a Nextcloud Instance (hopefully mine) when directly putting the IPv6 into my browser but then its a http connection only and the Nextcloud does not let me login. On other days I can’t reach the IPv6 at all.
Since IPv4 is working completely fine I don’t have urgent problems. If anyone has an idea how to fix the IPv6 thing please let me know.
Generally this is hard to debug as the frontend lacks some more information and details of the reachability test, this will be updated with the next release (hopefully somewhere beginning next week)
Hello,
this failed reachability really bugs me and I found myself on a step, I do not dare make.
Using ChatGPT I enabled IPv6 in Docker by creating /etc/docker/daemon.json with:
Docker containers (including NextBox) are only listening on IPv4:
0.0.0.0:80->80/tcp, 0.0.0.0:443->443/tcp
docker network inspect bridge shows “EnableIPv6”: true, but no IPv6 addresses
Since I’m using the default NextBox setup, I don’t want to manually recreate containers or break the integration with nextbox-daemon. I’d like to know:
How can I enable full IPv6 support for NextBox so that it listens on [::]:80 and [::]:443?
Is there a safe, NextBox-supported way to do this without manually overriding the container?
If not, is it acceptable to use a workaround like socat or nginx on the host to forward incoming IPv6 traffic to IPv4 (127.0.0.1:443)?