Guest User

Second Nameserver Configuration

a guest
Nov 7th, 2013
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. -- NAMED.CONF.OPTIONS --
  2.  
  3. options {
  4. directory "/var/cache/bind";
  5.  
  6. forwarders {
  7. 10.10.10.99;
  8. };
  9.  
  10. dnssec-validation auto;
  11.  
  12. auth-nxdomain no; # conform to RFC1035
  13. listen-on-v6 { any; };
  14. };
  15.  
  16.  
  17. -- NAMED.CONF.LOCAL --
  18.  
  19. include "/etc/bind/zones.rfc1918";
  20.  
  21. zone "67.10.10.10.in-addr.arpa" {
  22. type master;
  23. file "/etc/bind/zones/10.10.10.67.rev.db";
  24. };
  25.  
  26. zone "webstage.lan" {
  27. type master;
  28. file "/etc/bind/zones/webstage.lan.db";
  29. };
  30.  
  31. -- WEBSTAGE.LAN.DB --
  32.  
  33. $TTL 36400
  34. webstage.lan. IN SOA ns.webstage.lan. root.webstage.lan. (201311070 10800 180 1209600 36400)
  35.  
  36. ns IN A 10.10.10.67
  37. @ IN NS ns.webstage.lan.
  38.  
  39. @ IN A 10.10.10.67
  40. www IN A 10.10.10.67
Advertisement
Add Comment
Please, Sign In to add comment