I was hoping it would be as easy as that, however, named is returning NORECORDS which causes the page not to be found (as there is no IP to point it at).
I was trying to add a root zone in my named.conf like so:
Code:
zone "." {
type master;
file "/var/named/root.db";
};
and then in root.db:
Code:
$TTL 14400
. 86400 IN SOA ns1.mydomain.com. mydomain.com. ( [serial, refresh, retry, expire, minimum] )
. 86400 IN NS ns1.mydomain.com.
. 86400 IN NS ns2.mydomain.com.
. 14400 IN A [serverip]
but that hasn't worked.