diff options
author | Jakob Schlyter <jakob@cvs.openbsd.org> | 2003-09-22 20:44:33 +0000 |
---|---|---|
committer | Jakob Schlyter <jakob@cvs.openbsd.org> | 2003-09-22 20:44:33 +0000 |
commit | a2087dc33da4df2094de4c255d8baffa0780c90b (patch) | |
tree | d20116c5dc3a6ae6f7e230edb0d3727da030d454 /etc/bind/named-dual.conf | |
parent | 45f3cd9996c279213cadff0af74255a4cb2b4d91 (diff) |
set .com/.net to delegation-only
Diffstat (limited to 'etc/bind/named-dual.conf')
-rw-r--r-- | etc/bind/named-dual.conf | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/etc/bind/named-dual.conf b/etc/bind/named-dual.conf index a7a7c346f41..6b828e95e3d 100644 --- a/etc/bind/named-dual.conf +++ b/etc/bind/named-dual.conf @@ -1,4 +1,4 @@ -// $OpenBSD: named-dual.conf,v 1.4 2003/02/27 14:44:04 todd Exp $ +// $OpenBSD: named-dual.conf,v 1.5 2003/09/22 20:44:32 jakob Exp $ // // Example file for a named configuration with dual views, // one processing recursive queries only and one processing @@ -60,6 +60,14 @@ view "recursive" { file "standard/loopback6.int"; allow-transfer { localhost; }; }; + + zone "com" { + type delegation-only; + }; + + zone "net" { + type delegation-only; + }; }; view "authoritative" { |