-
Hello, I'm having an issue with IPV6 updates. It doesn't seem that the IPV6 address is being grabbed. Below are my logs, IPV4 is working fine. When I goto https://api64.ipify.org/ I get an ipv6 address. DEBUG configured to fetch IP: v4 or v6: false, v4: true, v6: true I changed the environment variables to do all http providers and DNS providers instead of just https://api64.ipify.org and LOG_CALLER to short instead of hidden. Below is what I'm getting in my log for ipv6... run.go:268: DEBUG configured to fetch IP: v4 or v6: false, v4: true, v6: true |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
I don't think https://api64.ipify.org/ is built-in the program right? It also doesn't look IPv6 exclusive so it won't work if you have both an ipv4 and ipv6 address. Now the other error messages shows your docker isn't configured to support IPv6. Try playing around with docker run --rm alpine:3.15 wget -O- http://ip1.dynupdate6.no-ip.com and adjust your docker daemon settings / container flags until you get your ipv6 address and no error. |
Beta Was this translation helpful? Give feedback.
I don't think https://api64.ipify.org/ is built-in the program right? It also doesn't look IPv6 exclusive so it won't work if you have both an ipv4 and ipv6 address.
Now the other error messages shows your docker isn't configured to support IPv6. Try playing around with
and adjust your docker daemon settings / container flags until you get your ipv6 address and no error.