The exact error message is:
named failed. The error was: Stopping named: [FAILED]
Starting named:
Error in named configuration:
/etc/named.conf:42: zone 'dada.com': already exists previous definition: /etc/named.conf:36
[FAILED]
--------------------------------------------------------------------
contents of /etc/named.conf
options {
pid-file "/var/named/chroot/var/run/named/named.pid";
directory "/var/named/chroot/var/named";
auth-nxdomain no;
/*
* If there is a firewall between you and nameservers you want
* to talk to, you might need to uncomment the query-source
* directive below. Previous versions of BIND always asked
* questions using port 53, but BIND 8.1 uses an unprivileged
* port by default.
*/
// query-source address * port 53;
};
//
// a caching only nameserver config
//
zone "." {
type hint;
file "named.ca";
};
zone "0.0.127.in-addr.arpa" {
type master;
file "named.local";
};
zone "1.168.192.in-addr.arpa" {
type master;
file "pri.1.168.192.in-addr.arpa";
};
zone "dada.com" {
type master;
file "pri.dada.com";
};
zone "dada.com" {
type slave;
file "sec.dada.com";
masters { 192.168.1.4; };
};
//// MAKE MANUAL ENTRIES BELOW THIS LINE! ////
|