I am running a DNS server in my local network, using bind9 on ubuntu server.
Since the last ubuntu update, lookups from other machines on that DNS server time out :
DNS request timed out. Timeout was 2 seconds.
I suspect that this might have something to do with the serial given to the DNS entry, since I had similar problems with it before.
@ IN SOA dns.advitum. root.dns.advitum. (
1506061620 ; Serial
604800 ; Refresh
86400 ; Retry
2419200 ; Expire
604800 ) ; Negatve Cache TTL
I am no expert on bind configuration, but as I understand, the serial is used to communicate if the configuration has changed, with the biggest serial being the most recent version of the dns entry.
So my question is: How can I find out the serial of the most current dns record, so I can check that the above record with the above file is the most recent or raise the serial accordingly?
To clarify: On the dns machine itself, the lookup works as expected (advitum.
is resolved to 192.168.0.2, which is the correct address). On other machines trying to look anything up on that DNS, the lookup times out.