ns2: query (cache) 'www.domain.com/A/IN' denied

Highway

Verified User
Joined
Nov 1, 2009
Messages
26
Hello everyone.

Since today I see realy strange things in the logs of my NS2.

Code:
Dec 11 23:28:33 ns2 named[21724]: client *.*.*.*#36813: query (cache) 'domain.com/MX/IN' denied
Dec 11 23:28:41 ns2 named[21724]: client *.*.*.*#50860: query (cache) 'domain.com/A/IN' denied
and so on...

The NS1 doen't have problems and I use the default named.conf
Code:
// generated by named-bootconf.pl

options {
        directory "/var/named";
        /*
         * If there is a firewall between you and nameservers you want
         * to talk to, you might need to uncomment the query-source
         * directive below.  Previous versions of BIND always asked
         * questions using port 53, but BIND 8.1 uses an unprivileged
         * port by default.
         */
        // query-source address * port 53;

        allow-transfer { none; };
        allow-recursion { localnets; };
};

//
// a caching only nameserver config
//
controls {
        inet 127.0.0.1 allow { localhost; } keys { rndckey; };
};
zone "." IN {
        type hint;
        file "named.ca";
};

zone "localhost" IN {
        type master;
        file "localhost.zone";
        allow-update { none; };
};

zone "0.0.127.in-addr.arpa" IN {
        type master;
        file "named.local";
        allow-update { none; };
};

include "/etc/rndc.key";


[and here the zones list]

Anyone have seen this and know a solution?

Thanks!
 
Back
Top