DNS64, described in RFC 6147 is a technology to allow IPv6-only clients to receive special IPv6 addresses that are proxied to IPv4 addresses. This proxy service is then called NAT64.
As an example, let’s say an IPv6 only client would want to connect to www.example.com
, it would request the AAAA records for that name.
However, if example.com
does not actually have an IPv6 address, what we do is ‘fake up’ an IPv6 address.
We do this by retrieving the A records for www.example.com
, and translating them to AAAA records.
Elsewhere, a NAT64 device listens on these IPv6 addresses, and extracts the IPv4 address from each packet, and proxies it on.
As of 4.4.0, an efficient implementation is built the recursor and can be enabled via the using the dns64-prefix setting.
Native DNS64 processing will happen after calling a nodata
or nxdomain
Lua hook (if defined), but before calling a postresolve
or postresolve_ffi
Lua hook (if defined).
To consider native DNS64 processing the following conditions must be met:
nodata
or nxdomain
Lua hook did not return true
.AAAA
.AAAA
query was not NXDomain
.NoError
with no relevant answer records, or an error unequal to NXDomain
occurred.Bogus
.Before version 4.8.0, only NoError
results were considers candidates for DNS64 processing.
On earlier versions or for maximum flexibility, DNS64 support is included in the Scripting PowerDNS Recursor. This allows for example to hand out custom IPv6 gateway ranges depending on the location of the requestor, enabling the use of NAT64 services close to the user.
Apart from faking AAAA records, it is also possible to also generate the associated PTR records. This makes sure that reverse lookup of DNS64-generated IPv6 addresses generate the right name. The procedure is similar, a request for an IPv6 PTR is converted into one for the corresponding IPv4 address.
To setup DNS64, with both forward and reverse records, create the following Lua script and save it to a file called dns64.lua
-- this small script implements dns64 without any specials or customization
prefix = "fe80::21b:77ff:0:0"
function nodata ( dq )
if dq.qtype ~= pdns.AAAA then
return false
end -- only AAAA records
-- don't fake AAAA records if DNSSEC validation failed
if dq.validationState == pdns.validationstates.Bogus then
return false
end
dq.followupFunction = "getFakeAAAARecords"
dq.followupPrefix = prefix
dq.followupName = dq.qname
return true
end
-- the ip6.arpa address is the reverse of the prefix address above
function preresolve ( dq )
if dq.qtype == pdns.PTR and dq.qname:isPartOf(newDN("f.f.7.7.b.1.2.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.e.f.ip6.arpa.")) then
dq.followupFunction = "getFakePTRRecords"
dq.followupPrefix = prefix
dq.followupName = dq.qname
return true
end
return false
end
Where fe80::21b:77ff:0:0 is your “Pref64” translation prefix and the “ip6.arpa” string is the reversed form of this Pref64 address. Now ensure your script gets loaded by specifying it with lua-dns-script=dns64.lua.
On our wiki, a user has kindly supplied an example script with support for multiple prefixes.
To enhance DNS64, see the Scripting PowerDNS Recursor documentation.