]> git.llucax.com Git - software/pymin.git/blob - services/dns/templates/zoneX.zone
Se Agrega la estructura del DNS
[software/pymin.git] / services / dns / templates / zoneX.zone
1 $TTL 1W
2 @       IN      SOA     ${zone.name}. root.${zone.name}.  (
3                                       2002081601 ; Serial
4                                       28800      ; Refresh
5                                       14400      ; Retry
6                                       604800     ; Expire - 1 week
7                                       86400 )    ; Minimum
8
9 % for ns in nss:
10 @               IN      NS      ${ns.name}.
11 % endfor
12
13 % for mx in mxs:
14 @       IN      MX    ${mx.prio}     ${mx.mx}.
15 % endfor
16
17 % for host in hosts:
18 ${host.name}.   IN      A       ${host.ip}
19 % endfor
20