Check the /etc/named.conf
Where are the zone files are being kept ?
Does it look like :
Code:
zone "localhost" IN {
type master;
file "/var/named/localhost.zone";
allow-update { none; };
};
or
Code:
zone "localhost" IN {
type master;
file "/etc/localhost.zone";
allow-update { none; };
};
Is the ...
Code:
options {
directory "/var/named";
/*
* 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;
};
Changed to ..
Code:
options {
directory "/etc";
/*
* 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;
};