Advertisement
Guest User

Untitled

a guest
May 26th, 2016
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. //
  2. // Do any local configuration here
  3. //
  4.  
  5. // Consider adding the 1918 zones here, if they are not used in your
  6. // organization
  7. //include "/etc/bind/zones.rfc1918";
  8.  
  9. zone "myinternalwebsitedomain.com" {
  10. type master;
  11. file "/etc/bind/db.myinternalwebsitedomain.com";
  12. };
  13. zone "quickbase.intuitcdn.net" IN {
  14. type forward;
  15. forwarders {
  16. 8.8.8.8;
  17. };
  18. };
  19. zone "myquickbaseurl.quickbase.com" IN {
  20. type forward;
  21. forwarders {
  22. 8.8.8.8;
  23. };
  24. };
  25. zone "aspnetcdn.com" IN {
  26. type forward;
  27. forwarders {
  28. 8.8.8.8;
  29. };
  30. };
  31. zone "intuit.com" IN {
  32. type forward;
  33. forwarders {
  34. 8.8.8.8;
  35. };
  36. };
  37. zone "intuitcdn.net" IN {
  38. type forward;
  39. forwarders {
  40. 8.8.8.8;
  41. };
  42. };
  43. zone "quickbase.com" IN {
  44. type forward;
  45. forwarders {
  46. 8.8.8.8;
  47. };
  48. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement