19 lines
432 B
Text
19 lines
432 B
Text
|
/* User customization for BIND named
|
||
|
*
|
||
|
* This file is included in /etc/named.conf and is not modified during IPA
|
||
|
* upgrades.
|
||
|
*
|
||
|
* "options" settings must be configured in /etc/named/ipa-options-ext.conf.
|
||
|
*
|
||
|
* Example: ACL for recursion access:
|
||
|
*
|
||
|
* acl "trusted_network" {
|
||
|
* localnets;
|
||
|
* localhost;
|
||
|
* 234.234.234.0/24;
|
||
|
* 2001::co:ffee:babe:1/48;
|
||
|
* };
|
||
|
*/
|
||
|
|
||
|
acl "trusted_nets" { {{ ipa_trusted_nets|join(';') }} };
|