A simple tool to check some sites for their reachability via IPv6.
https://ipv6.lks.li
| templates | ||
| .gitignore | ||
| go.mod | ||
| go.sum | ||
| main.go | ||
| Makefile | ||
| README.md | ||
Are we ready for IPv6 yet? 🤔
This is a small tool that checks a list of domains for their reachability via IPv6.
How is a check performed?
Currently we are determining if a site is "ready for IPv6" by simply checking if we can find a AAAA-DNS record for it. This does not guarantee that the site is actually working correctly via IPv6 but at least we can go somewhere if we only have a IPv6 Address.
This is done by using Go's net.LookupIP function and then checking if the returned list of IPs include a IPv6 address. At the moment, we do not verify if this IPv6 Address actually responds to a request.