On 25 December 2014 at 08:05, Mohammed Ejaz <me...@cyberia.net.sa> wrote:
> logging {
>
>         channel querylog{
>
>                     file "/var/log/querylog";
>                     severity debug 10;
>                     print-category yes;
>                     print-time yes;
>                     print-severity yes;
>                     };
>
>        category queries { querylog;}; };

OK so you only have query logging enabled, enable additional logging
and it will more than likely point you to the error, BIND is issueing
a SERVFAIL for the query which means it will dump an error message
into syslog (when configured).

Something like the following will pump all other messages to syslog...

logging {
    channel bind_syslog {
        syslog daemon;
        severity info;
    };
    category default { bind_syslog; };
};

Steve
_______________________________________________
Please visit https://lists.isc.org/mailman/listinfo/bind-users to unsubscribe 
from this list

bind-users mailing list
bind-users@lists.isc.org
https://lists.isc.org/mailman/listinfo/bind-users

Reply via email to