User Tools

Site Tools


ubuntu:bind:logging

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
ubuntu:bind:logging [2020/12/09 18:17] peterubuntu:bind:logging [2020/12/09 18:33] (current) – [Syslog Channel] peter
Line 17: Line 17:
 A channel may be defined to go to: A channel may be defined to go to:
  
-  * file +  * **file**  The file pathname must be specified. Optionally, you can specify how many versions of the file can exist at one time and how big the file may grow. 
-  * to syslog +  * **syslog**  places logging into syslog. 
-  * to null+  * **null**  For messages you want to throw away.
  
 </WRAP> </WRAP>
Line 47: Line 47:
 ---- ----
  
-===== Configure BIND9 to send debug messages related to DNS queries to a separate file =====+===== File Channel =====
  
-We need to configure a **channel** to specify which file to send the messages to, and a **category**.+<code> 
 +logging{ 
 +  channel my_file { 
 +    file "log.msgs" versions 3 size 10k; 
 +    severity dynamic; 
 +  };  
 +}; 
 +</code>
  
-In this example, the category will log all queries. +----
  
-Edit /etc/bind/named.conf.local and add the following:+===== Syslog Channel =====
  
-<file bash /etc/bind/named.conf.local>+<code>
 logging { logging {
-    channel query.log +  channel my_syslog 
-        file "/var/log/named/query.log"; +    syslog local0; // send to syslog's local0 facility
-        severity debug 3+    severity info// only send severity info and higher 
-    }; +  }; 
-    category queries { query.log; };+
 }; };
-</file>+</code>
  
 <WRAP info> <WRAP info>
-**NOTE:**  Channels allow you to filter by message severity. Here is the list of severities:+**NOTE:**  The **facility** can be specified to be any of the following: kern, user, mail, daemon, auth, syslog, lpr, news, uucp, cron, authpriv, ftp, local0, local1, local2, local3, local4, local5, local6, or local7.  
 + 
 +The default is **daemon**, and this is the recommended option to be used. 
 + 
 +</WRAP> 
 + 
 +<WRAP info> 
 +**NOTE:**  Channels allow you to filter by message severity. Here is the list of **severities**:
  
   * critical   * critical
Line 76: Line 89:
   * dynamic   * dynamic
 </WRAP> </WRAP>
 +
 +----
 +
 +===== Configure BIND9 to send debug messages related to DNS queries to a separate file =====
 +
 +We need to configure a **channel** to specify which file to send the messages to, and a **category**.
 +
 +In this example, the category will log all queries. 
 +
 +Edit /etc/bind/named.conf.local and add the following:
 +
 +<file bash /etc/bind/named.conf.local>
 +logging {
 +    channel query.log {
 +        file "/var/log/named/query.log";
 +        severity debug 3;
 +    };
 +    category queries { query.log; };
 +};
 +</file>
  
 Since the named daemon runs as the bind user the **/var/log/named** directory must be created and the ownership changed: Since the named daemon runs as the bind user the **/var/log/named** directory must be created and the ownership changed:
ubuntu/bind/logging.1607537837.txt.gz · Last modified: 2020/12/09 18:17 by peter

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki