From 66c66f52cb1493cc5bda2d7833dfdd1d3c210459 Mon Sep 17 00:00:00 2001 From: Daniel Jakots Date: Tue, 10 Jan 2017 11:26:23 -0500 Subject: [PATCH] page relue --- HowtoOpenBSD/Unbound.md | 17 ++--------------- 1 file changed, 2 insertions(+), 15 deletions(-) diff --git a/HowtoOpenBSD/Unbound.md b/HowtoOpenBSD/Unbound.md index f436a3cb..968c43fc 100644 --- a/HowtoOpenBSD/Unbound.md +++ b/HowtoOpenBSD/Unbound.md @@ -1,15 +1,5 @@ -**Cette page a été importée automatiquement de notre ancien wiki mais n'a pas encore été révisée.** - # HowToOpenBSD/Unbound -Voici la démarche à suivre pour mettre simplement en place un résolver DNS DNSSEC sous OpenBSD. - -~~~ -# cd /var/unbound/etc -# ftp ftp://FTP.INTERNIC.NET/domain/named.cache -# vim /var/unbound/etc/unbound.conf -~~~ - Voici ce que doit contenir le fichier /var/unbound/etc/unbound.conf ~~~ @@ -29,15 +19,12 @@ server: hide-identity: yes hide-version: yes - root-hints: "/var/unbound/etc/named.cache" - auto-trust-anchor-file: "/var/unbound/db/root.key" ~~~ On récupère la clé racine DNSSEC, on met le flag unbound dans rc.conf.local et on démarre le daemon ! ~~~ -# unbound-anchor -a "/var/unbound/db/root.key" -# echo "unbound_flags=\"\"" >> /etc/rc.conf.local -# /etc/rc.d/unbound start +# rcctl enable unbound +# rcctl start unbound ~~~