Named zone rewrite throws Sockets::getServerIPv6: Script error

Oh sorry, you don't know that part.
This is what I'm talking about, but we had a pm exchange in which I pointed that out and then he told me he in fact had a /64 subnet and he also did not understand where that /96 came from. ;)
Unless I understood him wrongly? @Niels90 can you confirm or did you just add a /64 to test and you have in fact a /96?
we added /64 and that doesn't work either
 
Your scope global on ipv6 is set deprecated so the kernel will not choose those ip's for outgoing traffic so the check: ip -6 route get 2001:db8:: will fail as there is no selectable route.

Try this tho delete an address and add it as a preferred
ip -6 addr del 2a06:900:201:bb01::951/96 dev eno1
ip -6 addr add 2a06:900:201:bb01::951/96 dev eno1 preferred_lft forever

Next try bash -x /usr/local/directadmin/scripts/get_main_ip6.sh again.
The server removed the ip -6 route with a kernel update, we added it again and it works again
 
Back
Top