Quote:
Originally Posted by olabode
CONTENT OF NAMED.CONF
Code:
options {
listen-on port 53 { 127.0.0.1; 172.16.115.0/24; 0.0.0.0/0; };
|
I'm pretty sure that listen-on should only contain the IP of the NIC; that is, 172.16.115.20, although the 0.0.0.0 should also work, meaning "any IP" -- shouldn't need the /0 there.
BIND can't listen on IP's it doesn't control or have [172.16.115.0/24], and if you configure it to, I'd expect it to choke.
Also, my named.conf has
Code:
options {
query-source port 53;
listen-on { xxx.xx.xx.xx; };
...
rather than port on the listen-on line, but that may be a version related difference.
use named-checkconf to validate named.conf before restarting/running bind.
I'm also not clear why you're looking at your network config when the error is that bind won't run.