BIND not starting or logging
Hi,
I recently installed BIND9 on Red Hat AS 2.1, using the following three rpms,
[HTML]bind-utils-9.1.3-2.dag.rh62
bind-devel-9.1.3-2.dag.rh62
bind-9.1.3-2.dag.rh62[/HTML]
The bind files etc have all been installed, I defined one test domain, i followed a howto but once completed when i attempt to start bind, it says it has started but the logs do not show anything and a telnet to localhost 53 responds with connection refused, when i check the status of bind it shows it as not running. it seems it runs the start but then nothing happens!
My named.conf looks like below
[HTML]#
options {
directory "/opt/named";
pid-file "named.pid";
notify yes;
};
logging {
category security { default_syslog; };
category lame-servers { null; };
category queries { null; };
};
# Use with the following in named.conf, adjusting the allow list as needed:
key "rndc-key" {
algorithm hmac-md5;
secret "tauMMYUPBaTNPtYKBXAGZAdtrGVimNkmqWDgGaoj";
};
controls {
inet 127.0.0.1 port 953
allow { 127.0.0.1; } keys { "rndc-key"; };
};
zone "." {
type hint;
file "root.hint";
};
zone "0.0.127.in-addr.arpa" {
type master;
file "localhost.rev";
notify no;
};
zone "test.com" {
type master;
file "test.com";
};
zone "192.200.10.in-addr.arpa" {
type master;
file "192.200.10.in-addr.arpa.dns";
};
[/HTML]
Any help or ideas would be greatly appreciated!
Thanks
w
|