1
0
Fork 0
dns64/README.md

38 lines
777 B
Markdown
Raw Normal View History

2017-08-20 10:05:36 +08:00
# dns64
2017-12-20 15:16:50 +08:00
2017-12-24 05:23:47 +08:00
The *dns64* plugin implements the DNS64 IPv6 transition mechanism. From Wikipedia:
2017-12-20 15:16:50 +08:00
> DNS64 describes a DNS server that when asked for a domain's AAAA records, but only finds
> A records, synthesizes the AAAA records from the A records.
The synthesis in only performed if the query came in via IPv6.
## Syntax
~~~
dns64 {
upstream ADDRESS...
prefix IPV6
}
~~~
* `upstream` specifies the upstream resolver.
* `prefix` specifies any local IPv6 prefix to use, in addition to the well known
prefix (64:ff9b::/96).
## Examples
~~~
dns64 {
upstream 8.8.8.8:53
}
proxy . 8.8.8.8:53
2017-12-20 15:16:50 +08:00
~~~
Perform dns64 AAAA synthesizing using 8.8.8.8 for resolving any A records.
## See Also
<https://en.wikipedia.org/wiki/IPv6_transition_mechanism#DNS64> and RFC 6147.