I have two Ubuntu 12.04LTS servers on different locations:
ns1.vidrih.info points to master DNS server with IP 93.103.164.154 and
ns2.vidrih.info points to slave DNS server with IP 46.150.36.23
named.conf.local include for domain is:
zone "vidrih.info" {
type master;
file "/var/lib/bind/vidrih.info.hosts";
allow-update { none; };
allow-transfer { none; };
};
My zone file is:
$ORIGIN .
$TTL 86400
vidrih.info IN SOA ns1.vidrih.info. nejc.vidrih.gmail.com. (
2013042201 ; serial
3600 ; refrenski
1800 ; retry
604800 ; expire
86400 ; minimum
)
NS ns1.vidrih.info.
NS ns2.vidrih.info.
A 93.103.164.154
I get an error on http://dnscheck.pingdom.com:
Name server ns1.vidrih.info does not answer queries over TCP or UDP.
syslog looks fine: server named[3871]: zone vidrih.info/IN: loaded serial 2013042201 Port 53 is opened.
What am I doing wrong, what am I missing?