Created
January 8, 2014 11:01
-
-
Save hydra35/8315098 to your computer and use it in GitHub Desktop.
bind con
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
options { | |
listen-on port 53 { 127.0.0.1; }; | |
directory "/var/named"; | |
dump-file "/var/named/data/cache_dump.db"; | |
statistics-file "/var/named/data/named_stats.txt"; | |
memstatistics-file "/var/named/data/named_mem_stats.txt"; | |
forwarders { 114.114.114.114; 114.114.115.115; }; | |
forward only; | |
max-ncache-ttl 3; | |
allow-transfer { none; }; | |
allow-update-forwarding { none; }; | |
allow-notify { none; }; | |
}; | |
logging { | |
channel default_debug { | |
file "data/named.run"; | |
severity dynamic; | |
}; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment