|
options {
directory "/var/named";
};
zone "." IN {
type hint;
file "named.ca";
};
controls {
inet 127.0.0.1 allow { localhost; } keys { "rndckey"; };
};
zone "abclinux.com" IN {
type master;
file "abclinux.zone";
};
zone "3.16.172.in-addr.arpa" IN {
type master;
file "3.16.172.rev";
};
include "/etc/rndc.key";
[root@cracker named]# service named start
启动 named:
Error in named configuration:
zone abclinux.com/IN: loading from master file abclinux.zone failed: file not found
_default/abclinux.com/IN: file not found
zone 3.16.172.in-addr.arpa/IN: loading from master file 3.16.172.rev failed: file not found
_default/3.16.172.in-addr.arpa/IN: file not found
[失败] |
|