1
0
Fork 0
A simple tool to check some sites for their reachability via IPv6. https://ipv6.lks.li
Find a file
2024-10-04 16:48:36 +02:00
templates Initial commit 2024-10-04 16:48:36 +02:00
.gitignore Initial commit 2024-10-04 16:48:36 +02:00
go.mod Initial commit 2024-10-04 16:48:36 +02:00
go.sum Initial commit 2024-10-04 16:48:36 +02:00
main.go Initial commit 2024-10-04 16:48:36 +02:00
Makefile Initial commit 2024-10-04 16:48:36 +02:00
README.md Initial commit 2024-10-04 16:48:36 +02:00

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.