Guest User

Untitled

a guest
Jan 27th, 2022
251
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. /* User customization for BIND named
  2. *
  3. * This file is included in /etc/named.conf and is not modified during IPA
  4. * upgrades.
  5. *
  6. * It must only contain "options" settings. Any other setting must be
  7. * configured in /etc/named/ipa-ext.conf.
  8. *
  9. * Examples:
  10. * allow-recursion { trusted_network; };
  11. * allow-query-cache { trusted_network; };
  12. */
  13.  
  14. /* turns on IPv6 for port 53, IPv4 is on by default for all ifaces */
  15. listen-on-v6 { any; };
  16.  
  17. /* dnssec-enable is obsolete and 'yes' by default */
  18. dnssec-validation no;
  19.  
  20. forward first;
  21. forwarders { 10.56.0.60; };
  22. allow-recursion { any; };
  23.  
Advertisement
Add Comment
Please, Sign In to add comment