I setup a domain the other day and configured it to use my nameserver ns1.mydomain.net
. Days later, my queries all respond with non-existent domain.
Here's my Bind9 config files
[user@host bind]$ cat named.conf.local
zone "mywebsite.com.au" {
type master;
file "/etc/bind/zones/mywebsite.com.au.db";
};
[user@host bind]$ cat /etc/bind/zones/mywebsite.com.au.db
$TTL 604800
@ IN SOA ns1.mydomain.net. admin.mywebsite.com.au. (
2006081401 ; Serial
7200 ; Refresh
120 ; Retry
2419200 ; Expire
604800 ; Default TTL
)
@ IN NS ns1.mydomain.net
mywebsite.com.au. IN A 1.1.1.1
www IN A 1.1.1.1
The domain, mywebsite.com.au
is using the nameserver ns1.mydomain.net
.
When I manually query the nameserver using nslookup www.mywebsite.com.au ns1.mydomain.net
, it replies correctly.
What could be causing the issue? Could Bind be blocking queries? That seems odd given I can query it directly.