7

I'm using an A DNS record to translate WWW for IPV4 traffic. It looks like this:

DNS records

TYPE: A

HOSTNAME: www.mywebsite.example

VALUE: directs to 192.168.0.1

Do I need to add an AAAA record for WWW to support IPv6 traffic?

Patrick Mevzek
  • 9,273
  • 7
  • 29
  • 42
myNewAccount
  • 519
  • 1
  • 5
  • 14

1 Answers1

12

To answer the question in your headline:

No, it is not necessary to create an AAAA record for your website as long as most traffic runs over IPv4, but I would argue that it probably is beneficial for the deployment of IPv6 to have more sites support the protocol.

To answer the question in your post:

Yes, if you want your site to support IPv6 traffic, clients need a way to translate your domain name to an IPv6 address.

Mikael H
  • 4,868
  • 2
  • 8
  • 15
  • Wow you're right I forgot to include WWW in my post. But yes I meant it like the headline. Awesome I'll add the AAAA for WWW in my DNS Records. – myNewAccount Jan 12 '20 at 21:54
  • 1
    "I would argue that it probably is beneficial for the deployment of IPv6 to have more sites support the protocol." So the problem is not publishing the `AAAA` record that needs to come last. The first problem is to make sure the website is indeed reachable over IPv6, which, sadely, is still not always true in 2020. If the hoster says it is and provide the IPv6 address then you should add the `AAAA` record. If not, and you want IPv6 reachability, you will probably need to change your webhosting company. – Patrick Mevzek Jan 17 '20 at 16:31