nsd: Add configuration for all of the zones.
[matthijs/servers/drsnuggles.git] / etc / dnsmasq.conf
1 # See "/usr/sbin/dnsmasq --help" or /usr/share/doc/dnsmasq/examples for help on
2 # the options.
3 #
4 # In short, this file configures dnsmasq to use /etc/hosts for resolution of
5 # local names and forward the rest to a set of upstream DNS servers.
6
7 # Never forward plain names (without a dot or domain part)
8 domain-needed
9 # Never forward (reverse queries for) addresses in the non-routed address spaces.
10 bogus-priv
11
12 # Only answer queries in this domain from local sources.
13 local=/.drsnuggles.stderr.nl/
14
15 # Don't get upstream servers from resolv.conf, but use the ones listed here
16 no-resolv
17 server=94.142.247.17
18 server=195.85.225.170
19 server=195.3.164.19
20 server=193.202.115.142
21
22 # Answer queries from our /etc/hosts file
23 expand-hosts
24
25 # This domain is appended to the short names from /etc/hosts
26 domain=drsnuggles.stderr.nl
27
28 # These options might be useful later on
29
30 # Set the cachesize here.
31 #cache-size=150
32
33 # If you want to disable negative caching, uncomment this.
34 #no-negcache
35
36 # Normally responses which come form /etc/hosts and the DHCP lease
37 # file have Time-To-Live set as zero, which conventionally means
38 # do not cache further. If you are happy to trade lower load on the
39 # server for potentially stale date, you can set a time-to-live (in
40 # seconds) here.
41 #local-ttl=
42
43 # For debugging purposes, log each DNS query as it passes through
44 # dnsmasq.
45 # log-queries
46
47 # Include a another lot of configuration options.
48 #conf-file=/etc/dnsmasq.more.conf
49 #conf-dir=/etc/dnsmasq.d