diff options
author | 2020-03-26 09:22:29 +0100 | |
---|---|---|
committer | 2020-03-26 09:22:29 +0100 | |
commit | 14ca4549818c00c31dbcc861d7b12de2929e014c (patch) | |
tree | bef177b48d977c84010c6450a64ca95bfee26dd3 /plugin | |
parent | 19cfa2960cc415e0e38d36fc9d9325bd636c000e (diff) | |
download | coredns-14ca4549818c00c31dbcc861d7b12de2929e014c.tar.gz coredns-14ca4549818c00c31dbcc861d7b12de2929e014c.tar.zst coredns-14ca4549818c00c31dbcc861d7b12de2929e014c.zip |
Documentation improvements for dns64 plugin (#3777)
Minor typo and improvements to the dns64 plugin README.
Signed-off-by: Ben Kochie <superq@gmail.com>
Diffstat (limited to 'plugin')
-rw-r--r-- | plugin/dns64/README.md | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/plugin/dns64/README.md b/plugin/dns64/README.md index 6b9c0c54b..ef3d90867 100644 --- a/plugin/dns64/README.md +++ b/plugin/dns64/README.md @@ -13,28 +13,30 @@ From Wikipedia: The synthesis in only performed if the query came in via IPv6. +This translation is for IPv6-only networks that have [NAT64](https://en.wikipedia.org/wiki/NAT64). + See [RFC 6147](https://tools.ietf.org/html/rfc6147) for more information. ## Syntax ~~~ dns64 [PREFIX] { - [translate\_all] + [translate_all] } ~~~ -* [PREFIX] defines a custom prefix instead of the default `64:ff9b::/96` +* [PREFIX] defines a custom prefix instead of the default `64:ff9b::/96`. * `translate_all` translates all queries, including respones that have AAAA results. ## Examples -Translate with the default well known prefix. Applies to all queries +Translate with the default well known prefix. Applies to all queries. ~~~ dns64 ~~~ -Use a custom prefix +Use a custom prefix. ~~~ dns64 64:1337::/96 @@ -44,7 +46,7 @@ dns64 { } ~~~ -Enable translation even if an existing AAAA record is present +Enable translation even if an existing AAAA record is present. ~~~ dns64 { |