source: genesis/dns/confs/rambo/named.conf@ 7218

Last change on this file since 7218 was 4317, checked in by dirkx, 20 years ago

Fixing line types

  • Property svn:eol-style set to native
File size: 989 bytes
Line 
1options {
2 directory "/home/dns";
3 pid-file "/var/run/named.pid";
4 listen-on { 127.0.0.1; 172.21.16.99; };
5};
6
7/* **************************************************
8 * *
9 * Wireless Leiden Config *
10 * *
11 ****************************************************/
12
13view "dns_master" {
14 match-clients { 172.18.8.66; 172.17.160.66; };
15
16 zone "wLeiden.NET" {
17 type master;
18 file "master/wLeiden.NET.extern";
19 allow-transfer { any; };
20 also-notify { 172.18.8.66; 172.17.160.66; };
21 };
22
23 /* Debatable if our reverse lookups should be visible on the internet */
24 include "rev.conf";
25};
26
27view "dns_wleiden" {
28 match-clients { any; };
29
30 zone "wleiden.net" {
31 type master;
32 file "master/wLeiden.NET.intern";
33 allow-transfer { any; };
34 notify yes;
35 };
36
37 include "rev.conf";
38 include "slaves.conf";
39};
40
Note: See TracBrowser for help on using the repository browser.