Hello ;
Not worry about that. In my opinion, that is an faulty information. Under Debian, Bind9 listens on all interface normally. See your
/etc/named.conf.options for that issue.
Code:
ispcp:/etc/bind# netstat -plunt | grep named
tcp 0 0 192.168.0.130:53 0.0.0.0:* LISTEN 14391/named
tcp 0 0 127.0.0.1:53 0.0.0.0:* LISTEN 14391/named
tcp 0 0 127.0.0.1:953 0.0.0.0:* LISTEN 14391/named
tcp6 0 0 :::53 :::* LISTEN 14391/named
tcp6 0 0 ::1:953 :::* LISTEN 14391/named
udp 0 0 192.168.0.130:53 0.0.0.0:* 14391/named
udp 0 0 127.0.0.1:53 0.0.0.0:* 14391/named
udp6 0 0 :::53
Adn After adding a new Ip (
192.168.0.140) (from the frontend as admin user), and restarted Bind9 :
Code:
ispcp:/etc/bind# netstat -plunt | grep named
tcp 0 0 192.168.0.140:53 0.0.0.0:* LISTEN 16649/named
tcp 0 0 192.168.0.130:53 0.0.0.0:* LISTEN 16649/named
tcp 0 0 127.0.0.1:53 0.0.0.0:* LISTEN 16649/named
tcp 0 0 127.0.0.1:953 0.0.0.0:* LISTEN 16649/named
tcp6 0 0 :::53 :::* LISTEN 16649/named
tcp6 0 0 ::1:953 :::* LISTEN 16649/named
udp 0 0 192.168.0.140:53 0.0.0.0:* 16649/named
udp 0 0 192.168.0.130:53 0.0.0.0:* 16649/named
udp 0 0 127.0.0.1:53 0.0.0.0:* 16649/named
udp6 0 0 :::53 :::* 16649/named
Conclusion : Not worry about that.