diff options
| author | Lukasz Kasprzak <lukasz.kasprzak@pm.me> | 2026-03-20 19:16:32 +0100 |
|---|---|---|
| committer | Lukasz Kasprzak <lukasz.kasprzak@pm.me> | 2026-03-20 19:16:32 +0100 |
| commit | 39711cf6c2ec5a3b4480dcb4800cc3802bda5bf2 (patch) | |
| tree | 9221704f413398cfb5d5759083b1e7032566820e /straper/db/public/dns/etc-unbound/unbound.conf.d/recursive.conf | |
| parent | 6b59b75c3a294060dea66bdee16ffaf95ae92889 (diff) | |
| download | bin-39711cf6c2ec5a3b4480dcb4800cc3802bda5bf2.tar.gz bin-39711cf6c2ec5a3b4480dcb4800cc3802bda5bf2.zip | |
feat: first fully successful run e2e on straper
Diffstat (limited to 'straper/db/public/dns/etc-unbound/unbound.conf.d/recursive.conf')
| -rw-r--r-- | straper/db/public/dns/etc-unbound/unbound.conf.d/recursive.conf | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/straper/db/public/dns/etc-unbound/unbound.conf.d/recursive.conf b/straper/db/public/dns/etc-unbound/unbound.conf.d/recursive.conf new file mode 100644 index 0000000..cf87fc4 --- /dev/null +++ b/straper/db/public/dns/etc-unbound/unbound.conf.d/recursive.conf @@ -0,0 +1,27 @@ +server: + interface: 127.0.0.1 + port: 5353 + do-ip4: yes + do-ip6: yes + do-udp: yes + do-tcp: yes + + root-hints: "/var/lib/unbound/root.hints" + auto-trust-anchor-file: "/var/lib/unbound/root.key" + + hide-identity: yes + hide-version: yes + harden-glue: yes + harden-dnssec-stripped: yes + use-caps-for-id: yes + + cache-min-ttl: 3600 + cache-max-ttl: 86400 + + access-control: 127.0.0.1/8 allow + access-control: 192.168.33.0/24 allow + + # Fix DNSSEC + prefetch conflict + prefetch: yes + prefetch-key: yes + module-config: "validator iterator" |
