mw/chaos: update docs (#1055)

* mw/chaos: update docs

Fix/update the documentation: make the corefile snippets tested and
expand them a little. Show `dig` example.

Fixes #1050

* dot
This commit is contained in:
Miek Gieben 2017-09-10 21:01:49 +01:00 committed by GitHub
parent 2cff9291e5
commit 176e0916fe

View file

@ -19,6 +19,28 @@ following zones: `version.bind`, `version.server`, `authors.bind`, `hostname.bin
## Examples
Specify all the zones in full.
~~~ corefile
version.bind version.server authors.bind hostname.bind id.server {
chaos CoreDNS-001 info@coredns.io
}
~~~
chaos CoreDNS-001 "Miek Gieben" miek@miek.nl
Or just default to `.`:
~~~ corefile
. {
chaos CoreDNS-001 info@coredns.io
}
~~~
And test with `dig`:
~~~ txt
% dig @localhost CH TXT version.bind
...
;; ANSWER SECTION:
version.bind. 0 CH TXT "CoreDNS-001"
...
~~~