<div dir="ltr">dear all<br><br>I have a cpanel box with powerdns as it's DNS server. it's IP address is 192.168.1.101<br><br>Here is it's configuration<br><br>```<br><br>[root@cpaneldev ~]# more /etc/pdns/pdns.conf<br>bind-ignore-broken-records=yes<br>setuid=named<br>setgid=named<br>launch=bind<br>bind-config=/etc/named.conf<br>bind-dnssec-db=/var/cpanel/pdns/dnssec.db<br>local-address-nonexist-fail=no<br>distributor-threads=1<br>disable-axfr=no<br>allow-axfr-ips=192.168.8.79,192.168.8.78<br>also-notify=192.168.8.79,192.168.8.78<br>webserver=yes<br>api=yes<br>webserver-address=127.0.0.1<br>webserver-allow-from=127.0.0.1,::1<br>webserver-password=_DELETED_<br>webserver-port=953<br>api-key=_DELETED_<br>upgrade-unknown-types=1<br>```<br><br>i have some domain hosted in it, created via it's CPANEL webUI<br>the generated bind zone definition: <br>```<br>zone "domain0.bino" {<br>    type master;<br>  file "/var/named/domain0.bino.db";<br>};<br><br>``` <br>and this is a snip of cpanel generated BIND zond db file<br><br>```<br>; cPanel first:116.0.14 (update_time):1710237028 Cpanel::ZoneFile::VERSION:1.3 hostname:<a href="http://cpaneldev.binobox.net">cpaneldev.binobox.net</a> latest:116.0.14<br>; Zone file for domain0.bino<br>$TTL 14400<br>domain0.bino.      86400   IN      SOA     <a href="http://ns1.cpaneldev.binobox.net">ns1.cpaneldev.binobox.net</a>. <a href="http://emailserver.binobox.net">emailserver.binobox.net</a>. 2024031217 3600 1800 1209600 86400<br>domain0.bino.   86400   IN      NS      <a href="http://ns1.cpaneldev.binobox.net">ns1.cpaneldev.binobox.net</a>.<br>domain0.bino.  86400   IN      NS      <a href="http://ns2.cpaneldev.binobox.net">ns2.cpaneldev.binobox.net</a>.<br>```<br>Yes that 192.168.8.78 and 192.168.79 is not in it's "IN NS" record<br><br>Note that 192.168.8.78 and 192.168.8.79 is just a standard BIND9 server.<br><br>here is bind9 config of 192.168.8.79<br>```<br><br>root@risetdns02:~# more /etc/bind/named.conf.options<br><br>options {<br>          directory "/var/cache/bind";<br>          query-source address 192.168.8.79;<br>          notify-source 192.168.8.79;<br>          transfer-source 192.168.8.79;<br>          port 53;<br>          allow-new-zones yes;<br>          listen-on { 192.168.8.79; 127.0.0.1; };<br>          listen-on-v6 { none; };<br>          notify explicit;<br>          recursion no;<br>          allow-transfer { any; };<br>          allow-notify {192.168.1.101;};<br>};<br><br>zone "domain0.bino" {<br>  type secondary;<br>       file "/var/named/domain0.bino.db";<br>  primaries {103.30.144.60;};<br>};<br><br>```<br><br>The initial zone transfer by 192.168.8.78 and 192.168.8.79 is work fine.<br><br>```<br>root@risetdns02:~# dig +short @<a href="http://192.168.8.79">192.168.8.79</a> domain0.bino soa<br><a href="http://ns1.cpaneldev.binobox.net">ns1.cpaneldev.binobox.net</a>. <a href="http://emailserver.binobox.net">emailserver.binobox.net</a>. 2024031214 3600 1800 1209600 86400<br><br>```<br><br>I did some record editing <br>when I check soa at powerdns server, I got<br>```<br>[root@cpaneldev ~]# dig +short @<a href="http://192.168.1.101">192.168.1.101</a> domain0.bino soa<br><a href="http://ns1.cpaneldev.binobox.net">ns1.cpaneldev.binobox.net</a>. <a href="http://emailserver.binobox.net">emailserver.binobox.net</a>. 2024031217 3600 1800 1209600 86400<br>```<br><br>But when I recheck 192.168.8.79, I still got the old SOA series.<br>I check log file of that server, and can't found indication that it receive any notification from powerdns (192.168.1.101)<br><br>I Also do 'journalctl -f' at powerdns box while editing record ... there is no indication that it send any notification.<br><br>Kindly please telme how to check or do to tell this powerdns to notify all record changes to some server listed in "also-notify" event the server IP Address is not in "IN NS" record of that domain.<br><br>sincerely<br>-bino-</div>