Difference between revisions of "DNS"
From Fixme.ch
(Created page with "Category:Ongoing_Projects == Description == fixme.ch zone management == Components == * Bind == Participant == * User:Rorist") |
|||
Line 1: | Line 1: | ||
[[Category:Ongoing_Projects]] | [[Category:Ongoing_Projects]] | ||
== Description == | == Description == | ||
− | fixme.ch zone management | + | fixme.ch zone management with Bind9 |
− | == | + | == Configuration == |
− | + | <syntaxhighlight lang="javascript"> | |
+ | logging { | ||
+ | channel update_debug { | ||
+ | file "/var/log/update_debug.log" versions 3 size 100k; | ||
+ | severity debug; | ||
+ | print-severity yes; | ||
+ | print-time yes; | ||
+ | }; | ||
+ | channel security_info { | ||
+ | file "/var/log/security_info.log" versions 1 size 100k; | ||
+ | severity info; | ||
+ | print-severity yes; | ||
+ | print-time yes; | ||
+ | }; | ||
+ | channel bind_log { | ||
+ | file "/var/log/bind.log" versions 3 size 1m; | ||
+ | severity info; | ||
+ | print-category yes; | ||
+ | print-severity yes; | ||
+ | print-time yes; | ||
+ | }; | ||
+ | |||
+ | category default { bind_log; }; | ||
+ | category lame-servers { null; }; | ||
+ | category update { update_debug; }; | ||
+ | category update-security { update_debug; }; | ||
+ | category security { security_info; }; | ||
+ | }; | ||
+ | </syntaxhighlight> | ||
== Participant == | == Participant == | ||
* [[User:Rorist]] | * [[User:Rorist]] |
Revision as of 15:41, 14 March 2012
Description
fixme.ch zone management with Bind9
Configuration
logging { channel update_debug { file "/var/log/update_debug.log" versions 3 size 100k; severity debug; print-severity yes; print-time yes; }; channel security_info { file "/var/log/security_info.log" versions 1 size 100k; severity info; print-severity yes; print-time yes; }; channel bind_log { file "/var/log/bind.log" versions 3 size 1m; severity info; print-category yes; print-severity yes; print-time yes; }; category default { bind_log; }; category lame-servers { null; }; category update { update_debug; }; category update-security { update_debug; }; category security { security_info; }; };