In order to use IPv6 you probably need to setup things so that your sites can be reached over IPv6. I manage my own DNS server for my domain so decided to make my DNS server reachable over IPv6. This did not sound too complicated.
This required 2 things:
- Ensure that Bind 9 was configured to receive and respond to queries on this address
- Tell my registrar about the IPv6 address of my domain
I checked my DNS software, Bind (v9), and it did not seem to be responding to DNS requests to the IPv6 address. A quick look around indicated that I had to add an extra block in the options section of named.conf
options {
directory "/etc/named";
// required to listen for ipv6 queries
listen-on-v6 { any; };
....
My registrar is gkg.net and I’ve been using them for a long time without trouble. So I went to their configuration page and saw that I could add another ip address for my name server. So here I added my IPv6 address. The software did not complain and I shortly found that querying the .org name servers I could see my AAAA record had been added.
Those 2 changes enabled me to offer DNS resolution for my domain over IPv6.
Tags: AAAA, bind, gkg.net, IPv6, name server
[...] I mentioned in a past article I got my IPv6 connectivity working so started working on setting up various IPv6 services. One of [...]