Printer has a wired and wireless name&IP now
[sysconfig/bind.git] / named.conf.default-zones
1 // prime the server with knowledge of the root servers
2 zone "." {
3         type hint;
4         file "/etc/bind/db.root";
5 };
6
7 // be authoritative for the localhost forward and reverse zones, and for
8 // broadcast zones as per RFC 1912
9
10 zone "localhost" {
11         type master;
12         file "/etc/bind/db.local";
13 };
14
15 zone "127.in-addr.arpa" {
16         type master;
17         file "/etc/bind/db.127";
18 };
19
20 zone "0.in-addr.arpa" {
21         type master;
22         file "/etc/bind/db.0";
23 };
24
25 zone "255.in-addr.arpa" {
26         type master;
27         file "/etc/bind/db.255";
28 };
29
30