Hello,
After updating from 3.0.1.6 to version 3.0.2 using the automated scripted my dns zones stopped to work, somehow the update changed my setup regarding dns disabling mydns and enabling Bind, this would not be a issue if Bind listen from all addresses what is not happening.
So:
The listen-on option specifies IPv4 address to listen on. There is no interface specific option but IP is assigned to specific interface, so by specific IP you can force BIND to listen on certain IP or network interface or In all Interfaces.
Just change /etc/bind/named.conf.options
Specific Interface:
Code:
//listen-on-v6 { any; };
listen-on { xxx.xxx.xxx.2; };
to
All Interfaces:
Code:
//listen-on-v6 { any; };
//listen-on { xxx.xxx.xxx.2; };
listen-on { any; };
Hope that this helps Someone
Recent comments
9 hours 32 min ago
10 hours 32 min ago
14 hours 19 min ago
15 hours 33 min ago
19 hours 9 min ago
1 day 2 hours ago
1 day 11 hours ago
1 day 12 hours ago
2 days 3 hours ago
2 days 6 hours ago