diff options
author | 2010-01-17 19:45:34 +0000 | |
---|---|---|
committer | 2010-01-17 19:45:34 +0000 | |
commit | 5747b4f5f841b76b45a631b89c6eabb8df508af2 (patch) | |
tree | d59d597c15fb10d383f81b73c660cc594d9028a6 | |
parent | regen with {autoconf,autoheader}-2.62 (diff) | |
download | wireguard-openbsd-5747b4f5f841b76b45a631b89c6eabb8df508af2.tar.xz wireguard-openbsd-5747b4f5f841b76b45a631b89c6eabb8df508af2.zip |
add template nsd.conf (with examples)
-rw-r--r-- | etc/nsd.conf | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/etc/nsd.conf b/etc/nsd.conf new file mode 100644 index 00000000000..069c5d61bd2 --- /dev/null +++ b/etc/nsd.conf @@ -0,0 +1,24 @@ +# $OpenBSD: nsd.conf,v 1.3 2010/01/17 19:45:34 jakob Exp $ + +server: + hide-version: yes + +## tsig key example +#key: +# name: "key1" +# algorithm: hmac-sha256 +# secret: "m83H2x8R0zbDf3yRKhrqgw==" + +## master zone example +#zone: +# name: "example.com" +# zonefile: "example.com" +# notify: 192.0.2.1 NOKEY +# provide-xfr: 192.0.2.1 NOKEY + +## slave zone example +#zone: +# name: "example.net" +# zonefile: "example.net" +# allow-notify: 192.0.2.2 key1 +# request-xfr: 192.0.2.2 key1 |