First it will help if you post your named.conf
Here is a configuration snippet which will increase you logging verbosity to a big extent;
Quote:
logging {
channel systemlog {
file "/var/log/named.log";
severity debug;
print-time yes;
};
channel audit_log {
file "/var/log/security.log";
severity debug;
print-time yes;
};
channel xfer_log {
file "/var/log/xfer.log";
severity debug;
print-time yes;
};
channel update_debug {
file "/var/log/update.log";
severity debug 3;
print-category yes;
print-severity yes;
print-time yes;
};
category default { systemlog; };
category security { audit_log; systemlog; };
category config { systemlog; };
category xfer-in { xfer_log; };
category xfer-out { xfer_log; };
category notify { audit_log; };
category update { update_debug; };
category queries { audit_log; };
category lame-servers { audit_log; };
};
|
Place it in your named.conf reload/restart and check your logs.