WIP3
This commit is contained in:
70
roles/bertvv.bind/defaults/main.yml
Normal file
70
roles/bertvv.bind/defaults/main.yml
Normal file
@@ -0,0 +1,70 @@
|
||||
# roles/bind/defaults/main.yml
|
||||
---
|
||||
|
||||
bind_log: "data/named.run"
|
||||
|
||||
bind_zone_domains:
|
||||
- name: "example.com"
|
||||
hostmaster_email: "hostmaster"
|
||||
networks:
|
||||
- "10.0.2"
|
||||
|
||||
# List of acls.
|
||||
bind_acls: []
|
||||
|
||||
# Key binding for slaves
|
||||
bind_dns_keys: []
|
||||
# - name: master_key
|
||||
# algorithm: hmac-sha256
|
||||
# secret: "azertyAZERTY123456"
|
||||
|
||||
# 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"
|
||||
|
||||
# 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"
|
||||
|
||||
# statistics channels configuration
|
||||
bind_statistics_channels: false
|
||||
bind_statistics_port: 8053
|
||||
bind_statistics_host: 127.0.0.1
|
||||
bind_statistics_allow:
|
||||
- "127.0.0.1"
|
||||
|
||||
# DNSSEC configuration
|
||||
bind_dnssec_enable: true
|
||||
bind_dnssec_validation: true
|
||||
|
||||
bind_extra_include_files: []
|
||||
|
||||
# SOA information
|
||||
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"
|
||||
|
||||
# File mode for master zone files (needs to be something like 0660 for dynamic updates)
|
||||
bind_zone_file_mode: "0640"
|
||||
Reference in New Issue
Block a user