xref: /freebsd/contrib/unbound/doc/example.conf (revision 0957b409)
1#
2# Example configuration file.
3#
4# See unbound.conf(5) man page, version 1.8.1.
5#
6# this is a comment.
7
8#Use this to include other text into the file.
9#include: "otherfile.conf"
10
11# The server clause sets the main parameters.
12server:
13	# whitespace is not necessary, but looks cleaner.
14
15	# verbosity number, 0 is least verbose. 1 is default.
16	verbosity: 1
17
18	# print statistics to the log (for every thread) every N seconds.
19	# Set to "" or 0 to disable. Default is disabled.
20	# statistics-interval: 0
21
22	# enable shm for stats, default no.  if you enable also enable
23	# statistics-interval, every time it also writes stats to the
24	# shared memory segment keyed with shm-key.
25	# shm-enable: no
26
27	# shm for stats uses this key, and key+1 for the shared mem segment.
28	# shm-key: 11777
29
30	# enable cumulative statistics, without clearing them after printing.
31	# statistics-cumulative: no
32
33	# enable extended statistics (query types, answer codes, status)
34	# printed from unbound-control. default off, because of speed.
35	# extended-statistics: no
36
37	# number of threads to create. 1 disables threading.
38	# num-threads: 1
39
40	# specify the interfaces to answer queries from by ip-address.
41	# The default is to listen to localhost (127.0.0.1 and ::1).
42	# specify 0.0.0.0 and ::0 to bind to all available interfaces.
43	# specify every interface[@port] on a new 'interface:' labelled line.
44	# The listen interfaces are not changed on reload, only on restart.
45	# interface: 192.0.2.153
46	# interface: 192.0.2.154
47	# interface: 192.0.2.154@5003
48	# interface: 2001:DB8::5
49
50	# enable this feature to copy the source address of queries to reply.
51	# Socket options are not supported on all platforms. experimental.
52	# interface-automatic: no
53
54	# port to answer queries from
55	# port: 53
56
57	# specify the interfaces to send outgoing queries to authoritative
58	# server from by ip-address. If none, the default (all) interface
59	# is used. Specify every interface on a 'outgoing-interface:' line.
60	# outgoing-interface: 192.0.2.153
61	# outgoing-interface: 2001:DB8::5
62	# outgoing-interface: 2001:DB8::6
63
64	# Specify a netblock to use remainder 64 bits as random bits for
65	# upstream queries.  Uses freebind option (Linux).
66	# outgoing-interface: 2001:DB8::/64
67	# Also (Linux:) ip -6 addr add 2001:db8::/64 dev lo
68	# And: ip -6 route add local 2001:db8::/64 dev lo
69	# And set prefer-ip6: yes to use the ip6 randomness from a netblock.
70	# Set this to yes to prefer ipv6 upstream servers over ipv4.
71	# prefer-ip6: no
72
73	# number of ports to allocate per thread, determines the size of the
74	# port range that can be open simultaneously.  About double the
75	# num-queries-per-thread, or, use as many as the OS will allow you.
76	# outgoing-range: 4096
77
78	# permit unbound to use this port number or port range for
79	# making outgoing queries, using an outgoing interface.
80	# outgoing-port-permit: 32768
81
82	# deny unbound the use this of port number or port range for
83	# making outgoing queries, using an outgoing interface.
84	# Use this to make sure unbound does not grab a UDP port that some
85	# other server on this computer needs. The default is to avoid
86	# IANA-assigned port numbers.
87	# If multiple outgoing-port-permit and outgoing-port-avoid options
88	# are present, they are processed in order.
89	# outgoing-port-avoid: "3200-3208"
90
91	# number of outgoing simultaneous tcp buffers to hold per thread.
92	# outgoing-num-tcp: 10
93
94	# number of incoming simultaneous tcp buffers to hold per thread.
95	# incoming-num-tcp: 10
96
97	# buffer size for UDP port 53 incoming (SO_RCVBUF socket option).
98	# 0 is system default.  Use 4m to catch query spikes for busy servers.
99	# so-rcvbuf: 0
100
101	# buffer size for UDP port 53 outgoing (SO_SNDBUF socket option).
102	# 0 is system default.  Use 4m to handle spikes on very busy servers.
103	# so-sndbuf: 0
104
105	# use SO_REUSEPORT to distribute queries over threads.
106	# so-reuseport: yes
107
108	# use IP_TRANSPARENT so the interface: addresses can be non-local
109	# and you can config non-existing IPs that are going to work later on
110	# (uses IP_BINDANY on FreeBSD).
111	# ip-transparent: no
112
113	# use IP_FREEBIND so the interface: addresses can be non-local
114	# and you can bind to nonexisting IPs and interfaces that are down.
115	# Linux only.  On Linux you also have ip-transparent that is similar.
116	# ip-freebind: no
117
118	# EDNS reassembly buffer to advertise to UDP peers (the actual buffer
119	# is set with msg-buffer-size). 1472 can solve fragmentation (timeouts)
120	# edns-buffer-size: 4096
121
122	# Maximum UDP response size (not applied to TCP response).
123	# Suggested values are 512 to 4096. Default is 4096. 65536 disables it.
124	# max-udp-size: 4096
125
126	# buffer size for handling DNS data. No messages larger than this
127	# size can be sent or received, by UDP or TCP. In bytes.
128	# msg-buffer-size: 65552
129
130	# the amount of memory to use for the message cache.
131	# plain value in bytes or you can append k, m or G. default is "4Mb".
132	# msg-cache-size: 4m
133
134	# the number of slabs to use for the message cache.
135	# the number of slabs must be a power of 2.
136	# more slabs reduce lock contention, but fragment memory usage.
137	# msg-cache-slabs: 4
138
139	# the number of queries that a thread gets to service.
140	# num-queries-per-thread: 1024
141
142	# if very busy, 50% queries run to completion, 50% get timeout in msec
143	# jostle-timeout: 200
144
145	# msec to wait before close of port on timeout UDP. 0 disables.
146	# delay-close: 0
147
148	# the amount of memory to use for the RRset cache.
149	# plain value in bytes or you can append k, m or G. default is "4Mb".
150	# rrset-cache-size: 4m
151
152	# the number of slabs to use for the RRset cache.
153	# the number of slabs must be a power of 2.
154	# more slabs reduce lock contention, but fragment memory usage.
155	# rrset-cache-slabs: 4
156
157	# the time to live (TTL) value lower bound, in seconds. Default 0.
158	# If more than an hour could easily give trouble due to stale data.
159	# cache-min-ttl: 0
160
161	# the time to live (TTL) value cap for RRsets and messages in the
162	# cache. Items are not cached for longer. In seconds.
163	# cache-max-ttl: 86400
164
165	# the time to live (TTL) value cap for negative responses in the cache
166	# cache-max-negative-ttl: 3600
167
168	# the time to live (TTL) value for cached roundtrip times, lameness and
169	# EDNS version information for hosts. In seconds.
170	# infra-host-ttl: 900
171
172	# minimum wait time for responses, increase if uplink is long. In msec.
173	# infra-cache-min-rtt: 50
174
175	# the number of slabs to use for the Infrastructure cache.
176	# the number of slabs must be a power of 2.
177	# more slabs reduce lock contention, but fragment memory usage.
178	# infra-cache-slabs: 4
179
180	# the maximum number of hosts that are cached (roundtrip, EDNS, lame).
181	# infra-cache-numhosts: 10000
182
183	# define a number of tags here, use with local-zone, access-control.
184	# repeat the define-tag statement to add additional tags.
185	# define-tag: "tag1 tag2 tag3"
186
187	# Enable IPv4, "yes" or "no".
188	# do-ip4: yes
189
190	# Enable IPv6, "yes" or "no".
191	# do-ip6: yes
192
193	# Enable UDP, "yes" or "no".
194	# do-udp: yes
195
196	# Enable TCP, "yes" or "no".
197	# do-tcp: yes
198
199	# upstream connections use TCP only (and no UDP), "yes" or "no"
200	# useful for tunneling scenarios, default no.
201	# tcp-upstream: no
202
203	# upstream connections also use UDP (even if do-udp is no).
204	# useful if if you want UDP upstream, but don't provide UDP downstream.
205	# udp-upstream-without-downstream: no
206
207	# Maximum segment size (MSS) of TCP socket on which the server
208	# responds to queries. Default is 0, system default MSS.
209	# tcp-mss: 0
210
211	# Maximum segment size (MSS) of TCP socket for outgoing queries.
212	# Default is 0, system default MSS.
213	# outgoing-tcp-mss: 0
214
215	# Idle TCP timeout, connection closed in milliseconds
216	# tcp-idle-timeout: 30000
217
218	# Enable EDNS TCP keepalive option.
219	# edns-tcp-keepalive: no
220
221	# Timeout for EDNS TCP keepalive, in msec.
222	# edns-tcp-keepalive-timeout: 120000
223
224	# Use systemd socket activation for UDP, TCP, and control sockets.
225	# use-systemd: no
226
227	# Detach from the terminal, run in background, "yes" or "no".
228	# Set the value to "no" when unbound runs as systemd service.
229	# do-daemonize: yes
230
231	# control which clients are allowed to make (recursive) queries
232	# to this server. Specify classless netblocks with /size and action.
233	# By default everything is refused, except for localhost.
234	# Choose deny (drop message), refuse (polite error reply),
235	# allow (recursive ok), allow_setrd (recursive ok, rd bit is forced on),
236	# allow_snoop (recursive and nonrecursive ok)
237	# deny_non_local (drop queries unless can be answered from local-data)
238	# refuse_non_local (like deny_non_local but polite error reply).
239	# access-control: 0.0.0.0/0 refuse
240	# access-control: 127.0.0.0/8 allow
241	# access-control: ::0/0 refuse
242	# access-control: ::1 allow
243	# access-control: ::ffff:127.0.0.1 allow
244
245	# tag access-control with list of tags (in "" with spaces between)
246	# Clients using this access control element use localzones that
247	# are tagged with one of these tags.
248	# access-control-tag: 192.0.2.0/24 "tag2 tag3"
249
250	# set action for particular tag for given access control element
251	# if you have multiple tag values, the tag used to lookup the action
252	# is the first tag match between access-control-tag and local-zone-tag
253	# where "first" comes from the order of the define-tag values.
254	# access-control-tag-action: 192.0.2.0/24 tag3 refuse
255
256	# set redirect data for particular tag for access control element
257	# access-control-tag-data: 192.0.2.0/24 tag2 "A 127.0.0.1"
258
259	# Set view for access control element
260	# access-control-view: 192.0.2.0/24 viewname
261
262	# if given, a chroot(2) is done to the given directory.
263	# i.e. you can chroot to the working directory, for example,
264	# for extra security, but make sure all files are in that directory.
265	#
266	# If chroot is enabled, you should pass the configfile (from the
267	# commandline) as a full path from the original root. After the
268	# chroot has been performed the now defunct portion of the config
269	# file path is removed to be able to reread the config after a reload.
270	#
271	# All other file paths (working dir, logfile, roothints, and
272	# key files) can be specified in several ways:
273	# 	o as an absolute path relative to the new root.
274	# 	o as a relative path to the working directory.
275	# 	o as an absolute path relative to the original root.
276	# In the last case the path is adjusted to remove the unused portion.
277	#
278	# The pid file can be absolute and outside of the chroot, it is
279	# written just prior to performing the chroot and dropping permissions.
280	#
281	# Additionally, unbound may need to access /dev/random (for entropy).
282	# How to do this is specific to your OS.
283	#
284	# If you give "" no chroot is performed. The path must not end in a /.
285	# chroot: "/var/unbound"
286
287	# if given, user privileges are dropped (after binding port),
288	# and the given username is assumed. Default is user "unbound".
289	# If you give "" no privileges are dropped.
290	# username: "unbound"
291
292	# the working directory. The relative files in this config are
293	# relative to this directory. If you give "" the working directory
294	# is not changed.
295	# If you give a server: directory: dir before include: file statements
296	# then those includes can be relative to the working directory.
297	# directory: "/var/unbound"
298
299	# the log file, "" means log to stderr.
300	# Use of this option sets use-syslog to "no".
301	# logfile: ""
302
303	# Log to syslog(3) if yes. The log facility LOG_DAEMON is used to
304	# log to. If yes, it overrides the logfile.
305	# use-syslog: yes
306
307	# Log identity to report. if empty, defaults to the name of argv[0]
308	# (usually "unbound").
309	# log-identity: ""
310
311	# print UTC timestamp in ascii to logfile, default is epoch in seconds.
312	# log-time-ascii: no
313
314	# print one line with time, IP, name, type, class for every query.
315	# log-queries: no
316
317	# print one line per reply, with time, IP, name, type, class, rcode,
318	# timetoresolve, fromcache and responsesize.
319	# log-replies: no
320
321	# log the local-zone actions, like local-zone type inform is enabled
322	# also for the other local zone types.
323	# log-local-actions: no
324
325	# print log lines that say why queries return SERVFAIL to clients.
326	# log-servfail: no
327
328	# the pid file. Can be an absolute path outside of chroot/work dir.
329	# pidfile: "/var/unbound/unbound.pid"
330
331	# file to read root hints from.
332	# get one from https://www.internic.net/domain/named.cache
333	# root-hints: ""
334
335	# enable to not answer id.server and hostname.bind queries.
336	# hide-identity: no
337
338	# enable to not answer version.server and version.bind queries.
339	# hide-version: no
340
341	# enable to not answer trustanchor.unbound queries.
342	# hide-trustanchor: no
343
344	# the identity to report. Leave "" or default to return hostname.
345	# identity: ""
346
347	# the version to report. Leave "" or default to return package version.
348	# version: ""
349
350	# the target fetch policy.
351	# series of integers describing the policy per dependency depth.
352	# The number of values in the list determines the maximum dependency
353	# depth the recursor will pursue before giving up. Each integer means:
354	# 	-1 : fetch all targets opportunistically,
355	# 	0: fetch on demand,
356	#	positive value: fetch that many targets opportunistically.
357	# Enclose the list of numbers between quotes ("").
358	# target-fetch-policy: "3 2 1 0 0"
359
360	# Harden against very small EDNS buffer sizes.
361	# harden-short-bufsize: no
362
363	# Harden against unseemly large queries.
364	# harden-large-queries: no
365
366	# Harden against out of zone rrsets, to avoid spoofing attempts.
367	# harden-glue: yes
368
369	# Harden against receiving dnssec-stripped data. If you turn it
370	# off, failing to validate dnskey data for a trustanchor will
371	# trigger insecure mode for that zone (like without a trustanchor).
372	# Default on, which insists on dnssec data for trust-anchored zones.
373	# harden-dnssec-stripped: yes
374
375	# Harden against queries that fall under dnssec-signed nxdomain names.
376	# harden-below-nxdomain: yes
377
378	# Harden the referral path by performing additional queries for
379	# infrastructure data.  Validates the replies (if possible).
380	# Default off, because the lookups burden the server.  Experimental
381	# implementation of draft-wijngaards-dnsext-resolver-side-mitigation.
382	# harden-referral-path: no
383
384	# Harden against algorithm downgrade when multiple algorithms are
385	# advertised in the DS record.  If no, allows the weakest algorithm
386	# to validate the zone.
387	# harden-algo-downgrade: no
388
389	# Sent minimum amount of information to upstream servers to enhance
390	# privacy. Only sent minimum required labels of the QNAME and set QTYPE
391	# to A when possible.
392	# qname-minimisation: yes
393
394	# QNAME minimisation in strict mode. Do not fall-back to sending full
395	# QNAME to potentially broken nameservers. A lot of domains will not be
396	# resolvable when this option in enabled.
397	# This option only has effect when qname-minimisation is enabled.
398	# qname-minimisation-strict: no
399
400	# Aggressive NSEC uses the DNSSEC NSEC chain to synthesize NXDOMAIN
401	# and other denials, using information from previous NXDOMAINs answers.
402	# aggressive-nsec: no
403
404	# Use 0x20-encoded random bits in the query to foil spoof attempts.
405	# This feature is an experimental implementation of draft dns-0x20.
406	# use-caps-for-id: no
407
408	# Domains (and domains in them) without support for dns-0x20 and
409	# the fallback fails because they keep sending different answers.
410	# caps-whitelist: "licdn.com"
411	# caps-whitelist: "senderbase.org"
412
413	# Enforce privacy of these addresses. Strips them away from answers.
414	# It may cause DNSSEC validation to additionally mark it as bogus.
415	# Protects against 'DNS Rebinding' (uses browser as network proxy).
416	# Only 'private-domain' and 'local-data' names are allowed to have
417	# these private addresses. No default.
418	# private-address: 10.0.0.0/8
419	# private-address: 172.16.0.0/12
420	# private-address: 192.168.0.0/16
421	# private-address: 169.254.0.0/16
422	# private-address: fd00::/8
423	# private-address: fe80::/10
424	# private-address: ::ffff:0:0/96
425
426	# Allow the domain (and its subdomains) to contain private addresses.
427	# local-data statements are allowed to contain private addresses too.
428	# private-domain: "example.com"
429
430	# If nonzero, unwanted replies are not only reported in statistics,
431	# but also a running total is kept per thread. If it reaches the
432	# threshold, a warning is printed and a defensive action is taken,
433	# the cache is cleared to flush potential poison out of it.
434	# A suggested value is 10000000, the default is 0 (turned off).
435	# unwanted-reply-threshold: 0
436
437	# Do not query the following addresses. No DNS queries are sent there.
438	# List one address per entry. List classless netblocks with /size,
439	# do-not-query-address: 127.0.0.1/8
440	# do-not-query-address: ::1
441
442	# if yes, the above default do-not-query-address entries are present.
443	# if no, localhost can be queried (for testing and debugging).
444	# do-not-query-localhost: yes
445
446	# if yes, perform prefetching of almost expired message cache entries.
447	# prefetch: no
448
449	# if yes, perform key lookups adjacent to normal lookups.
450	# prefetch-key: no
451
452	# if yes, Unbound rotates RRSet order in response.
453	# rrset-roundrobin: no
454
455	# if yes, Unbound doesn't insert authority/additional sections
456	# into response messages when those sections are not required.
457	# minimal-responses: yes
458
459	# true to disable DNSSEC lameness check in iterator.
460	# disable-dnssec-lame-check: no
461
462	# module configuration of the server. A string with identifiers
463	# separated by spaces. Syntax: "[dns64] [validator] iterator"
464	# module-config: "validator iterator"
465
466	# File with trusted keys, kept uptodate using RFC5011 probes,
467	# initial file like trust-anchor-file, then it stores metadata.
468	# Use several entries, one per domain name, to track multiple zones.
469	#
470	# If you want to perform DNSSEC validation, run unbound-anchor before
471	# you start unbound (i.e. in the system boot scripts).  And enable:
472	# Please note usage of unbound-anchor root anchor is at your own risk
473	# and under the terms of our LICENSE (see that file in the source).
474	# auto-trust-anchor-file: "/var/unbound/root.key"
475
476	# trust anchor signaling sends a RFC8145 key tag query after priming.
477	# trust-anchor-signaling: yes
478
479	# Root key trust anchor sentinel (draft-ietf-dnsop-kskroll-sentinel)
480	# root-key-sentinel: yes
481
482	# File with DLV trusted keys. Same format as trust-anchor-file.
483	# There can be only one DLV configured, it is trusted from root down.
484	# DLV is going to be decommissioned.  Please do not use it any more.
485	# dlv-anchor-file: "dlv.isc.org.key"
486
487	# File with trusted keys for validation. Specify more than one file
488	# with several entries, one file per entry.
489	# Zone file format, with DS and DNSKEY entries.
490	# Note this gets out of date, use auto-trust-anchor-file please.
491	# trust-anchor-file: ""
492
493	# Trusted key for validation. DS or DNSKEY. specify the RR on a
494	# single line, surrounded by "". TTL is ignored. class is IN default.
495	# Note this gets out of date, use auto-trust-anchor-file please.
496	# (These examples are from August 2007 and may not be valid anymore).
497	# trust-anchor: "nlnetlabs.nl. DNSKEY 257 3 5 AQPzzTWMz8qSWIQlfRnPckx2BiVmkVN6LPupO3mbz7FhLSnm26n6iG9N Lby97Ji453aWZY3M5/xJBSOS2vWtco2t8C0+xeO1bc/d6ZTy32DHchpW 6rDH1vp86Ll+ha0tmwyy9QP7y2bVw5zSbFCrefk8qCUBgfHm9bHzMG1U BYtEIQ=="
498	# trust-anchor: "jelte.nlnetlabs.nl. DS 42860 5 1 14D739EB566D2B1A5E216A0BA4D17FA9B038BE4A"
499
500	# File with trusted keys for validation. Specify more than one file
501	# with several entries, one file per entry. Like trust-anchor-file
502	# but has a different file format. Format is BIND-9 style format,
503	# the trusted-keys { name flag proto algo "key"; }; clauses are read.
504	# you need external update procedures to track changes in keys.
505	# trusted-keys-file: ""
506
507	# Ignore chain of trust. Domain is treated as insecure.
508	# domain-insecure: "example.com"
509
510	# Override the date for validation with a specific fixed date.
511	# Do not set this unless you are debugging signature inception
512	# and expiration. "" or "0" turns the feature off. -1 ignores date.
513	# val-override-date: ""
514
515	# The time to live for bogus data, rrsets and messages. This avoids
516	# some of the revalidation, until the time interval expires. in secs.
517	# val-bogus-ttl: 60
518
519	# The signature inception and expiration dates are allowed to be off
520	# by 10% of the signature lifetime (expir-incep) from our local clock.
521	# This leeway is capped with a minimum and a maximum.  In seconds.
522	# val-sig-skew-min: 3600
523	# val-sig-skew-max: 86400
524
525	# Should additional section of secure message also be kept clean of
526	# unsecure data. Useful to shield the users of this validator from
527	# potential bogus data in the additional section. All unsigned data
528	# in the additional section is removed from secure messages.
529	# val-clean-additional: yes
530
531	# Turn permissive mode on to permit bogus messages. Thus, messages
532	# for which security checks failed will be returned to clients,
533	# instead of SERVFAIL. It still performs the security checks, which
534	# result in interesting log files and possibly the AD bit in
535	# replies if the message is found secure. The default is off.
536	# val-permissive-mode: no
537
538	# Ignore the CD flag in incoming queries and refuse them bogus data.
539	# Enable it if the only clients of unbound are legacy servers (w2008)
540	# that set CD but cannot validate themselves.
541	# ignore-cd-flag: no
542
543	# Serve expired responses from cache, with TTL 0 in the response,
544	# and then attempt to fetch the data afresh.
545	# serve-expired: no
546	#
547	# Limit serving of expired responses to configured seconds after
548	# expiration. 0 disables the limit.
549	# serve-expired-ttl: 0
550	#
551	# Set the TTL of expired records to the serve-expired-ttl value after a
552	# failed attempt to retrieve the record from upstream. This makes sure
553	# that the expired records will be served as long as there are queries
554	# for it.
555	# serve-expired-ttl-reset: no
556
557	# Have the validator log failed validations for your diagnosis.
558	# 0: off. 1: A line per failed user query. 2: With reason and bad IP.
559	# val-log-level: 0
560
561	# It is possible to configure NSEC3 maximum iteration counts per
562	# keysize. Keep this table very short, as linear search is done.
563	# A message with an NSEC3 with larger count is marked insecure.
564	# List in ascending order the keysize and count values.
565	# val-nsec3-keysize-iterations: "1024 150 2048 500 4096 2500"
566
567	# instruct the auto-trust-anchor-file probing to add anchors after ttl.
568	# add-holddown: 2592000 # 30 days
569
570	# instruct the auto-trust-anchor-file probing to del anchors after ttl.
571	# del-holddown: 2592000 # 30 days
572
573	# auto-trust-anchor-file probing removes missing anchors after ttl.
574	# If the value 0 is given, missing anchors are not removed.
575	# keep-missing: 31622400 # 366 days
576
577	# debug option that allows very small holddown times for key rollover,
578	# otherwise the RFC mandates probe intervals must be at least 1 hour.
579	# permit-small-holddown: no
580
581	# the amount of memory to use for the key cache.
582	# plain value in bytes or you can append k, m or G. default is "4Mb".
583	# key-cache-size: 4m
584
585	# the number of slabs to use for the key cache.
586	# the number of slabs must be a power of 2.
587	# more slabs reduce lock contention, but fragment memory usage.
588	# key-cache-slabs: 4
589
590	# the amount of memory to use for the negative cache (used for DLV).
591	# plain value in bytes or you can append k, m or G. default is "1Mb".
592	# neg-cache-size: 1m
593
594	# By default, for a number of zones a small default 'nothing here'
595	# reply is built-in.  Query traffic is thus blocked.  If you
596	# wish to serve such zone you can unblock them by uncommenting one
597	# of the nodefault statements below.
598	# You may also have to use domain-insecure: zone to make DNSSEC work,
599	# unless you have your own trust anchors for this zone.
600	# local-zone: "localhost." nodefault
601	# local-zone: "127.in-addr.arpa." nodefault
602	# local-zone: "1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.ip6.arpa." nodefault
603	# local-zone: "onion." nodefault
604	# local-zone: "test." nodefault
605	# local-zone: "invalid." nodefault
606	# local-zone: "10.in-addr.arpa." nodefault
607	# local-zone: "16.172.in-addr.arpa." nodefault
608	# local-zone: "17.172.in-addr.arpa." nodefault
609	# local-zone: "18.172.in-addr.arpa." nodefault
610	# local-zone: "19.172.in-addr.arpa." nodefault
611	# local-zone: "20.172.in-addr.arpa." nodefault
612	# local-zone: "21.172.in-addr.arpa." nodefault
613	# local-zone: "22.172.in-addr.arpa." nodefault
614	# local-zone: "23.172.in-addr.arpa." nodefault
615	# local-zone: "24.172.in-addr.arpa." nodefault
616	# local-zone: "25.172.in-addr.arpa." nodefault
617	# local-zone: "26.172.in-addr.arpa." nodefault
618	# local-zone: "27.172.in-addr.arpa." nodefault
619	# local-zone: "28.172.in-addr.arpa." nodefault
620	# local-zone: "29.172.in-addr.arpa." nodefault
621	# local-zone: "30.172.in-addr.arpa." nodefault
622	# local-zone: "31.172.in-addr.arpa." nodefault
623	# local-zone: "168.192.in-addr.arpa." nodefault
624	# local-zone: "0.in-addr.arpa." nodefault
625	# local-zone: "254.169.in-addr.arpa." nodefault
626	# local-zone: "2.0.192.in-addr.arpa." nodefault
627	# local-zone: "100.51.198.in-addr.arpa." nodefault
628	# local-zone: "113.0.203.in-addr.arpa." nodefault
629	# local-zone: "255.255.255.255.in-addr.arpa." nodefault
630	# local-zone: "0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.ip6.arpa." nodefault
631	# local-zone: "d.f.ip6.arpa." nodefault
632	# local-zone: "8.e.f.ip6.arpa." nodefault
633	# local-zone: "9.e.f.ip6.arpa." nodefault
634	# local-zone: "a.e.f.ip6.arpa." nodefault
635	# local-zone: "b.e.f.ip6.arpa." nodefault
636	# local-zone: "8.b.d.0.1.0.0.2.ip6.arpa." nodefault
637	# And for 64.100.in-addr.arpa. to 127.100.in-addr.arpa.
638
639	# If unbound is running service for the local host then it is useful
640	# to perform lan-wide lookups to the upstream, and unblock the
641	# long list of local-zones above.  If this unbound is a dns server
642	# for a network of computers, disabled is better and stops information
643	# leakage of local lan information.
644	# unblock-lan-zones: no
645
646	# The insecure-lan-zones option disables validation for
647	# these zones, as if they were all listed as domain-insecure.
648	# insecure-lan-zones: no
649
650	# a number of locally served zones can be configured.
651	# 	local-zone: <zone> <type>
652	# 	local-data: "<resource record string>"
653	# o deny serves local data (if any), else, drops queries.
654	# o refuse serves local data (if any), else, replies with error.
655	# o static serves local data, else, nxdomain or nodata answer.
656	# o transparent gives local data, but resolves normally for other names
657	# o redirect serves the zone data for any subdomain in the zone.
658	# o nodefault can be used to normally resolve AS112 zones.
659	# o typetransparent resolves normally for other types and other names
660	# o inform acts like transparent, but logs client IP address
661	# o inform_deny drops queries and logs client IP address
662	# o always_transparent, always_refuse, always_nxdomain, resolve in
663	#   that way but ignore local data for that name
664	# o noview breaks out of that view towards global local-zones.
665	#
666	# defaults are localhost address, reverse for 127.0.0.1 and ::1
667	# and nxdomain for AS112 zones. If you configure one of these zones
668	# the default content is omitted, or you can omit it with 'nodefault'.
669	#
670	# If you configure local-data without specifying local-zone, by
671	# default a transparent local-zone is created for the data.
672	#
673	# You can add locally served data with
674	# local-zone: "local." static
675	# local-data: "mycomputer.local. IN A 192.0.2.51"
676	# local-data: 'mytext.local TXT "content of text record"'
677	#
678	# You can override certain queries with
679	# local-data: "adserver.example.com A 127.0.0.1"
680	#
681	# You can redirect a domain to a fixed address with
682	# (this makes example.com, www.example.com, etc, all go to 192.0.2.3)
683	# local-zone: "example.com" redirect
684	# local-data: "example.com A 192.0.2.3"
685	#
686	# Shorthand to make PTR records, "IPv4 name" or "IPv6 name".
687	# You can also add PTR records using local-data directly, but then
688	# you need to do the reverse notation yourself.
689	# local-data-ptr: "192.0.2.3 www.example.com"
690
691	# tag a localzone with a list of tag names (in "" with spaces between)
692	# local-zone-tag: "example.com" "tag2 tag3"
693
694	# add a netblock specific override to a localzone, with zone type
695	# local-zone-override: "example.com" 192.0.2.0/24 refuse
696
697	# service clients over TLS (on the TCP sockets), with plain DNS inside
698	# the TLS stream.  Give the certificate to use and private key.
699	# default is "" (disabled).  requires restart to take effect.
700	# tls-service-key: "path/to/privatekeyfile.key"
701	# tls-service-pem: "path/to/publiccertfile.pem"
702	# tls-port: 853
703
704	# request upstream over TLS (with plain DNS inside the TLS stream).
705	# Default is no.  Can be turned on and off with unbound-control.
706	# tls-upstream: no
707
708	# Certificates used to authenticate connections made upstream.
709	# tls-cert-bundle: ""
710
711	# Add system certs to the cert bundle, from the Windows Cert Store
712	# tls-win-cert: no
713
714	# Also serve tls on these port numbers (eg. 443, ...), by listing
715	# tls-additional-port: portno for each of the port numbers.
716
717	# DNS64 prefix. Must be specified when DNS64 is use.
718	# Enable dns64 in module-config.  Used to synthesize IPv6 from IPv4.
719	# dns64-prefix: 64:ff9b::0/96
720
721	# DNS64 ignore AAAA records for these domains and use A instead.
722	# dns64-ignore-aaaa: "example.com"
723
724	# ratelimit for uncached, new queries, this limits recursion effort.
725	# ratelimiting is experimental, and may help against randomqueryflood.
726	# if 0(default) it is disabled, otherwise state qps allowed per zone.
727	# ratelimit: 0
728
729	# ratelimits are tracked in a cache, size in bytes of cache (or k,m).
730	# ratelimit-size: 4m
731	# ratelimit cache slabs, reduces lock contention if equal to cpucount.
732	# ratelimit-slabs: 4
733
734	# 0 blocks when ratelimited, otherwise let 1/xth traffic through
735	# ratelimit-factor: 10
736
737	# override the ratelimit for a specific domain name.
738	# give this setting multiple times to have multiple overrides.
739	# ratelimit-for-domain: example.com 1000
740	# override the ratelimits for all domains below a domain name
741	# can give this multiple times, the name closest to the zone is used.
742	# ratelimit-below-domain: com 1000
743
744	# global query ratelimit for all ip addresses.
745	# feature is experimental.
746	# if 0(default) it is disabled, otherwise states qps allowed per ip address
747	# ip-ratelimit: 0
748
749	# ip ratelimits are tracked in a cache, size in bytes of cache (or k,m).
750	# ip-ratelimit-size: 4m
751	# ip ratelimit cache slabs, reduces lock contention if equal to cpucount.
752	# ip-ratelimit-slabs: 4
753
754	# 0 blocks when ip is ratelimited, otherwise let 1/xth traffic through
755	# ip-ratelimit-factor: 10
756
757	# Limit the number of connections simultaneous from a netblock
758	# tcp-connection-limit: 192.0.2.0/24 12
759
760	# what is considered a low rtt (ping time for upstream server), in msec
761	# low-rtt: 45
762	# select low rtt this many times out of 1000. 0 means the fast server
763	# select is disabled.  prefetches are not sped up.
764	# low-rtt-permil: 0
765
766	# Specific options for ipsecmod. unbound needs to be configured with
767	# --enable-ipsecmod for these to take effect.
768	#
769	# Enable or disable ipsecmod (it still needs to be defined in
770	# module-config above). Can be used when ipsecmod needs to be
771	# enabled/disabled via remote-control(below).
772	# ipsecmod-enabled: yes
773	#
774	# Path to executable external hook. It must be defined when ipsecmod is
775	# listed in module-config (above).
776	# ipsecmod-hook: "./my_executable"
777	#
778	# When enabled unbound will reply with SERVFAIL if the return value of
779	# the ipsecmod-hook is not 0.
780	# ipsecmod-strict: no
781	#
782	# Maximum time to live (TTL) for cached A/AAAA records with IPSECKEY.
783	# ipsecmod-max-ttl: 3600
784	#
785	# Reply with A/AAAA even if the relevant IPSECKEY is bogus. Mainly used for
786	# testing.
787	# ipsecmod-ignore-bogus: no
788	#
789	# Domains for which ipsecmod will be triggered. If not defined (default)
790	# all domains are treated as being whitelisted.
791	# ipsecmod-whitelist: "example.com"
792	# ipsecmod-whitelist: "nlnetlabs.nl"
793
794
795# Python config section. To enable:
796# o use --with-pythonmodule to configure before compiling.
797# o list python in the module-config string (above) to enable.
798# o and give a python-script to run.
799python:
800	# Script file to load
801	# python-script: "/var/unbound/ubmodule-tst.py"
802
803# Remote control config section.
804remote-control:
805	# Enable remote control with unbound-control(8) here.
806	# set up the keys and certificates with unbound-control-setup.
807	# control-enable: no
808
809	# what interfaces are listened to for remote control.
810	# give 0.0.0.0 and ::0 to listen to all interfaces.
811	# set to an absolute path to use a unix local name pipe, certificates
812	# are not used for that, so key and cert files need not be present.
813	# control-interface: 127.0.0.1
814	# control-interface: ::1
815
816	# port number for remote control operations.
817	# control-port: 8953
818
819	# for localhost, you can disable use of TLS by setting this to "no"
820	# For local sockets this option is ignored, and TLS is not used.
821	# control-use-cert: "yes"
822
823	# unbound server key file.
824	# server-key-file: "/var/unbound/unbound_server.key"
825
826	# unbound server certificate file.
827	# server-cert-file: "/var/unbound/unbound_server.pem"
828
829	# unbound-control key file.
830	# control-key-file: "/var/unbound/unbound_control.key"
831
832	# unbound-control certificate file.
833	# control-cert-file: "/var/unbound/unbound_control.pem"
834
835# Stub zones.
836# Create entries like below, to make all queries for 'example.com' and
837# 'example.org' go to the given list of nameservers. list zero or more
838# nameservers by hostname or by ipaddress. If you set stub-prime to yes,
839# the list is treated as priming hints (default is no).
840# With stub-first yes, it attempts without the stub if it fails.
841# Consider adding domain-insecure: name and local-zone: name nodefault
842# to the server: section if the stub is a locally served zone.
843# stub-zone:
844#	name: "example.com"
845#	stub-addr: 192.0.2.68
846#	stub-prime: no
847#	stub-first: no
848#	stub-tls-upstream: no
849#	stub-no-cache: no
850# stub-zone:
851#	name: "example.org"
852#	stub-host: ns.example.com.
853
854# Forward zones
855# Create entries like below, to make all queries for 'example.com' and
856# 'example.org' go to the given list of servers. These servers have to handle
857# recursion to other nameservers. List zero or more nameservers by hostname
858# or by ipaddress. Use an entry with name "." to forward all queries.
859# If you enable forward-first, it attempts without the forward if it fails.
860# forward-zone:
861# 	name: "example.com"
862# 	forward-addr: 192.0.2.68
863# 	forward-addr: 192.0.2.73@5355  # forward to port 5355.
864# 	forward-first: no
865# 	forward-tls-upstream: no
866#	forward-no-cache: no
867# forward-zone:
868# 	name: "example.org"
869# 	forward-host: fwd.example.com
870
871# Authority zones
872# The data for these zones is kept locally, from a file or downloaded.
873# The data can be served to downstream clients, or used instead of the
874# upstream (which saves a lookup to the upstream).  The first example
875# has a copy of the root for local usage.  The second serves example.org
876# authoritatively.  zonefile: reads from file (and writes to it if you also
877# download it), master: fetches with AXFR and IXFR, or url to zonefile.
878# With allow-notify: you can give additional (apart from masters) sources of
879# notifies.
880# auth-zone:
881#	name: "."
882#	for-downstream: no
883#	for-upstream: yes
884#	fallback-enabled: yes
885#	master: b.root-servers.net
886#	master: c.root-servers.net
887#	master: e.root-servers.net
888#	master: f.root-servers.net
889#	master: g.root-servers.net
890#	master: k.root-servers.net
891# auth-zone:
892#	name: "example.org"
893#	for-downstream: yes
894#	for-upstream: yes
895#	zonefile: "example.org.zone"
896
897# Views
898# Create named views. Name must be unique. Map views to requests using
899# the access-control-view option. Views can contain zero or more local-zone
900# and local-data options. Options from matching views will override global
901# options. Global options will be used if no matching view is found.
902# With view-first yes, it will try to answer using the global local-zone and
903# local-data elements if there is no view specific match.
904# view:
905#	name: "viewname"
906#	local-zone: "example.com" redirect
907#	local-data: "example.com A 192.0.2.3"
908#	local-data-ptr: "192.0.2.3 www.example.com"
909#	view-first: no
910# view:
911#	name: "anotherview"
912#	local-zone: "example.com" refuse
913
914# DNSCrypt
915# Caveats:
916# 1. the keys/certs cannot be produced by unbound. You can use dnscrypt-wrapper
917#   for this: https://github.com/cofyc/dnscrypt-wrapper/blob/master/README.md#usage
918# 2. dnscrypt channel attaches to an interface. you MUST set interfaces to
919#   listen on `dnscrypt-port` with the follo0wing snippet:
920# server:
921#     interface: 0.0.0.0@443
922#     interface: ::0@443
923#
924# Finally, `dnscrypt` config has its own section.
925# dnscrypt:
926#     dnscrypt-enable: yes
927#     dnscrypt-port: 443
928#     dnscrypt-provider: 2.dnscrypt-cert.example.com.
929#     dnscrypt-secret-key: /path/unbound-conf/keys1/1.key
930#     dnscrypt-secret-key: /path/unbound-conf/keys2/1.key
931#     dnscrypt-provider-cert: /path/unbound-conf/keys1/1.cert
932#     dnscrypt-provider-cert: /path/unbound-conf/keys2/1.cert
933
934# CacheDB
935# Enable external backend DB as auxiliary cache.  Specify the backend name
936# (default is "testframe", which has no use other than for debugging and
937# testing) and backend-specific options.  The 'cachedb' module must be
938# included in module-config.
939# cachedb:
940#     backend: "testframe"
941#     # secret seed string to calculate hashed keys
942#     secret-seed: "default"
943#
944#     # For "redis" backend:
945#     # redis server's IP address or host name
946#     redis-server-host: 127.0.0.1
947#     # redis server's TCP port
948#     redis-server-port: 6379
949#     # timeout (in ms) for communication with the redis server
950#     redis-timeout: 100
951