options {
- directory "/var/bind";
+ directory "/var/lib/named";
% if isp_dns1 or isp_dns2:
forward first;
zone "." IN {
type hint;
- file "named.ca";
+ file "root.hint";
};
zone "localhost" IN {
type master;
- file "pri/localhost.zone";
+ file "localhost.zone";
allow-update { none; };
notify no;
};
zone "127.in-addr.arpa" IN {
type master;
- file "pri/127.zone";
+ file "127.0.0.zone";
allow-update { none; };
notify no;
};
% for zone in zones:
zone "${zone.name}" IN {
type master;
- file "pri/${zone.name}.zone";
+ file "${zone.name}.zone";
allow-update { none; };
notify no;
};
-% endfor
\ No newline at end of file
+% endfor