diff options
author | Jonas Smedegaard <dr@jones.dk> | 2004-01-16 16:16:00 +0000 |
---|---|---|
committer | Jonas Smedegaard <dr@jones.dk> | 2004-01-16 16:16:00 +0000 |
commit | 4a5e2b446019689a50eb265e39b4b2dab5482701 (patch) | |
tree | 50fcb877f88f84563d0cdad08092c4d834693f08 /bind | |
parent | c20784f112f776676b043edab8d1e9576f40e7c9 (diff) |
Separate JONES domains from BITBASE ones.
Diffstat (limited to 'bind')
-rw-r--r-- | bind/named.conf.local | 42 |
1 files changed, 34 insertions, 8 deletions
diff --git a/bind/named.conf.local b/bind/named.conf.local index 60d043f..15e64ae 100644 --- a/bind/named.conf.local +++ b/bind/named.conf.local @@ -1,9 +1,35 @@ -// include "/etc/local-COMMON/bind/named_NETx.LOCAL_fake.conf"; -include "/etc/local-COMMON/bind/named_BITBASE_sec.conf"; -include "/etc/local-COMMON/bind/named_HOMEBASE_sec.conf"; -#include "/etc/local-COMMON/bind/named_IDA_sec.conf"; -include "/etc/local-COMMON/bind/named_IDA_pri.conf"; include "/etc/local-COMMON/bind/named_IDA_acl.conf"; -include "/etc/local-COMMON/bind/named_LAB_sec.conf"; -include "/etc/local-COMMON/bind/named_DGIH_sec.conf"; -include "/etc/local-COMMON/bind/named_CONDUCT_sec.conf"; + +view "internal" { + match-clients { localnets; }; + + include "/etc/local-COMMON/bind/named_BASE.conf"; +# include "/etc/local-COMMON/bind/named_JONES_fake.conf"; + include "/etc/local-COMMON/bind/named_JONES_sec.conf"; + include "/etc/local-COMMON/bind/named_BITBASE_sec.conf"; + include "/etc/local-COMMON/bind/named_HOMEBASE_sec.conf"; +# include "/etc/local-COMMON/bind/named_IDA_sec.conf"; + include "/etc/local-COMMON/bind/named_IDA_pri.conf"; + include "/etc/local-COMMON/bind/named_IDA_acl.conf"; + include "/etc/local-COMMON/bind/named_LAB_sec.conf"; + include "/etc/local-COMMON/bind/named_DGIH_sec.conf"; + include "/etc/local-COMMON/bind/named_CONDUCT_sec.conf"; + +}; + +view "external" { + match-clients { any; }; + recursion no; + + include "/etc/local-COMMON/bind/named_BASE.conf"; + include "/etc/local-COMMON/bind/named_JONES_sec.conf"; + include "/etc/local-COMMON/bind/named_BITBASE_sec.conf"; + include "/etc/local-COMMON/bind/named_HOMEBASE_sec.conf"; +# include "/etc/local-COMMON/bind/named_IDA_sec.conf"; + include "/etc/local-COMMON/bind/named_IDA_pri.conf"; + include "/etc/local-COMMON/bind/named_IDA_acl.conf"; + include "/etc/local-COMMON/bind/named_LAB_sec.conf"; + include "/etc/local-COMMON/bind/named_DGIH_sec.conf"; + include "/etc/local-COMMON/bind/named_CONDUCT_sec.conf"; + +}; |