infra/roles/bind-role/defaults/main.yml
2018-10-02 10:16:46 +04:00

69 lines
1.5 KiB
YAML

# roles/bind/defaults/main.yml
---
bind_log: "data/named.run"
bind_zone_name: "example.com"
bind_zone_networks:
- "10.0.2"
bind_zone_ipv6_networks: []
# List of servers to be notified when the master zone is reloaded.
bind_zone_also_notify: []
# List of acls.
bind_acls: []
# List of IPv4 address of the network interface(s) to listen on. Set to "any"
# to listen on all interfaces
bind_listen_ipv4:
- "127.0.0.1"
# List of IPv6 address of the network interface(s) to listen on.
bind_listen_ipv6:
- "::1"
# List of hosts that are allowed to query this DNS server.
bind_allow_query:
- "localhost"
# List of hosts that are allowed to dynamically update this DNS server
bind_allow_update:
- "none"
# Determines whether recursion should be allowed. Typically, an authoritative
# name server should have recursion turned OFF.
bind_recursion: false
bind_allow_recursion:
- "any"
# Allows BIND to be set up as a caching name server
bind_forward_only: false
# List of name servers to forward DNS requests to.
bind_forwarders: []
# DNS round robin order (random or cyclic)
bind_rrset_order: "random"
# DNSSEC configuration
bind_dnssec_enable: true
bind_dnssec_validation: true
# SOA information
bind_zone_hostmaster_email: "hostmaster"
bind_zone_ttl: "1W"
bind_zone_time_to_refresh: "1D"
bind_zone_time_to_retry: "1H"
bind_zone_time_to_expire: "1W"
bind_zone_minimum_ttl: "1D"
# Zone Resource Records
bind_other_name_servers: []
bind_zone_hosts: []
bind_zone_delegate: []
bind_zone_mail_servers: []
bind_zone_name_servers: []
bind_zone_services: []
bind_zone_text: []