49 lines
1.6 KiB
Plaintext
Executable File
49 lines
1.6 KiB
Plaintext
Executable File
# Change this line if you want dns to get its upstream servers from
|
|
# somewhere other that /etc/resolv.conf
|
|
resolv-file=/var/fyi/sys/dns
|
|
|
|
# By default, dnsmasq will send queries to any of the upstream
|
|
# servers it knows about and tries to favour servers to are known
|
|
# to be up. Uncommenting this forces dnsmasq to try each query
|
|
# with each server strictly in the order they appear in
|
|
# /etc/resolv.conf
|
|
strict-order
|
|
|
|
# If you want dnsmasq to change uid and gid to something other
|
|
# than the default, edit the following lines.
|
|
user=root
|
|
#group=
|
|
|
|
# Never forward plain names (without a dot or domain part)
|
|
domain-needed
|
|
|
|
# If you want dnsmasq to listen for DHCP and DNS requests only on
|
|
# specified interfaces (and the loopback) give the name of the
|
|
# interface (eg eth0) here.
|
|
# Repeat the line for more than one interface.
|
|
interface=lo
|
|
|
|
# Or you can specify which interface _not_ to listen on
|
|
#except-interface=
|
|
# Or which to listen on by address (remember to include 127.0.0.1 if
|
|
# you use this.)
|
|
#listen-address=
|
|
# If you want dnsmasq to provide only DNS service on an interface,
|
|
# configure it as shown above, and then use the following line to
|
|
# disable DHCP on it.
|
|
#no-dhcp-interface=
|
|
|
|
# If you don't want dnsmasq to read /etc/hosts, uncomment the
|
|
# following line.
|
|
#no-hosts
|
|
# or if you want it to read another file, as well as /etc/hosts, use
|
|
# this.
|
|
addn-hosts=/var/dnsmasq/hosts
|
|
|
|
# Include a another lot of configuration options.
|
|
#conf-file=/etc/dnsmasq.more.conf
|
|
conf-dir=/var/dnsmasq/conf.d
|
|
|
|
# Dnsmasq picks random ports as source for outbound queries: when this option is given, the ports used will always to larger than that specified.
|
|
min-port=1024
|