blob: 24c0c51ca95f9a6d5b9ba542a12864270d8de812 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
options {
directory "/var/named";
};
zone "." {
type hint;
file "root.cache";
};
zone "localhost" {
type master;
file "pri/localhost";
};
zone "0.0.127.in-addr.arpa" {
type master;
file "pri/127.0.0";
};
zone "rc.vix.com" {
type stub;
file "stub/rc.vix.com";
masters { 204.152.187.21; };
};
zone "186.152.204.in-addr.arpa" {
type stub;
file "stub/204.152.186";
masters { 204.152.187.21; };
};
zone "187.152.204.in-addr.arpa" {
type stub;
file "stub/204.152.187";
masters { 204.152.187.21; };
};
|