123456789101112131415161718192021222324252627282930313233 |
- # Set the DHCP server to authoritative mode. In this mode it will barge in
- # and take over the lease for any client which broadcasts on the network,
- # whether it has a record of the lease or not. This avoids long timeouts
- # when a machine wakes up on a new network. DO NOT enable this if there's
- # the slightest chance that you might end up accidentally configuring a DHCP
- # server for your campus/company accidentally. The ISC server uses
- # the same option, and this URL provides more information:
- # http://www.isc.org/files/auth.html
- dhcp-authoritative
-
- # Add local-only domains here, queries in these domains are answered
- # from /etc/hosts or DHCP only.
- local=/home/
-
- # Set this (and domain: see below) if you want to have a domain
- # automatically added to simple names in a hosts-file.
- expand-hosts
-
- # Set the domain for dnsmasq. this is optional, but if it is set, it
- # does the following things.
- # 1) Allows DHCP hosts to have fully qualified domain names, as long
- # as the domain part matches this setting.
- # 2) Sets the "domain" DHCP option thereby potentially setting the
- # domain of all systems configured by DHCP
- # 3) Provides the domain part for "expand-hosts"
- domain=home
-
- # 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=/etc/dnsmasq_hosts
|