blob: eb2cf3e9c4dda1d6388926359359d1200eda2fc7 [file] [log] [blame]
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001.TH DNSMASQ 8
2.SH NAME
3dnsmasq \- A lightweight DHCP and caching DNS server.
4.SH SYNOPSIS
5.B dnsmasq
6.I [OPTION]...
7.SH "DESCRIPTION"
8.BR dnsmasq
Simon Kelley34d0a362013-01-02 11:40:56 +00009is a lightweight DNS, TFTP, PXE, router advertisement and DHCP server. It is intended to provide
Simon Kelley5aabfc72007-08-29 11:24:47 +010010coupled DNS and DHCP service to a LAN.
Simon Kelley9e4abcb2004-01-22 19:47:41 +000011.PP
12Dnsmasq accepts DNS queries and either answers them from a small, local,
13cache or forwards them to a real, recursive, DNS server. It loads the
14contents of /etc/hosts so that local hostnames
15which do not appear in the global DNS can be resolved and also answers
Simon Kelleyee415862014-02-11 11:07:22 +000016DNS queries for DHCP configured hosts. It can also act as the
17authoritative DNS server for one or more domains, allowing local names
18to appear in the global DNS. It can be configured to do DNSSEC
19validation.
Simon Kelley9e4abcb2004-01-22 19:47:41 +000020.PP
Simon Kelley73a08a22009-02-05 20:28:08 +000021The dnsmasq DHCP server supports static address assignments and multiple
22networks. It automatically
Simon Kelley3be34542004-09-11 19:12:13 +010023sends a sensible default set of DHCP options, and can be configured to
Simon Kelleyf2621c72007-04-29 19:47:21 +010024send any desired set of DHCP options, including vendor-encapsulated
Simon Kelley1b7ecd12007-02-05 14:57:57 +000025options. It includes a secure, read-only,
Simon Kelley34d0a362013-01-02 11:40:56 +000026TFTP server to allow net/PXE boot of DHCP hosts and also supports BOOTP. The PXE support is full featured, and includes a proxy mode which supplies PXE information to clients whilst DHCP address allocation is done by another server.
Simon Kelley9e4abcb2004-01-22 19:47:41 +000027.PP
Simon Kelley81925ab2013-04-10 11:43:58 +010028The dnsmasq DHCPv6 server provides the same set of features as the
29DHCPv4 server, and in addition, it includes router advertisements and
30a neat feature which allows nameing for clients which use DHCPv4 and
Simon Kelley834f36f2013-04-17 13:52:49 +010031stateless autoconfiguration only for IPv6 configuration. There is support for doing address allocation (both DHCPv6 and RA) from subnets which are dynamically delegated via DHCPv6 prefix delegation.
Simon Kelley34d0a362013-01-02 11:40:56 +000032.PP
Josh Soref730c6742017-02-06 16:14:04 +000033Dnsmasq is coded with small embedded systems in mind. It aims for the smallest possible memory footprint compatible with the supported functions, and allows unneeded functions to be omitted from the compiled binary.
Simon Kelley9e4abcb2004-01-22 19:47:41 +000034.SH OPTIONS
35Note that in general missing parameters are allowed and switch off
Simon Kelley832af0b2007-01-21 20:01:28 +000036functions, for instance "--pid-file" disables writing a PID file. On
Simon Kelley33820b72004-04-03 21:10:00 +010037BSD, unless the GNU getopt library is linked, the long form of the
38options does not work on the command line; it is still recognised in
39the configuration file.
Simon Kelley9e4abcb2004-01-22 19:47:41 +000040.TP
Simon Kelley7622fc02009-06-04 20:32:05 +010041.B --test
42Read and syntax check configuration file(s). Exit with code 0 if all
43is OK, or a non-zero code otherwise. Do not start up dnsmasq.
44.TP
Simon Kelley09217a12016-05-03 17:04:35 +010045.B \-w, --help
46Display all command-line options.
47.B --help dhcp
48will display known DHCPv4 configuration options, and
49.B --help dhcp6
50will display DHCPv6 options.
51.TP
Simon Kelley9e4abcb2004-01-22 19:47:41 +000052.B \-h, --no-hosts
53Don't read the hostnames in /etc/hosts.
54.TP
55.B \-H, --addn-hosts=<file>
56Additional hosts file. Read the specified file as well as /etc/hosts. If -h is given, read
Simon Kelleyfd9fa482004-10-21 20:24:00 +010057only the specified file. This option may be repeated for more than one
Simon Kelley7622fc02009-06-04 20:32:05 +010058additional hosts file. If a directory is given, then read all the files contained in that directory.
Simon Kelley9e4abcb2004-01-22 19:47:41 +000059.TP
Simon Kelley3d04f462015-01-31 21:59:13 +000060.B --hostsdir=<path>
61Read all the hosts files contained in the directory. New or changed files
62are read automatically. See --dhcp-hostsdir for details.
63.TP
Simon Kelley832af0b2007-01-21 20:01:28 +000064.B \-E, --expand-hosts
65Add the domain to simple names (without a period) in /etc/hosts
Simon Kelley1f15b812009-10-13 17:49:32 +010066in the same way as for DHCP-derived names. Note that this does not
67apply to domain names in cnames, PTR records, TXT records etc.
Simon Kelley832af0b2007-01-21 20:01:28 +000068.TP
Simon Kelley9e4abcb2004-01-22 19:47:41 +000069.B \-T, --local-ttl=<time>
Simon Kelley832e47b2016-02-24 21:24:45 +000070When replying with information from /etc/hosts or configuration or the DHCP leases
Simon Kelley9e4abcb2004-01-22 19:47:41 +000071file dnsmasq by default sets the time-to-live field to zero, meaning
Simon Kelleyc72daea2012-01-05 21:33:27 +000072that the requester should not itself cache the information. This is
Simon Kelley9e4abcb2004-01-22 19:47:41 +000073the correct thing to do in almost all situations. This option allows a
74time-to-live (in seconds) to be given for these replies. This will
75reduce the load on the server at the expense of clients using stale
76data under some circumstances.
77.TP
Simon Kelley832e47b2016-02-24 21:24:45 +000078.B --dhcp-ttl=<time>
79As for --local-ttl, but affects only replies with information from DHCP leases. If both are given, --dhcp-ttl applies for DHCP information, and --local-ttl for others. Setting this to zero eliminates the effect of --local-ttl for DHCP.
80.TP
Simon Kelley824af852008-02-12 20:43:05 +000081.B --neg-ttl=<time>
82Negative replies from upstream servers normally contain time-to-live
83information in SOA records which dnsmasq uses for caching. If the
84replies from upstream servers omit this information, dnsmasq does not
85cache the reply. This option gives a default value for time-to-live
86(in seconds) which dnsmasq uses to cache negative replies even in
87the absence of an SOA record.
88.TP
Simon Kelley8ef5ada2010-06-03 19:42:45 +010089.B --max-ttl=<time>
90Set a maximum TTL value that will be handed out to clients. The specified
91maximum TTL will be given to clients instead of the true TTL value if it is
92lower. The true TTL value is however kept in the cache to avoid flooding
93the upstream DNS servers.
94.TP
Simon Kelley1d860412012-09-20 20:48:04 +010095.B --max-cache-ttl=<time>
96Set a maximum TTL value for entries in the cache.
97.TP
RinSatsuki28de3872015-01-10 15:22:21 +000098.B --min-cache-ttl=<time>
99Extend short TTL values to the time given when caching them. Note that
100artificially extending TTL values is in general a bad idea, do not do it
101unless you have a good reason, and understand what you are doing.
102Dnsmasq limits the value of this option to one hour, unless recompiled.
103.TP
Simon Kelley333b2ce2013-01-07 21:46:03 +0000104.B --auth-ttl=<time>
105Set the TTL value returned in answers from the authoritative server.
106.TP
Simon Kelley3be34542004-09-11 19:12:13 +0100107.B \-k, --keep-in-foreground
108Do not go into the background at startup but otherwise run as
Simon Kelley3d8df262005-08-29 12:19:27 +0100109normal. This is intended for use when dnsmasq is run under daemontools
110or launchd.
Simon Kelley3be34542004-09-11 19:12:13 +0100111.TP
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000112.B \-d, --no-daemon
113Debug mode: don't fork to the background, don't write a pid file,
114don't change user id, generate a complete cache dump on receipt on
Simon Kelley3be34542004-09-11 19:12:13 +0100115SIGUSR1, log to stderr as well as syslog, don't fork new processes
Simon Kelley83b21982012-11-12 21:07:44 +0000116to handle TCP queries. Note that this option is for use in debugging
117only, to stop dnsmasq daemonising in production, use
118.B -k.
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000119.TP
120.B \-q, --log-queries
Simon Kelley25cf5e32015-01-09 15:53:03 +0000121Log the results of DNS queries handled by dnsmasq. Enable a full cache dump on receipt of SIGUSR1. If the argument "extra" is supplied, ie
122.B --log-queries=extra
123then the log has extra information at the start of each line.
124This consists of a serial number which ties together the log lines associated with an individual query, and the IP address of the requestor.
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000125.TP
Simon Kelley849a8352006-06-09 21:02:31 +0100126.B \-8, --log-facility=<facility>
127Set the facility to which dnsmasq will send syslog entries, this
Simon Kelleyf2621c72007-04-29 19:47:21 +0100128defaults to DAEMON, and to LOCAL0 when debug mode is in operation. If
Simon Kelley9e038942008-05-30 20:06:34 +0100129the facility given contains at least one '/' character, it is taken to
Simon Kelleyf2621c72007-04-29 19:47:21 +0100130be a filename, and dnsmasq logs to the given file, instead of
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100131syslog. If the facility is '-' then dnsmasq logs to stderr.
132(Errors whilst reading configuration will still go to syslog,
Simon Kelleyf2621c72007-04-29 19:47:21 +0100133but all output from a successful startup, and all output whilst
Simon Kelley5aabfc72007-08-29 11:24:47 +0100134running, will go exclusively to the file.) When logging to a file,
135dnsmasq will close and reopen the file when it receives SIGUSR2. This
136allows the log file to be rotated without stopping dnsmasq.
Simon Kelleyf2621c72007-04-29 19:47:21 +0100137.TP
138.B --log-async[=<lines>]
139Enable asynchronous logging and optionally set the limit on the
140number of lines
141which will be queued by dnsmasq when writing to the syslog is slow.
142Dnsmasq can log asynchronously: this
143allows it to continue functioning without being blocked by syslog, and
144allows syslog to use dnsmasq for DNS queries without risking deadlock.
145If the queue of log-lines becomes full, dnsmasq will log the
146overflow, and the number of messages lost. The default queue length is
1475, a sane value would be 5-25, and a maximum limit of 100 is imposed.
Simon Kelley849a8352006-06-09 21:02:31 +0100148.TP
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000149.B \-x, --pid-file=<path>
150Specify an alternate path for dnsmasq to record its process-id in. Normally /var/run/dnsmasq.pid.
151.TP
152.B \-u, --user=<username>
153Specify the userid to which dnsmasq will change after startup. Dnsmasq must normally be started as root, but it will drop root
Simon Kelleyb8187c82005-11-26 21:46:27 +0000154privileges after startup by changing id to another user. Normally this user is "nobody" but that
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000155can be over-ridden with this switch.
156.TP
157.B \-g, --group=<groupname>
158Specify the group which dnsmasq will run
159as. The defaults to "dip", if available, to facilitate access to
160/etc/ppp/resolv.conf which is not normally world readable.
161.TP
162.B \-v, --version
163Print the version number.
164.TP
165.B \-p, --port=<port>
Simon Kelley824af852008-02-12 20:43:05 +0000166Listen on <port> instead of the standard DNS port (53). Setting this
167to zero completely disables DNS function, leaving only DHCP and/or TFTP.
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000168.TP
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100169.B \-P, --edns-packet-max=<size>
170Specify the largest EDNS.0 UDP packet which is supported by the DNS
Simon Kelley316e2732010-01-22 20:16:09 +0000171forwarder. Defaults to 4096, which is the RFC5625-recommended size.
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100172.TP
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000173.B \-Q, --query-port=<query_port>
Simon Kelley1a6bca82008-07-11 11:11:42 +0100174Send outbound DNS queries from, and listen for their replies on, the
175specific UDP port <query_port> instead of using random ports. NOTE
176that using this option will make dnsmasq less secure against DNS
177spoofing attacks but it may be faster and use less resources. Setting this option
178to zero makes dnsmasq use a single port allocated to it by the
179OS: this was the default behaviour in versions prior to 2.43.
180.TP
181.B --min-port=<port>
182Do not use ports less than that given as source for outbound DNS
183queries. Dnsmasq picks random ports as source for outbound queries:
184when this option is given, the ports used will always to larger
Simon Kelleybaf553d2018-01-29 22:49:27 +0000185than that specified. Useful for systems behind firewalls. If not specified,
186defaults to 1024.
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000187.TP
Hans Dedecker926332a2016-01-23 10:48:12 +0000188.B --max-port=<port>
189Use ports lower than that given as source for outbound DNS queries.
190Dnsmasq picks random ports as source for outbound queries:
191when this option is given, the ports used will always be lower
192than that specified. Useful for systems behind firewalls.
193.TP
194
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000195.B \-i, --interface=<interface name>
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100196Listen only on the specified interface(s). Dnsmasq automatically adds
197the loopback (local) interface to the list of interfaces to use when
198the
199.B \--interface
200option is used. If no
201.B \--interface
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000202or
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100203.B \--listen-address
204options are given dnsmasq listens on all available interfaces except any
205given in
206.B \--except-interface
Petr Menšíkad59f272017-03-17 17:22:19 +0000207options. On Linux, when
208.B \--bind-interfaces
Simon Kelley8a911cc2004-03-16 18:35:52 +0000209or
Petr Menšíkad59f272017-03-17 17:22:19 +0000210.B \--bind-dynamic
211are in effect, IP alias interface labels (eg "eth1:0") are checked, rather than
212interface names. In the degenerate case when an interface has one address, this amounts to the same thing but when an interface has multiple addresses it
213allows control over which of those addresses are accepted.
214The same effect is achievable in default mode by using
215.B \--listen-address.
216A simple wildcard, consisting of a trailing '*',
217can be used in
Simon Kelley49333cb2013-03-15 20:30:51 +0000218.B \--interface
219and
220.B \--except-interface
221options.
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000222.TP
223.B \-I, --except-interface=<interface name>
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100224Do not listen on the specified interface. Note that the order of
225.B \--listen-address
226.B --interface
227and
228.B --except-interface
229options does not matter and that
230.B --except-interface
Petr Menšíkad59f272017-03-17 17:22:19 +0000231options always override the others. The comments about interface labels for
232.B --listen-address
233apply here.
Simon Kelley34d0a362013-01-02 11:40:56 +0000234.TP
235.B --auth-server=<domain>,<interface>|<ip-address>
Simon Kelley81925ab2013-04-10 11:43:58 +0100236Enable DNS authoritative mode for queries arriving at an interface or address. Note that the interface or address
Simon Kelley34d0a362013-01-02 11:40:56 +0000237need not be mentioned in
238.B --interface
239or
240.B --listen-address
241configuration, indeed
242.B --auth-server
Josh Soref730c6742017-02-06 16:14:04 +0000243will override these and provide a different DNS service on the
Simon Kelleyf25e6c62013-11-17 12:23:42 +0000244specified interface. The <domain> is the "glue record". It should
Ville Skyttäfaaf3062018-01-14 17:32:52 +0000245resolve in the global DNS to an A and/or AAAA record which points to
Simon Kelleyf25e6c62013-11-17 12:23:42 +0000246the address dnsmasq is listening on. When an interface is specified,
247it may be qualified with "/4" or "/6" to specify only the IPv4 or IPv6
248addresses associated with the interface.
Simon Kelleyc8a80482014-03-05 14:29:54 +0000249.TP
250.B --local-service
251Accept DNS queries only from hosts whose address is on a local subnet,
252ie a subnet for which an interface exists on the server. This option
Kristjan Onu907efeb2016-07-10 22:37:57 +0100253only has effect if there are no --interface --except-interface,
Simon Kelleyc8a80482014-03-05 14:29:54 +0000254--listen-address or --auth-server options. It is intended to be set as
255a default on installation, to allow unconfigured installations to be
256useful but also safe from being used for DNS amplification attacks.
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000257.TP
Simon Kelley3d8df262005-08-29 12:19:27 +0100258.B \-2, --no-dhcp-interface=<interface name>
Simon Kelley832af0b2007-01-21 20:01:28 +0000259Do not provide DHCP or TFTP on the specified interface, but do provide DNS service.
Simon Kelley3d8df262005-08-29 12:19:27 +0100260.TP
Simon Kelley44a2a312004-03-10 20:04:35 +0000261.B \-a, --listen-address=<ipaddr>
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100262Listen on the given IP address(es). Both
263.B \--interface
264and
265.B \--listen-address
266options may be given, in which case the set of both interfaces and
267addresses is used. Note that if no
268.B \--interface
269option is given, but
270.B \--listen-address
271is, dnsmasq will not automatically listen on the loopback
272interface. To achieve this, its IP address, 127.0.0.1, must be
273explicitly given as a
274.B \--listen-address
275option.
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000276.TP
Simon Kelley44a2a312004-03-10 20:04:35 +0000277.B \-z, --bind-interfaces
278On systems which support it, dnsmasq binds the wildcard address,
279even when it is listening on only some interfaces. It then discards
280requests that it shouldn't reply to. This has the advantage of
281working even when interfaces come and go and change address. This
282option forces dnsmasq to really bind only the interfaces it is
283listening on. About the only time when this is useful is when
Simon Kelleyf6b7dc42005-01-23 12:06:08 +0000284running another nameserver (or another instance of dnsmasq) on the
Simon Kelley309331f2006-04-22 15:05:01 +0100285same machine. Setting this option also enables multiple instances of
Simon Kelleyf6b7dc42005-01-23 12:06:08 +0000286dnsmasq which provide DHCP service to run in the same machine.
287.TP
Simon Kelley54dd3932012-06-20 11:23:38 +0100288.B --bind-dynamic
289Enable a network mode which is a hybrid between
290.B --bind-interfaces
Simon Kelleya2ce6fc2012-08-06 20:05:48 +0100291and the default. Dnsmasq binds the address of individual interfaces,
Simon Kelley54dd3932012-06-20 11:23:38 +0100292allowing multiple dnsmasq instances, but if new interfaces or
293addresses appear, it automatically listens on those (subject to any
294access-control configuration). This makes dynamically created
295interfaces work in the same way as the default. Implementing this
Simon Kelleya2ce6fc2012-08-06 20:05:48 +0100296option requires non-standard networking APIs and it is only available
Simon Kelley05ff1ed2012-06-26 16:58:12 +0100297under Linux. On other platforms it falls-back to --bind-interfaces mode.
Simon Kelley54dd3932012-06-20 11:23:38 +0100298.TP
Simon Kelleyf6b7dc42005-01-23 12:06:08 +0000299.B \-y, --localise-queries
Simon Kelleyd42d4702017-02-02 16:52:06 +0000300Return answers to DNS queries from /etc/hosts and --interface-name which depend on the interface over which the query was
301received. If a name has more than one address associated with
Simon Kelleyf6b7dc42005-01-23 12:06:08 +0000302it, and at least one of those addresses is on the same subnet as the
303interface to which the query was sent, then return only the
304address(es) on that subnet. This allows for a server to have multiple
305addresses in /etc/hosts corresponding to each of its interfaces, and
306hosts will get the correct address based on which network they are
307attached to. Currently this facility is limited to IPv4.
Simon Kelley44a2a312004-03-10 20:04:35 +0000308.TP
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000309.B \-b, --bogus-priv
310Bogus private reverse lookups. All reverse lookups for private IP ranges (ie 192.168.x.x, etc)
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100311which are not found in /etc/hosts or the DHCP leases file are answered
Simon Kelleyfca008d2017-02-19 18:50:41 +0000312with "no such domain" rather than being forwarded upstream. The
313set of prefixes affected is the list given in RFC6303, for IPv4 and IPv6.
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000314.TP
Simon Kelley73a08a22009-02-05 20:28:08 +0000315.B \-V, --alias=[<old-ip>]|[<start-ip>-<end-ip>],<new-ip>[,<mask>]
Simon Kelley1cff1662004-03-12 08:12:58 +0000316Modify IPv4 addresses returned from upstream nameservers; old-ip is
317replaced by new-ip. If the optional mask is given then any address
318which matches the masked old-ip will be re-written. So, for instance
319.B --alias=1.2.3.0,6.7.8.0,255.255.255.0
320will map 1.2.3.56 to 6.7.8.56 and 1.2.3.67 to 6.7.8.67. This is what
Simon Kelley73a08a22009-02-05 20:28:08 +0000321Cisco PIX routers call "DNS doctoring". If the old IP is given as
322range, then only addresses in the range, rather than a whole subnet,
323are re-written. So
324.B --alias=192.168.0.10-192.168.0.40,10.0.0.0,255.255.255.0
325maps 192.168.0.10->192.168.0.40 to 10.0.0.10->10.0.0.40
Simon Kelley1cff1662004-03-12 08:12:58 +0000326.TP
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000327.B \-B, --bogus-nxdomain=<ipaddr>
328Transform replies which contain the IP address given into "No such
329domain" replies. This is intended to counteract a devious move made by
Simon Kelleyb8187c82005-11-26 21:46:27 +0000330Verisign in September 2003 when they started returning the address of
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000331an advertising web page in response to queries for unregistered names,
332instead of the correct NXDOMAIN response. This option tells dnsmasq to
333fake the correct response when it sees this behaviour. As at Sept 2003
Simon Kelleyb8187c82005-11-26 21:46:27 +0000334the IP address being returned by Verisign is 64.94.110.11
Glen Huang32fc6db2014-12-27 15:28:12 +0000335.TP
Simon Kelley09217a12016-05-03 17:04:35 +0100336.B --ignore-address=<ipaddr>
Glen Huang32fc6db2014-12-27 15:28:12 +0000337Ignore replies to A-record queries which include the specified address.
338No error is generated, dnsmasq simply continues to listen for another reply.
339This is useful to defeat blocking strategies which rely on quickly supplying a
340forged answer to a DNS request for certain domain, before the correct answer can arrive.
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000341.TP
342.B \-f, --filterwin2k
343Later versions of windows make periodic DNS requests which don't get sensible answers from
344the public DNS and can cause problems by triggering dial-on-demand links. This flag turns on an option
345to filter such requests. The requests blocked are for records of types SOA and SRV, and type ANY where the
346requested name has underscores, to catch LDAP requests.
347.TP
348.B \-r, --resolv-file=<file>
349Read the IP addresses of the upstream nameservers from <file>, instead of
350/etc/resolv.conf. For the format of this file see
Simon Kelley7de060b2011-08-26 17:24:52 +0100351.BR resolv.conf (5).
352The only lines relevant to dnsmasq are nameserver ones. Dnsmasq can
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000353be told to poll more than one resolv.conf file, the first file name specified
354overrides the default, subsequent ones add to the list. This is only
355allowed when polling; the file with the currently latest modification
356time is the one used.
357.TP
358.B \-R, --no-resolv
359Don't read /etc/resolv.conf. Get upstream servers only from the command
Simon Kelleyb49644f2004-01-30 21:36:24 +0000360line or the dnsmasq configuration file.
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000361.TP
Simon Kelleyad094272012-08-10 17:10:54 +0100362.B \-1, --enable-dbus[=<service-name>]
Simon Kelley3d8df262005-08-29 12:19:27 +0100363Allow dnsmasq configuration to be updated via DBus method calls. The
364configuration which can be changed is upstream DNS servers (and
Simon Kelleyb8187c82005-11-26 21:46:27 +0000365corresponding domains) and cache clear. Requires that dnsmasq has
Simon Kelleyad094272012-08-10 17:10:54 +0100366been built with DBus support. If the service name is given, dnsmasq
367provides service at that name, rather than the default which is
368.B uk.org.thekelleys.dnsmasq
Simon Kelley3d8df262005-08-29 12:19:27 +0100369.TP
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000370.B \-o, --strict-order
371By default, dnsmasq will send queries to any of the upstream servers
Simon Kelley824af852008-02-12 20:43:05 +0000372it knows about and tries to favour servers that are known to
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000373be up. Setting this flag forces dnsmasq to try each query with each
374server strictly in the order they appear in /etc/resolv.conf
375.TP
Simon Kelley824af852008-02-12 20:43:05 +0000376.B --all-servers
377By default, when dnsmasq has more than one upstream server available,
378it will send queries to just one server. Setting this flag forces
379dnsmasq to send all queries to all available servers. The reply from
Simon Kelleyc72daea2012-01-05 21:33:27 +0000380the server which answers first will be returned to the original requester.
Simon Kelley824af852008-02-12 20:43:05 +0000381.TP
Simon Kelleyb5ea1cc2014-07-29 16:34:14 +0100382.B --dns-loop-detect
383Enable code to detect DNS forwarding loops; ie the situation where a query sent to one
384of the upstream server eventually returns as a new query to the dnsmasq instance. The
385process works by generating TXT queries of the form <hex>.test and sending them to
386each upstream server. The hex is a UID which encodes the instance of dnsmasq sending the query
387and the upstream server to which it was sent. If the query returns to the server which sent it, then
388the upstream server through which it was sent is disabled and this event is logged. Each time the
389set of upstream servers changes, the test is re-run on all of them, including ones which
390were previously disabled.
391.TP
Simon Kelley824af852008-02-12 20:43:05 +0000392.B --stop-dns-rebind
393Reject (and log) addresses from upstream nameservers which are in the
394private IP ranges. This blocks an attack where a browser behind a
395firewall is used to probe machines on the local network.
396.TP
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100397.B --rebind-localhost-ok
398Exempt 127.0.0.0/8 from rebinding checks. This address range is
399returned by realtime black hole servers, so blocking it may disable
400these services.
401.TP
402.B --rebind-domain-ok=[<domain>]|[[/<domain>/[<domain>/]
403Do not detect and block dns-rebind on queries to these domains. The
404argument may be either a single domain, or multiple domains surrounded
405by '/', like the --server syntax, eg.
406.B --rebind-domain-ok=/domain1/domain2/domain3/
407.TP
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000408.B \-n, --no-poll
409Don't poll /etc/resolv.conf for changes.
410.TP
Simon Kelley16972692006-10-16 20:04:18 +0100411.B --clear-on-reload
Simon Kelleyd9fb0be2013-07-25 21:47:17 +0100412Whenever /etc/resolv.conf is re-read or the upstream servers are set
413via DBus, clear the DNS cache.
Simon Kelley16972692006-10-16 20:04:18 +0100414This is useful when new nameservers may have different
415data than that held in cache.
416.TP
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000417.B \-D, --domain-needed
Simon Kelley7de060b2011-08-26 17:24:52 +0100418Tells dnsmasq to never forward A or AAAA queries for plain names, without dots
Simon Kelley3d8df262005-08-29 12:19:27 +0100419or domain parts, to upstream nameservers. If the name is not known
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000420from /etc/hosts or DHCP then a "not found" answer is returned.
421.TP
Simon Kelley824af852008-02-12 20:43:05 +0000422.B \-S, --local, --server=[/[<domain>]/[domain/]][<ipaddr>[#<port>][@<source-ip>|<interface>[#<port>]]
Simon Kelley5aabfc72007-08-29 11:24:47 +0100423Specify IP address of upstream servers directly. Setting this flag does
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000424not suppress reading of /etc/resolv.conf, use -R to do that. If one or
425more
426optional domains are given, that server is used only for those domains
427and they are queried only using the specified server. This is
428intended for private nameservers: if you have a nameserver on your
429network which deals with names of the form
430xxx.internal.thekelleys.org.uk at 192.168.1.1 then giving the flag
Simon Kelleyb8187c82005-11-26 21:46:27 +0000431.B -S /internal.thekelleys.org.uk/192.168.1.1
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000432will send all queries for
433internal machines to that nameserver, everything else will go to the
Simon Kelley92be34a2016-01-16 18:39:54 +0000434servers in /etc/resolv.conf. DNSSEC validation is turned off for such
435private nameservers, UNLESS a
436.B --trust-anchor
437is specified for the domain in question. An empty domain specification,
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000438.B //
439has the special meaning of "unqualified names only" ie names without any
440dots in them. A non-standard port may be specified as
441part of the IP
442address using a # character.
443More than one -S flag is allowed, with
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100444repeated domain or ipaddr parts as required.
445
Josh Soref730c6742017-02-06 16:14:04 +0000446More specific domains take precedence over less specific domains, so:
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100447.B --server=/google.com/1.2.3.4
448.B --server=/www.google.com/2.3.4.5
449will send queries for *.google.com to 1.2.3.4, except *www.google.com,
450which will go to 2.3.4.5
451
452The special server address '#' means, "use the standard servers", so
453.B --server=/google.com/1.2.3.4
454.B --server=/www.google.com/#
455will send queries for *.google.com to 1.2.3.4, except *www.google.com which will
456be forwarded as usual.
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000457
458Also permitted is a -S
459flag which gives a domain but no IP address; this tells dnsmasq that
460a domain is local and it may answer queries from /etc/hosts or DHCP
461but should never forward queries on that domain to any upstream
462servers.
463.B local
464is a synonym for
465.B server
466to make configuration files clearer in this case.
467
Ville Skyttäfaaf3062018-01-14 17:32:52 +0000468IPv6 addresses may include an %interface scope-id, eg
Simon Kelley7de060b2011-08-26 17:24:52 +0100469fe80::202:a412:4512:7bbf%eth0.
470
Kristian Evensen4e7694d2017-03-22 21:32:50 +0000471The optional string after the @ character tells dnsmasq how to set the source of
472the queries to this nameserver. It can either be an ip-address, an interface
473name or both. The ip-address should belong to the machine on which dnsmasq is
474running, otherwise this server line will be logged and then ignored. If an
475interface name is given, then queries to the server will be forced via that
476interface; if an ip-address is given then the source address of the queries will
477be set to that address; and if both are given then a combination of ip-address
478and interface name will be used to steer requests to the server.
Simon Kelley824af852008-02-12 20:43:05 +0000479The query-port flag is ignored for any servers which have a
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000480source address specified but the port may be specified directly as
Simon Kelley824af852008-02-12 20:43:05 +0000481part of the source address. Forcing queries to an interface is not
482implemented on all platforms supported by dnsmasq.
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000483.TP
Simon Kelleyde73a492014-02-17 21:43:27 +0000484.B --rev-server=<ip-address>/<prefix-len>,<ipaddr>[#<port>][@<source-ip>|<interface>[#<port>]]
485This is functionally the same as
486.B --server,
487but provides some syntactic sugar to make specifying address-to-name queries easier. For example
488.B --rev-server=1.2.3.0/24,192.168.0.1
489is exactly equivalent to
490.B --server=/3.2.1.in-addr.arpa/192.168.0.1
491.TP
Peter Wu3c0c1112016-08-28 20:53:09 +0100492.B \-A, --address=/<domain>[/<domain>...]/[<ipaddr>]
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000493Specify an IP address to return for any host in the given domains.
494Queries in the domains are never forwarded and always replied to
495with the specified IP address which may be IPv4 or IPv6. To give
Peter Wu3c0c1112016-08-28 20:53:09 +0100496both IPv4 and IPv6 addresses for a domain, use repeated \fB-A\fP flags.
497To include multiple IP addresses for a single query, use
498\fB--addn-hosts=<path>\fP instead.
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000499Note that /etc/hosts and DHCP leases override this for individual
500names. A common use of this is to redirect the entire doubleclick.net
Simon Kelleya2226412004-05-13 20:27:08 +0100501domain to some friendly local web server to avoid banner ads. The
Peter Wu3c0c1112016-08-28 20:53:09 +0100502domain specification works in the same was as for \fB--server\fP, with
503the additional facility that \fB/#/\fP matches any domain. Thus
504\fB--address=/#/1.2.3.4\fP will always return \fB1.2.3.4\fP for any
505query not answered from \fB/etc/hosts\fP or DHCP and not sent to an
506upstream nameserver by a more specific \fB--server\fP directive. As for
507\fB--server\fP, one or more domains with no address returns a
508no-such-domain answer, so \fB--address=/example.com/\fP is equivalent to
509\fB--server=/example.com/\fP and returns NXDOMAIN for example.com and
510all its subdomains.
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000511.TP
Peter Wu3c0c1112016-08-28 20:53:09 +0100512.B --ipset=/<domain>[/<domain>...]/<ipset>[,<ipset>...]
513Places the resolved IP addresses of queries for one or more domains in
514the specified Netfilter IP set. If multiple setnames are given, then the
515addresses are placed in each of them, subject to the limitations of an
516IP set (IPv4 addresses cannot be stored in an IPv6 IP set and vice
517versa). Domains and subdomains are matched in the same way as
518\fB--address\fP.
519These IP sets must already exist. See
520.BR ipset (8)
521for more details.
Jason A. Donenfeld13d86c72013-02-22 18:20:53 +0000522.TP
Simon Kelleyf6b7dc42005-01-23 12:06:08 +0000523.B \-m, --mx-host=<mx name>[[,<hostname>],<preference>]
Simon Kelleyde379512004-06-22 20:23:33 +0100524Return an MX record named <mx name> pointing to the given hostname (if
525given), or
526the host specified in the --mx-target switch
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000527or, if that switch is not given, the host on which dnsmasq
Simon Kelleyf6b7dc42005-01-23 12:06:08 +0000528is running. The default is useful for directing mail from systems on a LAN
529to a central server. The preference value is optional, and defaults to
5301 if not given. More than one MX record may be given for a host.
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000531.TP
532.B \-t, --mx-target=<hostname>
Simon Kelleyf6b7dc42005-01-23 12:06:08 +0000533Specify the default target for the MX record returned by dnsmasq. See
534--mx-host. If --mx-target is given, but not --mx-host, then dnsmasq
535returns a MX record containing the MX target for MX queries on the
536hostname of the machine on which dnsmasq is running.
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000537.TP
538.B \-e, --selfmx
539Return an MX record pointing to itself for each local
540machine. Local machines are those in /etc/hosts or with DHCP leases.
541.TP
542.B \-L, --localmx
543Return an MX record pointing to the host given by mx-target (or the
544machine on which dnsmasq is running) for each
545local machine. Local machines are those in /etc/hosts or with DHCP
546leases.
547.TP
Simon Kelleyf6b7dc42005-01-23 12:06:08 +0000548.B \-W, --srv-host=<_service>.<_prot>.[<domain>],[<target>[,<port>[,<priority>[,<weight>]]]]
549Return a SRV DNS record. See RFC2782 for details. If not supplied, the
550domain defaults to that given by
551.B --domain.
552The default for the target domain is empty, and the default for port
553is one and the defaults for
554weight and priority are zero. Be careful if transposing data from BIND
555zone files: the port, weight and priority numbers are in a different
556order. More than one SRV record for a given service/domain is allowed,
Simon Kelley3d8df262005-08-29 12:19:27 +0100557all that match are returned.
Simon Kelleyf6b7dc42005-01-23 12:06:08 +0000558.TP
Simon Kelleydf3d54f2016-02-24 21:03:38 +0000559.B --host-record=<name>[,<name>....],[<IPv4-address>],[<IPv6-address>][,<TTL>]
Simon Kelleye759d422012-03-16 13:18:57 +0000560Add A, AAAA and PTR records to the DNS. This adds one or more names to
561the DNS with associated IPv4 (A) and IPv6 (AAAA) records. A name may
562appear in more than one
563.B host-record
564and therefore be assigned more than one address. Only the first
565address creates a PTR record linking the address to the name. This is
566the same rule as is used reading hosts-files.
567.B host-record
568options are considered to be read before host-files, so a name
569appearing there inhibits PTR-record creation if it appears in
Simon Kelleye46164e2012-04-16 16:39:38 +0100570hosts-file also. Unlike hosts-files, names are not expanded, even when
Simon Kelleye759d422012-03-16 13:18:57 +0000571.B expand-hosts
572is in effect. Short and long names may appear in the same
Simon Kelleye46164e2012-04-16 16:39:38 +0100573.B host-record,
574eg.
575.B --host-record=laptop,laptop.thekelleys.org,192.168.0.1,1234::100
Simon Kelleydf3d54f2016-02-24 21:03:38 +0000576
577If the time-to-live is given, it overrides the default, which is zero
578or the value of --local-ttl. The value is a positive integer and gives
579the time-to-live in seconds.
Simon Kelleye759d422012-03-16 13:18:57 +0000580.TP
Simon Kelley0a852542005-03-23 20:28:59 +0000581.B \-Y, --txt-record=<name>[[,<text>],<text>]
582Return a TXT DNS record. The value of TXT record is a set of strings,
Simon Kelley28866e92011-02-14 20:19:14 +0000583so any number may be included, delimited by commas; use quotes to put
584commas into a string. Note that the maximum length of a single string
585is 255 characters, longer strings are split into 255 character chunks.
Simon Kelley0a852542005-03-23 20:28:59 +0000586.TP
Simon Kelley832af0b2007-01-21 20:01:28 +0000587.B --ptr-record=<name>[,<target>]
588Return a PTR DNS record.
589.TP
Simon Kelley1a6bca82008-07-11 11:11:42 +0100590.B --naptr-record=<name>,<order>,<preference>,<flags>,<service>,<regexp>[,<replacement>]
591Return an NAPTR DNS record, as specified in RFC3403.
592.TP
Simon Kelleya1d973f2016-12-22 22:09:50 +0000593.B --cname=<cname>,[<cname>,]<target>[,<TTL>]
Simon Kelley9009d742008-11-14 20:04:27 +0000594Return a CNAME record which indicates that <cname> is really
595<target>. There are significant limitations on the target; it must be a
596DNS name which is known to dnsmasq from /etc/hosts (or additional
Simon Kelleyd56a6042013-10-11 14:39:03 +0100597hosts files), from DHCP, from --interface-name or from another
Simon Kelley611ebc52012-07-16 16:23:46 +0100598.B --cname.
599If the target does not satisfy this
Simon Kelley9009d742008-11-14 20:04:27 +0000600criteria, the whole cname is ignored. The cname must be unique, but it
Ville Skyttäfaaf3062018-01-14 17:32:52 +0000601is permissible to have more than one cname pointing to the same target. Indeed
Simon Kelleya1d973f2016-12-22 22:09:50 +0000602it's possible to declare multiple cnames to a target in a single line, like so:
603.B --cname=cname1,cname2,target
Simon Kelleydf3d54f2016-02-24 21:03:38 +0000604
605If the time-to-live is given, it overrides the default, which is zero
606or the value of -local-ttl. The value is a positive integer and gives
607the time-to-live in seconds.
Simon Kelley9009d742008-11-14 20:04:27 +0000608.TP
Simon Kelley9f7f3b12012-05-28 21:39:57 +0100609.B --dns-rr=<name>,<RR-number>,[<hex data>]
610Return an arbitrary DNS Resource Record. The number is the type of the
611record (which is always in the C_IN class). The value of the record is
Simon Kelleya2ce6fc2012-08-06 20:05:48 +0100612given by the hex data, which may be of the form 01:23:45 or 01 23 45 or
Simon Kelley9f7f3b12012-05-28 21:39:57 +0100613012345 or any mixture of these.
614.TP
Simon Kelleyf7029f52013-11-21 15:09:09 +0000615.B --interface-name=<name>,<interface>[/4|/6]
Simon Kelleyd42d4702017-02-02 16:52:06 +0000616Return DNS records associating the name with the address(es) of
Simon Kelleyf7029f52013-11-21 15:09:09 +0000617the given interface. This flag specifies an A or AAAA record for the given
Simon Kelleyf2621c72007-04-29 19:47:21 +0100618name in the same way as an /etc/hosts line, except that the address is
Simon Kelleyf7029f52013-11-21 15:09:09 +0000619not constant, but taken from the given interface. The interface may be
620followed by "/4" or "/6" to specify that only IPv4 or IPv6 addresses
621of the interface should be used. If the interface is
Simon Kelley9e038942008-05-30 20:06:34 +0100622down, not configured or non-existent, an empty record is returned. The
Simon Kelleyf2621c72007-04-29 19:47:21 +0100623matching PTR record is also created, mapping the interface address to
624the name. More than one name may be associated with an interface
625address by repeating the flag; in that case the first instance is used
Simon Kelleyd42d4702017-02-02 16:52:06 +0000626for the reverse address-to-name mapping. Note that a name used in
627--interface-name may not appear in /etc/hosts.
Simon Kelleyf2621c72007-04-29 19:47:21 +0100628.TP
Simon Kelley48fd1c42013-04-25 09:49:38 +0100629.B --synth-domain=<domain>,<address range>[,<prefix>]
Simon Kelley2bb73af2013-04-24 17:38:19 +0100630Create artificial A/AAAA and PTR records for an address range. The
631records use the address, with periods (or colons for IPv6) replaced
632with dashes.
633
634An example should make this clearer.
Simon Kelley48fd1c42013-04-25 09:49:38 +0100635.B --synth-domain=thekelleys.org.uk,192.168.0.0/24,internal-
636will result in a query for internal-192-168-0-56.thekelleys.org.uk returning
637192.168.0.56 and a reverse query vice versa. The same applies to IPv6,
638but IPv6 addresses may start with '::'
639but DNS labels may not start with '-' so in this case if no prefix is
640configured a zero is added in front of the label. ::1 becomes 0--1.
Simon Kelley2bb73af2013-04-24 17:38:19 +0100641
Simon Kelley6d950992016-08-11 23:38:54 +0100642V4 mapped IPv6 addresses, which have a representation like ::ffff:1.2.3.4 are handled specially, and become like 0--ffff-1-2-3-4
643
Simon Kelley2bb73af2013-04-24 17:38:19 +0100644The address range can be of the form
645<ip address>,<ip address> or <ip address>/<netmask>
646.TP
Simon Kelley9e4cf472016-02-17 20:26:32 +0000647.B --add-mac[=base64|text]
Simon Kelley28866e92011-02-14 20:19:14 +0000648Add the MAC address of the requestor to DNS queries which are
649forwarded upstream. This may be used to DNS filtering by the upstream
650server. The MAC address can only be added if the requestor is on the same
651subnet as the dnsmasq server. Note that the mechanism used to achieve this (an EDNS0 option)
652is not yet standardised, so this should be considered
653experimental. Also note that exposing MAC addresses in this way may
Simon Kelleyed4c0762013-10-08 20:46:34 +0100654have security and privacy implications. The warning about caching
Simon Kelley1e505122016-01-25 21:29:23 +0000655given for --add-subnet applies to --add-mac too. An alternative encoding of the
Simon Kelley9e4cf472016-02-17 20:26:32 +0000656MAC, as base64, is enabled by adding the "base64" parameter and a human-readable encoding of hex-and-colons is enabled by added the "text" parameter.
Simon Kelley1e505122016-01-25 21:29:23 +0000657.TP
658.B --add-cpe-id=<string>
Ville Skyttäfaaf3062018-01-14 17:32:52 +0000659Add an arbitrary identifying string to o DNS queries which are
Simon Kelley1e505122016-01-25 21:29:23 +0000660forwarded upstream.
Simon Kelleyed4c0762013-10-08 20:46:34 +0100661.TP
Ed Bardsleya7369be2015-08-05 21:17:18 +0100662.B --add-subnet[[=[<IPv4 address>/]<IPv4 prefix length>][,[<IPv6 address>/]<IPv6 prefix length>]]
663Add a subnet address to the DNS queries which are forwarded
664upstream. If an address is specified in the flag, it will be used,
665otherwise, the address of the requestor will be used. The amount of
666the address forwarded depends on the prefix length parameter: 32 (128
667for IPv6) forwards the whole address, zero forwards none of it but
668still marks the request so that no upstream nameserver will add client
669address information either. The default is zero for both IPv4 and
670IPv6. Note that upstream nameservers may be configured to return
671different results based on this information, but the dnsmasq cache
672does not take account. If a dnsmasq instance is configured such that
673different results may be encountered, caching should be disabled.
674
675For example,
676.B --add-subnet=24,96
677will add the /24 and /96 subnets of the requestor for IPv4 and IPv6 requestors, respectively.
678.B --add-subnet=1.2.3.4/24
679will add 1.2.3.0/24 for IPv4 requestors and ::/0 for IPv6 requestors.
680.B --add-subnet=1.2.3.4/24,1.2.3.4/24
681will add 1.2.3.0/24 for both IPv4 and IPv6 requestors.
682
Simon Kelley28866e92011-02-14 20:19:14 +0000683.TP
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000684.B \-c, --cache-size=<cachesize>
685Set the size of dnsmasq's cache. The default is 150 names. Setting the cache size to zero disables caching.
686.TP
687.B \-N, --no-negcache
688Disable negative caching. Negative caching allows dnsmasq to remember
689"no such domain" answers from upstream nameservers and answer
Simon Kelley5aabfc72007-08-29 11:24:47 +0100690identical queries without forwarding them again.
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000691.TP
Simon Kelley16972692006-10-16 20:04:18 +0100692.B \-0, --dns-forward-max=<queries>
693Set the maximum number of concurrent DNS queries. The default value is
694150, which should be fine for most setups. The only known situation
695where this needs to be increased is when using web-server log file
696resolvers, which can generate large numbers of concurrent queries.
Simon Kelley208b65c2006-08-05 21:41:37 +0100697.TP
Simon Kelley70b4a812014-01-27 22:38:48 +0000698.B --dnssec
699Validate DNS replies and cache DNSSEC data. When forwarding DNS queries, dnsmasq requests the
700DNSSEC records needed to validate the replies. The replies are validated and the result returned as
701the Authenticated Data bit in the DNS packet. In addition the DNSSEC records are stored in the cache, making
702validation by clients more efficient. Note that validation by clients is the most secure DNSSEC mode, but for
703clients unable to do validation, use of the AD bit set by dnsmasq is useful, provided that the network between
704the dnsmasq server and the client is trusted. Dnsmasq must be compiled with HAVE_DNSSEC enabled, and DNSSEC
705trust anchors provided, see
Simon Kelleyee415862014-02-11 11:07:22 +0000706.B --trust-anchor.
Simon Kelleyd588ab52014-03-02 14:30:05 +0000707Because the DNSSEC validation process uses the cache, it is not
708permitted to reduce the cache size below the default when DNSSEC is
709enabled. The nameservers upstream of dnsmasq must be DNSSEC-capable,
710ie capable of returning DNSSEC records with data. If they are not,
711then dnsmasq will not be able to determine the trusted status of
Josh Soref730c6742017-02-06 16:14:04 +0000712answers. In the default mode, this means that all replies will be
Simon Kelleyd588ab52014-03-02 14:30:05 +0000713marked as untrusted. If
714.B --dnssec-check-unsigned
715is set and the upstream servers don't support DNSSEC, then DNS service will be entirely broken.
Simon Kelley70b4a812014-01-27 22:38:48 +0000716.TP
Simon Kelleyee415862014-02-11 11:07:22 +0000717.B --trust-anchor=[<class>],<domain>,<key-tag>,<algorithm>,<digest-type>,<digest>
718Provide DS records to act a trust anchors for DNSSEC
Simon Kelley3b0cb342017-10-27 22:53:52 +0100719validation. Typically these will be the DS record(s) for Key Signing
720key(s) (KSK) of the root zone,
Simon Kelleyee415862014-02-11 11:07:22 +0000721but trust anchors for limited domains are also possible. The current
Ján Sáreník85016322015-07-05 21:23:27 +0100722root-zone trust anchors may be downloaded from https://data.iana.org/root-anchors/root-anchors.xml
Simon Kelley70b4a812014-01-27 22:38:48 +0000723.TP
Simon Kelley00a5b5d2014-02-28 18:10:55 +0000724.B --dnssec-check-unsigned
725As a default, dnsmasq does not check that unsigned DNS replies are
726legitimate: they are assumed to be valid and passed on (without the
727"authentic data" bit set, of course). This does not protect against an
728attacker forging unsigned replies for signed DNS zones, but it is
729fast. If this flag is set, dnsmasq will check the zones of unsigned
730replies, to ensure that unsigned replies are allowed in those
Simon Kelleyd588ab52014-03-02 14:30:05 +0000731zones. The cost of this is more upstream queries and slower
732performance. See also the warning about upstream servers in the
733section on
734.B --dnssec
Simon Kelley00a5b5d2014-02-28 18:10:55 +0000735.TP
Simon Kelleye98bd522014-03-28 20:41:23 +0000736.B --dnssec-no-timecheck
737DNSSEC signatures are only valid for specified time windows, and should be rejected outside those windows. This generates an
738interesting chicken-and-egg problem for machines which don't have a hardware real time clock. For these machines to determine the correct
739time typically requires use of NTP and therefore DNS, but validating DNS requires that the correct time is already known. Setting this flag
Simon Kelley3c973ad2018-01-14 21:05:37 +0000740removes the time-window checks (but not other DNSSEC validation.) only until the dnsmasq process receives SIGINT. The intention is
Simon Kelleye98bd522014-03-28 20:41:23 +0000741that dnsmasq should be started with this flag when the platform determines that reliable time is not currently available. As soon as
Simon Kelley3c973ad2018-01-14 21:05:37 +0000742reliable time is established, a SIGINT should be sent to dnsmasq, which enables time checking, and purges the cache of DNS records
Ville Skyttäfaaf3062018-01-14 17:32:52 +0000743which have not been thoroughly checked.
Simon Kelley3c973ad2018-01-14 21:05:37 +0000744
745Earlier versions of dnsmasq overloaded SIGHUP (which re-reads much configuration) to also enable time validation.
746
747If dnsmasq is run in debug mode (-d flag) then SIGINT retains its usual meaning of terminating the dnsmasq process.
Simon Kelleye98bd522014-03-28 20:41:23 +0000748.TP
Simon Kelleyf6e62e22015-03-01 18:17:54 +0000749.B --dnssec-timestamp=<path>
750Enables an alternative way of checking the validity of the system time for DNSSEC (see --dnssec-no-timecheck). In this case, the
751system time is considered to be valid once it becomes later than the timestamp on the specified file. The file is created and
752its timestamp set automatically by dnsmasq. The file must be stored on a persistent filesystem, so that it and its mtime are carried
Simon Kelley360f2512015-03-07 18:28:06 +0000753over system restarts. The timestamp file is created after dnsmasq has dropped root, so it must be in a location writable by the
754unprivileged user that dnsmasq runs as.
Simon Kelleyf6e62e22015-03-01 18:17:54 +0000755.TP
Simon Kelley28866e92011-02-14 20:19:14 +0000756.B --proxy-dnssec
Simon Kelley70b4a812014-01-27 22:38:48 +0000757Copy the DNSSEC Authenticated Data bit from upstream servers to downstream clients and cache it. This is an
758alternative to having dnsmasq validate DNSSEC, but it depends on the security of the network between
759dnsmasq and the upstream servers, and the trustworthiness of the upstream servers.
760.TP
761.B --dnssec-debug
762Set debugging mode for the DNSSEC validation, set the Checking Disabled bit on upstream queries,
Simon Kelleyee415862014-02-11 11:07:22 +0000763and don't convert replies which do not validate to responses with
764a return code of SERVFAIL. Note that
765setting this may affect DNS behaviour in bad ways, it is not an
766extra-logging flag and should not be set in production.
Simon Kelley28866e92011-02-14 20:19:14 +0000767.TP
Mathias Kresin094bfae2016-07-24 14:15:22 +0100768.B --auth-zone=<domain>[,<subnet>[/<prefix length>][,<subnet>[/<prefix length>].....][,exclude:<subnet>[/<prefix length>]].....]
Simon Kelley34d0a362013-01-02 11:40:56 +0000769Define a DNS zone for which dnsmasq acts as authoritative server. Locally defined DNS records which are in the domain
Simon Kelleyc50f25a2013-11-21 11:29:27 +0000770will be served. If subnet(s) are given, A and AAAA records must be in one of the
771specified subnets.
772
773As alternative to directly specifying the subnets, it's possible to
Simon Kelley376d48c2013-11-13 13:04:30 +0000774give the name of an interface, in which case the subnets implied by
775that interface's configured addresses and netmask/prefix-length are
776used; this is useful when using constructed DHCP ranges as the actual
777address is dynamic and not known when configuring dnsmasq. The
778interface addresses may be confined to only IPv6 addresses using
779<interface>/6 or to only IPv4 using <interface>/4. This is useful when
780an interface has dynamically determined global IPv6 addresses which should
781appear in the zone, but RFC1918 IPv4 addresses which should not.
782Interface-name and address-literal subnet specifications may be used
783freely in the same --auth-zone declaration.
784
Mathias Kresin094bfae2016-07-24 14:15:22 +0100785It's possible to exclude certain IP addresses from responses. It can be
786used, to make sure that answers contain only global routeable IP
787addresses (by excluding loopback, RFC1918 and ULA addresses).
788
Simon Kelley376d48c2013-11-13 13:04:30 +0000789The subnet(s) are also used to define in-addr.arpa and
Lutz Preßler1d7e0a32014-04-07 22:06:23 +0100790ip6.arpa domains which are served for reverse-DNS queries. If not
Simon Kelleybaa80ae2013-05-29 16:32:07 +0100791specified, the prefix length defaults to 24 for IPv4 and 64 for IPv6.
792For IPv4 subnets, the prefix length should be have the value 8, 16 or 24
793unless you are familiar with RFC 2317 and have arranged the
Simon Kelleyc50f25a2013-11-21 11:29:27 +0000794in-addr.arpa delegation accordingly. Note that if no subnets are
795specified, then no reverse queries are answered.
Simon Kelley333b2ce2013-01-07 21:46:03 +0000796.TP
797.B --auth-soa=<serial>[,<hostmaster>[,<refresh>[,<retry>[,<expiry>]]]]
798Specify fields in the SOA record associated with authoritative
799zones. Note that this is optional, all the values are set to sane defaults.
800.TP
801.B --auth-sec-servers=<domain>[,<domain>[,<domain>...]]
802Specify any secondary servers for a zone for which dnsmasq is
803authoritative. These servers must be configured to get zone data from
804dnsmasq by zone transfer, and answer queries for the same
Simon Kelley6f130de2013-04-15 14:47:14 +0100805authoritative zones as dnsmasq.
Simon Kelley333b2ce2013-01-07 21:46:03 +0000806.TP
807.B --auth-peer=<ip-address>[,<ip-address>[,<ip-address>...]]
808Specify the addresses of secondary servers which are allowed to
809initiate zone transfer (AXFR) requests for zones for which dnsmasq is
Simon Kelley6f130de2013-04-15 14:47:14 +0100810authoritative. If this option is not given, then AXFR requests will be
Simon Kelley333b2ce2013-01-07 21:46:03 +0000811accepted from any secondary.
812.TP
Simon Kelley7de060b2011-08-26 17:24:52 +0100813.B --conntrack
814Read the Linux connection track mark associated with incoming DNS
815queries and set the same mark value on upstream traffic used to answer
816those queries. This allows traffic generated by dnsmasq to be
817associated with the queries which cause it, useful for bandwidth
818accounting and firewalling. Dnsmasq must have conntrack support
819compiled in and the kernel must have conntrack support
820included and configured. This option cannot be combined with
821--query-port.
822.TP
Simon Kelleyfa794662016-03-03 20:33:54 +0000823.B \-F, --dhcp-range=[tag:<tag>[,tag:<tag>],][set:<tag>,]<start-addr>[,<end-addr>|<mode>][,<netmask>[,<broadcast>]][,<lease time>]
Simon Kelley1adadf52012-02-13 22:15:58 +0000824.TP
Simon Kelley83f28be2013-04-03 14:46:46 +0100825.B \-F, --dhcp-range=[tag:<tag>[,tag:<tag>],][set:<tag>,]<start-IPv6addr>[,<end-IPv6addr>|constructor:<interface>][,<mode>][,<prefix-len>][,<lease time>]
Simon Kelley1adadf52012-02-13 22:15:58 +0000826
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000827Enable the DHCP server. Addresses will be given out from the range
Simon Kelley44a2a312004-03-10 20:04:35 +0000828<start-addr> to <end-addr> and from statically defined addresses given
829in
830.B dhcp-host
831options. If the lease time is given, then leases
Simon Kelleyb8187c82005-11-26 21:46:27 +0000832will be given for that length of time. The lease time is in seconds,
Simon Kelley7622fc02009-06-04 20:32:05 +0100833or minutes (eg 45m) or hours (eg 1h) or "infinite". If not given,
834the default lease time is one hour. The
Simon Kelleyc8257542012-03-28 21:15:41 +0100835minimum lease time is two minutes. For IPv6 ranges, the lease time
836maybe "deprecated"; this sets the preferred lifetime sent in a DHCP
837lease or router advertisement to zero, which causes clients to use
838other addresses, if available, for new connections as a prelude to renumbering.
839
840This option may be repeated, with different addresses, to enable DHCP
Simon Kelley44a2a312004-03-10 20:04:35 +0000841service to more than one network. For directly connected networks (ie,
842networks on which the machine running dnsmasq has an interface) the
Simon Kelley7de060b2011-08-26 17:24:52 +0100843netmask is optional: dnsmasq will determine it from the interface
844configuration. For networks which receive DHCP service via a relay
845agent, dnsmasq cannot determine the netmask itself, so it should be
846specified, otherwise dnsmasq will have to guess, based on the class (A, B or
847C) of the network address. The broadcast address is
Simon Kelley7622fc02009-06-04 20:32:05 +0100848always optional. It is always
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100849allowed to have more than one dhcp-range in a single subnet.
850
Simon Kelley1adadf52012-02-13 22:15:58 +0000851For IPv6, the parameters are slightly different: instead of netmask
Vladislav Grishenko4c82efc2013-12-03 16:05:30 +0000852and broadcast address, there is an optional prefix length which must
853be equal to or larger then the prefix length on the local interface. If not
Simon Kelley1adadf52012-02-13 22:15:58 +0000854given, this defaults to 64. Unlike the IPv4 case, the prefix length is not
Josh Soref730c6742017-02-06 16:14:04 +0000855automatically derived from the interface configuration. The minimum
Simon Kelley1adadf52012-02-13 22:15:58 +0000856size of the prefix length is 64.
857
Simon Kelley34d0a362013-01-02 11:40:56 +0000858IPv6 (only) supports another type of range. In this, the start address and optional end address contain only the network part (ie ::1) and they are followed by
859.B constructor:<interface>.
860This forms a template which describes how to create ranges, based on the addresses assigned to the interface. For instance
861
Simon Kelley83f28be2013-04-03 14:46:46 +0100862.B --dhcp-range=::1,::400,constructor:eth0
Simon Kelley34d0a362013-01-02 11:40:56 +0000863
Simon Kelley861c8912013-09-25 15:30:30 +0100864will look for addresses on
Simon Kelley429805d2013-05-31 13:47:26 +0100865eth0 and then create a range from <network>::1 to <network>::400. If
866the interface is assigned more than one network, then the
867corresponding ranges will be automatically created, and then
868deprecated and finally removed again as the address is deprecated and
869then deleted. The interface name may have a final "*" wildcard. Note
Simon Kelley861c8912013-09-25 15:30:30 +0100870that just any address on eth0 will not do: it must not be an
871autoconfigured or privacy address, or be deprecated.
Simon Kelley34d0a362013-01-02 11:40:56 +0000872
Vladislav Grishenkoe4cdbbf2013-08-19 16:20:31 +0100873If a dhcp-range is only being used for stateless DHCP and/or SLAAC,
874then the address can be simply ::
875
876.B --dhcp-range=::,constructor:eth0
877
Vladislav Grishenkoe4cdbbf2013-08-19 16:20:31 +0100878
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100879The optional
880.B set:<tag>
881sets an alphanumeric label which marks this network so that
Simon Kelley0a852542005-03-23 20:28:59 +0000882dhcp options may be specified on a per-network basis.
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100883When it is prefixed with 'tag:' instead, then its meaning changes from setting
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000884a tag to matching it. Only one tag may be set, but more than one tag
885may be matched.
886
Simon Kelleye8ca69e2012-03-26 21:23:26 +0100887The optional <mode> keyword may be
Simon Kelley33820b72004-04-03 21:10:00 +0100888.B static
889which tells dnsmasq to enable DHCP for the network specified, but not
Simon Kelley7622fc02009-06-04 20:32:05 +0100890to dynamically allocate IP addresses: only hosts which have static
Simon Kelley33820b72004-04-03 21:10:00 +0100891addresses given via
892.B dhcp-host
Simon Kelley52002052012-10-26 11:39:02 +0100893or from /etc/ethers will be served. A static-only subnet with address
894all zeros may be used as a "catch-all" address to enable replies to all
895Information-request packets on a subnet which is provided with
896stateless DHCPv6, ie
Moritz Warninge62e9b62014-03-20 15:32:22 +0000897.B --dhcp-range=::,static
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000898
Simon Kelleye46164e2012-04-16 16:39:38 +0100899For IPv4, the <mode> may be
Simon Kelley7622fc02009-06-04 20:32:05 +0100900.B proxy
901in which case dnsmasq will provide proxy-DHCP on the specified
902subnet. (See
903.B pxe-prompt
904and
905.B pxe-service
Simon Kelleye8ca69e2012-03-26 21:23:26 +0100906for details.)
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100907
Simon Kelleye8ca69e2012-03-26 21:23:26 +0100908For IPv6, the mode may be some combination of
Neil Jerram4918bd52015-06-10 22:23:20 +0100909.B ra-only, slaac, ra-names, ra-stateless, ra-advrouter, off-link.
Simon Kelleye8ca69e2012-03-26 21:23:26 +0100910
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000911.B ra-only
Simon Kelleye8ca69e2012-03-26 21:23:26 +0100912tells dnsmasq to offer Router Advertisement only on this subnet,
913and not DHCP.
914
915.B slaac
916tells dnsmasq to offer Router Advertisement on this subnet and to set
917the A bit in the router advertisement, so that the client will use
918SLAAC addresses. When used with a DHCP range or static DHCP address
919this results in the client having both a DHCP-assigned and a SLAAC
920address.
921
922.B ra-stateless
923sends router advertisements with the O and A bits set, and provides a
924stateless DHCP service. The client will use a SLAAC address, and use
925DHCP for other configuration information.
926
Simon Kelley7023e382012-03-09 12:05:49 +0000927.B ra-names
Simon Kelleye8ca69e2012-03-26 21:23:26 +0100928enables a mode
Simon Kelley7023e382012-03-09 12:05:49 +0000929which gives DNS names to dual-stack hosts which do SLAAC for
Simon Kelley884a6df2012-03-20 16:20:22 +0000930IPv6. Dnsmasq uses the host's IPv4 lease to derive the name, network
Simon Kelley7023e382012-03-09 12:05:49 +0000931segment and MAC address and assumes that the host will also have an
Simon Kelleye46164e2012-04-16 16:39:38 +0100932IPv6 address calculated using the SLAAC algorithm, on the same network
Simon Kelley884a6df2012-03-20 16:20:22 +0000933segment. The address is pinged, and if a reply is received, an AAAA
934record is added to the DNS for this IPv6
Simon Kelley7023e382012-03-09 12:05:49 +0000935address. Note that this is only happens for directly-connected
Simon Kelley884a6df2012-03-20 16:20:22 +0000936networks, (not one doing DHCP via a relay) and it will not work
937if a host is using privacy extensions.
Simon Kelleye8ca69e2012-03-26 21:23:26 +0100938.B ra-names
939can be combined with
940.B ra-stateless
941and
942.B slaac.
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000943
Simon Kelley7ea3d3f2014-04-25 22:04:05 +0100944.B ra-advrouter
945enables a mode where router address(es) rather than prefix(es) are included in the advertisements.
946This is described in RFC-3775 section 7.2 and is used in mobile IPv6. In this mode the interval option
947is also included, as described in RFC-3775 section 7.3.
948
Neil Jerram4918bd52015-06-10 22:23:20 +0100949.B off-link
950tells dnsmasq to advertise the prefix without the on-link (aka L) bit set.
951
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000952.TP
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100953.B \-G, --dhcp-host=[<hwaddr>][,id:<client_id>|*][,set:<tag>][,<ipaddr>][,<hostname>][,<lease_time>][,ignore]
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000954Specify per host parameters for the DHCP server. This allows a machine
955with a particular hardware address to be always allocated the same
956hostname, IP address and lease time. A hostname specified like this
957overrides any supplied by the DHCP client on the machine. It is also
Simon Kelleyc72daea2012-01-05 21:33:27 +0000958allowable to omit the hardware address and include the hostname, in
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000959which case the IP address and lease times will apply to any machine
960claiming that name. For example
961.B --dhcp-host=00:20:e0:3b:13:af,wap,infinite
962tells dnsmasq to give
Simon Kelleycdeda282006-03-16 20:16:06 +0000963the machine with hardware address 00:20:e0:3b:13:af the name wap, and
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000964an infinite DHCP lease.
965.B --dhcp-host=lap,192.168.0.199
966tells
967dnsmasq to always allocate the machine lap the IP address
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100968192.168.0.199.
969
970Addresses allocated like this are not constrained to be
971in the range given by the --dhcp-range option, but they must be in
972the same subnet as some valid dhcp-range. For
973subnets which don't need a pool of dynamically allocated addresses,
974use the "static" keyword in the dhcp-range declaration.
975
Simon Kelley89500e32013-09-20 16:29:20 +0100976It is allowed to use client identifiers (called client
Simon Kelley864913c2017-02-28 18:07:18 +0000977DUID in IPv6-land) rather than
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000978hardware addresses to identify hosts by prefixing with 'id:'. Thus:
979.B --dhcp-host=id:01:02:03:04,.....
980refers to the host with client identifier 01:02:03:04. It is also
981allowed to specify the client ID as text, like this:
Simon Kelleya84fa1d2004-04-23 22:21:21 +0100982.B --dhcp-host=id:clientidastext,.....
Simon Kelley9009d742008-11-14 20:04:27 +0000983
Simon Kelley1adadf52012-02-13 22:15:58 +0000984A single
985.B dhcp-host
986may contain an IPv4 address or an IPv6 address, or both. IPv6 addresses must be bracketed by square brackets thus:
987.B --dhcp-host=laptop,[1234::56]
Simon Kelley30393102013-01-17 16:34:16 +0000988IPv6 addresses may contain only the host-identifier part:
989.B --dhcp-host=laptop,[::56]
Simon Kelley6f130de2013-04-15 14:47:14 +0100990in which case they act as wildcards in constructed dhcp ranges, with
Simon Kelley30393102013-01-17 16:34:16 +0000991the appropriate network part inserted.
Simon Kelley89500e32013-09-20 16:29:20 +0100992Note that in IPv6 DHCP, the hardware address may not be
993available, though it normally is for direct-connected clients, or
994clients using DHCP relays which support RFC 6939.
Simon Kelley1adadf52012-02-13 22:15:58 +0000995
Simon Kelley89500e32013-09-20 16:29:20 +0100996
997For DHCPv4, the special option id:* means "ignore any client-id
Simon Kelleya84fa1d2004-04-23 22:21:21 +0100998and use MAC addresses only." This is useful when a client presents a client-id sometimes
999but not others.
Simon Kelley9009d742008-11-14 20:04:27 +00001000
Simon Kelley1ab84e22004-01-29 16:48:35 +00001001If a name appears in /etc/hosts, the associated address can be
1002allocated to a DHCP lease, but only if a
1003.B --dhcp-host
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001004option specifying the name also exists. Only one hostname can be
1005given in a
1006.B dhcp-host
1007option, but aliases are possible by using CNAMEs. (See
1008.B --cname
1009).
1010
1011The special keyword "ignore"
Simon Kelley33820b72004-04-03 21:10:00 +01001012tells dnsmasq to never offer a DHCP lease to a machine. The machine
1013can be specified by hardware address, client ID or hostname, for
1014instance
1015.B --dhcp-host=00:20:e0:3b:13:af,ignore
1016This is
1017useful when there is another DHCP server on the network which should
Simon Kelley9009d742008-11-14 20:04:27 +00001018be used by some machines.
1019
Tomas Hozzaa66d36e2013-04-22 15:08:07 +01001020The set:<tag> construct sets the tag
Simon Kelley9009d742008-11-14 20:04:27 +00001021whenever this dhcp-host directive is in use. This can be used to
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001022selectively send DHCP options just for this host. More than one tag
1023can be set in a dhcp-host directive (but not in other places where
1024"set:<tag>" is allowed). When a host matches any
Simon Kelley5aabfc72007-08-29 11:24:47 +01001025dhcp-host directive (or one implied by /etc/ethers) then the special
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001026tag "known" is set. This allows dnsmasq to be configured to
Simon Kelley5aabfc72007-08-29 11:24:47 +01001027ignore requests from unknown machines using
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001028.B --dhcp-ignore=tag:!known
Simon Kelleyb2a9c572017-04-30 18:21:31 +01001029If the host matches only a dhcp-host directive which cannot
1030be used because it specifies an address on different subnet, the tag "known-othernet" is set.
Simon Kelley0a852542005-03-23 20:28:59 +00001031Ethernet addresses (but not client-ids) may have
1032wildcard bytes, so for example
1033.B --dhcp-host=00:20:e0:3b:13:*,ignore
Simon Kelleycdeda282006-03-16 20:16:06 +00001034will cause dnsmasq to ignore a range of hardware addresses. Note that
Simon Kelley0a852542005-03-23 20:28:59 +00001035the "*" will need to be escaped or quoted on a command line, but not
Simon Kelley9009d742008-11-14 20:04:27 +00001036in the configuration file.
1037
1038Hardware addresses normally match any
Simon Kelleycdeda282006-03-16 20:16:06 +00001039network (ARP) type, but it is possible to restrict them to a single
1040ARP type by preceding them with the ARP-type (in HEX) and "-". so
1041.B --dhcp-host=06-00:20:e0:3b:13:af,1.2.3.4
1042will only match a
1043Token-Ring hardware address, since the ARP-address type for token ring
Simon Kelley9009d742008-11-14 20:04:27 +00001044is 6.
1045
Simon Kelley1adadf52012-02-13 22:15:58 +00001046As a special case, in DHCPv4, it is possible to include more than one
Simon Kelley73a08a22009-02-05 20:28:08 +00001047hardware address. eg:
1048.B --dhcp-host=11:22:33:44:55:66,12:34:56:78:90:12,192.168.0.2
1049This allows an IP address to be associated with
Simon Kelley9009d742008-11-14 20:04:27 +00001050multiple hardware addresses, and gives dnsmasq permission to abandon a
1051DHCP lease to one of the hardware addresses when another one asks for
1052a lease. Beware that this is a dangerous thing to do, it will only
1053work reliably if only one of the hardware addresses is active at any
Simon Kelley73a08a22009-02-05 20:28:08 +00001054time and there is no way for dnsmasq to enforce this. It is, for instance,
1055useful to allocate a stable IP address to a laptop which
Simon Kelley9009d742008-11-14 20:04:27 +00001056has both wired and wireless interfaces.
Simon Kelley5aabfc72007-08-29 11:24:47 +01001057.TP
Simon Kelley28866e92011-02-14 20:19:14 +00001058.B --dhcp-hostsfile=<path>
1059Read DHCP host information from the specified file. If a directory
1060is given, then read all the files contained in that directory. The file contains
Simon Kelley5aabfc72007-08-29 11:24:47 +01001061information about one host per line. The format of a line is the same
1062as text to the right of '=' in --dhcp-host. The advantage of storing DHCP host information
1063in this file is that it can be changed without re-starting dnsmasq:
1064the file will be re-read when dnsmasq receives SIGHUP.
Simon Kelley824af852008-02-12 20:43:05 +00001065.TP
Simon Kelley28866e92011-02-14 20:19:14 +00001066.B --dhcp-optsfile=<path>
1067Read DHCP option information from the specified file. If a directory
1068is given, then read all the files contained in that directory. The advantage of
Simon Kelley824af852008-02-12 20:43:05 +00001069using this option is the same as for --dhcp-hostsfile: the
Simon Kelley1f15b812009-10-13 17:49:32 +01001070dhcp-optsfile will be re-read when dnsmasq receives SIGHUP. Note that
1071it is possible to encode the information in a
Simon Kelley5874f3e2016-07-10 22:12:08 +01001072.B --dhcp-boot
1073flag as DHCP options, using the options names bootfile-name,
1074server-ip-address and tftp-server. This allows these to be included
1075in a dhcp-optsfile.
Simon Kelley5f4dc5c2015-01-20 20:51:02 +00001076.TP
1077.B --dhcp-hostsdir=<path>
Simon Kelley3d04f462015-01-31 21:59:13 +00001078This is equivalent to dhcp-hostsfile, except for the following. The path MUST be a
Simon Kelley5f4dc5c2015-01-20 20:51:02 +00001079directory, and not an individual file. Changed or new files within
1080the directory are read automatically, without the need to send SIGHUP.
1081If a file is deleted for changed after it has been read by dnsmasq, then the
Josh Soref730c6742017-02-06 16:14:04 +00001082host record it contained will remain until dnsmasq receives a SIGHUP, or
Simon Kelley5f4dc5c2015-01-20 20:51:02 +00001083is restarted; ie host records are only added dynamically.
Simon Kelleyefb8b552015-02-07 22:36:34 +00001084.TP
Simon Kelley3d04f462015-01-31 21:59:13 +00001085.B --dhcp-optsdir=<path>
1086This is equivalent to dhcp-optsfile, with the differences noted for --dhcp-hostsdir.
Simon Kelley44a2a312004-03-10 20:04:35 +00001087.TP
1088.B \-Z, --read-ethers
1089Read /etc/ethers for information about hosts for the DHCP server. The
1090format of /etc/ethers is a hardware address, followed by either a
1091hostname or dotted-quad IP address. When read by dnsmasq these lines
1092have exactly the same effect as
1093.B --dhcp-host
Simon Kelley5aabfc72007-08-29 11:24:47 +01001094options containing the same information. /etc/ethers is re-read when
Simon Kelley1adadf52012-02-13 22:15:58 +00001095dnsmasq receives SIGHUP. IPv6 addresses are NOT read from /etc/ethers.
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001096.TP
Simon Kelley1adadf52012-02-13 22:15:58 +00001097.B \-O, --dhcp-option=[tag:<tag>,[tag:<tag>,]][encap:<opt>,][vi-encap:<enterprise>,][vendor:[<vendor-class>],][<opt>|option:<opt-name>|option6:<opt>|option6:<opt-name>],[<value>[,<value>]]
Simon Kelleyb8187c82005-11-26 21:46:27 +00001098Specify different or extra options to DHCP clients. By default,
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001099dnsmasq sends some standard options to DHCP clients, the netmask and
1100broadcast address are set to the same as the host running dnsmasq, and
1101the DNS server and default route are set to the address of the machine
Simon Kelley1adadf52012-02-13 22:15:58 +00001102running dnsmasq. (Equivalent rules apply for IPv6.) If the domain name option has been set, that is sent.
Simon Kelleyf2621c72007-04-29 19:47:21 +01001103This configuration allows these defaults to be overridden,
1104or other options specified. The option, to be sent may be given as a
1105decimal number or as "option:<option-name>" The option numbers are
1106specified in RFC2132 and subsequent RFCs. The set of option-names
1107known by dnsmasq can be discovered by running "dnsmasq --help dhcp".
1108For example, to set the default route option to
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001109192.168.4.4, do
Simon Kelleyf2621c72007-04-29 19:47:21 +01001110.B --dhcp-option=3,192.168.4.4
1111or
1112.B --dhcp-option = option:router, 192.168.4.4
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001113and to set the time-server address to 192.168.0.4, do
Simon Kelleyf2621c72007-04-29 19:47:21 +01001114.B --dhcp-option = 42,192.168.0.4
1115or
1116.B --dhcp-option = option:ntp-server, 192.168.0.4
Simon Kelleyc3a04082014-01-11 22:18:19 +00001117The special address 0.0.0.0 is taken to mean "the address of the
1118machine running dnsmasq".
1119
1120Data types allowed are comma separated
1121dotted-quad IPv4 addresses, []-wrapped IPv6 addresses, a decimal number, colon-separated hex digits
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001122and a text string. If the optional tags are given then
1123this option is only sent when all the tags are matched.
Simon Kelley91dccd02005-03-31 17:48:32 +01001124
Simon Kelleycdeda282006-03-16 20:16:06 +00001125Special processing is done on a text argument for option 119, to
Simon Kelley832af0b2007-01-21 20:01:28 +00001126conform with RFC 3397. Text or dotted-quad IP addresses as arguments
1127to option 120 are handled as per RFC 3361. Dotted-quad IP addresses
1128which are followed by a slash and then a netmask size are encoded as
1129described in RFC 3442.
Simon Kelleycdeda282006-03-16 20:16:06 +00001130
Simon Kelley1adadf52012-02-13 22:15:58 +00001131IPv6 options are specified using the
1132.B option6:
1133keyword, followed by the option number or option name. The IPv6 option
1134name space is disjoint from the IPv4 option name space. IPv6 addresses
1135in options must be bracketed with square brackets, eg.
1136.B --dhcp-option=option6:ntp-server,[1234::56]
Simon Kelleyc3a04082014-01-11 22:18:19 +00001137For IPv6, [::] means "the global address of
1138the machine running dnsmasq", whilst [fd00::] is replaced with the
1139ULA, if it exists, and [fe80::] with the link-local address.
Simon Kelley1adadf52012-02-13 22:15:58 +00001140
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001141Be careful: no checking is done that the correct type of data for the
Simon Kelley26128d22004-11-14 16:43:54 +00001142option number is sent, it is quite possible to
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001143persuade dnsmasq to generate illegal DHCP packets with injudicious use
Simon Kelley91dccd02005-03-31 17:48:32 +01001144of this flag. When the value is a decimal number, dnsmasq must determine how
1145large the data item is. It does this by examining the option number and/or the
Simon Kelleyb8187c82005-11-26 21:46:27 +00001146value, but can be overridden by appending a single letter flag as follows:
Simon Kelley91dccd02005-03-31 17:48:32 +01001147b = one byte, s = two bytes, i = four bytes. This is mainly useful with
Simon Kelley3d8df262005-08-29 12:19:27 +01001148encapsulated vendor class options (see below) where dnsmasq cannot
1149determine data size from the option number. Option data which
1150consists solely of periods and digits will be interpreted by dnsmasq
1151as an IP address, and inserted into an option as such. To force a
1152literal string, use quotes. For instance when using option 66 to send
1153a literal IP address as TFTP server name, it is necessary to do
1154.B --dhcp-option=66,"1.2.3.4"
Simon Kelley91dccd02005-03-31 17:48:32 +01001155
Simon Kelley1adadf52012-02-13 22:15:58 +00001156Encapsulated Vendor-class options may also be specified (IPv4 only) using
Simon Kelley91dccd02005-03-31 17:48:32 +01001157--dhcp-option: for instance
Simon Kelley1b7ecd12007-02-05 14:57:57 +00001158.B --dhcp-option=vendor:PXEClient,1,0.0.0.0
1159sends the encapsulated vendor
1160class-specific option "mftp-address=0.0.0.0" to any client whose
1161vendor-class matches "PXEClient". The vendor-class matching is
Simon Kelley6b010842007-02-12 20:32:07 +00001162substring based (see --dhcp-vendorclass for details). If a
1163vendor-class option (number 60) is sent by dnsmasq, then that is used
1164for selecting encapsulated options in preference to any sent by the
1165client. It is
Simon Kelley1b7ecd12007-02-05 14:57:57 +00001166possible to omit the vendorclass completely;
1167.B --dhcp-option=vendor:,1,0.0.0.0
Simon Kelley1adadf52012-02-13 22:15:58 +00001168in which case the encapsulated option is always sent.
Simon Kelley73a08a22009-02-05 20:28:08 +00001169
Simon Kelley1adadf52012-02-13 22:15:58 +00001170Options may be encapsulated (IPv4 only) within other options: for instance
Simon Kelley73a08a22009-02-05 20:28:08 +00001171.B --dhcp-option=encap:175, 190, "iscsi-client0"
1172will send option 175, within which is the option 190. If multiple
1173options are given which are encapsulated with the same option number
1174then they will be correctly combined into one encapsulated option.
1175encap: and vendor: are may not both be set in the same dhcp-option.
1176
Simon Kelley316e2732010-01-22 20:16:09 +00001177The final variant on encapsulated options is "Vendor-Identifying
1178Vendor Options" as specified by RFC3925. These are denoted like this:
1179.B --dhcp-option=vi-encap:2, 10, "text"
1180The number in the vi-encap: section is the IANA enterprise number
Simon Kelley1adadf52012-02-13 22:15:58 +00001181used to identify this option. This form of encapsulation is supported
1182in IPv6.
1183
Simon Kelley1b7ecd12007-02-05 14:57:57 +00001184The address 0.0.0.0 is not treated specially in
Simon Kelley73a08a22009-02-05 20:28:08 +00001185encapsulated options.
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001186.TP
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001187.B --dhcp-option-force=[tag:<tag>,[tag:<tag>,]][encap:<opt>,][vi-encap:<enterprise>,][vendor:[<vendor-class>],]<opt>,[<value>[,<value>]]
Simon Kelley6b010842007-02-12 20:32:07 +00001188This works in exactly the same way as
Simon Kelleyf2621c72007-04-29 19:47:21 +01001189.B --dhcp-option
1190except that the option will always be sent, even if the client does
Simon Kelley6b010842007-02-12 20:32:07 +00001191not ask for it in the parameter request list. This is sometimes
1192needed, for example when sending options to PXELinux.
1193.TP
Simon Kelley824af852008-02-12 20:43:05 +00001194.B --dhcp-no-override
Simon Kelley1adadf52012-02-13 22:15:58 +00001195(IPv4 only) Disable re-use of the DHCP servername and filename fields as extra
Simon Kelley824af852008-02-12 20:43:05 +00001196option space. If it can, dnsmasq moves the boot server and filename
1197information (from dhcp-boot) out of their dedicated fields into
1198DHCP options. This make extra space available in the DHCP packet for
1199options but can, rarely, confuse old or broken clients. This flag
1200forces "simple and safe" behaviour to avoid problems in such a case.
1201.TP
Simon Kelleyff7eea22013-09-04 18:01:38 +01001202.B --dhcp-relay=<local address>,<server address>[,<interface]
1203Configure dnsmasq to do DHCP relay. The local address is an address
1204allocated to an interface on the host running dnsmasq. All DHCP
1205requests arriving on that interface will we relayed to a remote DHCP
1206server at the server address. It is possible to relay from a single local
1207address to multiple remote servers by using multiple dhcp-relay
1208configs with the same local address and different server
1209addresses. A server address must be an IP literal address, not a
1210domain name. In the case of DHCPv6, the server address may be the
1211ALL_SERVERS multicast address, ff05::1:3. In this case the interface
1212must be given, not be wildcard, and is used to direct the multicast to the
1213correct interface to reach the DHCP server.
1214
1215Access control for DHCP clients has the same rules as for the DHCP
1216server, see --interface, --except-interface, etc. The optional
1217interface name in the dhcp-relay config has a different function: it
1218controls on which interface DHCP replies from the server will be
1219accepted. This is intended for configurations which have three
1220interfaces: one being relayed from, a second connecting the DHCP
1221server, and a third untrusted network, typically the wider
1222internet. It avoids the possibility of spoof replies arriving via this
1223third interface.
1224
1225It is allowed to have dnsmasq act as a DHCP server on one set of
1226interfaces and relay from a disjoint set of interfaces. Note that
1227whilst it is quite possible to write configurations which appear to
1228act as a server and a relay on the same interface, this is not
1229supported: the relay function will take precedence.
1230
1231Both DHCPv4 and DHCPv6 relay is supported. It's not possible to relay
1232DHCPv4 to a DHCPv6 server or vice-versa.
1233.TP
Simon Kelley1adadf52012-02-13 22:15:58 +00001234.B \-U, --dhcp-vendorclass=set:<tag>,[enterprise:<IANA-enterprise number>,]<vendor-class>
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001235Map from a vendor-class string to a tag. Most DHCP clients provide a
Simon Kelleya2226412004-05-13 20:27:08 +01001236"vendor class" which represents, in some sense, the type of host. This option
Simon Kelleyf2621c72007-04-29 19:47:21 +01001237maps vendor classes to tags, so that DHCP options may be selectively delivered
Simon Kelleya84fa1d2004-04-23 22:21:21 +01001238to different classes of hosts. For example
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001239.B dhcp-vendorclass=set:printers,Hewlett-Packard JetDirect
Simon Kelleya84fa1d2004-04-23 22:21:21 +01001240will allow options to be set only for HP printers like so:
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001241.B --dhcp-option=tag:printers,3,192.168.4.4
Simon Kelleya2226412004-05-13 20:27:08 +01001242The vendor-class string is
1243substring matched against the vendor-class supplied by the client, to
Simon Kelley1adadf52012-02-13 22:15:58 +00001244allow fuzzy matching. The set: prefix is optional but allowed for
1245consistency.
1246
1247Note that in IPv6 only, vendorclasses are namespaced with an
1248IANA-allocated enterprise number. This is given with enterprise:
1249keyword and specifies that only vendorclasses matching the specified
1250number should be searched.
Simon Kelleya2226412004-05-13 20:27:08 +01001251.TP
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001252.B \-j, --dhcp-userclass=set:<tag>,<user-class>
1253Map from a user-class string to a tag (with substring
Simon Kelleya2226412004-05-13 20:27:08 +01001254matching, like vendor classes). Most DHCP clients provide a
1255"user class" which is configurable. This option
Simon Kelleyf2621c72007-04-29 19:47:21 +01001256maps user classes to tags, so that DHCP options may be selectively delivered
Simon Kelleya2226412004-05-13 20:27:08 +01001257to different classes of hosts. It is possible, for instance to use
1258this to set a different printer server for hosts in the class
1259"accounts" than for hosts in the class "engineering".
Simon Kelleya84fa1d2004-04-23 22:21:21 +01001260.TP
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001261.B \-4, --dhcp-mac=set:<tag>,<MAC address>
Simon Kelley89500e32013-09-20 16:29:20 +01001262Map from a MAC address to a tag. The MAC address may include
Simon Kelleycdeda282006-03-16 20:16:06 +00001263wildcards. For example
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001264.B --dhcp-mac=set:3com,01:34:23:*:*:*
Simon Kelleycdeda282006-03-16 20:16:06 +00001265will set the tag "3com" for any host whose MAC address matches the pattern.
1266.TP
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001267.B --dhcp-circuitid=set:<tag>,<circuit-id>, --dhcp-remoteid=set:<tag>,<remote-id>
1268Map from RFC3046 relay agent options to tags. This data may
Simon Kelleyf2621c72007-04-29 19:47:21 +01001269be provided by DHCP relay agents. The circuit-id or remote-id is
1270normally given as colon-separated hex, but is also allowed to be a
1271simple string. If an exact match is achieved between the circuit or
Simon Kelley1adadf52012-02-13 22:15:58 +00001272agent ID and one provided by a relay agent, the tag is set.
1273
1274.B dhcp-remoteid
1275(but not dhcp-circuitid) is supported in IPv6.
Simon Kelleyf2621c72007-04-29 19:47:21 +01001276.TP
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001277.B --dhcp-subscrid=set:<tag>,<subscriber-id>
Simon Kelley1adadf52012-02-13 22:15:58 +00001278(IPv4 and IPv6) Map from RFC3993 subscriber-id relay agent options to tags.
Simon Kelley824af852008-02-12 20:43:05 +00001279.TP
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001280.B --dhcp-proxy[=<ip addr>]......
Simon Kelley07933802012-02-14 20:55:25 +00001281(IPv4 only) A normal DHCP relay agent is only used to forward the initial parts of
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001282a DHCP interaction to the DHCP server. Once a client is configured, it
1283communicates directly with the server. This is undesirable if the
Tomas Hozzaa66d36e2013-04-22 15:08:07 +01001284relay agent is adding extra information to the DHCP packets, such as
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001285that used by
1286.B dhcp-circuitid
1287and
1288.B dhcp-remoteid.
1289A full relay implementation can use the RFC 5107 serverid-override
1290option to force the DHCP server to use the relay as a full proxy, with all
1291packets passing through it. This flag provides an alternative method
1292of doing the same thing, for relays which don't support RFC
12935107. Given alone, it manipulates the server-id for all interactions
1294via relays. If a list of IP addresses is given, only interactions via
1295relays at those addresses are affected.
1296.TP
1297.B --dhcp-match=set:<tag>,<option number>|option:<option name>|vi-encap:<enterprise>[,<value>]
1298Without a value, set the tag if the client sends a DHCP
Simon Kelley73a08a22009-02-05 20:28:08 +00001299option of the given number or name. When a value is given, set the tag only if
1300the option is sent and matches the value. The value may be of the form
Tomas Hozzaa66d36e2013-04-22 15:08:07 +01001301"01:ff:*:02" in which case the value must match (apart from wildcards)
Simon Kelley73a08a22009-02-05 20:28:08 +00001302but the option sent may have unmatched data past the end of the
1303value. The value may also be of the same form as in
1304.B dhcp-option
1305in which case the option sent is treated as an array, and one element
1306must match, so
1307
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001308--dhcp-match=set:efi-ia32,option:client-arch,6
Simon Kelley73a08a22009-02-05 20:28:08 +00001309
1310will set the tag "efi-ia32" if the the number 6 appears in the list of
1311architectures sent by the client in option 93. (See RFC 4578 for
Simon Kelley316e2732010-01-22 20:16:09 +00001312details.) If the value is a string, substring matching is used.
1313
Tomas Hozzaa66d36e2013-04-22 15:08:07 +01001314The special form with vi-encap:<enterprise number> matches against
Simon Kelley316e2732010-01-22 20:16:09 +00001315vendor-identifying vendor classes for the specified enterprise. Please
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001316see RFC 3925 for more details of these rare and interesting beasts.
Simon Kelleyf2621c72007-04-29 19:47:21 +01001317.TP
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001318.B --tag-if=set:<tag>[,set:<tag>[,tag:<tag>[,tag:<tag>]]]
1319Perform boolean operations on tags. Any tag appearing as set:<tag> is set if
1320all the tags which appear as tag:<tag> are set, (or unset when tag:!<tag> is used)
1321If no tag:<tag> appears set:<tag> tags are set unconditionally.
1322Any number of set: and tag: forms may appear, in any order.
李三0159ed6bdb02017-11-30 16:47:01 +00001323Tag-if lines are executed in order, so if the tag in tag:<tag> is a
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001324tag set by another
1325.B tag-if,
1326the line which sets the tag must precede the one which tests it.
1327.TP
1328.B \-J, --dhcp-ignore=tag:<tag>[,tag:<tag>]
1329When all the given tags appear in the tag set ignore the host and do
Simon Kelley26128d22004-11-14 16:43:54 +00001330not allocate it a DHCP lease.
1331.TP
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001332.B --dhcp-ignore-names[=tag:<tag>[,tag:<tag>]]
1333When all the given tags appear in the tag set, ignore any hostname
Simon Kelley9e038942008-05-30 20:06:34 +01001334provided by the host. Note that, unlike dhcp-ignore, it is permissible
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001335to supply no tags, in which case DHCP-client supplied hostnames
Simon Kelley832af0b2007-01-21 20:01:28 +00001336are always ignored, and DHCP hosts are added to the DNS using only
1337dhcp-host configuration in dnsmasq and the contents of /etc/hosts and
1338/etc/ethers.
1339.TP
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001340.B --dhcp-generate-names=tag:<tag>[,tag:<tag>]
Simon Kelley1adadf52012-02-13 22:15:58 +00001341(IPv4 only) Generate a name for DHCP clients which do not otherwise have one,
Tomas Hozzaa66d36e2013-04-22 15:08:07 +01001342using the MAC address expressed in hex, separated by dashes. Note that
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001343if a host provides a name, it will be used by preference to this,
1344unless
1345.B --dhcp-ignore-names
1346is set.
1347.TP
1348.B --dhcp-broadcast[=tag:<tag>[,tag:<tag>]]
Simon Kelley1adadf52012-02-13 22:15:58 +00001349(IPv4 only) When all the given tags appear in the tag set, always use broadcast to
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001350communicate with the host when it is unconfigured. It is permissible
1351to supply no tags, in which case this is unconditional. Most DHCP clients which
Simon Kelley824af852008-02-12 20:43:05 +00001352need broadcast replies set a flag in their requests so that this
1353happens automatically, some old BOOTP clients do not.
1354.TP
Simon Kelley7de060b2011-08-26 17:24:52 +01001355.B \-M, --dhcp-boot=[tag:<tag>,]<filename>,[<servername>[,<server address>|<tftp_servername>]]
Simon Kelley1adadf52012-02-13 22:15:58 +00001356(IPv4 only) Set BOOTP options to be returned by the DHCP server. Server name and
Simon Kelley832af0b2007-01-21 20:01:28 +00001357address are optional: if not provided, the name is left empty, and the
1358address set to the address of the machine running dnsmasq. If dnsmasq
1359is providing a TFTP service (see
1360.B --enable-tftp
1361) then only the filename is required here to enable network booting.
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001362If the optional tag(s) are given,
1363they must match for this configuration to be sent.
Simon Kelley7de060b2011-08-26 17:24:52 +01001364Instead of an IP address, the TFTP server address can be given as a domain
1365name which is looked up in /etc/hosts. This name can be associated in
1366/etc/hosts with multiple IP addresses, which are used round-robin.
1367This facility can be used to load balance the tftp load among a set of servers.
1368.TP
1369.B --dhcp-sequential-ip
1370Dnsmasq is designed to choose IP addresses for DHCP clients using a
1371hash of the client's MAC address. This normally allows a client's
1372address to remain stable long-term, even if the client sometimes allows its DHCP
1373lease to expire. In this default mode IP addresses are distributed
1374pseudo-randomly over the entire available address range. There are
1375sometimes circumstances (typically server deployment) where it is more
1376convenient to have IP
1377addresses allocated sequentially, starting from the lowest available
1378address, and setting this flag enables this mode. Note that in the
1379sequential mode, clients which allow a lease to expire are much more
1380likely to move IP address; for this reason it should not be generally used.
Simon Kelley7622fc02009-06-04 20:32:05 +01001381.TP
Simon Kelley751d6f42012-02-10 15:24:51 +00001382.B --pxe-service=[tag:<tag>,]<CSA>,<menu text>[,<basename>|<bootservicetype>][,<server address>|<server_name>]
Simon Kelley7622fc02009-06-04 20:32:05 +01001383Most uses of PXE boot-ROMS simply allow the PXE
1384system to obtain an IP address and then download the file specified by
1385.B dhcp-boot
1386and execute it. However the PXE system is capable of more complex
1387functions when supported by a suitable DHCP server.
1388
1389This specifies a boot option which may appear in a PXE boot menu. <CSA> is
1390client system type, only services of the correct type will appear in a
1391menu. The known types are x86PC, PC98, IA64_EFI, Alpha, Arc_x86,
Simon Kelley68bea102016-05-11 22:15:06 +01001392Intel_Lean_Client, IA32_EFI, X86-64_EFI, Xscale_EFI, BC_EFI, ARM32_EFI and ARM64_EFI; an
Simon Kelley7622fc02009-06-04 20:32:05 +01001393integer may be used for other types. The
1394parameter after the menu text may be a file name, in which case dnsmasq acts as a
1395boot server and directs the PXE client to download the file by TFTP,
1396either from itself (
1397.B enable-tftp
Simon Kelley751d6f42012-02-10 15:24:51 +00001398must be set for this to work) or another TFTP server if the final server
1399address/name is given.
Simon Kelley7622fc02009-06-04 20:32:05 +01001400Note that the "layer"
Simon Kelleyfe71bba2016-05-14 20:50:45 +01001401suffix (normally ".0") is supplied by PXE, and need not be added to
1402the basename. Alternatively, the basename may be a filename, complete with suffix, in which case
1403no layer suffix is added. If an integer boot service type, rather than a basename
Simon Kelley7622fc02009-06-04 20:32:05 +01001404is given, then the PXE client will search for a
1405suitable boot service for that type on the network. This search may be done
Simon Kelley751d6f42012-02-10 15:24:51 +00001406by broadcast, or direct to a server if its IP address/name is provided.
Simon Kelley316e2732010-01-22 20:16:09 +00001407If no boot service type or filename is provided (or a boot service type of 0 is specified)
1408then the menu entry will abort the net boot procedure and
Simon Kelley751d6f42012-02-10 15:24:51 +00001409continue booting from local media. The server address can be given as a domain
1410name which is looked up in /etc/hosts. This name can be associated in
1411/etc/hosts with multiple IP addresses, which are used round-robin.
Simon Kelley7622fc02009-06-04 20:32:05 +01001412.TP
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001413.B --pxe-prompt=[tag:<tag>,]<prompt>[,<timeout>]
Simon Kelley7622fc02009-06-04 20:32:05 +01001414Setting this provides a prompt to be displayed after PXE boot. If the
1415timeout is given then after the
1416timeout has elapsed with no keyboard input, the first available menu
1417option will be automatically executed. If the timeout is zero then the first available menu
1418item will be executed immediately. If
1419.B pxe-prompt
Tomas Hozzaa66d36e2013-04-22 15:08:07 +01001420is omitted the system will wait for user input if there are multiple
Simon Kelley7622fc02009-06-04 20:32:05 +01001421items in the menu, but boot immediately if
1422there is only one. See
1423.B pxe-service
1424for details of menu items.
1425
1426Dnsmasq supports PXE "proxy-DHCP", in this case another DHCP server on
1427the network is responsible for allocating IP addresses, and dnsmasq
1428simply provides the information given in
1429.B pxe-prompt
1430and
1431.B pxe-service
1432to allow netbooting. This mode is enabled using the
1433.B proxy
1434keyword in
1435.B dhcp-range.
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001436.TP
Simon Kelley44a2a312004-03-10 20:04:35 +00001437.B \-X, --dhcp-lease-max=<number>
1438Limits dnsmasq to the specified maximum number of DHCP leases. The
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001439default is 1000. This limit is to prevent DoS attacks from hosts which
Simon Kelley44a2a312004-03-10 20:04:35 +00001440create thousands of leases and use lots of memory in the dnsmasq
1441process.
1442.TP
Simon Kelleyfd9fa482004-10-21 20:24:00 +01001443.B \-K, --dhcp-authoritative
Simon Kelley095f6252013-01-30 11:31:02 +00001444Should be set when dnsmasq is definitely the only DHCP server on a network.
1445For DHCPv4, it changes the behaviour from strict RFC compliance so that DHCP requests on
Simon Kelleyfd9fa482004-10-21 20:24:00 +01001446unknown leases from unknown hosts are not ignored. This allows new hosts
Simon Kelleycdeda282006-03-16 20:16:06 +00001447to get a lease without a tedious timeout under all circumstances. It also
1448allows dnsmasq to rebuild its lease database without each client needing to
Simon Kelley095f6252013-01-30 11:31:02 +00001449reacquire a lease, if the database is lost. For DHCPv6 it sets the
1450priority in replies to 255 (the maximum) instead of 0 (the minimum).
Simon Kelley9e038942008-05-30 20:06:34 +01001451.TP
1452.B --dhcp-alternate-port[=<server port>[,<client port>]]
Simon Kelley1adadf52012-02-13 22:15:58 +00001453(IPv4 only) Change the ports used for DHCP from the default. If this option is
Simon Kelley9e038942008-05-30 20:06:34 +01001454given alone, without arguments, it changes the ports used for DHCP
1455from 67 and 68 to 1067 and 1068. If a single argument is given, that
1456port number is used for the server and the port number plus one used
1457for the client. Finally, two port numbers allows arbitrary
1458specification of both server and client ports for DHCP.
Simon Kelleyfd9fa482004-10-21 20:24:00 +01001459.TP
Simon Kelley9009d742008-11-14 20:04:27 +00001460.B \-3, --bootp-dynamic[=<network-id>[,<network-id>]]
Simon Kelley1adadf52012-02-13 22:15:58 +00001461(IPv4 only) Enable dynamic allocation of IP addresses to BOOTP clients. Use this
Simon Kelley3d8df262005-08-29 12:19:27 +01001462with care, since each address allocated to a BOOTP client is leased
1463forever, and therefore becomes permanently unavailable for re-use by
Simon Kelley9009d742008-11-14 20:04:27 +00001464other hosts. if this is given without tags, then it unconditionally
1465enables dynamic allocation. With tags, only when the tags are all
1466set. It may be repeated with different tag sets.
Simon Kelley3d8df262005-08-29 12:19:27 +01001467.TP
Simon Kelley5e9e0ef2006-04-17 14:24:29 +01001468.B \-5, --no-ping
Christian Demsar23facf02015-05-20 20:26:23 +01001469(IPv4 only) By default, the DHCP server will attempt to ensure that an address is
Simon Kelley5e9e0ef2006-04-17 14:24:29 +01001470not in use before allocating it to a host. It does this by sending an
1471ICMP echo request (aka "ping") to the address in question. If it gets
1472a reply, then the address must already be in use, and another is
1473tried. This flag disables this check. Use with caution.
1474.TP
Simon Kelleyf2621c72007-04-29 19:47:21 +01001475.B --log-dhcp
1476Extra logging for DHCP: log all the options sent to DHCP clients and
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001477the tags used to determine them.
Simon Kelleyf2621c72007-04-29 19:47:21 +01001478.TP
Kevin Darbyshire-Bryant8c0b73d2013-10-11 11:56:33 +01001479.B --quiet-dhcp, --quiet-dhcp6, --quiet-ra
1480Suppress logging of the routine operation of these protocols. Errors and
1481problems will still be logged. --quiet-dhcp and quiet-dhcp6 are
1482over-ridden by --log-dhcp.
1483.TP
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001484.B \-l, --dhcp-leasefile=<path>
Simon Kelley73a08a22009-02-05 20:28:08 +00001485Use the specified file to store DHCP lease information.
Simon Kelley208b65c2006-08-05 21:41:37 +01001486.TP
Simon Kelley8b372702012-03-09 17:45:10 +00001487.B --dhcp-duid=<enterprise-id>,<uid>
1488(IPv6 only) Specify the server persistent UID which the DHCPv6 server
1489will use. This option is not normally required as dnsmasq creates a
1490DUID automatically when it is first needed. When given, this option
1491provides dnsmasq the data required to create a DUID-EN type DUID. Note
1492that once set, the DUID is stored in the lease database, so to change between DUID-EN and
1493automatically created DUIDs or vice-versa, the lease database must be
klemens43517fc2017-02-19 15:53:37 +00001494re-initialised. The enterprise-id is assigned by IANA, and the uid is a
Simon Kelley8b372702012-03-09 17:45:10 +00001495string of hex octets unique to a particular device.
1496.TP
Simon Kelley7cebd202006-05-06 14:13:33 +01001497.B \-6 --dhcp-script=<path>
Simon Kelleya9530962012-03-20 22:07:35 +00001498Whenever a new DHCP lease is created, or an old one destroyed, or a
1499TFTP file transfer completes, the
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001500executable specified by this option is run. <path>
1501must be an absolute pathname, no PATH search occurs.
1502The arguments to the process
Simon Kelley7cebd202006-05-06 14:13:33 +01001503are "add", "old" or "del", the MAC
Simon Kelley1adadf52012-02-13 22:15:58 +00001504address of the host (or DUID for IPv6) , the IP address, and the hostname,
Simon Kelley7cebd202006-05-06 14:13:33 +01001505if known. "add" means a lease has been created, "del" means it has
1506been destroyed, "old" is a notification of an existing lease when
Simon Kelley208b65c2006-08-05 21:41:37 +01001507dnsmasq starts or a change to MAC address or hostname of an existing
1508lease (also, lease length or expiry and client-id, if leasefile-ro is set).
Simon Kelley9009d742008-11-14 20:04:27 +00001509If the MAC address is from a network type other than ethernet,
1510it will have the network type prepended, eg "06-01:23:45:67:89:ab" for
1511token ring. The process is run as root (assuming that dnsmasq was originally run as
Simon Kelley16972692006-10-16 20:04:18 +01001512root) even if dnsmasq is configured to change UID to an unprivileged user.
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001513
1514The environment is inherited from the invoker of dnsmasq, with some or
Simon Kelley1adadf52012-02-13 22:15:58 +00001515all of the following variables added
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001516
Simon Kelley1adadf52012-02-13 22:15:58 +00001517For both IPv4 and IPv6:
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001518
1519DNSMASQ_DOMAIN if the fully-qualified domain name of the host is
Simon Kelley28866e92011-02-14 20:19:14 +00001520known, this is set to the domain part. (Note that the hostname passed
1521to the script as an argument is never fully-qualified.)
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001522
Simon Kelley1adadf52012-02-13 22:15:58 +00001523If the client provides a hostname, DNSMASQ_SUPPLIED_HOSTNAME
1524
1525If the client provides user-classes, DNSMASQ_USER_CLASS0..DNSMASQ_USER_CLASSn
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001526
1527If dnsmasq was compiled with HAVE_BROKEN_RTC, then
Simon Kelley208b65c2006-08-05 21:41:37 +01001528the length of the lease (in seconds) is stored in
Simon Kelley16972692006-10-16 20:04:18 +01001529DNSMASQ_LEASE_LENGTH, otherwise the time of lease expiry is stored in
Simon Kelley5aabfc72007-08-29 11:24:47 +01001530DNSMASQ_LEASE_EXPIRES. The number of seconds until lease expiry is
1531always stored in DNSMASQ_TIME_REMAINING.
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001532
Simon Kelley5aabfc72007-08-29 11:24:47 +01001533If a lease used to have a hostname, which is
Simon Kelley16972692006-10-16 20:04:18 +01001534removed, an "old" event is generated with the new state of the lease,
1535ie no name, and the former name is provided in the environment
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001536variable DNSMASQ_OLD_HOSTNAME.
1537
1538DNSMASQ_INTERFACE stores the name of
Simon Kelley9e038942008-05-30 20:06:34 +01001539the interface on which the request arrived; this is not set for "old"
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001540actions when dnsmasq restarts.
1541
1542DNSMASQ_RELAY_ADDRESS is set if the client
Simon Kelley316e2732010-01-22 20:16:09 +00001543used a DHCP relay to contact dnsmasq and the IP address of the relay
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001544is known.
1545
1546DNSMASQ_TAGS contains all the tags set during the
Simon Kelley316e2732010-01-22 20:16:09 +00001547DHCP transaction, separated by spaces.
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001548
Simon Kelleye46164e2012-04-16 16:39:38 +01001549DNSMASQ_LOG_DHCP is set if
1550.B --log-dhcp
1551is in effect.
Simon Kelleya9530962012-03-20 22:07:35 +00001552
Simon Kelley1adadf52012-02-13 22:15:58 +00001553For IPv4 only:
1554
1555DNSMASQ_CLIENT_ID if the host provided a client-id.
1556
Simon Kelleydd1721c2013-02-18 21:04:04 +00001557DNSMASQ_CIRCUIT_ID, DNSMASQ_SUBSCRIBER_ID, DNSMASQ_REMOTE_ID if a
1558DHCP relay-agent added any of these options.
1559
Simon Kelley1adadf52012-02-13 22:15:58 +00001560If the client provides vendor-class, DNSMASQ_VENDOR_CLASS.
1561
ZHAO Yuf89cae32016-12-22 22:32:31 +00001562DNSMASQ_REQUESTED_OPTIONS a string containing the decimal values in the Parameter Request List option, comma separated, if the parameter request list option is provided by the client.
1563
Simon Kelley1adadf52012-02-13 22:15:58 +00001564For IPv6 only:
1565
1566If the client provides vendor-class, DNSMASQ_VENDOR_CLASS_ID,
1567containing the IANA enterprise id for the class, and
1568DNSMASQ_VENDOR_CLASS0..DNSMASQ_VENDOR_CLASSn for the data.
1569
Simon Kelley57f460d2012-02-16 20:00:32 +00001570DNSMASQ_SERVER_DUID containing the DUID of the server: this is the same for
Simon Kelley1adadf52012-02-13 22:15:58 +00001571every call to the script.
1572
1573DNSMASQ_IAID containing the IAID for the lease. If the lease is a
1574temporary allocation, this is prefixed to 'T'.
1575
Simon Kelley89500e32013-09-20 16:29:20 +01001576DNSMASQ_MAC containing the MAC address of the client, if known.
Simon Kelley1adadf52012-02-13 22:15:58 +00001577
1578Note that the supplied hostname, vendorclass and userclass data is
1579only supplied for
1580"add" actions or "old" actions when a host resumes an existing lease,
1581since these data are not held in dnsmasq's lease
1582database.
1583
Simon Kelleya9530962012-03-20 22:07:35 +00001584
1585
Simon Kelley9e038942008-05-30 20:06:34 +01001586All file descriptors are
Petr Menšíkc77fb9d2017-04-16 20:20:08 +01001587closed except stdin, which is open to /dev/null, and stdout and stderr which capture output for logging by dnsmasq.
1588(In debug mode, stdio, stdout and stderr file are left as those inherited from the invoker of dnsmasq).
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001589
1590The script is not invoked concurrently: at most one instance
1591of the script is ever running (dnsmasq waits for an instance of script to exit
1592before running the next). Changes to the lease database are which
1593require the script to be invoked are queued awaiting exit of a running instance.
1594If this queueing allows multiple state changes occur to a single
1595lease before the script can be run then
1596earlier states are discarded and the current state of that lease is
1597reflected when the script finally runs.
1598
1599At dnsmasq startup, the script will be invoked for
Simon Kelley7cebd202006-05-06 14:13:33 +01001600all existing leases as they are read from the lease file. Expired
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001601leases will be called with "del" and others with "old". When dnsmasq
Simon Kelley5aabfc72007-08-29 11:24:47 +01001602receives a HUP signal, the script will be invoked for existing leases
Simon Kelley1e505122016-01-25 21:29:23 +00001603with an "old" event.
Simon Kelleya9530962012-03-20 22:07:35 +00001604
1605
Simon Kelley1e505122016-01-25 21:29:23 +00001606There are four further actions which may appear as the first argument
Simon Kelleye6e751b2016-02-01 17:59:07 +00001607to the script, "init", "arp-add", "arp-del" and "tftp". More may be added in the future, so
Simon Kelleya9530962012-03-20 22:07:35 +00001608scripts should be written to ignore unknown actions. "init" is
Simon Kelleye46164e2012-04-16 16:39:38 +01001609described below in
Simon Kelleya9530962012-03-20 22:07:35 +00001610.B --leasefile-ro
1611The "tftp" action is invoked when a TFTP file transfer completes: the
1612arguments are the file size in bytes, the address to which the file
1613was sent, and the complete pathname of the file.
1614
Simon Kelleye6e751b2016-02-01 17:59:07 +00001615The "arp-add" and "arp-del" actions are only called if enabled with
Simon Kelley1e505122016-01-25 21:29:23 +00001616.B --script-arp
Simon Kelleye6e751b2016-02-01 17:59:07 +00001617They are are supplied with a MAC address and IP address as arguments. "arp-add" indicates
1618the arrival of a new entry in the ARP or neighbour table, and "arp-del" indicates the deletion of same.
Simon Kelley1e505122016-01-25 21:29:23 +00001619
Simon Kelley9e038942008-05-30 20:06:34 +01001620.TP
Simon Kelley57f460d2012-02-16 20:00:32 +00001621.B --dhcp-luascript=<path>
1622Specify a script written in Lua, to be run when leases are created,
1623destroyed or changed. To use this option, dnsmasq must be compiled
klemens43517fc2017-02-19 15:53:37 +00001624with the correct support. The Lua interpreter is initialised once, when
Simon Kelley57f460d2012-02-16 20:00:32 +00001625dnsmasq starts, so that global variables persist between lease
1626events. The Lua code must define a
1627.B lease
1628function, and may provide
1629.B init
1630and
1631.B shutdown
1632functions, which are called, without arguments when dnsmasq starts up
Simon Kelleya9530962012-03-20 22:07:35 +00001633and terminates. It may also provide a
1634.B tftp
1635function.
Simon Kelley57f460d2012-02-16 20:00:32 +00001636
1637The
1638.B lease
Simon Kelleya9530962012-03-20 22:07:35 +00001639function receives the information detailed in
Simon Kelley57f460d2012-02-16 20:00:32 +00001640.B --dhcp-script.
1641It gets two arguments, firstly the action, which is a string
1642containing, "add", "old" or "del", and secondly a table of tag value
1643pairs. The tags mostly correspond to the environment variables
1644detailed above, for instance the tag "domain" holds the same data as
1645the environment variable DNSMASQ_DOMAIN. There are a few extra tags
1646which hold the data supplied as arguments to
1647.B --dhcp-script.
1648These are
1649.B mac_address, ip_address
1650and
1651.B hostname
1652for IPv4, and
1653.B client_duid, ip_address
1654and
1655.B hostname
Simon Kelleya9530962012-03-20 22:07:35 +00001656for IPv6.
1657
1658The
1659.B tftp
1660function is called in the same way as the lease function, and the
1661table holds the tags
1662.B destination_address,
1663.B file_name
1664and
1665.B file_size.
Simon Kelley1e505122016-01-25 21:29:23 +00001666
1667The
1668.B arp
1669and
1670.B arp-old
1671functions are called only when enabled with
1672.B --script-arp
1673and have a table which holds the tags
Josh Soref730c6742017-02-06 16:14:04 +00001674.B mac_address
Simon Kelley1e505122016-01-25 21:29:23 +00001675and
1676.B client_address.
Simon Kelley57f460d2012-02-16 20:00:32 +00001677.TP
Simon Kelley9e038942008-05-30 20:06:34 +01001678.B --dhcp-scriptuser
Simon Kelley57f460d2012-02-16 20:00:32 +00001679Specify the user as which to run the lease-change script or Lua script. This defaults to root, but can be changed to another user using this flag.
Simon Kelley1e505122016-01-25 21:29:23 +00001680.TP
1681.B --script-arp
1682Enable the "arp" and "arp-old" functions in the dhcp-script and dhcp-luascript.
1683.TP
Simon Kelley208b65c2006-08-05 21:41:37 +01001684.B \-9, --leasefile-ro
1685Completely suppress use of the lease database file. The file will not
1686be created, read, or written. Change the way the lease-change
1687script (if one is provided) is called, so that the lease database may
1688be maintained in external storage by the script. In addition to the
Simon Kelleyf2621c72007-04-29 19:47:21 +01001689invocations given in
Simon Kelley208b65c2006-08-05 21:41:37 +01001690.B --dhcp-script
1691the lease-change script is called once, at dnsmasq startup, with the
1692single argument "init". When called like this the script should write
1693the saved state of the lease database, in dnsmasq leasefile format, to
1694stdout and exit with zero exit code. Setting this
1695option also forces the leasechange script to be called on changes
1696to the client-id and lease length and expiry time.
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001697.TP
Simon Kelley832af0b2007-01-21 20:01:28 +00001698.B --bridge-interface=<interface>,<alias>[,<alias>]
Simon Kelley22cd8602018-01-14 22:57:14 +00001699Treat DHCP (v4 and v6) requests and IPv6 Router Solicit packets
Neil Jerram4918bd52015-06-10 22:23:20 +01001700arriving at any of the <alias> interfaces as if they had arrived at
1701<interface>. This option allows dnsmasq to provide DHCP and RA
1702service over unaddressed and unbridged Ethernet interfaces, e.g. on an
1703OpenStack compute host where each such interface is a TAP interface to
1704a VM, or as in "old style bridging" on BSD platforms. A trailing '*'
1705wildcard can be used in each <alias>.
Simon Kelley22cd8602018-01-14 22:57:14 +00001706
1707It is permissible to add more than one alias using more than one --bridge-interface option since
1708--bridge-interface=int1,alias1,alias2 is exactly equivalent to
1709--bridge-interface=int1,alias1 --bridge-interface=int1,alias2
Simon Kelley832af0b2007-01-21 20:01:28 +00001710.TP
Simon Kelley28866e92011-02-14 20:19:14 +00001711.B \-s, --domain=<domain>[,<address range>[,local]]
Simon Kelley9009d742008-11-14 20:04:27 +00001712Specifies DNS domains for the DHCP server. Domains may be be given
1713unconditionally (without the IP range) or for limited IP ranges. This has two effects;
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001714firstly it causes the DHCP server to return the domain to any hosts
1715which request it, and secondly it sets the domain which it is legal
Simon Kelley1b7ecd12007-02-05 14:57:57 +00001716for DHCP-configured hosts to claim. The intention is to constrain
1717hostnames so that an untrusted host on the LAN cannot advertise
1718its name via dhcp as e.g. "microsoft.com" and capture traffic not
1719meant for it. If no domain suffix is specified, then any DHCP
1720hostname with a domain part (ie with a period) will be disallowed
1721and logged. If suffix is specified, then hostnames with a domain
1722part are allowed, provided the domain part matches the suffix. In
1723addition, when a suffix is set then hostnames without a domain
1724part have the suffix added as an optional domain part. Eg on my network I can set
Simon Kelley3d8df262005-08-29 12:19:27 +01001725.B --domain=thekelleys.org.uk
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001726and have a machine whose DHCP hostname is "laptop". The IP address for that machine is available from
1727.B dnsmasq
Simon Kelleyde379512004-06-22 20:23:33 +01001728both as "laptop" and "laptop.thekelleys.org.uk". If the domain is
1729given as "#" then the domain is read from the first "search" directive
Simon Kelley28866e92011-02-14 20:19:14 +00001730in /etc/resolv.conf (or equivalent).
1731
1732The address range can be of the form
Simon Kelley9009d742008-11-14 20:04:27 +00001733<ip address>,<ip address> or <ip address>/<netmask> or just a single
1734<ip address>. See
1735.B --dhcp-fqdn
1736which can change the behaviour of dnsmasq with domains.
Simon Kelley28866e92011-02-14 20:19:14 +00001737
1738If the address range is given as ip-address/network-size, then a
1739additional flag "local" may be supplied which has the effect of adding
1740--local declarations for forward and reverse DNS queries. Eg.
1741.B --domain=thekelleys.org.uk,192.168.0.0/24,local
1742is identical to
1743.B --domain=thekelleys.org.uk,192.168.0.0/24
1744--local=/thekelleys.org.uk/ --local=/0.168.192.in-addr.arpa/
1745The network size must be 8, 16 or 24 for this to be legal.
Simon Kelley9009d742008-11-14 20:04:27 +00001746.TP
1747.B --dhcp-fqdn
1748In the default mode, dnsmasq inserts the unqualified names of
1749DHCP clients into the DNS. For this reason, the names must be unique,
1750even if two clients which have the same name are in different
1751domains. If a second DHCP client appears which has the same name as an
Tomas Hozzaa66d36e2013-04-22 15:08:07 +01001752existing client, the name is transferred to the new client. If
Simon Kelley9009d742008-11-14 20:04:27 +00001753.B --dhcp-fqdn
1754is set, this behaviour changes: the unqualified name is no longer
1755put in the DNS, only the qualified name. Two DHCP clients with the
1756same name may both keep the name, provided that the domain part is
1757different (ie the fully qualified names differ.) To ensure that all
1758names have a domain part, there must be at least
1759.B --domain
1760without an address specified when
1761.B --dhcp-fqdn
1762is set.
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001763.TP
Simon Kelleyc72daea2012-01-05 21:33:27 +00001764.B --dhcp-client-update
1765Normally, when giving a DHCP lease, dnsmasq sets flags in the FQDN
1766option to tell the client not to attempt a DDNS update with its name
1767and IP address. This is because the name-IP pair is automatically
1768added into dnsmasq's DNS view. This flag suppresses that behaviour,
1769this is useful, for instance, to allow Windows clients to update
1770Active Directory servers. See RFC 4702 for details.
1771.TP
Simon Kelleyc5ad4e72012-02-24 16:06:20 +00001772.B --enable-ra
1773Enable dnsmasq's IPv6 Router Advertisement feature. DHCPv6 doesn't
1774handle complete network configuration in the same way as DHCPv4. Router
1775discovery and (possibly) prefix discovery for autonomous address
1776creation are handled by a different protocol. When DHCP is in use,
1777only a subset of this is needed, and dnsmasq can handle it, using
1778existing DHCP configuration to provide most data. When RA is enabled,
1779dnsmasq will advertise a prefix for each dhcp-range, with default
Simon Kelley20fd11e2015-08-26 22:48:13 +01001780router as the relevant link-local address on
1781the machine running dnsmasq. By default, the "managed address" bits are set, and
Simon Kelleye8ca69e2012-03-26 21:23:26 +01001782the "use SLAAC" bit is reset. This can be changed for individual
1783subnets with the mode keywords described in
1784.B --dhcp-range.
Simon Kelley18f0fb02012-03-31 21:18:55 +01001785RFC6106 DNS parameters are included in the advertisements. By default,
1786the relevant link-local address of the machine running dnsmasq is sent
1787as recursive DNS server. If provided, the DHCPv6 options dns-server and
Josh Soref730c6742017-02-06 16:14:04 +00001788domain-search are used for the DNS server (RDNSS) and the domain search list (DNSSL).
Simon Kelleyc5ad4e72012-02-24 16:06:20 +00001789.TP
Vladislav Grishenko6ec5f5c2017-04-24 22:34:45 +01001790.B --ra-param=<interface>,[mtu:<integer>|<interface>|off,][high,|low,]<ra-interval>[,<router lifetime>]
Simon Kelleyc4cd95d2013-10-10 20:58:11 +01001791Set non-default values for router advertisements sent via an
1792interface. The priority field for the router may be altered from the
1793default of medium with eg
1794.B --ra-param=eth0,high.
1795The interval between router advertisements may be set (in seconds) with
1796.B --ra-param=eth0,60.
1797The lifetime of the route may be changed or set to zero, which allows
1798a router to advertise prefixes but not a route via itself.
1799.B --ra-parm=eth0,0,0
David Flamand005c46d2017-04-11 11:49:54 +01001800(A value of zero for the interval means the default value.) All four parameters may be set at once.
1801.B --ra-param=eth0,mtu:1280,low,60,1200
Vladislav Grishenko6ec5f5c2017-04-24 22:34:45 +01001802
Simon Kelleyc4cd95d2013-10-10 20:58:11 +01001803The interface field may include a wildcard.
Vladislav Grishenko6ec5f5c2017-04-24 22:34:45 +01001804
1805The mtu: parameter may be an arbitrary interface name, in which case the MTU value for that interface is used. This is useful
1806for (eg) advertising the MTU of a WAN interface on the other interfaces of a router.
Simon Kelley8d030462013-07-29 15:41:26 +01001807.TP
Floris Bos503c6092017-04-09 23:07:13 +01001808.B --dhcp-reply-delay=[tag:<tag>,]<integer>
1809Delays sending DHCPOFFER and proxydhcp replies for at least the specified number of seconds.
1810This can be used as workaround for bugs in PXE boot firmware that does not function properly when
1811receiving an instant reply.
1812This option takes into account the time already spent waiting (e.g. performing ping check) if any.
1813.TP
Simon Kelley2937f8a2013-07-29 19:49:07 +01001814.B --enable-tftp[=<interface>[,<interface>]]
Simon Kelley832af0b2007-01-21 20:01:28 +00001815Enable the TFTP server function. This is deliberately limited to that
Simon Kelley9e038942008-05-30 20:06:34 +01001816needed to net-boot a client. Only reading is allowed; the tsize and
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001817blksize extensions are supported (tsize is only supported in octet
Simon Kelley2937f8a2013-07-29 19:49:07 +01001818mode). Without an argument, the TFTP service is provided to the same set of interfaces as DHCP service.
Josh Soref730c6742017-02-06 16:14:04 +00001819If the list of interfaces is provided, that defines which interfaces receive TFTP service.
Simon Kelleyb8187c82005-11-26 21:46:27 +00001820.TP
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001821.B --tftp-root=<directory>[,<interface>]
Simon Kelley832af0b2007-01-21 20:01:28 +00001822Look for files to transfer using TFTP relative to the given
1823directory. When this is set, TFTP paths which include ".." are
1824rejected, to stop clients getting outside the specified root.
Simon Kelleyf2621c72007-04-29 19:47:21 +01001825Absolute paths (starting with /) are allowed, but they must be within
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001826the tftp-root. If the optional interface argument is given, the
1827directory is only used for TFTP requests via that interface.
Simon Kelley832af0b2007-01-21 20:01:28 +00001828.TP
Stefan Tomanek30d08792015-03-31 22:32:11 +01001829.B --tftp-no-fail
1830Do not abort startup if specified tftp root directories are inaccessible.
1831.TP
Floris Bos60704f52017-04-09 22:22:49 +01001832.B --tftp-unique-root[=ip|mac]
1833Add the IP or hardware address of the TFTP client as a path component on the end
1834of the TFTP-root. Only valid if a tftp-root is set and the directory exists.
1835Defaults to adding IP address (in standard dotted-quad format).
1836For instance, if tftp-root is "/tftp" and client 1.2.3.4 requests file "myfile"
1837then the effective path will be "/tftp/1.2.3.4/myfile" if /tftp/1.2.3.4 exists or /tftp/myfile otherwise.
1838When "=mac" is specified it will append the MAC address instead, using lowercase zero padded digits
1839separated by dashes, e.g.: 01-02-03-04-aa-bb
1840Note that resolving MAC addresses is only possible if the client is in the local network or obtained
1841a DHCP lease from us.
Simon Kelley5aabfc72007-08-29 11:24:47 +01001842.TP
Simon Kelley832af0b2007-01-21 20:01:28 +00001843.B --tftp-secure
Simon Kelley5aabfc72007-08-29 11:24:47 +01001844Enable TFTP secure mode: without this, any file which is readable by
Simon Kelley832af0b2007-01-21 20:01:28 +00001845the dnsmasq process under normal unix access-control rules is
1846available via TFTP. When the --tftp-secure flag is given, only files
1847owned by the user running the dnsmasq process are accessible. If
1848dnsmasq is being run as root, different rules apply: --tftp-secure
Simon Kelley1b7ecd12007-02-05 14:57:57 +00001849has no effect, but only files which have the world-readable bit set
Simon Kelley832af0b2007-01-21 20:01:28 +00001850are accessible. It is not recommended to run dnsmasq as root with TFTP
1851enabled, and certainly not without specifying --tftp-root. Doing so
1852can expose any world-readable file on the server to any host on the net.
1853.TP
Simon Kelley61ce6002012-04-20 21:28:49 +01001854.B --tftp-lowercase
1855Convert filenames in TFTP requests to all lowercase. This is useful
1856for requests from Windows machines, which have case-insensitive
1857filesystems and tend to play fast-and-loose with case in filenames.
1858Note that dnsmasq's tftp server always converts "\\" to "/" in filenames.
1859.TP
Simon Kelley832af0b2007-01-21 20:01:28 +00001860.B --tftp-max=<connections>
1861Set the maximum number of concurrent TFTP connections allowed. This
1862defaults to 50. When serving a large number of TFTP connections,
1863per-process file descriptor limits may be encountered. Dnsmasq needs
1864one file descriptor for each concurrent TFTP connection and one
1865file descriptor per unique file (plus a few others). So serving the
1866same file simultaneously to n clients will use require about n + 10 file
1867descriptors, serving different files simultaneously to n clients will
Simon Kelley824af852008-02-12 20:43:05 +00001868require about (2*n) + 10 descriptors. If
1869.B --tftp-port-range
1870is given, that can affect the number of concurrent connections.
Simon Kelley6b010842007-02-12 20:32:07 +00001871.TP
Simon Kelleybec366b2016-02-24 22:03:26 +00001872.B --tftp-mtu=<mtu size>
1873Use size as the ceiling of the MTU supported by the intervening network when
1874negotiating TFTP blocksize, overriding the MTU setting of the local interface if it is larger.
1875.TP
Simon Kelley6b010842007-02-12 20:32:07 +00001876.B --tftp-no-blocksize
1877Stop the TFTP server from negotiating the "blocksize" option with a
1878client. Some buggy clients request this option but then behave badly
1879when it is granted.
Simon Kelley824af852008-02-12 20:43:05 +00001880.TP
1881.B --tftp-port-range=<start>,<end>
1882A TFTP server listens on a well-known port (69) for connection initiation,
1883but it also uses a dynamically-allocated port for each
1884connection. Normally these are allocated by the OS, but this option
1885specifies a range of ports for use by TFTP transfers. This can be
1886useful when TFTP has to traverse a firewall. The start of the range
1887cannot be lower than 1025 unless dnsmasq is running as root. The number
1888of concurrent TFTP connections is limited by the size of the port range.
Simon Kelley832af0b2007-01-21 20:01:28 +00001889.TP
Simon Kelleyb8187c82005-11-26 21:46:27 +00001890.B \-C, --conf-file=<file>
1891Specify a different configuration file. The conf-file option is also allowed in
Simon Kelley28866e92011-02-14 20:19:14 +00001892configuration files, to include multiple configuration files. A
1893filename of "-" causes dnsmasq to read configuration from stdin.
Simon Kelley849a8352006-06-09 21:02:31 +01001894.TP
Simon Kelley3e1551a2014-09-09 21:46:07 +01001895.B \-7, --conf-dir=<directory>[,<file-extension>......],
Simon Kelley849a8352006-06-09 21:02:31 +01001896Read all the files in the given directory as configuration
Simon Kelley1f15b812009-10-13 17:49:32 +01001897files. If extension(s) are given, any files which end in those
1898extensions are skipped. Any files whose names end in ~ or start with . or start and end
Simon Kelley3e1551a2014-09-09 21:46:07 +01001899with # are always skipped. If the extension starts with * then only files
1900which have that extension are loaded. So
1901.B --conf-dir=/path/to/dir,*.conf
1902loads all files with the suffix .conf in /path/to/dir. This flag may be given on the command
1903line or in a configuration file. If giving it on the command line, be sure to
1904escape * characters.
Simon Kelley7b1eae42014-02-20 13:43:28 +00001905.TP
1906.B --servers-file=<file>
1907A special case of
1908.B --conf-file
1909which differs in two respects. Firstly, only --server and --rev-server are allowed
1910in the configuration file included. Secondly, the file is re-read and the configuration
Josh Soref730c6742017-02-06 16:14:04 +00001911therein is updated when dnsmasq receives SIGHUP.
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001912.SH CONFIG FILE
Simon Kelley3be34542004-09-11 19:12:13 +01001913At startup, dnsmasq reads
1914.I /etc/dnsmasq.conf,
1915if it exists. (On
1916FreeBSD, the file is
1917.I /usr/local/etc/dnsmasq.conf
Simon Kelleyb8187c82005-11-26 21:46:27 +00001918) (but see the
1919.B \-C
Simon Kelley849a8352006-06-09 21:02:31 +01001920and
1921.B \-7
1922options.) The format of this
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001923file consists of one option per line, exactly as the long options detailed
1924in the OPTIONS section but without the leading "--". Lines starting with # are comments and ignored. For
Simon Kelleyb49644f2004-01-30 21:36:24 +00001925options which may only be specified once, the configuration file overrides
Simon Kelleyb8187c82005-11-26 21:46:27 +00001926the command line. Quoting is allowed in a config file:
Simon Kelley3d8df262005-08-29 12:19:27 +01001927between " quotes the special meanings of ,:. and # are removed and the
Simon Kelley824af852008-02-12 20:43:05 +00001928following escapes are allowed: \\\\ \\" \\t \\e \\b \\r and \\n. The later
1929corresponding to tab, escape, backspace, return and newline.
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001930.SH NOTES
1931When it receives a SIGHUP,
1932.B dnsmasq
Simon Kelley3be34542004-09-11 19:12:13 +01001933clears its cache and then re-loads
Simon Kelley5aabfc72007-08-29 11:24:47 +01001934.I /etc/hosts
1935and
1936.I /etc/ethers
Simon Kelley3d04f462015-01-31 21:59:13 +00001937and any file given by --dhcp-hostsfile, --dhcp-hostsdir, --dhcp-optsfile,
1938--dhcp-optsdir, --addn-hosts or --hostsdir.
Simon Kelley5aabfc72007-08-29 11:24:47 +01001939The dhcp lease change script is called for all
1940existing DHCP leases. If
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001941.B
1942--no-poll
Simon Kelley3be34542004-09-11 19:12:13 +01001943is set SIGHUP also re-reads
1944.I /etc/resolv.conf.
1945SIGHUP
Simon Kelleyb49644f2004-01-30 21:36:24 +00001946does NOT re-read the configuration file.
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001947.PP
1948When it receives a SIGUSR1,
1949.B dnsmasq
Simon Kelley824af852008-02-12 20:43:05 +00001950writes statistics to the system log. It writes the cache size,
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001951the number of names which have had to removed from the cache before
1952they expired in order to make room for new names and the total number
Simon Kelleyfec216d2014-03-27 20:54:34 +00001953of names that have been inserted into the cache. The number of cache hits and
1954misses and the number of authoritative queries answered are also given. For each upstream
Simon Kelley824af852008-02-12 20:43:05 +00001955server it gives the number of queries sent, and the number which
1956resulted in an error. In
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001957.B --no-daemon
Simon Kelley5aabfc72007-08-29 11:24:47 +01001958mode or when full logging is enabled (-q), a complete dump of the
Simon Kelleyfec216d2014-03-27 20:54:34 +00001959contents of the cache is made.
1960
1961The cache statistics are also available in the DNS as answers to
1962queries of class CHAOS and type TXT in domain bind. The domain names are cachesize.bind, insertions.bind, evictions.bind,
1963misses.bind, hits.bind, auth.bind and servers.bind. An example command to query this, using the
1964.B dig
1965utility would be
1966
1967dig +short chaos txt cachesize.bind
1968
Simon Kelley5aabfc72007-08-29 11:24:47 +01001969.PP
1970When it receives SIGUSR2 and it is logging direct to a file (see
1971.B --log-facility
1972)
1973.B dnsmasq
1974will close and reopen the log file. Note that during this operation,
1975dnsmasq will not be running as root. When it first creates the logfile
1976dnsmasq changes the ownership of the file to the non-root user it will run
1977as. Logrotate should be configured to create a new log file with
Simon Kelley9e038942008-05-30 20:06:34 +01001978the ownership which matches the existing one before sending SIGUSR2.
Simon Kelley5aabfc72007-08-29 11:24:47 +01001979If TCP DNS queries are in progress, the old logfile will remain open in
1980child processes which are handling TCP queries and may continue to be
1981written. There is a limit of 150 seconds, after which all existing TCP
1982processes will have expired: for this reason, it is not wise to
1983configure logfile compression for logfiles which have just been
1984rotated. Using logrotate, the required options are
1985.B create
1986and
1987.B delaycompress.
1988
1989
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001990.PP
李三0159ed6bdb02017-11-30 16:47:01 +00001991Dnsmasq is a DNS query forwarder: it is not capable of recursively
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001992answering arbitrary queries starting from the root servers but
1993forwards such queries to a fully recursive upstream DNS server which is
1994typically provided by an ISP. By default, dnsmasq reads
Simon Kelley3be34542004-09-11 19:12:13 +01001995.I /etc/resolv.conf
1996to discover the IP
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001997addresses of the upstream nameservers it should use, since the
1998information is typically stored there. Unless
1999.B --no-poll
2000is used,
2001.B dnsmasq
Simon Kelley3be34542004-09-11 19:12:13 +01002002checks the modification time of
2003.I /etc/resolv.conf
2004(or equivalent if
Simon Kelley9e4abcb2004-01-22 19:47:41 +00002005.B \--resolv-file
2006is used) and re-reads it if it changes. This allows the DNS servers to
2007be set dynamically by PPP or DHCP since both protocols provide the
2008information.
Simon Kelley3be34542004-09-11 19:12:13 +01002009Absence of
2010.I /etc/resolv.conf
2011is not an error
Simon Kelley9e4abcb2004-01-22 19:47:41 +00002012since it may not have been created before a PPP connection exists. Dnsmasq
Simon Kelley3be34542004-09-11 19:12:13 +01002013simply keeps checking in case
2014.I /etc/resolv.conf
2015is created at any
Simon Kelley9e4abcb2004-01-22 19:47:41 +00002016time. Dnsmasq can be told to parse more than one resolv.conf
2017file. This is useful on a laptop, where both PPP and DHCP may be used:
Simon Kelley3be34542004-09-11 19:12:13 +01002018dnsmasq can be set to poll both
2019.I /etc/ppp/resolv.conf
2020and
2021.I /etc/dhcpc/resolv.conf
2022and will use the contents of whichever changed
Simon Kelley9e4abcb2004-01-22 19:47:41 +00002023last, giving automatic switching between DNS servers.
2024.PP
2025Upstream servers may also be specified on the command line or in
Simon Kelleyb49644f2004-01-30 21:36:24 +00002026the configuration file. These server specifications optionally take a
Simon Kelley9e4abcb2004-01-22 19:47:41 +00002027domain name which tells dnsmasq to use that server only to find names
2028in that particular domain.
2029.PP
2030In order to configure dnsmasq to act as cache for the host on which it is running, put "nameserver 127.0.0.1" in
2031.I /etc/resolv.conf
2032to force local processes to send queries to
2033dnsmasq. Then either specify the upstream servers directly to dnsmasq
2034using
2035.B \--server
2036options or put their addresses real in another file, say
2037.I /etc/resolv.dnsmasq
2038and run dnsmasq with the
2039.B \-r /etc/resolv.dnsmasq
2040option. This second technique allows for dynamic update of the server
2041addresses by PPP or DHCP.
Simon Kelley3be34542004-09-11 19:12:13 +01002042.PP
Simon Kelleyf6b7dc42005-01-23 12:06:08 +00002043Addresses in /etc/hosts will "shadow" different addresses for the same
2044names in the upstream DNS, so "mycompany.com 1.2.3.4" in /etc/hosts will ensure that
2045queries for "mycompany.com" always return 1.2.3.4 even if queries in
2046the upstream DNS would otherwise return a different address. There is
2047one exception to this: if the upstream DNS contains a CNAME which
2048points to a shadowed name, then looking up the CNAME through dnsmasq
2049will result in the unshadowed address associated with the target of
2050the CNAME. To work around this, add the CNAME to /etc/hosts so that
2051the CNAME is shadowed too.
2052
2053.PP
Simon Kelley8ef5ada2010-06-03 19:42:45 +01002054The tag system works as follows: For each DHCP request, dnsmasq
2055collects a set of valid tags from active configuration lines which
2056include set:<tag>, including one from the
Simon Kelley26128d22004-11-14 16:43:54 +00002057.B dhcp-range
2058used to allocate the address, one from any matching
2059.B dhcp-host
Simon Kelley391f7082017-07-08 20:48:51 +01002060(and "known" or "known-othernet" if a dhcp-host matches)
Simon Kelley8ef5ada2010-06-03 19:42:45 +01002061The tag "bootp" is set for BOOTP requests, and a tag whose name is the
2062name of the interface on which the request arrived is also set.
2063
Tomas Hozzaa66d36e2013-04-22 15:08:07 +01002064Any configuration lines which include one or more tag:<tag> constructs
Simon Kelley8ef5ada2010-06-03 19:42:45 +01002065will only be valid if all that tags are matched in the set derived
2066above. Typically this is dhcp-option.
Simon Kelley26128d22004-11-14 16:43:54 +00002067.B dhcp-option
Simon Kelley8ef5ada2010-06-03 19:42:45 +01002068which has tags will be used in preference to an untagged
Simon Kelley26128d22004-11-14 16:43:54 +00002069.B dhcp-option,
2070provided that _all_ the tags match somewhere in the
Simon Kelley8ef5ada2010-06-03 19:42:45 +01002071set collected as described above. The prefix '!' on a tag means 'not'
Moritz Warninge62e9b62014-03-20 15:32:22 +00002072so --dhcp-option=tag:!purple,3,1.2.3.4 sends the option when the
Simon Kelley8ef5ada2010-06-03 19:42:45 +01002073tag purple is not in the set of valid tags. (If using this in a
2074command line rather than a configuration file, be sure to escape !,
2075which is a shell metacharacter)
Simon Kelley7de060b2011-08-26 17:24:52 +01002076
2077When selecting dhcp-options, a tag from dhcp-range is second class
2078relative to other tags, to make it easy to override options for
2079individual hosts, so
2080.B dhcp-range=set:interface1,......
2081.B dhcp-host=set:myhost,.....
2082.B dhcp-option=tag:interface1,option:nis-domain,"domain1"
2083.B dhcp-option=tag:myhost,option:nis-domain,"domain2"
2084will set the NIS-domain to domain1 for hosts in the range, but
2085override that to domain2 for a particular host.
2086
Simon Kelley26128d22004-11-14 16:43:54 +00002087.PP
Simon Kelley8ef5ada2010-06-03 19:42:45 +01002088Note that for
Simon Kelleyf6b7dc42005-01-23 12:06:08 +00002089.B dhcp-range
Simon Kelley8ef5ada2010-06-03 19:42:45 +01002090both tag:<tag> and set:<tag> are allowed, to both select the range in
2091use based on (eg) dhcp-host, and to affect the options sent, based on
2092the range selected.
2093
2094This system evolved from an earlier, more limited one and for backward
2095compatibility "net:" may be used instead of "tag:" and "set:" may be
2096omitted. (Except in
2097.B dhcp-host,
2098where "net:" may be used instead of "set:".) For the same reason, '#'
2099may be used instead of '!' to indicate NOT.
Simon Kelleyf6b7dc42005-01-23 12:06:08 +00002100.PP
Simon Kelley3be34542004-09-11 19:12:13 +01002101The DHCP server in dnsmasq will function as a BOOTP server also,
2102provided that the MAC address and IP address for clients are given,
2103either using
2104.B dhcp-host
2105configurations or in
2106.I /etc/ethers
2107, and a
2108.B dhcp-range
2109configuration option is present to activate the DHCP server
Simon Kelleyb8187c82005-11-26 21:46:27 +00002110on a particular network. (Setting --bootp-dynamic removes the need for
2111static address mappings.) The filename
Simon Kelley8ef5ada2010-06-03 19:42:45 +01002112parameter in a BOOTP request is used as a tag,
2113as is the tag "bootp", allowing some control over the options returned to
Simon Kelley3be34542004-09-11 19:12:13 +01002114different classes of hosts.
2115
Simon Kelley333b2ce2013-01-07 21:46:03 +00002116.SH AUTHORITATIVE CONFIGURATION
2117.PP
2118Configuring dnsmasq to act as an authoritative DNS server is
2119complicated by the fact that it involves configuration of external DNS
2120servers to provide delegation. We will walk through three scenarios of
2121increasing complexity. Prerequisites for all of these scenarios
Simon Kelley81925ab2013-04-10 11:43:58 +01002122are a globally accessible IP address, an A or AAAA record pointing to that address,
Simon Kelley333b2ce2013-01-07 21:46:03 +00002123and an external DNS server capable of doing delegation of the zone in
2124question. For the first part of this explanation, we will call the A (or AAAA) record
2125for the globally accessible address server.example.com, and the zone
2126for which dnsmasq is authoritative our.zone.com.
2127
2128The simplest configuration consists of two lines of dnsmasq configuration; something like
2129
2130.nf
2131.B auth-server=server.example.com,eth0
Simon Kelley79cb46c2013-01-23 19:49:21 +00002132.B auth-zone=our.zone.com,1.2.3.0/24
Simon Kelley333b2ce2013-01-07 21:46:03 +00002133.fi
2134
2135and two records in the external DNS
2136
2137.nf
2138server.example.com A 192.0.43.10
2139our.zone.com NS server.example.com
2140.fi
2141
2142eth0 is the external network interface on which dnsmasq is listening,
2143and has (globally accessible) address 192.0.43.10.
2144
2145Note that the external IP address may well be dynamic (ie assigned
2146from an ISP by DHCP or PPP) If so, the A record must be linked to this
2147dynamic assignment by one of the usual dynamic-DNS systems.
2148
2149A more complex, but practically useful configuration has the address
2150record for the globally accessible IP address residing in the
2151authoritative zone which dnsmasq is serving, typically at the root. Now
2152we have
2153
2154.nf
2155.B auth-server=our.zone.com,eth0
Simon Kelley79cb46c2013-01-23 19:49:21 +00002156.B auth-zone=our.zone.com,1.2.3.0/24
Simon Kelley333b2ce2013-01-07 21:46:03 +00002157.fi
2158
2159.nf
Simon Kelley0f128eb2013-03-11 21:21:35 +00002160our.zone.com A 1.2.3.4
Simon Kelley333b2ce2013-01-07 21:46:03 +00002161our.zone.com NS our.zone.com
2162.fi
2163
2164The A record for our.zone.com has now become a glue record, it solves
2165the chicken-and-egg problem of finding the IP address of the
2166nameserver for our.zone.com when the A record is within that
2167zone. Note that this is the only role of this record: as dnsmasq is
2168now authoritative from our.zone.com it too must provide this
2169record. If the external address is static, this can be done with an
2170.B /etc/hosts
2171entry or
2172.B --host-record.
Simon Kelley333b2ce2013-01-07 21:46:03 +00002173
2174.nf
Simon Kelley0f128eb2013-03-11 21:21:35 +00002175.B auth-server=our.zone.com,eth0
2176.B host-record=our.zone.com,1.2.3.4
2177.B auth-zone=our.zone.com,1.2.3.0/24
2178.fi
2179
2180If the external address is dynamic, the address
2181associated with our.zone.com must be derived from the address of the
Simon Kelley6f130de2013-04-15 14:47:14 +01002182relevant interface. This is done using
Simon Kelley0f128eb2013-03-11 21:21:35 +00002183.B interface-name
2184Something like:
2185
2186.nf
2187.B auth-server=our.zone.com,eth0
2188.B interface-name=our.zone.com,eth0
Simon Kelley32b4e4c2013-11-14 10:36:55 +00002189.B auth-zone=our.zone.com,1.2.3.0/24,eth0
Simon Kelley333b2ce2013-01-07 21:46:03 +00002190.fi
2191
Simon Kelley32b4e4c2013-11-14 10:36:55 +00002192(The "eth0" argument in auth-zone adds the subnet containing eth0's
2193dynamic address to the zone, so that the interface-name returns the
2194address in outside queries.)
2195
Simon Kelley333b2ce2013-01-07 21:46:03 +00002196Our final configuration builds on that above, but also adds a
2197secondary DNS server. This is another DNS server which learns the DNS data
2198for the zone by doing zones transfer, and acts as a backup should
2199the primary server become inaccessible. The configuration of the
2200secondary is beyond the scope of this man-page, but the extra
2201configuration of dnsmasq is simple:
2202
2203.nf
2204.B auth-sec-servers=secondary.myisp.com
2205.fi
2206
2207and
2208
2209.nf
2210our.zone.com NS secondary.myisp.com
2211.fi
2212
2213Adding auth-sec-servers enables zone transfer in dnsmasq, to allow the
2214secondary to collect the DNS data. If you wish to restrict this data
2215to particular hosts then
2216
2217.nf
2218.B auth-peer=<IP address of secondary>
2219.fi
2220
2221will do so.
2222
2223Dnsmasq acts as an authoritative server for in-addr.arpa and
Lutz Preßler1d7e0a32014-04-07 22:06:23 +01002224ip6.arpa domains associated with the subnets given in auth-zone
Simon Kelley333b2ce2013-01-07 21:46:03 +00002225declarations, so reverse (address to name) lookups can be simply
2226configured with a suitable NS record, for instance in this example,
2227where we allow 1.2.3.0/24 addresses.
2228
2229.nf
2230 3.2.1.in-addr.arpa NS our.zone.com
2231.fi
2232
2233Note that at present, reverse (in-addr.arpa and ip6.arpa) zones are
2234not available in zone transfers, so there is no point arranging
2235secondary servers for reverse lookups.
2236
2237.PP
2238When dnsmasq is configured to act as an authoritative server, the
2239following data is used to populate the authoritative zone.
2240.PP
2241.B --mx-host, --srv-host, --dns-rr, --txt-record, --naptr-record
2242, as long as the record names are in the authoritative domain.
2243.PP
2244.B --cname
2245as long as the record name is in the authoritative domain. If the
2246target of the CNAME is unqualified, then it is qualified with the
Simon Kelleyb637d782016-12-13 16:44:11 +00002247authoritative zone name. CNAME used in this way (only) may be wildcards, as in
2248
2249.nf
2250.B cname=*.example.com,default.example.com
2251.fi
2252
Simon Kelley333b2ce2013-01-07 21:46:03 +00002253.PP
2254IPv4 and IPv6 addresses from /etc/hosts (and
2255.B --addn-hosts
2256) and
2257.B --host-record
Simon Kelley376d48c2013-11-13 13:04:30 +00002258and
2259.B --interface-name
Simon Kelley333b2ce2013-01-07 21:46:03 +00002260provided the address falls into one of the subnets specified in the
2261.B --auth-zone.
2262.PP
Simon Kelley333b2ce2013-01-07 21:46:03 +00002263Addresses of DHCP leases, provided the address falls into one of the subnets specified in the
Simon Kelley376d48c2013-11-13 13:04:30 +00002264.B --auth-zone.
Josh Soref730c6742017-02-06 16:14:04 +00002265(If constructed DHCP ranges are is use, which depend on the address dynamically
Simon Kelley376d48c2013-11-13 13:04:30 +00002266assigned to an interface, then the form of
Simon Kelley333b2ce2013-01-07 21:46:03 +00002267.B --auth-zone
Simon Kelley376d48c2013-11-13 13:04:30 +00002268which defines subnets by the dynamic address of an interface should
2269be used to ensure this condition is met.)
2270.PP
2271In the default mode, where a DHCP lease
Simon Kelley333b2ce2013-01-07 21:46:03 +00002272has an unqualified name, and possibly a qualified name constructed
2273using
2274.B --domain
2275then the name in the authoritative zone is constructed from the
2276unqualified name and the zone's domain. This may or may not equal
2277that specified by
2278.B --domain.
2279If
2280.B --dhcp-fqdn
2281is set, then the fully qualified names associated with DHCP leases are
2282used, and must match the zone's domain.
2283
2284
2285
Simon Kelley5aabfc72007-08-29 11:24:47 +01002286.SH EXIT CODES
2287.PP
22880 - Dnsmasq successfully forked into the background, or terminated
2289normally if backgrounding is not enabled.
2290.PP
22911 - A problem with configuration was detected.
2292.PP
22932 - A problem with network access occurred (address in use, attempt
2294to use privileged ports without permission).
2295.PP
Simon Kelley9e038942008-05-30 20:06:34 +010022963 - A problem occurred with a filesystem operation (missing
Simon Kelley5aabfc72007-08-29 11:24:47 +01002297file/directory, permissions).
2298.PP
22994 - Memory allocation failure.
2300.PP
23015 - Other miscellaneous problem.
2302.PP
230311 or greater - a non zero return code was received from the
2304lease-script process "init" call. The exit code from dnsmasq is the
2305script's exit code with 10 added.
2306
Simon Kelley1b7ecd12007-02-05 14:57:57 +00002307.SH LIMITS
2308The default values for resource limits in dnsmasq are generally
2309conservative, and appropriate for embedded router type devices with
2310slow processors and limited memory. On more capable hardware, it is
2311possible to increase the limits, and handle many more clients. The
2312following applies to dnsmasq-2.37: earlier versions did not scale as well.
2313
2314.PP
2315Dnsmasq is capable of handling DNS and DHCP for at least a thousand
Simon Kelley8ef5ada2010-06-03 19:42:45 +01002316clients. The DHCP lease times should not be very short (less than one hour). The
Simon Kelley1b7ecd12007-02-05 14:57:57 +00002317value of
2318.B --dns-forward-max
2319can be increased: start with it equal to
2320the number of clients and increase if DNS seems slow. Note that DNS
2321performance depends too on the performance of the upstream
2322nameservers. The size of the DNS cache may be increased: the hard
2323limit is 10000 names and the default (150) is very low. Sending
2324SIGUSR1 to dnsmasq makes it log information which is useful for tuning
2325the cache size. See the
2326.B NOTES
2327section for details.
2328
2329.PP
2330The built-in TFTP server is capable of many simultaneous file
2331transfers: the absolute limit is related to the number of file-handles
2332allowed to a process and the ability of the select() system call to
2333cope with large numbers of file handles. If the limit is set too high
2334using
2335.B --tftp-max
2336it will be scaled down and the actual limit logged at
2337start-up. Note that more transfers are possible when the same file is
2338being sent than when each transfer sends a different file.
2339
2340.PP
2341It is possible to use dnsmasq to block Web advertising by using a list
2342of known banner-ad servers, all resolving to 127.0.0.1 or 0.0.0.0, in
2343.B /etc/hosts
2344or an additional hosts file. The list can be very long,
2345dnsmasq has been tested successfully with one million names. That size
2346file needs a 1GHz processor and about 60Mb of RAM.
2347
Simon Kelley1f15b812009-10-13 17:49:32 +01002348.SH INTERNATIONALISATION
2349Dnsmasq can be compiled to support internationalisation. To do this,
2350the make targets "all-i18n" and "install-i18n" should be used instead of
2351the standard targets "all" and "install". When internationalisation
2352is compiled in, dnsmasq will produce log messages in the local
2353language and support internationalised domain names (IDN). Domain
2354names in /etc/hosts, /etc/ethers and /etc/dnsmasq.conf which contain
2355non-ASCII characters will be translated to the DNS-internal punycode
2356representation. Note that
2357dnsmasq determines both the language for messages and the assumed
2358charset for configuration
2359files from the LANG environment variable. This should be set to the system
2360default value by the script which is responsible for starting
2361dnsmasq. When editing the configuration files, be careful to do so
2362using only the system-default locale and not user-specific one, since
2363dnsmasq has no direct way of determining the charset in use, and must
2364assume that it is the system default.
2365
Simon Kelley9e4abcb2004-01-22 19:47:41 +00002366.SH FILES
Simon Kelleyb49644f2004-01-30 21:36:24 +00002367.IR /etc/dnsmasq.conf
2368
2369.IR /usr/local/etc/dnsmasq.conf
Simon Kelley9e4abcb2004-01-22 19:47:41 +00002370
2371.IR /etc/resolv.conf
Simon Kelley28866e92011-02-14 20:19:14 +00002372.IR /var/run/dnsmasq/resolv.conf
2373.IR /etc/ppp/resolv.conf
2374.IR /etc/dhcpc/resolv.conf
Simon Kelley9e4abcb2004-01-22 19:47:41 +00002375
2376.IR /etc/hosts
2377
Simon Kelley3be34542004-09-11 19:12:13 +01002378.IR /etc/ethers
2379
Simon Kelleyb49644f2004-01-30 21:36:24 +00002380.IR /var/lib/misc/dnsmasq.leases
2381
2382.IR /var/db/dnsmasq.leases
Simon Kelley9e4abcb2004-01-22 19:47:41 +00002383
2384.IR /var/run/dnsmasq.pid
2385.SH SEE ALSO
Simon Kelley9e4abcb2004-01-22 19:47:41 +00002386.BR hosts (5),
2387.BR resolver (5)
2388.SH AUTHOR
2389This manual page was written by Simon Kelley <simon@thekelleys.org.uk>.
2390
2391