I want to enable BIND logging so that I can monitor how many dns requests my dns server is doing. So in my named.conf file I put the following entries:<br><br>logging{<br>        channel simple_log {<br>                file "/var/log/named/bind.log" versions 3 size 5m;
<br>                severity info;<br>                print-category yes;<br>                print-severity yes;<br>                print-time yes;<br>                };<br>        category default {<br>                simple_log;
<br>                };<br>};<br><br><br>I tried using touch to make the inital file and I have also left the directory listed above empty.<br><br>But nothing goes into the log... What do I need to add to my named.conf file to see any and log all DNS requests?
<br>