I'm pretty new to BIND so I was hoping maybe someone can help me understand why I can't resolve. What is wrong?
named.conf
options {
listen-on port 53 { localhost; 10.30.0.10; };
listen-on-v6 port 53 { ::1; };
directory "/var/named";
dump-file "/var/named/data/cache_dump.db";
statistics-file "/var/named/data/named_stats.txt";
memstatistics-file "/var/named/data/named_mem_stats.txt";
allow-query { any; };
recursion no;
version "0";
channel query.log {
file "/var/log/query.log";
severity debug 3;
print-severity yes;
print-time yes;
};
category queries { query.log; };
};
acl "Tele-Subnet" { 10.100.0.0/16; };
view "Tele" {
match-clients { "Tele-Subnet"; };
zone "example.net" IN {
type master;
file "/var/named/example.net.db";
allow-update { none; };
allow-query { any; };
notify yes;
};
};
example.net.db
ORIGIN example.net.
$TTL 86400
example.net. IN SOA 10.30.0.10. admin.example.net. (
2012081901 ; serial number YYMMDDNN
28800 ; Refresh
7200 ; Retry
864000 ; Expire
86400 ; Min TTL
)
IN A 10.30.0.10
NS 10.30.0.10.
NS 10.30.0.10.
backup IN A 10.10.11.230 ; Engine
So when I query the server, I can only see this in the logs:
19-Aug-2012 14:45:09.566 info: client 10.100.0.13#5682: view Telenor: query: backup.example.net IN A + (10.30.0.10)

NSvalues. RFC 1035 says thatNSvalues must be a 'domain name' (hostname), not an IP address. You should create an A record for ns.example.com (or something of the sort) and set theNSto it (plus fix theSOAas well). Whether this would cause your specific problem, I don't know. – Patrick Aug 19 '12 at 17:23