Replies: 1 comment 1 reply
-
Thanks for sharing! Also important: check if your clients get the correct ipv6 address of your machine where blocky runs. I use Fritzbox with DHCP as router. There are different settings necessary to set the ipv4 and ipv6 addresses which must be pushed to the client. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi!
I am running docker as a docker container (via docker-compose) and it took me many days to figure out, how to enable IPv6 traffic to and from blocky. At first I didn't notice it, but after configuring IPv6 upstream servers I kept getting error messages that the IPv6 address could not be bound/used. Then I found out that IPv6 and docker are not really best friends. Below is how I got blocky, docker and IPv6 working for me.
Please chose an indivdual fd::: address.
Create a new fd:::/64 network. You can use https://simpledns.plus/private-ipv6 for that.
For blocky add a new network to docker. Let's name it "ipv6net_1".
docker network create --driver bridge --ipv6 --subnet fd01:4c51:244f:5697::/64 --subnet 172.30.0.0/24 ipv6net_1 --attachable
Please use your personal IPv6/IPv4 subnet!
A "docker-compose up" should give you a blocky container with working outbound IPv6 traffic. :)
Beta Was this translation helpful? Give feedback.
All reactions