Markus Hauschild
e8dcf169e2
clients in the 172.23.3.0/24 subnet are now provided with dynamic dns entries in the users.binary.kitchen domain - forward entries only
56 lines
1.4 KiB
Django/Jinja
56 lines
1.4 KiB
Django/Jinja
# {{ ansible_managed }}
|
|
|
|
#################################
|
|
# allow-from If set, only allow these comma separated netmasks to recurse
|
|
#
|
|
# allow-from=127.0.0.0/8
|
|
|
|
#################################
|
|
# config-dir Location of configuration directory (recursor.conf)
|
|
#
|
|
config-dir=/etc/powerdns
|
|
|
|
#################################
|
|
# dnssec DNSSEC mode: off/process-no-validate (default)/process/log-fail/validate
|
|
#
|
|
# dnssec=process-no-validate
|
|
dnssec=off
|
|
|
|
#################################
|
|
# local-address IP addresses to listen on, separated by spaces or commas. Also accepts ports.
|
|
#
|
|
local-address=127.0.0.1
|
|
|
|
#################################
|
|
# local-port port to listen on
|
|
#
|
|
local-port=5353
|
|
|
|
#################################
|
|
# query-local-address6 Source IPv6 address for sending queries. IF UNSET, IPv6 WILL NOT BE USED FOR OUTGOING QUERIES
|
|
#
|
|
{% if global_ipv6 is defined %}
|
|
query-local-address6={{ global_ipv6 | ipaddr('address') }}
|
|
{% endif %}
|
|
|
|
#################################
|
|
# quiet Suppress logging of questions and answers
|
|
#
|
|
quiet=yes
|
|
|
|
#################################
|
|
# security-poll-suffix Domain name from which to query security update notifications
|
|
#
|
|
# security-poll-suffix=secpoll.powerdns.com.
|
|
security-poll-suffix=
|
|
|
|
#################################
|
|
# setgid If set, change group id to this gid for more security
|
|
#
|
|
setgid=pdns
|
|
|
|
#################################
|
|
# setuid If set, change user id to this uid for more security
|
|
#
|
|
setuid=pdns
|