Skip to content

Use 'dns' role

Warning

This documentation should be moved into Ansible role's references

Variable Default Comments (type)
toc_dns_acls [] A list of ACL definitions, which are dicts with fields name and match_list. See below for an example.
toc_dns_allow_query ['localhost'] A list of hosts that are allowed to query this DNS server. Set to ['any'] to allow all hosts
toc_dns_allow_recursion ['any'] Similar to toc_dns_allow_query, this option applies to recursive queries.
toc_dns_check_names [] Check host names for compliance with RFC 952 and RFC 1123 and take the defined action (e.g. warn, ignore, fail).
toc_dns_keys [] A list of binding keys, which are dicts with fields name algorithm and secret. See below for an example.
toc_dns_dnssec_enable true Is DNSSEC enabled
toc_dns_dnssec_validation true Is DNSSEC validation enabled
toc_dns_extra_include_files []
toc_dns_forward_only false If true, BIND is set up as a caching name server
toc_dns_forwarders [] A list of name servers to forward DNS requests to.
toc_dns_listen_ipv4 ['127.0.0.1'] A list of the IPv4 address of the network interface(s) to listen on. Set to ['any'] to listen on all interfaces.
toc_dns_listen_ipv6 ['::1'] A list of the IPv6 address of the network interface(s) to listen on
__toc_dns_log_file data/named.run Path to the log file
bind_other_logs - A list of logging channels to configure, with a separate dict for each domain, with relevant details
- allow_update ['none'] A list of hosts that are allowed to dynamically update this DNS zone.
- also_notify - A list of servers that will receive a notification when the master zone file is reloaded.
- delegate [] Zone delegation. See below this table for examples.
bind_query_log - When defined (e.g. data/query.log), this will turn on the query log
toc_dns_recursion false Determines whether requests for which the DNS server is not authoritative should be forwarded†.
toc_dns_rrset_order random Defines order for DNS round robin (either random or cyclic)
bind_statistcs_channels false if true, BIND is configured with a statistics_channels clause (currently only supports a single inet)
__toc_dns_zone_dir - When defined, sets a custom absolute path to the server directory (for zone files, etc.) instead of the default.
toc_dns_zone_domains n/a A list of domains to configure, with a separate dict for each domain, with relevant details
- allow_update ['none'] A list of hosts that are allowed to dynamically update this DNS zone.
- also_notify - A list of servers that will receive a notification when the master zone file is reloaded.
- delegate [] Zone delegation. See below this table for examples.
- hostmaster_email hostmaster The e-mail address of the system administrator for the zone
- hosts [] Host definitions. See below this table for examples.
- ipv6_networks [] A list of the IPv6 networks that are part of the domain, in CIDR notation (e.g. 2001:db8::/48)
- mail_servers [] A list of dicts (with fields name and preference) specifying the mail servers for this domain.
- name_servers [ansible_hostname] A list of the DNS servers for this domain.
- name example.com The domain name
- networks ['10.0.2'] A list of the networks that are part of the domain
- other_name_servers [] A list of the DNS servers outside of this domain.
- services [] A list of services to be advertised by SRV records
- text [] A list of dicts with fields name and text, specifying TXT records. text can be a list or string.
- naptr [] A list of dicts with fields name, order, pref, flags, service, regex and replacement specifying NAPTR records.
toc_dns_zone_file_mode 0640 The file permissions for the main config file (named.conf)
bind_zone_master_server_ip - (Required) The IP address of the master DNS server.
toc_dns_zone_minimum_ttl 1D Minimum TTL field in the SOA record.
toc_dns_zone_time_to_expire 1W Time to expire field in the SOA record.
toc_dns_zone_time_to_refresh 1D Time to refresh field in the SOA record.
toc_dns_zone_time_to_retry 1H Time to retry field in the SOA record.
toc_dns_zone_ttl 1W Time to Live field in the SOA record.

Best practice for an authoritative name server is to leave recursion turned off. However, for some cases it may be necessary to have recursion turned on.

Minimal variables for a working zone

Even though only variable bind_zone_master_server_ip is required for the role to run without errors, this is not sufficient to get a working zone. In order to set up an authoritative name server that is available to clients, you should also at least define the following variables:

