]> git.llucax.com Git - software/pymin.git/blob - doc/config/dns/named.conf
Mod de los parametros de inicializacion de vrrp.
[software/pymin.git] / doc / config / dns / named.conf
1 Servidor DNS
2
3
4 Variables:
5
6
7 %(isp_dns1) = Servidor primario del proveedor de internet
8 %(isp_dns2) = Servidor secundario del proveedor de internet
9 %(bind_addr1) = Direccion ip donde va a "escuchar" el servidor de dns
10 %(bind_addr2) = Direccion ip donde va a "escuchar" el servidor de dns
11 %(zone1) = "Zona" o dominio que va a manejar este DNS
12 %(zone2) = "Zona" o dominio que va a manejar este DNS
13
14 -----------8<-------------------------------------------------------------
15 options {
16         directory "/var/bind";
17
18         forward first;
19         forwarders {
20                 %(isp_dns1);
21                 %(isp_dns2);
22         };
23
24         listen-on-v6 { none; };
25         listen-on {
26                 %(bind_addr1);
27                 %(bind_addr2);
28         };
29
30         pid-file "/var/run/named/named.pid";
31 };
32
33 zone "." IN {
34         type hint;
35         file "named.ca";
36 };
37
38 zone "localhost" IN {
39         type master;
40         file "pri/localhost.zone";
41         allow-update { none; };
42         notify no;
43 };
44
45 zone "127.in-addr.arpa" IN {
46         type master;
47         file "pri/127.zone";
48         allow-update { none; };
49         notify no;
50 };
51
52 zone "%(zone1)" IN {
53         type master;
54         file "pri/%(zone1).zone";
55         allow-update { none; };
56         notify no;
57 };
58
59 zone "%(zone1)" IN {
60         type master;
61         file "pri/%(zone1).zone.ptr";
62         allow-update { none; };
63         notify no;
64 };
65
66 zone "%(zone2)" IN {
67         type master;
68         file "pri/%(zone2).zone";
69         allow-update { none; };
70         notify no;
71 };
72
73 zone "%(zone2)" IN {
74         type master;
75         file "pri/%(zone2).zone.ptr";
76         allow-update { none; };
77         notify no;
78 };
79