2017-03-27 16:45:15 +02:00
|
|
|
# {{ ansible_managed }}
|
|
|
|
|
2017-03-26 22:46:35 +02:00
|
|
|
#################################
|
|
|
|
# allow-from If set, only allow these comma separated netmasks to recurse
|
|
|
|
#
|
|
|
|
#allow-from=127.0.0.0/8
|
|
|
|
|
|
|
|
#################################
|
2018-01-18 12:47:56 +01:00
|
|
|
# config-dir Location of configuration directory (recursor.conf)
|
2017-03-26 22:46:35 +02:00
|
|
|
#
|
2018-01-18 12:47:56 +01:00
|
|
|
config-dir=/etc/powerdns
|
2017-03-26 22:46:35 +02:00
|
|
|
|
|
|
|
#################################
|
|
|
|
# dnssec DNSSEC mode: off/process-no-validate (default)/process/log-fail/validate
|
|
|
|
#
|
|
|
|
# dnssec=process-no-validate
|
|
|
|
dnssec=off
|
|
|
|
|
2018-01-18 12:47:56 +01:00
|
|
|
#################################
|
|
|
|
# forward-zones Zones for which we forward queries, comma separated domain=ip pairs
|
|
|
|
#
|
|
|
|
# forward-zones=
|
2018-01-24 01:28:12 +01:00
|
|
|
forward-zones=ffrgb=127.0.0.1:5300,90.10.in-addr.arpa=127.0.0.1:5300
|
2018-01-18 12:47:56 +01:00
|
|
|
|
2017-03-26 22:46:35 +02:00
|
|
|
#################################
|
|
|
|
# local-address IP addresses to listen on, separated by spaces or commas. Also accepts ports.
|
|
|
|
#
|
2020-11-28 23:36:50 +01:00
|
|
|
local-address=127.0.0.1
|
2017-03-26 22:46:35 +02:00
|
|
|
|
|
|
|
#################################
|
|
|
|
# local-port port to listen on
|
|
|
|
#
|
2020-11-28 23:36:50 +01:00
|
|
|
local-port=5353
|
2017-03-26 22:46:35 +02:00
|
|
|
|
2018-08-08 22:34:30 +02:00
|
|
|
#################################
|
|
|
|
# query-local-address6 Send out local IPv6 queries from this address or addresses. Disabled by default, which also disables outgoing
|
|
|
|
#
|
|
|
|
{% if global_ipv6 is defined %}
|
|
|
|
query-local-address6={{ global_ipv6 | ipaddr('address') }}
|
|
|
|
{% endif %}
|
|
|
|
|
2017-03-26 22:46:35 +02:00
|
|
|
#################################
|
|
|
|
# quiet Suppress logging of questions and answers
|
|
|
|
#
|
2018-01-18 12:47:56 +01:00
|
|
|
quiet=yes
|
|
|
|
|
|
|
|
#################################
|
|
|
|
# security-poll-suffix Domain name from which to query security update notifications
|
|
|
|
#
|
|
|
|
# security-poll-suffix=secpoll.powerdns.com.
|
|
|
|
security-poll-suffix=
|
2017-03-26 22:46:35 +02:00
|
|
|
|
|
|
|
#################################
|
|
|
|
# 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
|