Guest User

Untitled

a guest
May 20th, 2018
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.20 KB | None | 0 0
  1. //
  2. // named.conf
  3. //
  4. // Provided by Red Hat bind package to configure the ISC BIND named(8) DNS
  5. // server as a caching only nameserver (as a localhost DNS resolver only).
  6. //
  7. // See /usr/share/doc/bind*/sample/ for example named configuration files.
  8. //
  9.  
  10. options {
  11. listen-on port 53 { 173.255.199.73; };
  12. listen-on-v6 port 53 { ::1; };
  13. directory "/var/named";
  14. dump-file "/var/named/data/cache_dump.db";
  15. statistics-file "/var/named/data/named_stats.txt";
  16. memstatistics-file "/var/named/data/named_mem_stats.txt";
  17. allow-query { any; };
  18. recursion yes;
  19.  
  20. dnssec-enable yes;
  21. dnssec-validation yes;
  22. dnssec-lookaside auto;
  23.  
  24. /* Path to ISC DLV key */
  25. bindkeys-file "/etc/named.iscdlv.key";
  26. };
  27.  
  28. logging {
  29. channel default_debug {
  30. file "data/named.run";
  31. severity dynamic;
  32. };
  33. };
  34.  
  35. zone "." IN {
  36. type hint;
  37. file "named.ca";
  38. };
  39.  
  40. include "/etc/named.rfc1912.zones";
  41.  
  42.  
  43.  
  44.  
  45. ###DNS Kurulumu ####
  46.  
  47. zone "mtsservis.net" IN {
  48. type master;
  49. file "mtsservis.net";
  50. allow-update { none; };
  51. };
  52.  
  53.  
  54. zone "199.255.173.in-addr.arpa" IN {
  55. type master;
  56. file "173.255.199.zone";
  57. allow-update { none; };
  58. };
Add Comment
Please, Sign In to add comment