Variable Master Slave
toc_dns_zone_domains V V
- name V V
- networks V V
- name_servers V --
- hosts V --
toc_dns_listen_ipv4 V V
toc_dns_allow_query V V

Domain definitions

toc_dns_zone_domains:
  - name: mydomain.com
    hosts:
      - name: pub01
        ip: 192.0.2.1
        ipv6: 2001:db8::1
        aliases:
          - ns
      - name: '@'
        ip:
          - 192.0.2.2
          - 192.0.2.3
        sshfp:
          - "3 1 1262006f9a45bb36b1aa14f45f354b694b77d7c3"
          - "3 2 e5921564252fe10d2dbafeb243733ed8b1d165b8fa6d5a0e29198e5793f0623b"
        ipv6:
          - 2001:db8::2
          - 2001:db8::3
        aliases:
          - www
      - name: priv01
        ip: 10.0.0.1
      - name: mydomain.net.
        aliases:
          - name: sub01
            type: DNAME
    networks:
      - '192.0.2'
      - '10'
      - '172.16'
    delegate:
      - zone: foo
        dns: 192.0.2.1
    services:
      - name: _ldap._tcp
        weight: 100
        port: 88
        target: dc001
    naptr:
      - name: "sip"
        order: 100
        pref: 10
        flags: "S"
        service: "SIP+D2T"
        regex: "!^.*$!sip:customer-service@example.com!"
        replacement: "_sip._tcp.example.com."

Minimal slave configuration

    toc_dns_listen_ipv4: ['any']
    toc_dns_allow_query: ['any']
    bind_zone_master_server_ip: 192.168.111.222
    toc_dns_zone_domains:
      - name: example.com

Hosts

Host names that this DNS server should resolve can be specified in hosts as a list of dicts with fields name, ip, aliases and sshfp. Aliases can be CNAME (default) or DNAME records.

To allow to surf to http://example.com/, set the host name of your web server to '@' (must be quoted!). In BIND syntax, @ indicates the domain name itself.

If you want to specify multiple IP addresses for a host, add entries to bind_zone_hosts with the same name (e.g. priv01 in the code snippet). This results in multiple A/AAAA records for that host and allows DNS round robin, a simple load balancing technique. The order in which the IP addresses are returned can be configured with role variable toc_dns_rrset_order.

Networks

As you can see, not all hosts are in the same network. This is perfectly acceptable, and supported by this role. All networks should be specified in networks (part of toc_dns_zone_domains.name dict), though, or the host will not get a PTR record for reverse lookup:

Remark that only the network part should be specified here! When specifying a class B IP address (e.g. "172.16") in a variable file, it must be quoted. Otherwise, the Yaml parser will interpret it as a float.

Based on the idea and examples detailed at https://linuxmonk.ch/wordpress/index.php/2016/managing-dns-zones-with-ansible/ for the gdnsd package, the zonefiles are fully idempotent, and thus only get updated if "real" content changes.

Zone delgation

To delegate a zone to a DNS, it is enough to create a NS record (under delegate) which is the equivalent of:

foo IN NS 192.0.2.1

Service records

Service (SRV) records can be added with the services. This should be a list of dicts with mandatory fields name (service name), target (host providing the service), port (TCP/UDP port of the service) and optional fields priority (default = 0) and weight (default = 0).

ACLs

ACLs can be defined like this:

toc_dns_acls:
  - name: acl1
    match_list:
      - 192.0.2.0/24
      - 10.0.0.0/8

The names of the ACLs will be added to the allow-transfer clause in global options.

Binding Keys

Binding keys can be defined like this:

toc_dns_keys:
  - name: master_key
    algorithm: hmac-sha256
    secret: "azertyAZERTY123456"
toc_dns_extra_include_files:
  - "{{ __toc_dns_auth_file }}"
tip: Extra include file must be set as an ansible variable because file is OS dependant

This will be set in a file "{{ __toc_dns_auth_file }} (e.g. /etc/bind/auth_transfer.conf for debian) which have to be added in the list variable toc_dns_extra_include_files