From b34204c56aeaa480870be265fea243836126861a Mon Sep 17 00:00:00 2001 From: gollum Date: Tue, 21 May 2013 22:30:26 +0200 Subject: [PATCH] Updated Services-DNS-Configuration (markdown) --- Services-DNS-Configuration.md | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/Services-DNS-Configuration.md b/Services-DNS-Configuration.md index 3cf68ea..11e127e 100644 --- a/Services-DNS-Configuration.md +++ b/Services-DNS-Configuration.md @@ -55,4 +55,34 @@ ipv4_alias["dn42_root"] = "172.22.0.53" root_servers["dn42."] = "dn42_root" root_servers["22.172.in-addr.arpa."] = "dn42_root" root_servers["23.172.in-addr.arpa."] = "dn42_root" +``` + +## Unbound +unbound.conf for 172.22.0.53 + +``` +server: + interface: 172.22.0.53@53 + access-control: 0.0.0.0/0 allow + access-control: ::0/0 allow + local-zone: "22.172.in-addr.arpa." nodefault + local-zone: "23.172.in-addr.arpa." nodefault + +stub-zone: + name: "dn42" + stub-prime: yes + stub-addr: 172.22.119.139 + stub-addr: 172.22.119.129 + +stub-zone: + name: "22.172.in-addr.arpa" + stub-prime: yes + stub-addr: 172.22.119.139 + stub-addr: 172.22.119.129 + +stub-zone: + name: "23.172.in-addr.arpa" + stub-prime: yes + stub-addr: 172.22.119.139 + stub-addr: 172.22.119.129 ``` \ No newline at end of file