diff options
author | 2003-02-18 09:41:07 +0000 | |
---|---|---|
committer | 2003-02-18 09:41:07 +0000 | |
commit | 9846659f5a4702ee2db22e75dd7e9a65f3a0b2a1 (patch) | |
tree | 6b559802e0129f81cd2873fa911472c597654cc7 | |
parent | Let kernels compile without DDB, USELEDS, and DIAGNOSTIC. (diff) | |
download | wireguard-openbsd-9846659f5a4702ee2db22e75dd7e9a65f3a0b2a1.tar.xz wireguard-openbsd-9846659f5a4702ee2db22e75dd7e9a65f3a0b2a1.zip |
shut up logging of lame servers
-rw-r--r-- | etc/bind/named-dual.conf | 9 | ||||
-rw-r--r-- | etc/bind/named-simple.conf | 9 |
2 files changed, 16 insertions, 2 deletions
diff --git a/etc/bind/named-dual.conf b/etc/bind/named-dual.conf index e30432fa1e1..0c2f2a97725 100644 --- a/etc/bind/named-dual.conf +++ b/etc/bind/named-dual.conf @@ -1,4 +1,4 @@ -// $OpenBSD: named-dual.conf,v 1.2 2003/01/20 22:47:08 jakob Exp $ +// $OpenBSD: named-dual.conf,v 1.3 2003/02/18 09:41:07 jakob Exp $ // // Example file for a named configuration with dual views, // one processing recursive queries only and one processing @@ -15,6 +15,13 @@ acl clients { options { version ""; // remove this to allow version queries + + listen-on { any; }; + listen-on-v6 { any; }; +}; + +logging { + category lame-servers { null; }; }; view "recursive" { diff --git a/etc/bind/named-simple.conf b/etc/bind/named-simple.conf index 7034f75fb80..25901841806 100644 --- a/etc/bind/named-simple.conf +++ b/etc/bind/named-simple.conf @@ -1,4 +1,4 @@ -// $OpenBSD: named-simple.conf,v 1.2 2003/01/20 22:47:08 jakob Exp $ +// $OpenBSD: named-simple.conf,v 1.3 2003/02/18 09:41:07 jakob Exp $ // // Example file for a simple named configuration, processing both // recursive and authoritative queries using one cache. @@ -15,9 +15,16 @@ acl clients { options { version ""; // remove this to allow version queries + listen-on { any; }; + listen-on-v6 { any; }; + allow-recursion { clients; }; }; +logging { + category lame-servers { null; }; +}; + // Standard zones // zone "." { |