From 5f4c75eb28b3d50a35fbf3a86a6d842bce8e72f9 Mon Sep 17 00:00:00 2001 From: Martin Kosek Date: Wed, 22 Jun 2011 08:35:50 +0200 Subject: Allow recursion by default Update name server configuration file to allow any host to issue recursive queries (allow-recursion statement). https://fedorahosted.org/freeipa/ticket/1335 --- install/share/bind.named.conf.template | 3 +++ 1 file changed, 3 insertions(+) diff --git a/install/share/bind.named.conf.template b/install/share/bind.named.conf.template index 71facbaf7..e843b4c00 100644 --- a/install/share/bind.named.conf.template +++ b/install/share/bind.named.conf.template @@ -11,6 +11,9 @@ options { forward first; forwarders {$FORWARDERS}; + // Any host is permitted to issue recursive queries + allow-recursion { any; }; + tkey-gssapi-credential "DNS/$FQDN"; tkey-domain "$REALM"; }; -- cgit