I'm working with a online development server and I need to change quite frequently the bind9
configuration, but I can't see the changes from my working computer.
What I'm doing is something like this in my server:
root@myserver.com# vi /etc/bind/pri.myserver.com
(change some records, then update serial)
root@myserver.com# service bind9 reload
root@myserver.com# rndc reload
root@myserver.com# dig +nocmd myserver.com any +multiline +noall +answer
What I get is an old version of my bind
configuration, with the old serial number.
I have even tried to add @127.0.0.1
to dig
command without success.
What I'm doing wrong? Why I can't see the new config with the new serial?