hi,
bind isn't listen on port 53 for the server ip, it's listen only in 127.0.0.1
i found a temporary solution, just edit /etc/named.conf and add in "listen-on" line your extra ip manualy.
but it isn't the right way to fix it, because every new ip that you add from DA panel you'll have to edit this file again.
bind isn't listen on port 53 for the server ip, it's listen only in 127.0.0.1
netstat -nap | grep :53
tcp 0 0 ::1:53 :::* LISTEN 8384/named
udp 0 0 ::1:53 :::* 8384/named
i found a temporary solution, just edit /etc/named.conf and add in "listen-on" line your extra ip manualy.
listen-on port 53 { 127.0.0.1; 1.1.1.1; 2.2.2.2; 3.3.3.3; };
but it isn't the right way to fix it, because every new ip that you add from DA panel you'll have to edit this file again.