sudevdev

named.conf

Jun 30th, 2013
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.40 KB | None | 0 0
  1. $ cat /etc/named.conf
  2.  
  3. ##################Rocks generated entries###################################
  4.  
  5. acl rocks-trusted {
  6. 10.1.0.0/16;
  7. 127.0.0.1;
  8. };
  9.  
  10. options {
  11. directory "/var/named";
  12. dump-file "/var/named/data/cache_dump.db";
  13. statistics-file "/var/named/data/named_stats.txt";
  14. forwarders { 192.168.254.2;192.168.254.3; };
  15. allow-recursion { rocks-trusted; };
  16. allow-query { rocks-trusted; };
  17. };
  18.  
  19. controls {
  20. inet 127.0.0.1 allow { localhost; } keys { rndckey; };
  21. };
  22.  
  23. zone "." IN {
  24. type hint;
  25. file "named.ca";
  26. };
  27.  
  28. zone "0.0.127.in-addr.arpa" IN {
  29. type master;
  30. file "named.localhost";
  31. allow-update { none; };
  32. };
  33.  
  34. zone "local" {
  35. type master;
  36. notify no;
  37. file "private.domain";
  38. };
  39.  
  40.  
  41. zone "1.10.in-addr.arpa" {
  42. type master;
  43. notify no;
  44. file "reverse.private.domain.1.10";
  45. };
  46.  
  47. ############################## eucalyptus entries ########################
  48.  
  49. #Imported from /etc/named.conf.local
  50. zone "csedcluster.nitc.ac.in" {
  51. type master;
  52. file "/etc/named/db.csedcluster.nitc.ac.in";
  53. };
  54.  
  55. #forward eucadomain.yourdomain ie eucalyptus.192.168.41.203
  56. zone "eucalyptus.csedcluster.nitc.ac.in" {
  57. type forward;
  58. forward only;
  59. forwarders { 192.168.41.203; };
  60. };
  61.  
  62.  
  63.  
  64.  
  65. include "/etc/rndc.key";
Advertisement
Add Comment
Please, Sign In to add comment