DNS issues (bind 9.2.3)
Hi all,For some reason, BIND refuses to properly reply to dig requests for the zone springloaded.ca. The following is the configuration file for bind and the zone file for springloaded.ca (I've set the TTL and other numbers low to make it catch changes quicker, don't know if this makes a difference).
named.conf:
Code:
options { directory "/var/bind"; // uncomment the following lines to turn on DNS forwarding, // and change the forwarding ip address(es) : //forward first; //forwarders { // 123.123.123.123; // 123.123.123.123; //}; listen-on-v6 { none; }; listen-on { 127.0.0.1; 66.199.183.30; 66.199.183.31; }; // to allow only specific hosts to use the DNS server: //allow-query { // 127.0.0.1; //}; // if you have problems and are behind a firewall: //query-source address * port 53; pid-file "/var/run/named/named.pid"; }; zone "." IN { type hint; file "named.ca"; }; zone "localhost" IN { type master; file "pri/localhost.zone"; allow-update { none; }; notify no; }; zone "127.in-addr.arpa" IN { type master; file "pri/127.zone"; allow-update { none; }; notify no; }; zone "springloaded.ca" IN { type master; file "pri/db.springloaded.ca"; allow-update { none; }; notify no; };
Code:
$ORIGIN springloaded.ca. $TTL 1000 springloaded.ca. IN SOA ns1 admin ( 2005041510 1000 1000 1000 1000 ) springloaded.ca. IN NS ns1.springloaded.ca. springloaded.ca. IN NS ns2.springloaded.ca. ns1 IN A 66.199.183.30 ns2 IN A 66.199.183.31
Thanks in advance!