blob: ac7c9facb05b9e7bd17aaaedf2eef6fcdb3f0d12 [file] [log] [blame]
Matthias Andree081a1c42020-04-05 11:26:38 +02001.TH DNSMASQ 8 2020-04-05
Simon Kelley9e4abcb2004-01-22 19:47:41 +00002.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
Simon Kelley03212e52018-09-04 17:52:28 +010030a neat feature which allows naming 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>
Peter Pöschl9268b5d2018-06-12 17:04:54 +010056Additional hosts file. Read the specified file as well as /etc/hosts. If \fB--no-hosts\fP 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
Peter Pöschl9268b5d2018-06-12 17:04:54 +010062are read automatically. See \fB--dhcp-hostsdir\fP for details.
Simon Kelley3d04f462015-01-31 21:59:13 +000063.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>
Peter Pöschl9268b5d2018-06-12 17:04:54 +010079As for \fB--local-ttl\fP, but affects only replies with information from DHCP leases. If both are given, \fB--dhcp-ttl\fP applies for DHCP information, and \fB--local-ttl\fP for others. Setting this to zero eliminates the effect of \fB--local-ttl\fP for DHCP.
Simon Kelley832e47b2016-02-24 21:24:45 +000080.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
Peter Pöschl9268b5d2018-06-12 17:04:54 +0100118.B --keep-in-foreground.
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
Simon Kelleyaf3bd072018-09-08 15:08:22 +0100159as. The default is "dip", if available, to facilitate access to
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000160/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
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000194.B \-i, --interface=<interface name>
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100195Listen only on the specified interface(s). Dnsmasq automatically adds
196the loopback (local) interface to the list of interfaces to use when
197the
198.B \--interface
199option is used. If no
200.B \--interface
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000201or
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100202.B \--listen-address
203options are given dnsmasq listens on all available interfaces except any
204given in
205.B \--except-interface
Petr Menšíkad59f272017-03-17 17:22:19 +0000206options. On Linux, when
207.B \--bind-interfaces
Simon Kelley8a911cc2004-03-16 18:35:52 +0000208or
Petr Menšíkad59f272017-03-17 17:22:19 +0000209.B \--bind-dynamic
210are in effect, IP alias interface labels (eg "eth1:0") are checked, rather than
211interface 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
212allows control over which of those addresses are accepted.
213The same effect is achievable in default mode by using
214.B \--listen-address.
215A simple wildcard, consisting of a trailing '*',
216can be used in
Simon Kelley49333cb2013-03-15 20:30:51 +0000217.B \--interface
218and
219.B \--except-interface
220options.
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000221.TP
222.B \-I, --except-interface=<interface name>
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100223Do not listen on the specified interface. Note that the order of
224.B \--listen-address
225.B --interface
226and
227.B --except-interface
228options does not matter and that
229.B --except-interface
Petr Menšíkad59f272017-03-17 17:22:19 +0000230options always override the others. The comments about interface labels for
231.B --listen-address
232apply here.
Simon Kelley34d0a362013-01-02 11:40:56 +0000233.TP
Simon Kelley08933472018-10-05 16:34:35 +0100234.B --auth-server=<domain>,[<interface>|<ip-address>...]
Simon Kelley81925ab2013-04-10 11:43:58 +0100235Enable DNS authoritative mode for queries arriving at an interface or address. Note that the interface or address
Simon Kelley34d0a362013-01-02 11:40:56 +0000236need not be mentioned in
237.B --interface
238or
239.B --listen-address
240configuration, indeed
241.B --auth-server
Josh Soref730c6742017-02-06 16:14:04 +0000242will override these and provide a different DNS service on the
Simon Kelleyf25e6c62013-11-17 12:23:42 +0000243specified interface. The <domain> is the "glue record". It should
Ville Skyttäfaaf3062018-01-14 17:32:52 +0000244resolve in the global DNS to an A and/or AAAA record which points to
Simon Kelleyf25e6c62013-11-17 12:23:42 +0000245the address dnsmasq is listening on. When an interface is specified,
246it may be qualified with "/4" or "/6" to specify only the IPv4 or IPv6
Simon Kelleyb43585c2020-03-28 17:41:06 +0000247addresses associated with the interface. Since any defined authoritative zones are also available as part of the normal recusive DNS service supplied by dnsmasq, it can make sense to have an --auth-server declaration with no interfaces or address, but simply specifying the primary external nameserver.
Simon Kelleyc8a80482014-03-05 14:29:54 +0000248.TP
249.B --local-service
250Accept DNS queries only from hosts whose address is on a local subnet,
251ie a subnet for which an interface exists on the server. This option
Peter Pöschl9268b5d2018-06-12 17:04:54 +0100252only has effect if there are no \fB--interface\fP, \fB--except-interface\fP,
253\fB--listen-address\fP or \fB--auth-server\fP options. It is intended to be set as
Simon Kelleyc8a80482014-03-05 14:29:54 +0000254a default on installation, to allow unconfigured installations to be
255useful but also safe from being used for DNS amplification attacks.
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000256.TP
Simon Kelley3d8df262005-08-29 12:19:27 +0100257.B \-2, --no-dhcp-interface=<interface name>
Simon Kelley832af0b2007-01-21 20:01:28 +0000258Do not provide DHCP or TFTP on the specified interface, but do provide DNS service.
Simon Kelley3d8df262005-08-29 12:19:27 +0100259.TP
Simon Kelley44a2a312004-03-10 20:04:35 +0000260.B \-a, --listen-address=<ipaddr>
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100261Listen on the given IP address(es). Both
262.B \--interface
263and
264.B \--listen-address
265options may be given, in which case the set of both interfaces and
266addresses is used. Note that if no
267.B \--interface
268option is given, but
269.B \--listen-address
270is, dnsmasq will not automatically listen on the loopback
271interface. To achieve this, its IP address, 127.0.0.1, must be
272explicitly given as a
273.B \--listen-address
274option.
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000275.TP
Simon Kelley44a2a312004-03-10 20:04:35 +0000276.B \-z, --bind-interfaces
277On systems which support it, dnsmasq binds the wildcard address,
278even when it is listening on only some interfaces. It then discards
279requests that it shouldn't reply to. This has the advantage of
280working even when interfaces come and go and change address. This
281option forces dnsmasq to really bind only the interfaces it is
282listening on. About the only time when this is useful is when
Simon Kelleyf6b7dc42005-01-23 12:06:08 +0000283running another nameserver (or another instance of dnsmasq) on the
Simon Kelley309331f2006-04-22 15:05:01 +0100284same machine. Setting this option also enables multiple instances of
Simon Kelleyf6b7dc42005-01-23 12:06:08 +0000285dnsmasq which provide DHCP service to run in the same machine.
286.TP
Simon Kelley54dd3932012-06-20 11:23:38 +0100287.B --bind-dynamic
288Enable a network mode which is a hybrid between
289.B --bind-interfaces
Simon Kelleya2ce6fc2012-08-06 20:05:48 +0100290and the default. Dnsmasq binds the address of individual interfaces,
Simon Kelley54dd3932012-06-20 11:23:38 +0100291allowing multiple dnsmasq instances, but if new interfaces or
292addresses appear, it automatically listens on those (subject to any
293access-control configuration). This makes dynamically created
294interfaces work in the same way as the default. Implementing this
Simon Kelleya2ce6fc2012-08-06 20:05:48 +0100295option requires non-standard networking APIs and it is only available
Peter Pöschl9268b5d2018-06-12 17:04:54 +0100296under Linux. On other platforms it falls-back to \fB--bind-interfaces\fP mode.
Simon Kelley54dd3932012-06-20 11:23:38 +0100297.TP
Simon Kelleyf6b7dc42005-01-23 12:06:08 +0000298.B \-y, --localise-queries
Peter Pöschl9268b5d2018-06-12 17:04:54 +0100299Return answers to DNS queries from /etc/hosts and \fB--interface-name\fP which depend on the interface over which the query was
Simon Kelleyd42d4702017-02-02 16:52:06 +0000300received. If a name has more than one address associated with
Simon Kelleyf6b7dc42005-01-23 12:06:08 +0000301it, and at least one of those addresses is on the same subnet as the
302interface to which the query was sent, then return only the
303address(es) on that subnet. This allows for a server to have multiple
304addresses in /etc/hosts corresponding to each of its interfaces, and
305hosts will get the correct address based on which network they are
306attached to. Currently this facility is limited to IPv4.
Simon Kelley44a2a312004-03-10 20:04:35 +0000307.TP
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000308.B \-b, --bogus-priv
309Bogus private reverse lookups. All reverse lookups for private IP ranges (ie 192.168.x.x, etc)
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100310which are not found in /etc/hosts or the DHCP leases file are answered
Simon Kelleyfca008d2017-02-19 18:50:41 +0000311with "no such domain" rather than being forwarded upstream. The
312set of prefixes affected is the list given in RFC6303, for IPv4 and IPv6.
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000313.TP
Simon Kelley73a08a22009-02-05 20:28:08 +0000314.B \-V, --alias=[<old-ip>]|[<start-ip>-<end-ip>],<new-ip>[,<mask>]
Simon Kelley1cff1662004-03-12 08:12:58 +0000315Modify IPv4 addresses returned from upstream nameservers; old-ip is
316replaced by new-ip. If the optional mask is given then any address
317which matches the masked old-ip will be re-written. So, for instance
318.B --alias=1.2.3.0,6.7.8.0,255.255.255.0
319will 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 +0000320Cisco PIX routers call "DNS doctoring". If the old IP is given as
321range, then only addresses in the range, rather than a whole subnet,
322are re-written. So
323.B --alias=192.168.0.10-192.168.0.40,10.0.0.0,255.255.255.0
324maps 192.168.0.10->192.168.0.40 to 10.0.0.10->10.0.0.40
Simon Kelley1cff1662004-03-12 08:12:58 +0000325.TP
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000326.B \-B, --bogus-nxdomain=<ipaddr>
327Transform replies which contain the IP address given into "No such
328domain" replies. This is intended to counteract a devious move made by
Simon Kelleyb8187c82005-11-26 21:46:27 +0000329Verisign in September 2003 when they started returning the address of
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000330an advertising web page in response to queries for unregistered names,
331instead of the correct NXDOMAIN response. This option tells dnsmasq to
332fake the correct response when it sees this behaviour. As at Sept 2003
Simon Kelleyb8187c82005-11-26 21:46:27 +0000333the IP address being returned by Verisign is 64.94.110.11
Glen Huang32fc6db2014-12-27 15:28:12 +0000334.TP
Simon Kelley09217a12016-05-03 17:04:35 +0100335.B --ignore-address=<ipaddr>
Glen Huang32fc6db2014-12-27 15:28:12 +0000336Ignore replies to A-record queries which include the specified address.
337No error is generated, dnsmasq simply continues to listen for another reply.
338This is useful to defeat blocking strategies which rely on quickly supplying a
339forged answer to a DNS request for certain domain, before the correct answer can arrive.
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000340.TP
341.B \-f, --filterwin2k
342Later versions of windows make periodic DNS requests which don't get sensible answers from
343the public DNS and can cause problems by triggering dial-on-demand links. This flag turns on an option
344to filter such requests. The requests blocked are for records of types SOA and SRV, and type ANY where the
345requested name has underscores, to catch LDAP requests.
346.TP
347.B \-r, --resolv-file=<file>
348Read the IP addresses of the upstream nameservers from <file>, instead of
349/etc/resolv.conf. For the format of this file see
Simon Kelley7de060b2011-08-26 17:24:52 +0100350.BR resolv.conf (5).
351The only lines relevant to dnsmasq are nameserver ones. Dnsmasq can
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000352be told to poll more than one resolv.conf file, the first file name specified
353overrides the default, subsequent ones add to the list. This is only
354allowed when polling; the file with the currently latest modification
355time is the one used.
356.TP
357.B \-R, --no-resolv
358Don't read /etc/resolv.conf. Get upstream servers only from the command
Simon Kelleyb49644f2004-01-30 21:36:24 +0000359line or the dnsmasq configuration file.
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000360.TP
Simon Kelleyad094272012-08-10 17:10:54 +0100361.B \-1, --enable-dbus[=<service-name>]
Simon Kelley3d8df262005-08-29 12:19:27 +0100362Allow dnsmasq configuration to be updated via DBus method calls. The
363configuration which can be changed is upstream DNS servers (and
Simon Kelleyb8187c82005-11-26 21:46:27 +0000364corresponding domains) and cache clear. Requires that dnsmasq has
Simon Kelleyad094272012-08-10 17:10:54 +0100365been built with DBus support. If the service name is given, dnsmasq
366provides service at that name, rather than the default which is
367.B uk.org.thekelleys.dnsmasq
Simon Kelley3d8df262005-08-29 12:19:27 +0100368.TP
Oldřich Jedličkad162bee2020-03-20 22:18:57 +0100369.B --enable-ubus[=<service-name>]
Julian Kornberger8dcdb332018-07-21 22:11:08 +0100370Enable dnsmasq UBus interface. It sends notifications via UBus on
371DHCPACK and DHCPRELEASE events. Furthermore it offers metrics.
Oldřich Jedličkad162bee2020-03-20 22:18:57 +0100372Requires that dnsmasq has been built with UBus support. If the service
373name is given, dnsmasq provides service at that namespace, rather than
374the default which is
375.B dnsmasq
Julian Kornberger8dcdb332018-07-21 22:11:08 +0100376.TP
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000377.B \-o, --strict-order
378By default, dnsmasq will send queries to any of the upstream servers
Simon Kelley824af852008-02-12 20:43:05 +0000379it knows about and tries to favour servers that are known to
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000380be up. Setting this flag forces dnsmasq to try each query with each
381server strictly in the order they appear in /etc/resolv.conf
382.TP
Simon Kelley824af852008-02-12 20:43:05 +0000383.B --all-servers
384By default, when dnsmasq has more than one upstream server available,
385it will send queries to just one server. Setting this flag forces
386dnsmasq to send all queries to all available servers. The reply from
Simon Kelleyc72daea2012-01-05 21:33:27 +0000387the server which answers first will be returned to the original requester.
Simon Kelley824af852008-02-12 20:43:05 +0000388.TP
Simon Kelleyb5ea1cc2014-07-29 16:34:14 +0100389.B --dns-loop-detect
390Enable code to detect DNS forwarding loops; ie the situation where a query sent to one
391of the upstream server eventually returns as a new query to the dnsmasq instance. The
392process works by generating TXT queries of the form <hex>.test and sending them to
393each upstream server. The hex is a UID which encodes the instance of dnsmasq sending the query
394and the upstream server to which it was sent. If the query returns to the server which sent it, then
395the upstream server through which it was sent is disabled and this event is logged. Each time the
396set of upstream servers changes, the test is re-run on all of them, including ones which
397were previously disabled.
398.TP
Simon Kelley824af852008-02-12 20:43:05 +0000399.B --stop-dns-rebind
400Reject (and log) addresses from upstream nameservers which are in the
Dominik DL6ERe7ee1aa2020-03-17 22:59:17 +0000401private ranges. This blocks an attack where a browser behind a
402firewall is used to probe machines on the local network. For IPv6, the
403private range covers the IPv4-mapped addresses in private space plus
404all link-local (LL) and site-local (ULA) addresses.
Simon Kelley824af852008-02-12 20:43:05 +0000405.TP
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100406.B --rebind-localhost-ok
Dominik DL6ERe7ee1aa2020-03-17 22:59:17 +0000407Exempt 127.0.0.0/8 and ::1 from rebinding checks. This address range is
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100408returned by realtime black hole servers, so blocking it may disable
409these services.
410.TP
411.B --rebind-domain-ok=[<domain>]|[[/<domain>/[<domain>/]
412Do not detect and block dns-rebind on queries to these domains. The
413argument may be either a single domain, or multiple domains surrounded
Peter Pöschl9268b5d2018-06-12 17:04:54 +0100414by '/', like the \fB--server\fP syntax, eg.
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100415.B --rebind-domain-ok=/domain1/domain2/domain3/
416.TP
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000417.B \-n, --no-poll
418Don't poll /etc/resolv.conf for changes.
419.TP
Simon Kelley16972692006-10-16 20:04:18 +0100420.B --clear-on-reload
Simon Kelleyd9fb0be2013-07-25 21:47:17 +0100421Whenever /etc/resolv.conf is re-read or the upstream servers are set
422via DBus, clear the DNS cache.
Simon Kelley16972692006-10-16 20:04:18 +0100423This is useful when new nameservers may have different
424data than that held in cache.
425.TP
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000426.B \-D, --domain-needed
Simon Kelley7de060b2011-08-26 17:24:52 +0100427Tells dnsmasq to never forward A or AAAA queries for plain names, without dots
Simon Kelley3d8df262005-08-29 12:19:27 +0100428or domain parts, to upstream nameservers. If the name is not known
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000429from /etc/hosts or DHCP then a "not found" answer is returned.
430.TP
Simon Kelley9beb4d92020-07-05 17:17:39 +0100431.B \-S, --local, --server=[/[<domain>]/[domain/]][<ipaddr>[#<port>]][@<source-ip>|<interface>[#<port>]]
Simon Kelley5aabfc72007-08-29 11:24:47 +0100432Specify IP address of upstream servers directly. Setting this flag does
Peter Pöschl9268b5d2018-06-12 17:04:54 +0100433not suppress reading of /etc/resolv.conf, use \fB--no-resolv\fP to do that. If one or more
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000434optional domains are given, that server is used only for those domains
435and they are queried only using the specified server. This is
436intended for private nameservers: if you have a nameserver on your
437network which deals with names of the form
438xxx.internal.thekelleys.org.uk at 192.168.1.1 then giving the flag
Peter Pöschl9268b5d2018-06-12 17:04:54 +0100439.B --server=/internal.thekelleys.org.uk/192.168.1.1
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000440will send all queries for
441internal machines to that nameserver, everything else will go to the
Simon Kelley92be34a2016-01-16 18:39:54 +0000442servers in /etc/resolv.conf. DNSSEC validation is turned off for such
443private nameservers, UNLESS a
444.B --trust-anchor
445is specified for the domain in question. An empty domain specification,
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000446.B //
447has the special meaning of "unqualified names only" ie names without any
448dots in them. A non-standard port may be specified as
449part of the IP
450address using a # character.
Peter Pöschl9268b5d2018-06-12 17:04:54 +0100451More than one \fB--server\fP flag is allowed, with
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100452repeated domain or ipaddr parts as required.
453
Josh Soref730c6742017-02-06 16:14:04 +0000454More specific domains take precedence over less specific domains, so:
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100455.B --server=/google.com/1.2.3.4
456.B --server=/www.google.com/2.3.4.5
457will send queries for *.google.com to 1.2.3.4, except *www.google.com,
458which will go to 2.3.4.5
459
460The special server address '#' means, "use the standard servers", so
461.B --server=/google.com/1.2.3.4
462.B --server=/www.google.com/#
463will send queries for *.google.com to 1.2.3.4, except *www.google.com which will
464be forwarded as usual.
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000465
466Also permitted is a -S
467flag which gives a domain but no IP address; this tells dnsmasq that
468a domain is local and it may answer queries from /etc/hosts or DHCP
469but should never forward queries on that domain to any upstream
470servers.
Peter Pöschl9268b5d2018-06-12 17:04:54 +0100471.B --local
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000472is a synonym for
Peter Pöschl9268b5d2018-06-12 17:04:54 +0100473.B --server
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000474to make configuration files clearer in this case.
475
Ville Skyttäfaaf3062018-01-14 17:32:52 +0000476IPv6 addresses may include an %interface scope-id, eg
Simon Kelley7de060b2011-08-26 17:24:52 +0100477fe80::202:a412:4512:7bbf%eth0.
478
Kristian Evensen4e7694d2017-03-22 21:32:50 +0000479The optional string after the @ character tells dnsmasq how to set the source of
480the queries to this nameserver. It can either be an ip-address, an interface
481name or both. The ip-address should belong to the machine on which dnsmasq is
482running, otherwise this server line will be logged and then ignored. If an
483interface name is given, then queries to the server will be forced via that
484interface; if an ip-address is given then the source address of the queries will
485be set to that address; and if both are given then a combination of ip-address
486and interface name will be used to steer requests to the server.
Simon Kelley824af852008-02-12 20:43:05 +0000487The query-port flag is ignored for any servers which have a
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000488source address specified but the port may be specified directly as
Simon Kelley824af852008-02-12 20:43:05 +0000489part of the source address. Forcing queries to an interface is not
490implemented on all platforms supported by dnsmasq.
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000491.TP
Simon Kelleya9b022a2020-02-11 21:58:59 +0000492.B --rev-server=<ip-address>/<prefix-len>[,<ipaddr>][#<port>][@<source-ip>|<interface>[#<port>]]
Simon Kelleyde73a492014-02-17 21:43:27 +0000493This is functionally the same as
494.B --server,
495but provides some syntactic sugar to make specifying address-to-name queries easier. For example
496.B --rev-server=1.2.3.0/24,192.168.0.1
497is exactly equivalent to
498.B --server=/3.2.1.in-addr.arpa/192.168.0.1
499.TP
Peter Wu3c0c1112016-08-28 20:53:09 +0100500.B \-A, --address=/<domain>[/<domain>...]/[<ipaddr>]
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000501Specify an IP address to return for any host in the given domains.
502Queries in the domains are never forwarded and always replied to
503with the specified IP address which may be IPv4 or IPv6. To give
Peter Pöschl9268b5d2018-06-12 17:04:54 +0100504both IPv4 and IPv6 addresses for a domain, use repeated \fB--address\fP flags.
Peter Wu3c0c1112016-08-28 20:53:09 +0100505To include multiple IP addresses for a single query, use
506\fB--addn-hosts=<path>\fP instead.
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000507Note that /etc/hosts and DHCP leases override this for individual
508names. A common use of this is to redirect the entire doubleclick.net
Simon Kelleya2226412004-05-13 20:27:08 +0100509domain to some friendly local web server to avoid banner ads. The
Peter Wu3c0c1112016-08-28 20:53:09 +0100510domain specification works in the same was as for \fB--server\fP, with
511the additional facility that \fB/#/\fP matches any domain. Thus
512\fB--address=/#/1.2.3.4\fP will always return \fB1.2.3.4\fP for any
513query not answered from \fB/etc/hosts\fP or DHCP and not sent to an
514upstream nameserver by a more specific \fB--server\fP directive. As for
515\fB--server\fP, one or more domains with no address returns a
516no-such-domain answer, so \fB--address=/example.com/\fP is equivalent to
517\fB--server=/example.com/\fP and returns NXDOMAIN for example.com and
Simon Kelleyda8b6512018-09-03 23:18:36 +0100518all its subdomains. An address specified as '#' translates to the NULL
519address of 0.0.0.0 and its IPv6 equivalent of :: so
520\fB--address=/example.com/#\fP will return NULL addresses for example.com and
521its subdomains. This is partly syntactic sugar for \fB--address=/example.com/0.0.0.0\fP
522and \fB--address=/example.com/::\fP but is also more efficient than including both
Ville Skyttäbf23c8a2019-12-05 16:50:57 +0000523as separate configuration lines. Note that NULL addresses normally work in the same way as localhost, so beware that clients looking up these names are likely to end up talking to themselves.
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000524.TP
Peter Wu3c0c1112016-08-28 20:53:09 +0100525.B --ipset=/<domain>[/<domain>...]/<ipset>[,<ipset>...]
526Places the resolved IP addresses of queries for one or more domains in
527the specified Netfilter IP set. If multiple setnames are given, then the
528addresses are placed in each of them, subject to the limitations of an
529IP set (IPv4 addresses cannot be stored in an IPv6 IP set and vice
530versa). Domains and subdomains are matched in the same way as
531\fB--address\fP.
532These IP sets must already exist. See
533.BR ipset (8)
534for more details.
Jason A. Donenfeld13d86c72013-02-22 18:20:53 +0000535.TP
Simon Kelleyf6b7dc42005-01-23 12:06:08 +0000536.B \-m, --mx-host=<mx name>[[,<hostname>],<preference>]
Simon Kelleyde379512004-06-22 20:23:33 +0100537Return an MX record named <mx name> pointing to the given hostname (if
538given), or
Peter Pöschl9268b5d2018-06-12 17:04:54 +0100539the host specified in the \fB--mx-target\fP switch
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000540or, if that switch is not given, the host on which dnsmasq
Simon Kelleyf6b7dc42005-01-23 12:06:08 +0000541is running. The default is useful for directing mail from systems on a LAN
542to a central server. The preference value is optional, and defaults to
5431 if not given. More than one MX record may be given for a host.
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000544.TP
545.B \-t, --mx-target=<hostname>
Simon Kelleyf6b7dc42005-01-23 12:06:08 +0000546Specify the default target for the MX record returned by dnsmasq. See
Peter Pöschl9268b5d2018-06-12 17:04:54 +0100547\fB--mx-host\fP. If \fB--mx-target\fP is given, but not \fB--mx-host\fP, then dnsmasq
Simon Kelleyf6b7dc42005-01-23 12:06:08 +0000548returns a MX record containing the MX target for MX queries on the
549hostname of the machine on which dnsmasq is running.
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000550.TP
551.B \-e, --selfmx
552Return an MX record pointing to itself for each local
553machine. Local machines are those in /etc/hosts or with DHCP leases.
554.TP
555.B \-L, --localmx
Peter Pöschl9268b5d2018-06-12 17:04:54 +0100556Return an MX record pointing to the host given by \fB--mx-target\fP (or the
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000557machine on which dnsmasq is running) for each
558local machine. Local machines are those in /etc/hosts or with DHCP
559leases.
560.TP
Simon Kelleyf6b7dc42005-01-23 12:06:08 +0000561.B \-W, --srv-host=<_service>.<_prot>.[<domain>],[<target>[,<port>[,<priority>[,<weight>]]]]
562Return a SRV DNS record. See RFC2782 for details. If not supplied, the
563domain defaults to that given by
564.B --domain.
565The default for the target domain is empty, and the default for port
566is one and the defaults for
567weight and priority are zero. Be careful if transposing data from BIND
568zone files: the port, weight and priority numbers are in a different
569order. More than one SRV record for a given service/domain is allowed,
Simon Kelley3d8df262005-08-29 12:19:27 +0100570all that match are returned.
Simon Kelleyf6b7dc42005-01-23 12:06:08 +0000571.TP
Simon Kelleydf3d54f2016-02-24 21:03:38 +0000572.B --host-record=<name>[,<name>....],[<IPv4-address>],[<IPv6-address>][,<TTL>]
Simon Kelleye759d422012-03-16 13:18:57 +0000573Add A, AAAA and PTR records to the DNS. This adds one or more names to
574the DNS with associated IPv4 (A) and IPv6 (AAAA) records. A name may
575appear in more than one
Peter Pöschl9268b5d2018-06-12 17:04:54 +0100576.B --host-record
Simon Kelleye759d422012-03-16 13:18:57 +0000577and therefore be assigned more than one address. Only the first
578address creates a PTR record linking the address to the name. This is
579the same rule as is used reading hosts-files.
Peter Pöschl9268b5d2018-06-12 17:04:54 +0100580.B --host-record
Simon Kelleye759d422012-03-16 13:18:57 +0000581options are considered to be read before host-files, so a name
582appearing there inhibits PTR-record creation if it appears in
Simon Kelleye46164e2012-04-16 16:39:38 +0100583hosts-file also. Unlike hosts-files, names are not expanded, even when
Peter Pöschl9268b5d2018-06-12 17:04:54 +0100584.B --expand-hosts
Simon Kelleye759d422012-03-16 13:18:57 +0000585is in effect. Short and long names may appear in the same
Peter Pöschl9268b5d2018-06-12 17:04:54 +0100586.B --host-record,
Simon Kelleye46164e2012-04-16 16:39:38 +0100587eg.
588.B --host-record=laptop,laptop.thekelleys.org,192.168.0.1,1234::100
Simon Kelleydf3d54f2016-02-24 21:03:38 +0000589
590If the time-to-live is given, it overrides the default, which is zero
Peter Pöschl9268b5d2018-06-12 17:04:54 +0100591or the value of \fB--local-ttl\fP. The value is a positive integer and gives
Simon Kelleydf3d54f2016-02-24 21:03:38 +0000592the time-to-live in seconds.
Simon Kelleye759d422012-03-16 13:18:57 +0000593.TP
Simon Kelley0a852542005-03-23 20:28:59 +0000594.B \-Y, --txt-record=<name>[[,<text>],<text>]
595Return a TXT DNS record. The value of TXT record is a set of strings,
Simon Kelley28866e92011-02-14 20:19:14 +0000596so any number may be included, delimited by commas; use quotes to put
597commas into a string. Note that the maximum length of a single string
598is 255 characters, longer strings are split into 255 character chunks.
Simon Kelley0a852542005-03-23 20:28:59 +0000599.TP
Simon Kelley832af0b2007-01-21 20:01:28 +0000600.B --ptr-record=<name>[,<target>]
601Return a PTR DNS record.
602.TP
Simon Kelley1a6bca82008-07-11 11:11:42 +0100603.B --naptr-record=<name>,<order>,<preference>,<flags>,<service>,<regexp>[,<replacement>]
604Return an NAPTR DNS record, as specified in RFC3403.
605.TP
Simon Kelley974a6d02018-08-23 23:01:16 +0100606.B --caa-record=<name>,<flags>,<tag>,<value>
607Return a CAA DNS record, as specified in RFC6844.
608.TP
Simon Kelleya1d973f2016-12-22 22:09:50 +0000609.B --cname=<cname>,[<cname>,]<target>[,<TTL>]
Simon Kelley9009d742008-11-14 20:04:27 +0000610Return a CNAME record which indicates that <cname> is really
Simon Kelley84449bf2019-10-29 22:24:19 +0000611<target>. There is a significant limitation on the target; it must be a
612DNS record which is known to dnsmasq and NOT a DNS record which comes from
613an upstream server. The cname must be unique, but it
Ville Skyttäfaaf3062018-01-14 17:32:52 +0000614is permissible to have more than one cname pointing to the same target. Indeed
Simon Kelleya1d973f2016-12-22 22:09:50 +0000615it's possible to declare multiple cnames to a target in a single line, like so:
616.B --cname=cname1,cname2,target
Simon Kelleydf3d54f2016-02-24 21:03:38 +0000617
618If the time-to-live is given, it overrides the default, which is zero
Peter Pöschl9268b5d2018-06-12 17:04:54 +0100619or the value of \fB--local-ttl\fP. The value is a positive integer and gives
Simon Kelleydf3d54f2016-02-24 21:03:38 +0000620the time-to-live in seconds.
Simon Kelley9009d742008-11-14 20:04:27 +0000621.TP
Simon Kelley9f7f3b12012-05-28 21:39:57 +0100622.B --dns-rr=<name>,<RR-number>,[<hex data>]
623Return an arbitrary DNS Resource Record. The number is the type of the
624record (which is always in the C_IN class). The value of the record is
Simon Kelleya2ce6fc2012-08-06 20:05:48 +0100625given 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 +0100626012345 or any mixture of these.
627.TP
Simon Kelleyf7029f52013-11-21 15:09:09 +0000628.B --interface-name=<name>,<interface>[/4|/6]
Simon Kelleyd42d4702017-02-02 16:52:06 +0000629Return DNS records associating the name with the address(es) of
Simon Kelleyf7029f52013-11-21 15:09:09 +0000630the given interface. This flag specifies an A or AAAA record for the given
Simon Kelleyf2621c72007-04-29 19:47:21 +0100631name in the same way as an /etc/hosts line, except that the address is
Simon Kelleyf7029f52013-11-21 15:09:09 +0000632not constant, but taken from the given interface. The interface may be
633followed by "/4" or "/6" to specify that only IPv4 or IPv6 addresses
634of the interface should be used. If the interface is
Simon Kelley9e038942008-05-30 20:06:34 +0100635down, not configured or non-existent, an empty record is returned. The
Simon Kelleyf2621c72007-04-29 19:47:21 +0100636matching PTR record is also created, mapping the interface address to
637the name. More than one name may be associated with an interface
638address by repeating the flag; in that case the first instance is used
Simon Kelleyd42d4702017-02-02 16:52:06 +0000639for the reverse address-to-name mapping. Note that a name used in
Peter Pöschl9268b5d2018-06-12 17:04:54 +0100640\fB--interface-name\fP may not appear in /etc/hosts.
Simon Kelleyf2621c72007-04-29 19:47:21 +0100641.TP
Simon Kelley6b2b5642018-03-10 18:12:04 +0000642.B --synth-domain=<domain>,<address range>[,<prefix>[*]]
Simon Kelley2bb73af2013-04-24 17:38:19 +0100643Create artificial A/AAAA and PTR records for an address range. The
Simon Kelley6b2b5642018-03-10 18:12:04 +0000644records either seqential numbers or the address, with periods (or colons for IPv6) replaced with dashes.
Simon Kelley2bb73af2013-04-24 17:38:19 +0100645
Simon Kelley6b2b5642018-03-10 18:12:04 +0000646An examples should make this clearer. First sequential numbers.
647.B --synth-domain=thekelleys.org.uk,192.168.0.50,192.168.0.70,internal-*
648results in the name internal-0.thekelleys.org.uk. returning 192.168.0.50, internal-1.thekelleys.org.uk returning 192.168.0.51 and so on. (note the *) The same principle applies to IPv6 addresses (where the numbers may be very large). Reverse lookups from address to name behave as expected.
649
650Second,
651.B --synth-domain=thekelleys.org.uk,192.168.0.0/24,internal- (no *)
Simon Kelley48fd1c42013-04-25 09:49:38 +0100652will result in a query for internal-192-168-0-56.thekelleys.org.uk returning
653192.168.0.56 and a reverse query vice versa. The same applies to IPv6,
654but IPv6 addresses may start with '::'
655but DNS labels may not start with '-' so in this case if no prefix is
656configured a zero is added in front of the label. ::1 becomes 0--1.
Simon Kelley2bb73af2013-04-24 17:38:19 +0100657
Simon Kelley6d950992016-08-11 23:38:54 +0100658V4 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
659
Simon Kelley2bb73af2013-04-24 17:38:19 +0100660The address range can be of the form
Simon Kelley6b2b5642018-03-10 18:12:04 +0000661<ip address>,<ip address> or <ip address>/<netmask> in both forms of the option.
Simon Kelley2bb73af2013-04-24 17:38:19 +0100662.TP
Simon Kelley6b173352018-05-08 18:32:14 +0100663.B --dumpfile=<path/to/file>
664Specify the location of a pcap-format file which dnsmasq uses to dump copies of network packets for debugging purposes. If the file exists when dnsmasq starts, it is not deleted; new packets are added to the end.
665.TP
666.B --dumpmask=<mask>
667Specify which types of packets should be added to the dumpfile. The argument should be the OR of the bitmasks for each type of packet to be dumped: it can be specified in hex by preceding the number with 0x in the normal way. Each time a packet is written to the dumpfile, dnsmasq logs the packet sequence and the mask
668representing its type. The current types are: 0x0001 - DNS queries from clients 0x0002 DNS replies to clients 0x0004 - DNS queries to upstream 0x0008 - DNS replies from upstream 0x0010 - queries send upstream for DNSSEC validation 0x0020 - replies to queries for DNSSEC validation 0x0040 - replies to client queries which fail DNSSEC validation 0x0080 replies to queries for DNSSEC validation which fail validation.
669.TP
Simon Kelley9e4cf472016-02-17 20:26:32 +0000670.B --add-mac[=base64|text]
Simon Kelley28866e92011-02-14 20:19:14 +0000671Add the MAC address of the requestor to DNS queries which are
672forwarded upstream. This may be used to DNS filtering by the upstream
673server. The MAC address can only be added if the requestor is on the same
674subnet as the dnsmasq server. Note that the mechanism used to achieve this (an EDNS0 option)
675is not yet standardised, so this should be considered
676experimental. Also note that exposing MAC addresses in this way may
Simon Kelleyed4c0762013-10-08 20:46:34 +0100677have security and privacy implications. The warning about caching
Peter Pöschl9268b5d2018-06-12 17:04:54 +0100678given for \fB--add-subnet\fP applies to \fB--add-mac\fP too. An alternative encoding of the
Simon Kelley9e4cf472016-02-17 20:26:32 +0000679MAC, 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 +0000680.TP
681.B --add-cpe-id=<string>
Geert Stappers2a20cc62019-10-22 18:20:56 +0100682Add an arbitrary identifying string to DNS queries which are
Simon Kelley1e505122016-01-25 21:29:23 +0000683forwarded upstream.
Simon Kelleyed4c0762013-10-08 20:46:34 +0100684.TP
Ed Bardsleya7369be2015-08-05 21:17:18 +0100685.B --add-subnet[[=[<IPv4 address>/]<IPv4 prefix length>][,[<IPv6 address>/]<IPv6 prefix length>]]
686Add a subnet address to the DNS queries which are forwarded
687upstream. If an address is specified in the flag, it will be used,
688otherwise, the address of the requestor will be used. The amount of
689the address forwarded depends on the prefix length parameter: 32 (128
690for IPv6) forwards the whole address, zero forwards none of it but
691still marks the request so that no upstream nameserver will add client
692address information either. The default is zero for both IPv4 and
693IPv6. Note that upstream nameservers may be configured to return
694different results based on this information, but the dnsmasq cache
Simon Kelley25e63f12020-11-25 21:17:52 +0000695does not take account. Caching is therefore disabled for such replies,
696unless the subnet address being added is constant.
Ed Bardsleya7369be2015-08-05 21:17:18 +0100697
698For example,
699.B --add-subnet=24,96
700will add the /24 and /96 subnets of the requestor for IPv4 and IPv6 requestors, respectively.
701.B --add-subnet=1.2.3.4/24
702will add 1.2.3.0/24 for IPv4 requestors and ::/0 for IPv6 requestors.
703.B --add-subnet=1.2.3.4/24,1.2.3.4/24
704will add 1.2.3.0/24 for both IPv4 and IPv6 requestors.
705
Simon Kelley28866e92011-02-14 20:19:14 +0000706.TP
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000707.B \-c, --cache-size=<cachesize>
Geert Stappers7dcca6c2018-06-02 18:54:04 +0100708Set the size of dnsmasq's cache. The default is 150 names. Setting the cache size to zero disables caching. Note: huge cache size impacts performance.
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000709.TP
710.B \-N, --no-negcache
711Disable negative caching. Negative caching allows dnsmasq to remember
712"no such domain" answers from upstream nameservers and answer
Simon Kelley5aabfc72007-08-29 11:24:47 +0100713identical queries without forwarding them again.
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000714.TP
Simon Kelley16972692006-10-16 20:04:18 +0100715.B \-0, --dns-forward-max=<queries>
716Set the maximum number of concurrent DNS queries. The default value is
717150, which should be fine for most setups. The only known situation
718where this needs to be increased is when using web-server log file
719resolvers, which can generate large numbers of concurrent queries.
Simon Kelley208b65c2006-08-05 21:41:37 +0100720.TP
Simon Kelley70b4a812014-01-27 22:38:48 +0000721.B --dnssec
722Validate DNS replies and cache DNSSEC data. When forwarding DNS queries, dnsmasq requests the
723DNSSEC records needed to validate the replies. The replies are validated and the result returned as
724the Authenticated Data bit in the DNS packet. In addition the DNSSEC records are stored in the cache, making
725validation by clients more efficient. Note that validation by clients is the most secure DNSSEC mode, but for
726clients unable to do validation, use of the AD bit set by dnsmasq is useful, provided that the network between
727the dnsmasq server and the client is trusted. Dnsmasq must be compiled with HAVE_DNSSEC enabled, and DNSSEC
728trust anchors provided, see
Simon Kelleyee415862014-02-11 11:07:22 +0000729.B --trust-anchor.
Simon Kelleyd588ab52014-03-02 14:30:05 +0000730Because the DNSSEC validation process uses the cache, it is not
731permitted to reduce the cache size below the default when DNSSEC is
732enabled. The nameservers upstream of dnsmasq must be DNSSEC-capable,
733ie capable of returning DNSSEC records with data. If they are not,
734then dnsmasq will not be able to determine the trusted status of
Simon Kelleya6918532018-04-15 16:20:52 +0100735answers and this means that DNS service will be entirely broken.
Simon Kelley70b4a812014-01-27 22:38:48 +0000736.TP
Simon Kelleyee415862014-02-11 11:07:22 +0000737.B --trust-anchor=[<class>],<domain>,<key-tag>,<algorithm>,<digest-type>,<digest>
738Provide DS records to act a trust anchors for DNSSEC
Simon Kelley3b0cb342017-10-27 22:53:52 +0100739validation. Typically these will be the DS record(s) for Key Signing
740key(s) (KSK) of the root zone,
Simon Kelleyee415862014-02-11 11:07:22 +0000741but trust anchors for limited domains are also possible. The current
Ján Sáreník85016322015-07-05 21:23:27 +0100742root-zone trust anchors may be downloaded from https://data.iana.org/root-anchors/root-anchors.xml
Simon Kelley70b4a812014-01-27 22:38:48 +0000743.TP
Simon Kelleya6918532018-04-15 16:20:52 +0100744.B --dnssec-check-unsigned[=no]
745As a default, dnsmasq checks that unsigned DNS replies are
746legitimate: this entails possible extra queries even for the majority of DNS
747zones which are not, at the moment, signed. If
748.B --dnssec-check-unsigned=no
749appears in the configuration, then such replies they are assumed to be valid and passed on (without the
Simon Kelley00a5b5d2014-02-28 18:10:55 +0000750"authentic data" bit set, of course). This does not protect against an
751attacker forging unsigned replies for signed DNS zones, but it is
Simon Kelleya6918532018-04-15 16:20:52 +0100752fast.
753
754Versions of dnsmasq prior to 2.80 defaulted to not checking unsigned replies, and used
755.B --dnssec-check-unsigned
Ville Skyttäbf23c8a2019-12-05 16:50:57 +0000756to switch this on. Such configurations will continue to work as before, but those which used the default of no checking will need to be altered to explicitly select no checking. The new default is because switching off checking for unsigned replies is inherently dangerous. Not only does it open the possiblity of forged replies, but it allows everything to appear to be working even when the upstream namesevers do not support DNSSEC, and in this case no DNSSEC validation at all is occurring.
Simon Kelley00a5b5d2014-02-28 18:10:55 +0000757.TP
Simon Kelleye98bd522014-03-28 20:41:23 +0000758.B --dnssec-no-timecheck
759DNSSEC signatures are only valid for specified time windows, and should be rejected outside those windows. This generates an
760interesting chicken-and-egg problem for machines which don't have a hardware real time clock. For these machines to determine the correct
761time 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 +0000762removes 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 +0000763that 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 +0000764reliable 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 +0000765which have not been thoroughly checked.
Simon Kelley3c973ad2018-01-14 21:05:37 +0000766
767Earlier versions of dnsmasq overloaded SIGHUP (which re-reads much configuration) to also enable time validation.
768
Peter Pöschl9268b5d2018-06-12 17:04:54 +0100769If dnsmasq is run in debug mode (\fB--no-daemon\fP flag) then SIGINT retains its usual meaning of terminating the dnsmasq process.
Simon Kelleye98bd522014-03-28 20:41:23 +0000770.TP
Simon Kelleyf6e62e22015-03-01 18:17:54 +0000771.B --dnssec-timestamp=<path>
Peter Pöschl9268b5d2018-06-12 17:04:54 +0100772Enables an alternative way of checking the validity of the system time for DNSSEC (see \fB--dnssec-no-timecheck\fP). In this case, the
Simon Kelleyf6e62e22015-03-01 18:17:54 +0000773system time is considered to be valid once it becomes later than the timestamp on the specified file. The file is created and
774its 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 +0000775over system restarts. The timestamp file is created after dnsmasq has dropped root, so it must be in a location writable by the
776unprivileged user that dnsmasq runs as.
Simon Kelleyf6e62e22015-03-01 18:17:54 +0000777.TP
Simon Kelley28866e92011-02-14 20:19:14 +0000778.B --proxy-dnssec
Simon Kelley91102ad2020-01-05 21:58:00 +0000779Copy the DNSSEC Authenticated Data bit from upstream servers to downstream clients. This is an
Simon Kelley70b4a812014-01-27 22:38:48 +0000780alternative to having dnsmasq validate DNSSEC, but it depends on the security of the network between
Simon Kelley91102ad2020-01-05 21:58:00 +0000781dnsmasq and the upstream servers, and the trustworthiness of the upstream servers. Note that caching the
782Authenticated Data bit correctly in all cases is not technically possible. If the AD bit is to be relied upon
783when using this option, then the cache should be disabled using --cache-size=0. In most cases, enabling DNSSEC validation
784within dnsmasq is a better option. See --dnssec for details.
Simon Kelley70b4a812014-01-27 22:38:48 +0000785.TP
786.B --dnssec-debug
787Set debugging mode for the DNSSEC validation, set the Checking Disabled bit on upstream queries,
Simon Kelleyee415862014-02-11 11:07:22 +0000788and don't convert replies which do not validate to responses with
789a return code of SERVFAIL. Note that
790setting this may affect DNS behaviour in bad ways, it is not an
791extra-logging flag and should not be set in production.
Simon Kelley28866e92011-02-14 20:19:14 +0000792.TP
Mathias Kresin094bfae2016-07-24 14:15:22 +0100793.B --auth-zone=<domain>[,<subnet>[/<prefix length>][,<subnet>[/<prefix length>].....][,exclude:<subnet>[/<prefix length>]].....]
Simon Kelley34d0a362013-01-02 11:40:56 +0000794Define 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 +0000795will be served. If subnet(s) are given, A and AAAA records must be in one of the
796specified subnets.
797
798As alternative to directly specifying the subnets, it's possible to
Simon Kelley376d48c2013-11-13 13:04:30 +0000799give the name of an interface, in which case the subnets implied by
800that interface's configured addresses and netmask/prefix-length are
801used; this is useful when using constructed DHCP ranges as the actual
802address is dynamic and not known when configuring dnsmasq. The
803interface addresses may be confined to only IPv6 addresses using
804<interface>/6 or to only IPv4 using <interface>/4. This is useful when
805an interface has dynamically determined global IPv6 addresses which should
806appear in the zone, but RFC1918 IPv4 addresses which should not.
807Interface-name and address-literal subnet specifications may be used
Peter Pöschl9268b5d2018-06-12 17:04:54 +0100808freely in the same \fB--auth-zone\fP declaration.
Simon Kelley376d48c2013-11-13 13:04:30 +0000809
Mathias Kresin094bfae2016-07-24 14:15:22 +0100810It's possible to exclude certain IP addresses from responses. It can be
811used, to make sure that answers contain only global routeable IP
812addresses (by excluding loopback, RFC1918 and ULA addresses).
813
Simon Kelley376d48c2013-11-13 13:04:30 +0000814The subnet(s) are also used to define in-addr.arpa and
Lutz Preßler1d7e0a32014-04-07 22:06:23 +0100815ip6.arpa domains which are served for reverse-DNS queries. If not
Simon Kelleybaa80ae2013-05-29 16:32:07 +0100816specified, the prefix length defaults to 24 for IPv4 and 64 for IPv6.
817For IPv4 subnets, the prefix length should be have the value 8, 16 or 24
818unless you are familiar with RFC 2317 and have arranged the
Simon Kelleyc50f25a2013-11-21 11:29:27 +0000819in-addr.arpa delegation accordingly. Note that if no subnets are
820specified, then no reverse queries are answered.
Simon Kelley333b2ce2013-01-07 21:46:03 +0000821.TP
822.B --auth-soa=<serial>[,<hostmaster>[,<refresh>[,<retry>[,<expiry>]]]]
823Specify fields in the SOA record associated with authoritative
824zones. Note that this is optional, all the values are set to sane defaults.
825.TP
826.B --auth-sec-servers=<domain>[,<domain>[,<domain>...]]
827Specify any secondary servers for a zone for which dnsmasq is
828authoritative. These servers must be configured to get zone data from
829dnsmasq by zone transfer, and answer queries for the same
Simon Kelley6f130de2013-04-15 14:47:14 +0100830authoritative zones as dnsmasq.
Simon Kelley333b2ce2013-01-07 21:46:03 +0000831.TP
832.B --auth-peer=<ip-address>[,<ip-address>[,<ip-address>...]]
833Specify the addresses of secondary servers which are allowed to
834initiate zone transfer (AXFR) requests for zones for which dnsmasq is
Simon Kelley1e87eba2018-10-05 16:49:31 +0100835authoritative. If this option is not given but --auth-sec-servers is,
836then AXFR requests will be
Simon Kelley090856c2018-06-02 18:37:07 +0100837accepted from any secondary. Specifying
Peter Pöschl9268b5d2018-06-12 17:04:54 +0100838.B --auth-peer
Simon Kelley090856c2018-06-02 18:37:07 +0100839without
Peter Pöschl9268b5d2018-06-12 17:04:54 +0100840.B --auth-sec-servers
Simon Kelley090856c2018-06-02 18:37:07 +0100841enables zone transfer but does not advertise the secondary in NS records returned by dnsmasq.
Simon Kelley333b2ce2013-01-07 21:46:03 +0000842.TP
Simon Kelley7de060b2011-08-26 17:24:52 +0100843.B --conntrack
844Read the Linux connection track mark associated with incoming DNS
845queries and set the same mark value on upstream traffic used to answer
846those queries. This allows traffic generated by dnsmasq to be
847associated with the queries which cause it, useful for bandwidth
848accounting and firewalling. Dnsmasq must have conntrack support
849compiled in and the kernel must have conntrack support
850included and configured. This option cannot be combined with
Peter Pöschl9268b5d2018-06-12 17:04:54 +0100851.B --query-port.
Simon Kelley7de060b2011-08-26 17:24:52 +0100852.TP
Simon Kelleyfa794662016-03-03 20:33:54 +0000853.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 +0000854.TP
Simon Kelley83f28be2013-04-03 14:46:46 +0100855.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 +0000856
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000857Enable the DHCP server. Addresses will be given out from the range
Simon Kelley44a2a312004-03-10 20:04:35 +0000858<start-addr> to <end-addr> and from statically defined addresses given
859in
Peter Pöschl9268b5d2018-06-12 17:04:54 +0100860.B --dhcp-host
Simon Kelley44a2a312004-03-10 20:04:35 +0000861options. If the lease time is given, then leases
Simon Kelleyb8187c82005-11-26 21:46:27 +0000862will be given for that length of time. The lease time is in seconds,
Simon Kelley7622fc02009-06-04 20:32:05 +0100863or minutes (eg 45m) or hours (eg 1h) or "infinite". If not given,
Simon Kelley4d85e402020-07-12 22:45:46 +0100864the default lease time is one hour for IPv4 and one day for IPv6. The
Simon Kelleyc8257542012-03-28 21:15:41 +0100865minimum lease time is two minutes. For IPv6 ranges, the lease time
866maybe "deprecated"; this sets the preferred lifetime sent in a DHCP
867lease or router advertisement to zero, which causes clients to use
868other addresses, if available, for new connections as a prelude to renumbering.
869
870This option may be repeated, with different addresses, to enable DHCP
Simon Kelley44a2a312004-03-10 20:04:35 +0000871service to more than one network. For directly connected networks (ie,
872networks on which the machine running dnsmasq has an interface) the
Simon Kelley7de060b2011-08-26 17:24:52 +0100873netmask is optional: dnsmasq will determine it from the interface
874configuration. For networks which receive DHCP service via a relay
875agent, dnsmasq cannot determine the netmask itself, so it should be
876specified, otherwise dnsmasq will have to guess, based on the class (A, B or
877C) of the network address. The broadcast address is
Simon Kelley7622fc02009-06-04 20:32:05 +0100878always optional. It is always
Peter Pöschl9268b5d2018-06-12 17:04:54 +0100879allowed to have more than one \fB--dhcp-range\fP in a single subnet.
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100880
Simon Kelley1adadf52012-02-13 22:15:58 +0000881For IPv6, the parameters are slightly different: instead of netmask
Vladislav Grishenko4c82efc2013-12-03 16:05:30 +0000882and broadcast address, there is an optional prefix length which must
883be equal to or larger then the prefix length on the local interface. If not
Simon Kelley1adadf52012-02-13 22:15:58 +0000884given, this defaults to 64. Unlike the IPv4 case, the prefix length is not
Josh Soref730c6742017-02-06 16:14:04 +0000885automatically derived from the interface configuration. The minimum
Simon Kelley1adadf52012-02-13 22:15:58 +0000886size of the prefix length is 64.
887
Simon Kelley34d0a362013-01-02 11:40:56 +0000888IPv6 (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
889.B constructor:<interface>.
890This forms a template which describes how to create ranges, based on the addresses assigned to the interface. For instance
891
Simon Kelley83f28be2013-04-03 14:46:46 +0100892.B --dhcp-range=::1,::400,constructor:eth0
Simon Kelley34d0a362013-01-02 11:40:56 +0000893
Simon Kelley861c8912013-09-25 15:30:30 +0100894will look for addresses on
Simon Kelley429805d2013-05-31 13:47:26 +0100895eth0 and then create a range from <network>::1 to <network>::400. If
896the interface is assigned more than one network, then the
897corresponding ranges will be automatically created, and then
898deprecated and finally removed again as the address is deprecated and
899then deleted. The interface name may have a final "*" wildcard. Note
Simon Kelley861c8912013-09-25 15:30:30 +0100900that just any address on eth0 will not do: it must not be an
901autoconfigured or privacy address, or be deprecated.
Simon Kelley34d0a362013-01-02 11:40:56 +0000902
Peter Pöschl9268b5d2018-06-12 17:04:54 +0100903If a \fB--dhcp-range\fP is only being used for stateless DHCP and/or SLAAC,
Vladislav Grishenkoe4cdbbf2013-08-19 16:20:31 +0100904then the address can be simply ::
905
906.B --dhcp-range=::,constructor:eth0
907
Vladislav Grishenkoe4cdbbf2013-08-19 16:20:31 +0100908
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100909The optional
910.B set:<tag>
911sets an alphanumeric label which marks this network so that
Matthias Andree081a1c42020-04-05 11:26:38 +0200912DHCP options may be specified on a per-network basis.
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100913When it is prefixed with 'tag:' instead, then its meaning changes from setting
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000914a tag to matching it. Only one tag may be set, but more than one tag
915may be matched.
916
Simon Kelleye8ca69e2012-03-26 21:23:26 +0100917The optional <mode> keyword may be
Simon Kelley33820b72004-04-03 21:10:00 +0100918.B static
919which tells dnsmasq to enable DHCP for the network specified, but not
Simon Kelley7622fc02009-06-04 20:32:05 +0100920to dynamically allocate IP addresses: only hosts which have static
Simon Kelley33820b72004-04-03 21:10:00 +0100921addresses given via
Peter Pöschl9268b5d2018-06-12 17:04:54 +0100922.B --dhcp-host
Simon Kelley52002052012-10-26 11:39:02 +0100923or from /etc/ethers will be served. A static-only subnet with address
924all zeros may be used as a "catch-all" address to enable replies to all
925Information-request packets on a subnet which is provided with
926stateless DHCPv6, ie
Moritz Warninge62e9b62014-03-20 15:32:22 +0000927.B --dhcp-range=::,static
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000928
Simon Kelleye46164e2012-04-16 16:39:38 +0100929For IPv4, the <mode> may be
Simon Kelley7622fc02009-06-04 20:32:05 +0100930.B proxy
931in which case dnsmasq will provide proxy-DHCP on the specified
932subnet. (See
Peter Pöschl9268b5d2018-06-12 17:04:54 +0100933.B --pxe-prompt
Simon Kelley7622fc02009-06-04 20:32:05 +0100934and
Peter Pöschl9268b5d2018-06-12 17:04:54 +0100935.B --pxe-service
Simon Kelleye8ca69e2012-03-26 21:23:26 +0100936for details.)
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100937
Simon Kelleye8ca69e2012-03-26 21:23:26 +0100938For IPv6, the mode may be some combination of
Neil Jerram4918bd52015-06-10 22:23:20 +0100939.B ra-only, slaac, ra-names, ra-stateless, ra-advrouter, off-link.
Simon Kelleye8ca69e2012-03-26 21:23:26 +0100940
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000941.B ra-only
Simon Kelleye8ca69e2012-03-26 21:23:26 +0100942tells dnsmasq to offer Router Advertisement only on this subnet,
943and not DHCP.
944
945.B slaac
946tells dnsmasq to offer Router Advertisement on this subnet and to set
947the A bit in the router advertisement, so that the client will use
948SLAAC addresses. When used with a DHCP range or static DHCP address
949this results in the client having both a DHCP-assigned and a SLAAC
950address.
951
952.B ra-stateless
953sends router advertisements with the O and A bits set, and provides a
954stateless DHCP service. The client will use a SLAAC address, and use
955DHCP for other configuration information.
956
Simon Kelley7023e382012-03-09 12:05:49 +0000957.B ra-names
Simon Kelleye8ca69e2012-03-26 21:23:26 +0100958enables a mode
Simon Kelley7023e382012-03-09 12:05:49 +0000959which gives DNS names to dual-stack hosts which do SLAAC for
Simon Kelley884a6df2012-03-20 16:20:22 +0000960IPv6. Dnsmasq uses the host's IPv4 lease to derive the name, network
Simon Kelley7023e382012-03-09 12:05:49 +0000961segment and MAC address and assumes that the host will also have an
Simon Kelleye46164e2012-04-16 16:39:38 +0100962IPv6 address calculated using the SLAAC algorithm, on the same network
Simon Kelley884a6df2012-03-20 16:20:22 +0000963segment. The address is pinged, and if a reply is received, an AAAA
964record is added to the DNS for this IPv6
Simon Kelley7023e382012-03-09 12:05:49 +0000965address. Note that this is only happens for directly-connected
Simon Kelley884a6df2012-03-20 16:20:22 +0000966networks, (not one doing DHCP via a relay) and it will not work
967if a host is using privacy extensions.
Simon Kelleye8ca69e2012-03-26 21:23:26 +0100968.B ra-names
969can be combined with
970.B ra-stateless
971and
972.B slaac.
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000973
Simon Kelley7ea3d3f2014-04-25 22:04:05 +0100974.B ra-advrouter
975enables a mode where router address(es) rather than prefix(es) are included in the advertisements.
976This is described in RFC-3775 section 7.2 and is used in mobile IPv6. In this mode the interval option
977is also included, as described in RFC-3775 section 7.3.
978
Neil Jerram4918bd52015-06-10 22:23:20 +0100979.B off-link
980tells dnsmasq to advertise the prefix without the on-link (aka L) bit set.
981
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000982.TP
Simon Kelley52ec7832020-02-07 21:05:54 +0000983.B \-G, --dhcp-host=[<hwaddr>][,id:<client_id>|*][,set:<tag>][tag:<tag>][,<ipaddr>][,<hostname>][,<lease_time>][,ignore]
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000984Specify per host parameters for the DHCP server. This allows a machine
985with a particular hardware address to be always allocated the same
986hostname, IP address and lease time. A hostname specified like this
987overrides any supplied by the DHCP client on the machine. It is also
Simon Kelleyc72daea2012-01-05 21:33:27 +0000988allowable to omit the hardware address and include the hostname, in
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000989which case the IP address and lease times will apply to any machine
990claiming that name. For example
991.B --dhcp-host=00:20:e0:3b:13:af,wap,infinite
992tells dnsmasq to give
Simon Kelleycdeda282006-03-16 20:16:06 +0000993the machine with hardware address 00:20:e0:3b:13:af the name wap, and
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000994an infinite DHCP lease.
995.B --dhcp-host=lap,192.168.0.199
996tells
997dnsmasq to always allocate the machine lap the IP address
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100998192.168.0.199.
999
1000Addresses allocated like this are not constrained to be
Peter Pöschl9268b5d2018-06-12 17:04:54 +01001001in the range given by the \fB--dhcp-range\fP option, but they must be in
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001002the same subnet as some valid dhcp-range. For
1003subnets which don't need a pool of dynamically allocated addresses,
Peter Pöschl9268b5d2018-06-12 17:04:54 +01001004use the "static" keyword in the \fB--dhcp-range\fP declaration.
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001005
Simon Kelley89500e32013-09-20 16:29:20 +01001006It is allowed to use client identifiers (called client
Simon Kelley864913c2017-02-28 18:07:18 +00001007DUID in IPv6-land) rather than
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001008hardware addresses to identify hosts by prefixing with 'id:'. Thus:
1009.B --dhcp-host=id:01:02:03:04,.....
1010refers to the host with client identifier 01:02:03:04. It is also
1011allowed to specify the client ID as text, like this:
Simon Kelleya84fa1d2004-04-23 22:21:21 +01001012.B --dhcp-host=id:clientidastext,.....
Simon Kelley9009d742008-11-14 20:04:27 +00001013
Simon Kelley1adadf52012-02-13 22:15:58 +00001014A single
Peter Pöschl9268b5d2018-06-12 17:04:54 +01001015.B --dhcp-host
Simon Kelley137286e2020-02-06 22:09:30 +00001016may contain an IPv4 address or one or more IPv6 addresses, or both. IPv6 addresses must be bracketed by square brackets thus:
Simon Kelley1adadf52012-02-13 22:15:58 +00001017.B --dhcp-host=laptop,[1234::56]
Simon Kelley30393102013-01-17 16:34:16 +00001018IPv6 addresses may contain only the host-identifier part:
1019.B --dhcp-host=laptop,[::56]
Matthias Andree081a1c42020-04-05 11:26:38 +02001020in which case they act as wildcards in constructed DHCP ranges, with
Simon Kelley137286e2020-02-06 22:09:30 +00001021the appropriate network part inserted. For IPv6, an address may include a prefix length:
Simon Kelley79aba0f2020-02-03 23:58:45 +00001022.B --dhcp-host=laptop,[1234:50/126]
Simon Kelley137286e2020-02-06 22:09:30 +00001023which (in this case) specifies four addresses, 1234::50 to 1234::53. This (an the ability
1024to specify multiple addresses) is useful
Simon Kelley79aba0f2020-02-03 23:58:45 +00001025when a host presents either a consistent name or hardware-ID, but varying DUIDs, since it allows
1026dnsmasq to honour the static address allocation but assign a different adddress for each DUID. This
1027typically occurs when chain netbooting, as each stage of the chain gets in turn allocates an address.
1028
Simon Kelley89500e32013-09-20 16:29:20 +01001029Note that in IPv6 DHCP, the hardware address may not be
1030available, though it normally is for direct-connected clients, or
1031clients using DHCP relays which support RFC 6939.
Simon Kelley1adadf52012-02-13 22:15:58 +00001032
Simon Kelley89500e32013-09-20 16:29:20 +01001033
1034For DHCPv4, the special option id:* means "ignore any client-id
Simon Kelleya84fa1d2004-04-23 22:21:21 +01001035and use MAC addresses only." This is useful when a client presents a client-id sometimes
1036but not others.
Simon Kelley9009d742008-11-14 20:04:27 +00001037
Simon Kelley1ab84e22004-01-29 16:48:35 +00001038If a name appears in /etc/hosts, the associated address can be
1039allocated to a DHCP lease, but only if a
1040.B --dhcp-host
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001041option specifying the name also exists. Only one hostname can be
1042given in a
Peter Pöschl9268b5d2018-06-12 17:04:54 +01001043.B --dhcp-host
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001044option, but aliases are possible by using CNAMEs. (See
1045.B --cname
1046).
1047
1048The special keyword "ignore"
Simon Kelley33820b72004-04-03 21:10:00 +01001049tells dnsmasq to never offer a DHCP lease to a machine. The machine
1050can be specified by hardware address, client ID or hostname, for
1051instance
1052.B --dhcp-host=00:20:e0:3b:13:af,ignore
1053This is
1054useful when there is another DHCP server on the network which should
Simon Kelley9009d742008-11-14 20:04:27 +00001055be used by some machines.
1056
Tomas Hozzaa66d36e2013-04-22 15:08:07 +01001057The set:<tag> construct sets the tag
Peter Pöschl9268b5d2018-06-12 17:04:54 +01001058whenever this \fB--dhcp-host\fP directive is in use. This can be used to
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001059selectively send DHCP options just for this host. More than one tag
Peter Pöschl9268b5d2018-06-12 17:04:54 +01001060can be set in a \fB--dhcp-host\fP directive (but not in other places where
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001061"set:<tag>" is allowed). When a host matches any
Peter Pöschl9268b5d2018-06-12 17:04:54 +01001062\fB--dhcp-host\fP directive (or one implied by /etc/ethers) then the special
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001063tag "known" is set. This allows dnsmasq to be configured to
Simon Kelley5aabfc72007-08-29 11:24:47 +01001064ignore requests from unknown machines using
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001065.B --dhcp-ignore=tag:!known
Peter Pöschl9268b5d2018-06-12 17:04:54 +01001066If the host matches only a \fB--dhcp-host\fP directive which cannot
Simon Kelleyb2a9c572017-04-30 18:21:31 +01001067be used because it specifies an address on different subnet, the tag "known-othernet" is set.
Simon Kelley52ec7832020-02-07 21:05:54 +00001068
1069The tag:<tag> construct filters which dhcp-host directives are used. Tagged directives are used in preference to untagged ones.
1070
Simon Kelley0a852542005-03-23 20:28:59 +00001071Ethernet addresses (but not client-ids) may have
1072wildcard bytes, so for example
1073.B --dhcp-host=00:20:e0:3b:13:*,ignore
Simon Kelleycdeda282006-03-16 20:16:06 +00001074will cause dnsmasq to ignore a range of hardware addresses. Note that
Simon Kelley0a852542005-03-23 20:28:59 +00001075the "*" will need to be escaped or quoted on a command line, but not
Simon Kelley9009d742008-11-14 20:04:27 +00001076in the configuration file.
1077
1078Hardware addresses normally match any
Simon Kelleycdeda282006-03-16 20:16:06 +00001079network (ARP) type, but it is possible to restrict them to a single
1080ARP type by preceding them with the ARP-type (in HEX) and "-". so
1081.B --dhcp-host=06-00:20:e0:3b:13:af,1.2.3.4
1082will only match a
1083Token-Ring hardware address, since the ARP-address type for token ring
Simon Kelley9009d742008-11-14 20:04:27 +00001084is 6.
1085
Simon Kelley1adadf52012-02-13 22:15:58 +00001086As a special case, in DHCPv4, it is possible to include more than one
Simon Kelley73a08a22009-02-05 20:28:08 +00001087hardware address. eg:
1088.B --dhcp-host=11:22:33:44:55:66,12:34:56:78:90:12,192.168.0.2
1089This allows an IP address to be associated with
Simon Kelley9009d742008-11-14 20:04:27 +00001090multiple hardware addresses, and gives dnsmasq permission to abandon a
1091DHCP lease to one of the hardware addresses when another one asks for
1092a lease. Beware that this is a dangerous thing to do, it will only
1093work reliably if only one of the hardware addresses is active at any
Simon Kelley73a08a22009-02-05 20:28:08 +00001094time and there is no way for dnsmasq to enforce this. It is, for instance,
1095useful to allocate a stable IP address to a laptop which
Simon Kelley9009d742008-11-14 20:04:27 +00001096has both wired and wireless interfaces.
Simon Kelley5aabfc72007-08-29 11:24:47 +01001097.TP
Simon Kelley28866e92011-02-14 20:19:14 +00001098.B --dhcp-hostsfile=<path>
1099Read DHCP host information from the specified file. If a directory
1100is given, then read all the files contained in that directory. The file contains
Simon Kelley5aabfc72007-08-29 11:24:47 +01001101information about one host per line. The format of a line is the same
Peter Pöschl9268b5d2018-06-12 17:04:54 +01001102as text to the right of '=' in \fB--dhcp-host\fP. The advantage of storing DHCP host information
Simon Kelley5aabfc72007-08-29 11:24:47 +01001103in this file is that it can be changed without re-starting dnsmasq:
1104the file will be re-read when dnsmasq receives SIGHUP.
Simon Kelley824af852008-02-12 20:43:05 +00001105.TP
Simon Kelley28866e92011-02-14 20:19:14 +00001106.B --dhcp-optsfile=<path>
1107Read DHCP option information from the specified file. If a directory
1108is given, then read all the files contained in that directory. The advantage of
Peter Pöschl9268b5d2018-06-12 17:04:54 +01001109using this option is the same as for \fB--dhcp-hostsfile\fP: the
1110\fB--dhcp-optsfile\fP will be re-read when dnsmasq receives SIGHUP. Note that
Simon Kelley1f15b812009-10-13 17:49:32 +01001111it is possible to encode the information in a
Simon Kelley5874f3e2016-07-10 22:12:08 +01001112.B --dhcp-boot
1113flag as DHCP options, using the options names bootfile-name,
1114server-ip-address and tftp-server. This allows these to be included
Peter Pöschl9268b5d2018-06-12 17:04:54 +01001115in a \fB--dhcp-optsfile\fP.
Simon Kelley5f4dc5c2015-01-20 20:51:02 +00001116.TP
1117.B --dhcp-hostsdir=<path>
Peter Pöschl9268b5d2018-06-12 17:04:54 +01001118This is equivalent to \fB--dhcp-hostsfile\fP, except for the following. The path MUST be a
Simon Kelley5f4dc5c2015-01-20 20:51:02 +00001119directory, and not an individual file. Changed or new files within
1120the directory are read automatically, without the need to send SIGHUP.
Ville Skyttä773af302018-02-16 21:47:55 +00001121If a file is deleted or changed after it has been read by dnsmasq, then the
Josh Soref730c6742017-02-06 16:14:04 +00001122host record it contained will remain until dnsmasq receives a SIGHUP, or
Simon Kelley5f4dc5c2015-01-20 20:51:02 +00001123is restarted; ie host records are only added dynamically.
Simon Kelleyefb8b552015-02-07 22:36:34 +00001124.TP
Simon Kelley3d04f462015-01-31 21:59:13 +00001125.B --dhcp-optsdir=<path>
Peter Pöschl9268b5d2018-06-12 17:04:54 +01001126This is equivalent to \fB--dhcp-optsfile\fP, with the differences noted for \fB--dhcp-hostsdir\fP.
Simon Kelley44a2a312004-03-10 20:04:35 +00001127.TP
1128.B \-Z, --read-ethers
1129Read /etc/ethers for information about hosts for the DHCP server. The
1130format of /etc/ethers is a hardware address, followed by either a
1131hostname or dotted-quad IP address. When read by dnsmasq these lines
1132have exactly the same effect as
1133.B --dhcp-host
Simon Kelley5aabfc72007-08-29 11:24:47 +01001134options containing the same information. /etc/ethers is re-read when
Simon Kelley1adadf52012-02-13 22:15:58 +00001135dnsmasq receives SIGHUP. IPv6 addresses are NOT read from /etc/ethers.
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001136.TP
Simon Kelley1adadf52012-02-13 22:15:58 +00001137.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 +00001138Specify different or extra options to DHCP clients. By default,
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001139dnsmasq sends some standard options to DHCP clients, the netmask and
1140broadcast address are set to the same as the host running dnsmasq, and
1141the DNS server and default route are set to the address of the machine
Simon Kelley1adadf52012-02-13 22:15:58 +00001142running dnsmasq. (Equivalent rules apply for IPv6.) If the domain name option has been set, that is sent.
Simon Kelleyf2621c72007-04-29 19:47:21 +01001143This configuration allows these defaults to be overridden,
1144or other options specified. The option, to be sent may be given as a
1145decimal number or as "option:<option-name>" The option numbers are
1146specified in RFC2132 and subsequent RFCs. The set of option-names
1147known by dnsmasq can be discovered by running "dnsmasq --help dhcp".
1148For example, to set the default route option to
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001149192.168.4.4, do
Simon Kelleyf2621c72007-04-29 19:47:21 +01001150.B --dhcp-option=3,192.168.4.4
1151or
1152.B --dhcp-option = option:router, 192.168.4.4
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001153and to set the time-server address to 192.168.0.4, do
Simon Kelleyf2621c72007-04-29 19:47:21 +01001154.B --dhcp-option = 42,192.168.0.4
1155or
1156.B --dhcp-option = option:ntp-server, 192.168.0.4
Simon Kelleyc3a04082014-01-11 22:18:19 +00001157The special address 0.0.0.0 is taken to mean "the address of the
1158machine running dnsmasq".
1159
1160Data types allowed are comma separated
1161dotted-quad IPv4 addresses, []-wrapped IPv6 addresses, a decimal number, colon-separated hex digits
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001162and a text string. If the optional tags are given then
1163this option is only sent when all the tags are matched.
Simon Kelley91dccd02005-03-31 17:48:32 +01001164
Simon Kelleycdeda282006-03-16 20:16:06 +00001165Special processing is done on a text argument for option 119, to
Simon Kelley832af0b2007-01-21 20:01:28 +00001166conform with RFC 3397. Text or dotted-quad IP addresses as arguments
1167to option 120 are handled as per RFC 3361. Dotted-quad IP addresses
1168which are followed by a slash and then a netmask size are encoded as
1169described in RFC 3442.
Simon Kelleycdeda282006-03-16 20:16:06 +00001170
Simon Kelley1adadf52012-02-13 22:15:58 +00001171IPv6 options are specified using the
1172.B option6:
1173keyword, followed by the option number or option name. The IPv6 option
1174name space is disjoint from the IPv4 option name space. IPv6 addresses
1175in options must be bracketed with square brackets, eg.
1176.B --dhcp-option=option6:ntp-server,[1234::56]
Simon Kelleyc3a04082014-01-11 22:18:19 +00001177For IPv6, [::] means "the global address of
1178the machine running dnsmasq", whilst [fd00::] is replaced with the
1179ULA, if it exists, and [fe80::] with the link-local address.
Simon Kelley1adadf52012-02-13 22:15:58 +00001180
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001181Be careful: no checking is done that the correct type of data for the
Simon Kelley26128d22004-11-14 16:43:54 +00001182option number is sent, it is quite possible to
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001183persuade dnsmasq to generate illegal DHCP packets with injudicious use
Simon Kelley91dccd02005-03-31 17:48:32 +01001184of this flag. When the value is a decimal number, dnsmasq must determine how
1185large the data item is. It does this by examining the option number and/or the
Simon Kelleyb8187c82005-11-26 21:46:27 +00001186value, but can be overridden by appending a single letter flag as follows:
Simon Kelley91dccd02005-03-31 17:48:32 +01001187b = one byte, s = two bytes, i = four bytes. This is mainly useful with
Simon Kelley3d8df262005-08-29 12:19:27 +01001188encapsulated vendor class options (see below) where dnsmasq cannot
1189determine data size from the option number. Option data which
1190consists solely of periods and digits will be interpreted by dnsmasq
1191as an IP address, and inserted into an option as such. To force a
1192literal string, use quotes. For instance when using option 66 to send
1193a literal IP address as TFTP server name, it is necessary to do
1194.B --dhcp-option=66,"1.2.3.4"
Simon Kelley91dccd02005-03-31 17:48:32 +01001195
Simon Kelley1adadf52012-02-13 22:15:58 +00001196Encapsulated Vendor-class options may also be specified (IPv4 only) using
Peter Pöschl9268b5d2018-06-12 17:04:54 +01001197\fB--dhcp-option\fP: for instance
Simon Kelley1b7ecd12007-02-05 14:57:57 +00001198.B --dhcp-option=vendor:PXEClient,1,0.0.0.0
1199sends the encapsulated vendor
1200class-specific option "mftp-address=0.0.0.0" to any client whose
1201vendor-class matches "PXEClient". The vendor-class matching is
Peter Pöschl9268b5d2018-06-12 17:04:54 +01001202substring based (see \fB--dhcp-vendorclass\fP for details). If a
Simon Kelley6b010842007-02-12 20:32:07 +00001203vendor-class option (number 60) is sent by dnsmasq, then that is used
1204for selecting encapsulated options in preference to any sent by the
1205client. It is
Simon Kelley1b7ecd12007-02-05 14:57:57 +00001206possible to omit the vendorclass completely;
1207.B --dhcp-option=vendor:,1,0.0.0.0
Simon Kelley1adadf52012-02-13 22:15:58 +00001208in which case the encapsulated option is always sent.
Simon Kelley73a08a22009-02-05 20:28:08 +00001209
Simon Kelley1adadf52012-02-13 22:15:58 +00001210Options may be encapsulated (IPv4 only) within other options: for instance
Simon Kelley73a08a22009-02-05 20:28:08 +00001211.B --dhcp-option=encap:175, 190, "iscsi-client0"
1212will send option 175, within which is the option 190. If multiple
1213options are given which are encapsulated with the same option number
1214then they will be correctly combined into one encapsulated option.
Peter Pöschl9268b5d2018-06-12 17:04:54 +01001215encap: and vendor: are may not both be set in the same \fB--dhcp-option\fP.
Simon Kelley73a08a22009-02-05 20:28:08 +00001216
Simon Kelley316e2732010-01-22 20:16:09 +00001217The final variant on encapsulated options is "Vendor-Identifying
1218Vendor Options" as specified by RFC3925. These are denoted like this:
1219.B --dhcp-option=vi-encap:2, 10, "text"
1220The number in the vi-encap: section is the IANA enterprise number
Simon Kelley1adadf52012-02-13 22:15:58 +00001221used to identify this option. This form of encapsulation is supported
1222in IPv6.
1223
Simon Kelley1b7ecd12007-02-05 14:57:57 +00001224The address 0.0.0.0 is not treated specially in
Simon Kelley73a08a22009-02-05 20:28:08 +00001225encapsulated options.
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001226.TP
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001227.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 +00001228This works in exactly the same way as
Simon Kelleyf2621c72007-04-29 19:47:21 +01001229.B --dhcp-option
1230except that the option will always be sent, even if the client does
Simon Kelley6b010842007-02-12 20:32:07 +00001231not ask for it in the parameter request list. This is sometimes
1232needed, for example when sending options to PXELinux.
1233.TP
Simon Kelley824af852008-02-12 20:43:05 +00001234.B --dhcp-no-override
Simon Kelley1adadf52012-02-13 22:15:58 +00001235(IPv4 only) Disable re-use of the DHCP servername and filename fields as extra
Simon Kelley824af852008-02-12 20:43:05 +00001236option space. If it can, dnsmasq moves the boot server and filename
Peter Pöschl9268b5d2018-06-12 17:04:54 +01001237information (from \fB--dhcp-boot\fP) out of their dedicated fields into
Simon Kelley824af852008-02-12 20:43:05 +00001238DHCP options. This make extra space available in the DHCP packet for
1239options but can, rarely, confuse old or broken clients. This flag
1240forces "simple and safe" behaviour to avoid problems in such a case.
1241.TP
Simon Kelleyff7eea22013-09-04 18:01:38 +01001242.B --dhcp-relay=<local address>,<server address>[,<interface]
1243Configure dnsmasq to do DHCP relay. The local address is an address
1244allocated to an interface on the host running dnsmasq. All DHCP
1245requests arriving on that interface will we relayed to a remote DHCP
1246server at the server address. It is possible to relay from a single local
Peter Pöschl9268b5d2018-06-12 17:04:54 +01001247address to multiple remote servers by using multiple \fB--dhcp-relay\fP
Simon Kelleyff7eea22013-09-04 18:01:38 +01001248configs with the same local address and different server
1249addresses. A server address must be an IP literal address, not a
1250domain name. In the case of DHCPv6, the server address may be the
1251ALL_SERVERS multicast address, ff05::1:3. In this case the interface
1252must be given, not be wildcard, and is used to direct the multicast to the
1253correct interface to reach the DHCP server.
1254
1255Access control for DHCP clients has the same rules as for the DHCP
Peter Pöschl9268b5d2018-06-12 17:04:54 +01001256server, see \fB--interface\fP, \fB--except-interface\fP, etc. The optional
1257interface name in the \fB--dhcp-relay\fP config has a different function: it
Simon Kelleyff7eea22013-09-04 18:01:38 +01001258controls on which interface DHCP replies from the server will be
1259accepted. This is intended for configurations which have three
1260interfaces: one being relayed from, a second connecting the DHCP
1261server, and a third untrusted network, typically the wider
1262internet. It avoids the possibility of spoof replies arriving via this
1263third interface.
1264
1265It is allowed to have dnsmasq act as a DHCP server on one set of
1266interfaces and relay from a disjoint set of interfaces. Note that
1267whilst it is quite possible to write configurations which appear to
1268act as a server and a relay on the same interface, this is not
1269supported: the relay function will take precedence.
1270
1271Both DHCPv4 and DHCPv6 relay is supported. It's not possible to relay
1272DHCPv4 to a DHCPv6 server or vice-versa.
1273.TP
Simon Kelley1adadf52012-02-13 22:15:58 +00001274.B \-U, --dhcp-vendorclass=set:<tag>,[enterprise:<IANA-enterprise number>,]<vendor-class>
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001275Map from a vendor-class string to a tag. Most DHCP clients provide a
Simon Kelleya2226412004-05-13 20:27:08 +01001276"vendor class" which represents, in some sense, the type of host. This option
Simon Kelleyf2621c72007-04-29 19:47:21 +01001277maps vendor classes to tags, so that DHCP options may be selectively delivered
Simon Kelleya84fa1d2004-04-23 22:21:21 +01001278to different classes of hosts. For example
Peter Pöschl9268b5d2018-06-12 17:04:54 +01001279.B --dhcp-vendorclass=set:printers,Hewlett-Packard JetDirect
Simon Kelleya84fa1d2004-04-23 22:21:21 +01001280will allow options to be set only for HP printers like so:
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001281.B --dhcp-option=tag:printers,3,192.168.4.4
Simon Kelleya2226412004-05-13 20:27:08 +01001282The vendor-class string is
1283substring matched against the vendor-class supplied by the client, to
Simon Kelley1adadf52012-02-13 22:15:58 +00001284allow fuzzy matching. The set: prefix is optional but allowed for
1285consistency.
1286
1287Note that in IPv6 only, vendorclasses are namespaced with an
1288IANA-allocated enterprise number. This is given with enterprise:
1289keyword and specifies that only vendorclasses matching the specified
1290number should be searched.
Simon Kelleya2226412004-05-13 20:27:08 +01001291.TP
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001292.B \-j, --dhcp-userclass=set:<tag>,<user-class>
1293Map from a user-class string to a tag (with substring
Simon Kelleya2226412004-05-13 20:27:08 +01001294matching, like vendor classes). Most DHCP clients provide a
1295"user class" which is configurable. This option
Simon Kelleyf2621c72007-04-29 19:47:21 +01001296maps user classes to tags, so that DHCP options may be selectively delivered
Simon Kelleya2226412004-05-13 20:27:08 +01001297to different classes of hosts. It is possible, for instance to use
1298this to set a different printer server for hosts in the class
1299"accounts" than for hosts in the class "engineering".
Simon Kelleya84fa1d2004-04-23 22:21:21 +01001300.TP
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001301.B \-4, --dhcp-mac=set:<tag>,<MAC address>
Simon Kelley89500e32013-09-20 16:29:20 +01001302Map from a MAC address to a tag. The MAC address may include
Simon Kelleycdeda282006-03-16 20:16:06 +00001303wildcards. For example
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001304.B --dhcp-mac=set:3com,01:34:23:*:*:*
Simon Kelleycdeda282006-03-16 20:16:06 +00001305will set the tag "3com" for any host whose MAC address matches the pattern.
1306.TP
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001307.B --dhcp-circuitid=set:<tag>,<circuit-id>, --dhcp-remoteid=set:<tag>,<remote-id>
1308Map from RFC3046 relay agent options to tags. This data may
Simon Kelleyf2621c72007-04-29 19:47:21 +01001309be provided by DHCP relay agents. The circuit-id or remote-id is
1310normally given as colon-separated hex, but is also allowed to be a
1311simple string. If an exact match is achieved between the circuit or
Simon Kelley1adadf52012-02-13 22:15:58 +00001312agent ID and one provided by a relay agent, the tag is set.
1313
Peter Pöschl9268b5d2018-06-12 17:04:54 +01001314.B --dhcp-remoteid
1315(but not \fB--dhcp-circuitid\fP) is supported in IPv6.
Simon Kelleyf2621c72007-04-29 19:47:21 +01001316.TP
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001317.B --dhcp-subscrid=set:<tag>,<subscriber-id>
Simon Kelley1adadf52012-02-13 22:15:58 +00001318(IPv4 and IPv6) Map from RFC3993 subscriber-id relay agent options to tags.
Simon Kelley824af852008-02-12 20:43:05 +00001319.TP
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001320.B --dhcp-proxy[=<ip addr>]......
Simon Kelley07933802012-02-14 20:55:25 +00001321(IPv4 only) A normal DHCP relay agent is only used to forward the initial parts of
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001322a DHCP interaction to the DHCP server. Once a client is configured, it
1323communicates directly with the server. This is undesirable if the
Tomas Hozzaa66d36e2013-04-22 15:08:07 +01001324relay agent is adding extra information to the DHCP packets, such as
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001325that used by
Peter Pöschl9268b5d2018-06-12 17:04:54 +01001326.B --dhcp-circuitid
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001327and
Peter Pöschl9268b5d2018-06-12 17:04:54 +01001328.B --dhcp-remoteid.
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001329A full relay implementation can use the RFC 5107 serverid-override
1330option to force the DHCP server to use the relay as a full proxy, with all
1331packets passing through it. This flag provides an alternative method
1332of doing the same thing, for relays which don't support RFC
13335107. Given alone, it manipulates the server-id for all interactions
1334via relays. If a list of IP addresses is given, only interactions via
1335relays at those addresses are affected.
1336.TP
1337.B --dhcp-match=set:<tag>,<option number>|option:<option name>|vi-encap:<enterprise>[,<value>]
1338Without a value, set the tag if the client sends a DHCP
Simon Kelley73a08a22009-02-05 20:28:08 +00001339option of the given number or name. When a value is given, set the tag only if
1340the option is sent and matches the value. The value may be of the form
Tomas Hozzaa66d36e2013-04-22 15:08:07 +01001341"01:ff:*:02" in which case the value must match (apart from wildcards)
Simon Kelley73a08a22009-02-05 20:28:08 +00001342but the option sent may have unmatched data past the end of the
1343value. The value may also be of the same form as in
Peter Pöschl9268b5d2018-06-12 17:04:54 +01001344.B --dhcp-option
Simon Kelley73a08a22009-02-05 20:28:08 +00001345in which case the option sent is treated as an array, and one element
1346must match, so
Peter Pöschl9268b5d2018-06-12 17:04:54 +01001347.B --dhcp-match=set:efi-ia32,option:client-arch,6
Simon Kelley73a08a22009-02-05 20:28:08 +00001348will set the tag "efi-ia32" if the the number 6 appears in the list of
1349architectures sent by the client in option 93. (See RFC 4578 for
Simon Kelley316e2732010-01-22 20:16:09 +00001350details.) If the value is a string, substring matching is used.
1351
Tomas Hozzaa66d36e2013-04-22 15:08:07 +01001352The special form with vi-encap:<enterprise number> matches against
Simon Kelley316e2732010-01-22 20:16:09 +00001353vendor-identifying vendor classes for the specified enterprise. Please
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001354see RFC 3925 for more details of these rare and interesting beasts.
Simon Kelleyf2621c72007-04-29 19:47:21 +01001355.TP
Simon Kelleyc8226202018-08-08 23:46:03 +01001356.B --dhcp-name-match=set:<tag>,<name>[*]
Matthias Andree081a1c42020-04-05 11:26:38 +02001357Set the tag if the given name is supplied by a DHCP client. There may be a single trailing wildcard *, which has the usual meaning. Combined with dhcp-ignore or dhcp-ignore-names this gives the ability to ignore certain clients by name, or disallow certain hostnames from being claimed by a client.
Simon Kelleyc8226202018-08-08 23:46:03 +01001358.TP
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001359.B --tag-if=set:<tag>[,set:<tag>[,tag:<tag>[,tag:<tag>]]]
1360Perform boolean operations on tags. Any tag appearing as set:<tag> is set if
1361all the tags which appear as tag:<tag> are set, (or unset when tag:!<tag> is used)
1362If no tag:<tag> appears set:<tag> tags are set unconditionally.
1363Any number of set: and tag: forms may appear, in any order.
Peter Pöschl9268b5d2018-06-12 17:04:54 +01001364\fB--tag-if\fP lines are executed in order, so if the tag in tag:<tag> is a
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001365tag set by another
Peter Pöschl9268b5d2018-06-12 17:04:54 +01001366.B --tag-if,
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001367the line which sets the tag must precede the one which tests it.
1368.TP
1369.B \-J, --dhcp-ignore=tag:<tag>[,tag:<tag>]
1370When all the given tags appear in the tag set ignore the host and do
Simon Kelley26128d22004-11-14 16:43:54 +00001371not allocate it a DHCP lease.
1372.TP
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001373.B --dhcp-ignore-names[=tag:<tag>[,tag:<tag>]]
1374When all the given tags appear in the tag set, ignore any hostname
Peter Pöschl9268b5d2018-06-12 17:04:54 +01001375provided by the host. Note that, unlike \fB--dhcp-ignore\fP, it is permissible
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001376to supply no tags, in which case DHCP-client supplied hostnames
Simon Kelley832af0b2007-01-21 20:01:28 +00001377are always ignored, and DHCP hosts are added to the DNS using only
Peter Pöschl9268b5d2018-06-12 17:04:54 +01001378\fB--dhcp-host\fP configuration in dnsmasq and the contents of /etc/hosts and
Simon Kelley832af0b2007-01-21 20:01:28 +00001379/etc/ethers.
1380.TP
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001381.B --dhcp-generate-names=tag:<tag>[,tag:<tag>]
Simon Kelley1adadf52012-02-13 22:15:58 +00001382(IPv4 only) Generate a name for DHCP clients which do not otherwise have one,
Tomas Hozzaa66d36e2013-04-22 15:08:07 +01001383using the MAC address expressed in hex, separated by dashes. Note that
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001384if a host provides a name, it will be used by preference to this,
1385unless
1386.B --dhcp-ignore-names
1387is set.
1388.TP
1389.B --dhcp-broadcast[=tag:<tag>[,tag:<tag>]]
Simon Kelley1adadf52012-02-13 22:15:58 +00001390(IPv4 only) When all the given tags appear in the tag set, always use broadcast to
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001391communicate with the host when it is unconfigured. It is permissible
1392to supply no tags, in which case this is unconditional. Most DHCP clients which
Simon Kelley824af852008-02-12 20:43:05 +00001393need broadcast replies set a flag in their requests so that this
1394happens automatically, some old BOOTP clients do not.
1395.TP
Simon Kelley7de060b2011-08-26 17:24:52 +01001396.B \-M, --dhcp-boot=[tag:<tag>,]<filename>,[<servername>[,<server address>|<tftp_servername>]]
Simon Kelley1adadf52012-02-13 22:15:58 +00001397(IPv4 only) Set BOOTP options to be returned by the DHCP server. Server name and
Simon Kelley832af0b2007-01-21 20:01:28 +00001398address are optional: if not provided, the name is left empty, and the
1399address set to the address of the machine running dnsmasq. If dnsmasq
1400is providing a TFTP service (see
1401.B --enable-tftp
1402) then only the filename is required here to enable network booting.
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001403If the optional tag(s) are given,
1404they must match for this configuration to be sent.
Simon Kelley7de060b2011-08-26 17:24:52 +01001405Instead of an IP address, the TFTP server address can be given as a domain
1406name which is looked up in /etc/hosts. This name can be associated in
1407/etc/hosts with multiple IP addresses, which are used round-robin.
1408This facility can be used to load balance the tftp load among a set of servers.
1409.TP
1410.B --dhcp-sequential-ip
1411Dnsmasq is designed to choose IP addresses for DHCP clients using a
1412hash of the client's MAC address. This normally allows a client's
1413address to remain stable long-term, even if the client sometimes allows its DHCP
1414lease to expire. In this default mode IP addresses are distributed
1415pseudo-randomly over the entire available address range. There are
1416sometimes circumstances (typically server deployment) where it is more
1417convenient to have IP
1418addresses allocated sequentially, starting from the lowest available
1419address, and setting this flag enables this mode. Note that in the
1420sequential mode, clients which allow a lease to expire are much more
1421likely to move IP address; for this reason it should not be generally used.
Simon Kelley7622fc02009-06-04 20:32:05 +01001422.TP
Florent Fourcot13a58f92019-06-20 10:26:40 +02001423.B --dhcp-ignore-clid
1424Dnsmasq is reading 'client identifier' (RFC 2131) option sent by clients
1425(if available) to identify clients. This allow to serve same IP address
1426for a host using several interfaces. Use this option to disable 'client identifier'
1427reading, i.e. to always identify a host using the MAC address.
1428.TP
Simon Kelley751d6f42012-02-10 15:24:51 +00001429.B --pxe-service=[tag:<tag>,]<CSA>,<menu text>[,<basename>|<bootservicetype>][,<server address>|<server_name>]
Simon Kelley7622fc02009-06-04 20:32:05 +01001430Most uses of PXE boot-ROMS simply allow the PXE
1431system to obtain an IP address and then download the file specified by
Peter Pöschl9268b5d2018-06-12 17:04:54 +01001432.B --dhcp-boot
Simon Kelley7622fc02009-06-04 20:32:05 +01001433and execute it. However the PXE system is capable of more complex
1434functions when supported by a suitable DHCP server.
1435
1436This specifies a boot option which may appear in a PXE boot menu. <CSA> is
1437client system type, only services of the correct type will appear in a
1438menu. The known types are x86PC, PC98, IA64_EFI, Alpha, Arc_x86,
Simon Kelley68bea102016-05-11 22:15:06 +01001439Intel_Lean_Client, IA32_EFI, X86-64_EFI, Xscale_EFI, BC_EFI, ARM32_EFI and ARM64_EFI; an
Simon Kelley7622fc02009-06-04 20:32:05 +01001440integer may be used for other types. The
1441parameter after the menu text may be a file name, in which case dnsmasq acts as a
1442boot server and directs the PXE client to download the file by TFTP,
1443either from itself (
Peter Pöschl9268b5d2018-06-12 17:04:54 +01001444.B --enable-tftp
Simon Kelley751d6f42012-02-10 15:24:51 +00001445must be set for this to work) or another TFTP server if the final server
1446address/name is given.
Simon Kelley7622fc02009-06-04 20:32:05 +01001447Note that the "layer"
Simon Kelleyfe71bba2016-05-14 20:50:45 +01001448suffix (normally ".0") is supplied by PXE, and need not be added to
1449the basename. Alternatively, the basename may be a filename, complete with suffix, in which case
1450no layer suffix is added. If an integer boot service type, rather than a basename
Simon Kelley7622fc02009-06-04 20:32:05 +01001451is given, then the PXE client will search for a
1452suitable boot service for that type on the network. This search may be done
Simon Kelley751d6f42012-02-10 15:24:51 +00001453by broadcast, or direct to a server if its IP address/name is provided.
Simon Kelley316e2732010-01-22 20:16:09 +00001454If no boot service type or filename is provided (or a boot service type of 0 is specified)
1455then the menu entry will abort the net boot procedure and
Simon Kelley751d6f42012-02-10 15:24:51 +00001456continue booting from local media. The server address can be given as a domain
1457name which is looked up in /etc/hosts. This name can be associated in
1458/etc/hosts with multiple IP addresses, which are used round-robin.
Simon Kelley7622fc02009-06-04 20:32:05 +01001459.TP
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001460.B --pxe-prompt=[tag:<tag>,]<prompt>[,<timeout>]
Simon Kelley7622fc02009-06-04 20:32:05 +01001461Setting this provides a prompt to be displayed after PXE boot. If the
1462timeout is given then after the
1463timeout has elapsed with no keyboard input, the first available menu
1464option will be automatically executed. If the timeout is zero then the first available menu
1465item will be executed immediately. If
Peter Pöschl9268b5d2018-06-12 17:04:54 +01001466.B --pxe-prompt
Tomas Hozzaa66d36e2013-04-22 15:08:07 +01001467is omitted the system will wait for user input if there are multiple
Simon Kelley7622fc02009-06-04 20:32:05 +01001468items in the menu, but boot immediately if
1469there is only one. See
Peter Pöschl9268b5d2018-06-12 17:04:54 +01001470.B --pxe-service
Simon Kelley7622fc02009-06-04 20:32:05 +01001471for details of menu items.
1472
1473Dnsmasq supports PXE "proxy-DHCP", in this case another DHCP server on
1474the network is responsible for allocating IP addresses, and dnsmasq
1475simply provides the information given in
Peter Pöschl9268b5d2018-06-12 17:04:54 +01001476.B --pxe-prompt
Simon Kelley7622fc02009-06-04 20:32:05 +01001477and
Peter Pöschl9268b5d2018-06-12 17:04:54 +01001478.B --pxe-service
Simon Kelley7622fc02009-06-04 20:32:05 +01001479to allow netbooting. This mode is enabled using the
1480.B proxy
1481keyword in
Peter Pöschl9268b5d2018-06-12 17:04:54 +01001482.B --dhcp-range.
Wang Shanker4ded9622020-12-04 10:17:35 +08001483.TP
1484.B --dhcp-pxe-vendor=<vendor>[,...]
1485According to UEFI and PXE specifications, DHCP packets between PXE clients and
1486proxy PXE servers should have
1487.I PXEClient
1488in their vendor-class field. However, the firmware of computers from a few
1489vendors is customized to carry a different identifier in that field. This option
1490is used to consider such identifiers valid for identifying PXE clients. For
1491instance
1492
1493.B --dhcp-pxe-vendor=PXEClient,HW-Client
1494
1495will enable dnsmasq to also provide proxy PXE service to those PXE clients with
1496.I HW-Client
1497in as their identifier.
1498>>>>>>> 907def3... pxe: support pxe clients with custom vendor-class
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001499.TP
Simon Kelley44a2a312004-03-10 20:04:35 +00001500.B \-X, --dhcp-lease-max=<number>
1501Limits dnsmasq to the specified maximum number of DHCP leases. The
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001502default is 1000. This limit is to prevent DoS attacks from hosts which
Simon Kelley44a2a312004-03-10 20:04:35 +00001503create thousands of leases and use lots of memory in the dnsmasq
1504process.
1505.TP
Simon Kelleyfd9fa482004-10-21 20:24:00 +01001506.B \-K, --dhcp-authoritative
Simon Kelley095f6252013-01-30 11:31:02 +00001507Should be set when dnsmasq is definitely the only DHCP server on a network.
1508For DHCPv4, it changes the behaviour from strict RFC compliance so that DHCP requests on
Simon Kelleyfd9fa482004-10-21 20:24:00 +01001509unknown leases from unknown hosts are not ignored. This allows new hosts
Simon Kelleycdeda282006-03-16 20:16:06 +00001510to get a lease without a tedious timeout under all circumstances. It also
1511allows dnsmasq to rebuild its lease database without each client needing to
Simon Kelley095f6252013-01-30 11:31:02 +00001512reacquire a lease, if the database is lost. For DHCPv6 it sets the
1513priority in replies to 255 (the maximum) instead of 0 (the minimum).
Simon Kelley9e038942008-05-30 20:06:34 +01001514.TP
Simon Kelley734d5312018-03-23 23:09:53 +00001515.B --dhcp-rapid-commit
1516Enable DHCPv4 Rapid Commit Option specified in RFC 4039. When enabled, dnsmasq
1517will respond to a DHCPDISCOVER message including a Rapid Commit
1518option with a DHCPACK including a Rapid Commit option and fully committed
1519address and configuration information. Should only be enabled if either the
1520server is the only server for the subnet, or multiple servers are present and they each commit a binding for all clients.
1521.TP
Simon Kelley9e038942008-05-30 20:06:34 +01001522.B --dhcp-alternate-port[=<server port>[,<client port>]]
Simon Kelley1adadf52012-02-13 22:15:58 +00001523(IPv4 only) Change the ports used for DHCP from the default. If this option is
Simon Kelley9e038942008-05-30 20:06:34 +01001524given alone, without arguments, it changes the ports used for DHCP
1525from 67 and 68 to 1067 and 1068. If a single argument is given, that
1526port number is used for the server and the port number plus one used
1527for the client. Finally, two port numbers allows arbitrary
1528specification of both server and client ports for DHCP.
Simon Kelleyfd9fa482004-10-21 20:24:00 +01001529.TP
Simon Kelley9009d742008-11-14 20:04:27 +00001530.B \-3, --bootp-dynamic[=<network-id>[,<network-id>]]
Simon Kelley1adadf52012-02-13 22:15:58 +00001531(IPv4 only) Enable dynamic allocation of IP addresses to BOOTP clients. Use this
Simon Kelley3d8df262005-08-29 12:19:27 +01001532with care, since each address allocated to a BOOTP client is leased
1533forever, and therefore becomes permanently unavailable for re-use by
Simon Kelley9009d742008-11-14 20:04:27 +00001534other hosts. if this is given without tags, then it unconditionally
1535enables dynamic allocation. With tags, only when the tags are all
1536set. It may be repeated with different tag sets.
Simon Kelley3d8df262005-08-29 12:19:27 +01001537.TP
Simon Kelley5e9e0ef2006-04-17 14:24:29 +01001538.B \-5, --no-ping
Christian Demsar23facf02015-05-20 20:26:23 +01001539(IPv4 only) By default, the DHCP server will attempt to ensure that an address is
Simon Kelley5e9e0ef2006-04-17 14:24:29 +01001540not in use before allocating it to a host. It does this by sending an
1541ICMP echo request (aka "ping") to the address in question. If it gets
1542a reply, then the address must already be in use, and another is
1543tried. This flag disables this check. Use with caution.
1544.TP
Simon Kelleyf2621c72007-04-29 19:47:21 +01001545.B --log-dhcp
1546Extra logging for DHCP: log all the options sent to DHCP clients and
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001547the tags used to determine them.
Simon Kelleyf2621c72007-04-29 19:47:21 +01001548.TP
Kevin Darbyshire-Bryant8c0b73d2013-10-11 11:56:33 +01001549.B --quiet-dhcp, --quiet-dhcp6, --quiet-ra
1550Suppress logging of the routine operation of these protocols. Errors and
Peter Pöschl9268b5d2018-06-12 17:04:54 +01001551problems will still be logged. \fB--quiet-dhcp\fP and quiet-dhcp6 are
1552over-ridden by \fB--log-dhcp\fP.
Kevin Darbyshire-Bryant8c0b73d2013-10-11 11:56:33 +01001553.TP
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001554.B \-l, --dhcp-leasefile=<path>
Simon Kelley73a08a22009-02-05 20:28:08 +00001555Use the specified file to store DHCP lease information.
Simon Kelley208b65c2006-08-05 21:41:37 +01001556.TP
Simon Kelley8b372702012-03-09 17:45:10 +00001557.B --dhcp-duid=<enterprise-id>,<uid>
1558(IPv6 only) Specify the server persistent UID which the DHCPv6 server
1559will use. This option is not normally required as dnsmasq creates a
1560DUID automatically when it is first needed. When given, this option
1561provides dnsmasq the data required to create a DUID-EN type DUID. Note
1562that once set, the DUID is stored in the lease database, so to change between DUID-EN and
1563automatically created DUIDs or vice-versa, the lease database must be
klemens43517fc2017-02-19 15:53:37 +00001564re-initialised. The enterprise-id is assigned by IANA, and the uid is a
Simon Kelley8b372702012-03-09 17:45:10 +00001565string of hex octets unique to a particular device.
1566.TP
Simon Kelley7cebd202006-05-06 14:13:33 +01001567.B \-6 --dhcp-script=<path>
Simon Kelleya9530962012-03-20 22:07:35 +00001568Whenever a new DHCP lease is created, or an old one destroyed, or a
1569TFTP file transfer completes, the
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001570executable specified by this option is run. <path>
1571must be an absolute pathname, no PATH search occurs.
1572The arguments to the process
Simon Kelley7cebd202006-05-06 14:13:33 +01001573are "add", "old" or "del", the MAC
Simon Kelley1adadf52012-02-13 22:15:58 +00001574address of the host (or DUID for IPv6) , the IP address, and the hostname,
Simon Kelley7cebd202006-05-06 14:13:33 +01001575if known. "add" means a lease has been created, "del" means it has
1576been destroyed, "old" is a notification of an existing lease when
Simon Kelley208b65c2006-08-05 21:41:37 +01001577dnsmasq starts or a change to MAC address or hostname of an existing
Simon Kelleyee645822020-02-27 16:34:14 +00001578lease (also, lease length or expiry and client-id, if \fB--leasefile-ro\fP is set
1579and lease expiry if \fB--script-on-renewal\fP is set).
Simon Kelley9009d742008-11-14 20:04:27 +00001580If the MAC address is from a network type other than ethernet,
1581it will have the network type prepended, eg "06-01:23:45:67:89:ab" for
1582token ring. The process is run as root (assuming that dnsmasq was originally run as
Simon Kelley16972692006-10-16 20:04:18 +01001583root) even if dnsmasq is configured to change UID to an unprivileged user.
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001584
1585The environment is inherited from the invoker of dnsmasq, with some or
Simon Kelley1adadf52012-02-13 22:15:58 +00001586all of the following variables added
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001587
Simon Kelley1adadf52012-02-13 22:15:58 +00001588For both IPv4 and IPv6:
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001589
1590DNSMASQ_DOMAIN if the fully-qualified domain name of the host is
Simon Kelley28866e92011-02-14 20:19:14 +00001591known, this is set to the domain part. (Note that the hostname passed
1592to the script as an argument is never fully-qualified.)
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001593
Simon Kelley1adadf52012-02-13 22:15:58 +00001594If the client provides a hostname, DNSMASQ_SUPPLIED_HOSTNAME
1595
1596If the client provides user-classes, DNSMASQ_USER_CLASS0..DNSMASQ_USER_CLASSn
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001597
1598If dnsmasq was compiled with HAVE_BROKEN_RTC, then
Simon Kelley208b65c2006-08-05 21:41:37 +01001599the length of the lease (in seconds) is stored in
Simon Kelley16972692006-10-16 20:04:18 +01001600DNSMASQ_LEASE_LENGTH, otherwise the time of lease expiry is stored in
Simon Kelley5aabfc72007-08-29 11:24:47 +01001601DNSMASQ_LEASE_EXPIRES. The number of seconds until lease expiry is
1602always stored in DNSMASQ_TIME_REMAINING.
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001603
Simon Kelley5aabfc72007-08-29 11:24:47 +01001604If a lease used to have a hostname, which is
Simon Kelley16972692006-10-16 20:04:18 +01001605removed, an "old" event is generated with the new state of the lease,
1606ie no name, and the former name is provided in the environment
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001607variable DNSMASQ_OLD_HOSTNAME.
1608
1609DNSMASQ_INTERFACE stores the name of
Simon Kelley9e038942008-05-30 20:06:34 +01001610the interface on which the request arrived; this is not set for "old"
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001611actions when dnsmasq restarts.
1612
1613DNSMASQ_RELAY_ADDRESS is set if the client
Simon Kelley316e2732010-01-22 20:16:09 +00001614used a DHCP relay to contact dnsmasq and the IP address of the relay
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001615is known.
1616
1617DNSMASQ_TAGS contains all the tags set during the
Simon Kelley316e2732010-01-22 20:16:09 +00001618DHCP transaction, separated by spaces.
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001619
Simon Kelleye46164e2012-04-16 16:39:38 +01001620DNSMASQ_LOG_DHCP is set if
1621.B --log-dhcp
1622is in effect.
Simon Kelleya9530962012-03-20 22:07:35 +00001623
Simon Kelley1adadf52012-02-13 22:15:58 +00001624For IPv4 only:
1625
1626DNSMASQ_CLIENT_ID if the host provided a client-id.
1627
Simon Kelleydd1721c2013-02-18 21:04:04 +00001628DNSMASQ_CIRCUIT_ID, DNSMASQ_SUBSCRIBER_ID, DNSMASQ_REMOTE_ID if a
1629DHCP relay-agent added any of these options.
1630
Simon Kelley1adadf52012-02-13 22:15:58 +00001631If the client provides vendor-class, DNSMASQ_VENDOR_CLASS.
1632
ZHAO Yuf89cae32016-12-22 22:32:31 +00001633DNSMASQ_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.
1634
Simon Kelley1adadf52012-02-13 22:15:58 +00001635For IPv6 only:
1636
1637If the client provides vendor-class, DNSMASQ_VENDOR_CLASS_ID,
1638containing the IANA enterprise id for the class, and
1639DNSMASQ_VENDOR_CLASS0..DNSMASQ_VENDOR_CLASSn for the data.
1640
Simon Kelley57f460d2012-02-16 20:00:32 +00001641DNSMASQ_SERVER_DUID containing the DUID of the server: this is the same for
Simon Kelley1adadf52012-02-13 22:15:58 +00001642every call to the script.
1643
1644DNSMASQ_IAID containing the IAID for the lease. If the lease is a
1645temporary allocation, this is prefixed to 'T'.
1646
Simon Kelley89500e32013-09-20 16:29:20 +01001647DNSMASQ_MAC containing the MAC address of the client, if known.
Simon Kelley1adadf52012-02-13 22:15:58 +00001648
1649Note that the supplied hostname, vendorclass and userclass data is
1650only supplied for
1651"add" actions or "old" actions when a host resumes an existing lease,
1652since these data are not held in dnsmasq's lease
1653database.
1654
Simon Kelleya9530962012-03-20 22:07:35 +00001655
1656
Simon Kelley9e038942008-05-30 20:06:34 +01001657All file descriptors are
Petr Menšíkc77fb9d2017-04-16 20:20:08 +01001658closed except stdin, which is open to /dev/null, and stdout and stderr which capture output for logging by dnsmasq.
1659(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 +01001660
1661The script is not invoked concurrently: at most one instance
1662of the script is ever running (dnsmasq waits for an instance of script to exit
1663before running the next). Changes to the lease database are which
1664require the script to be invoked are queued awaiting exit of a running instance.
1665If this queueing allows multiple state changes occur to a single
1666lease before the script can be run then
1667earlier states are discarded and the current state of that lease is
1668reflected when the script finally runs.
1669
1670At dnsmasq startup, the script will be invoked for
Simon Kelley7cebd202006-05-06 14:13:33 +01001671all existing leases as they are read from the lease file. Expired
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001672leases will be called with "del" and others with "old". When dnsmasq
Simon Kelley5aabfc72007-08-29 11:24:47 +01001673receives a HUP signal, the script will be invoked for existing leases
Simon Kelley1e505122016-01-25 21:29:23 +00001674with an "old" event.
Simon Kelleya9530962012-03-20 22:07:35 +00001675
1676
Simon Kelley1e505122016-01-25 21:29:23 +00001677There are four further actions which may appear as the first argument
Simon Kelleye6e751b2016-02-01 17:59:07 +00001678to the script, "init", "arp-add", "arp-del" and "tftp". More may be added in the future, so
Simon Kelleya9530962012-03-20 22:07:35 +00001679scripts should be written to ignore unknown actions. "init" is
Simon Kelleye46164e2012-04-16 16:39:38 +01001680described below in
Simon Kelleya9530962012-03-20 22:07:35 +00001681.B --leasefile-ro
1682The "tftp" action is invoked when a TFTP file transfer completes: the
1683arguments are the file size in bytes, the address to which the file
1684was sent, and the complete pathname of the file.
1685
Simon Kelleye6e751b2016-02-01 17:59:07 +00001686The "arp-add" and "arp-del" actions are only called if enabled with
Simon Kelley1e505122016-01-25 21:29:23 +00001687.B --script-arp
Simon Kelleye6e751b2016-02-01 17:59:07 +00001688They are are supplied with a MAC address and IP address as arguments. "arp-add" indicates
1689the 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 +00001690
Simon Kelley9e038942008-05-30 20:06:34 +01001691.TP
Simon Kelley57f460d2012-02-16 20:00:32 +00001692.B --dhcp-luascript=<path>
1693Specify a script written in Lua, to be run when leases are created,
1694destroyed or changed. To use this option, dnsmasq must be compiled
klemens43517fc2017-02-19 15:53:37 +00001695with the correct support. The Lua interpreter is initialised once, when
Simon Kelley57f460d2012-02-16 20:00:32 +00001696dnsmasq starts, so that global variables persist between lease
1697events. The Lua code must define a
1698.B lease
1699function, and may provide
1700.B init
1701and
1702.B shutdown
1703functions, which are called, without arguments when dnsmasq starts up
Simon Kelleya9530962012-03-20 22:07:35 +00001704and terminates. It may also provide a
1705.B tftp
1706function.
Simon Kelley57f460d2012-02-16 20:00:32 +00001707
1708The
1709.B lease
Simon Kelleya9530962012-03-20 22:07:35 +00001710function receives the information detailed in
Simon Kelley57f460d2012-02-16 20:00:32 +00001711.B --dhcp-script.
1712It gets two arguments, firstly the action, which is a string
1713containing, "add", "old" or "del", and secondly a table of tag value
1714pairs. The tags mostly correspond to the environment variables
1715detailed above, for instance the tag "domain" holds the same data as
1716the environment variable DNSMASQ_DOMAIN. There are a few extra tags
1717which hold the data supplied as arguments to
1718.B --dhcp-script.
1719These are
1720.B mac_address, ip_address
1721and
1722.B hostname
1723for IPv4, and
1724.B client_duid, ip_address
1725and
1726.B hostname
Simon Kelleya9530962012-03-20 22:07:35 +00001727for IPv6.
1728
1729The
1730.B tftp
1731function is called in the same way as the lease function, and the
1732table holds the tags
1733.B destination_address,
1734.B file_name
1735and
1736.B file_size.
Simon Kelley1e505122016-01-25 21:29:23 +00001737
1738The
1739.B arp
1740and
1741.B arp-old
1742functions are called only when enabled with
1743.B --script-arp
1744and have a table which holds the tags
Josh Soref730c6742017-02-06 16:14:04 +00001745.B mac_address
Simon Kelley1e505122016-01-25 21:29:23 +00001746and
1747.B client_address.
Simon Kelley57f460d2012-02-16 20:00:32 +00001748.TP
Simon Kelley9e038942008-05-30 20:06:34 +01001749.B --dhcp-scriptuser
Simon Kelley57f460d2012-02-16 20:00:32 +00001750Specify 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 +00001751.TP
1752.B --script-arp
Peter Pöschl9268b5d2018-06-12 17:04:54 +01001753Enable the "arp" and "arp-old" functions in the \fB--dhcp-script\fP and \fB--dhcp-luascript\fP.
Simon Kelley1e505122016-01-25 21:29:23 +00001754.TP
Simon Kelley208b65c2006-08-05 21:41:37 +01001755.B \-9, --leasefile-ro
1756Completely suppress use of the lease database file. The file will not
1757be created, read, or written. Change the way the lease-change
1758script (if one is provided) is called, so that the lease database may
1759be maintained in external storage by the script. In addition to the
Simon Kelleyf2621c72007-04-29 19:47:21 +01001760invocations given in
Simon Kelley208b65c2006-08-05 21:41:37 +01001761.B --dhcp-script
1762the lease-change script is called once, at dnsmasq startup, with the
1763single argument "init". When called like this the script should write
1764the saved state of the lease database, in dnsmasq leasefile format, to
1765stdout and exit with zero exit code. Setting this
1766option also forces the leasechange script to be called on changes
1767to the client-id and lease length and expiry time.
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001768.TP
Simon Kelleyee645822020-02-27 16:34:14 +00001769.B --script-on-renewal
Matthias Andree081a1c42020-04-05 11:26:38 +02001770Call the DHCP script when the lease expiry time changes, for instance when the
Simon Kelleyee645822020-02-27 16:34:14 +00001771lease is renewed.
1772.TP
Simon Kelley832af0b2007-01-21 20:01:28 +00001773.B --bridge-interface=<interface>,<alias>[,<alias>]
Simon Kelley22cd8602018-01-14 22:57:14 +00001774Treat DHCP (v4 and v6) requests and IPv6 Router Solicit packets
Neil Jerram4918bd52015-06-10 22:23:20 +01001775arriving at any of the <alias> interfaces as if they had arrived at
1776<interface>. This option allows dnsmasq to provide DHCP and RA
1777service over unaddressed and unbridged Ethernet interfaces, e.g. on an
1778OpenStack compute host where each such interface is a TAP interface to
1779a VM, or as in "old style bridging" on BSD platforms. A trailing '*'
1780wildcard can be used in each <alias>.
Simon Kelley22cd8602018-01-14 22:57:14 +00001781
Peter Pöschl9268b5d2018-06-12 17:04:54 +01001782It is permissible to add more than one alias using more than one \fB--bridge-interface\fP option since
1783\fB--bridge-interface=int1,alias1,alias2\fP is exactly equivalent to
1784\fB--bridge-interface=int1,alias1 --bridge-interface=int1,alias2\fP
Simon Kelley832af0b2007-01-21 20:01:28 +00001785.TP
Matthias Andree081a1c42020-04-05 11:26:38 +02001786.B --shared-network=<interface>,<addr>
1787.PD 0
1788.TP
1789.B --shared-network=<addr>,<addr>
1790.PD 1v
1791The DHCP server determines which DHCP ranges are useable for allocating an
Simon Kelleyae5b7e02019-03-27 22:33:28 +00001792address to a DHCP client based on the network from which the DHCP request arrives,
1793and the IP configuration of the server's interface on that network. The shared-network
Matthias Andree081a1c42020-04-05 11:26:38 +02001794option extends the available subnets (and therefore DHCP ranges) beyond the
1795subnets configured on the arrival interface.
1796
1797The first argument is either the
1798name of an interface, or an address that is configured on a local interface, and the
Simon Kelleyae5b7e02019-03-27 22:33:28 +00001799second argument is an address which defines another subnet on which addresses can be allocated.
Matthias Andree081a1c42020-04-05 11:26:38 +02001800
1801To be useful, there must be a suitable dhcp-range which allows address allocation on this subnet
1802and this dhcp-range MUST include the netmask.
1803
1804Using shared-network also needs extra
1805consideration of routing. Dnsmasq does not have the usual information that it uses to
Simon Kelleyae5b7e02019-03-27 22:33:28 +00001806determine the default route, so the default route option (or other routing) MUST be
Matthias Andree081a1c42020-04-05 11:26:38 +02001807configured manually. The client must have a route to the server: if the two-address form
1808of shared-network is used, this needs to be to the first specified address. If the interface,address
Simon Kelleyae5b7e02019-03-27 22:33:28 +00001809form is used, there must be a route to all of the addresses configured on the interface.
1810
1811The two-address form of shared-network is also usable with a DHCP relay: the first address
1812is the address of the relay and the second, as before, specifies an extra subnet which
Matthias Andree081a1c42020-04-05 11:26:38 +02001813addresses may be allocated from.
Simon Kelleyae5b7e02019-03-27 22:33:28 +00001814
1815.TP
Simon Kelley28866e92011-02-14 20:19:14 +00001816.B \-s, --domain=<domain>[,<address range>[,local]]
Simon Kelley9009d742008-11-14 20:04:27 +00001817Specifies DNS domains for the DHCP server. Domains may be be given
1818unconditionally (without the IP range) or for limited IP ranges. This has two effects;
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001819firstly it causes the DHCP server to return the domain to any hosts
1820which request it, and secondly it sets the domain which it is legal
Simon Kelley1b7ecd12007-02-05 14:57:57 +00001821for DHCP-configured hosts to claim. The intention is to constrain
1822hostnames so that an untrusted host on the LAN cannot advertise
Matthias Andree081a1c42020-04-05 11:26:38 +02001823its name via DHCP as e.g. "microsoft.com" and capture traffic not
Simon Kelley1b7ecd12007-02-05 14:57:57 +00001824meant for it. If no domain suffix is specified, then any DHCP
1825hostname with a domain part (ie with a period) will be disallowed
1826and logged. If suffix is specified, then hostnames with a domain
1827part are allowed, provided the domain part matches the suffix. In
1828addition, when a suffix is set then hostnames without a domain
1829part have the suffix added as an optional domain part. Eg on my network I can set
Simon Kelley3d8df262005-08-29 12:19:27 +01001830.B --domain=thekelleys.org.uk
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001831and have a machine whose DHCP hostname is "laptop". The IP address for that machine is available from
1832.B dnsmasq
Simon Kelleyde379512004-06-22 20:23:33 +01001833both as "laptop" and "laptop.thekelleys.org.uk". If the domain is
1834given as "#" then the domain is read from the first "search" directive
Simon Kelley28866e92011-02-14 20:19:14 +00001835in /etc/resolv.conf (or equivalent).
1836
1837The address range can be of the form
Simon Kelley9009d742008-11-14 20:04:27 +00001838<ip address>,<ip address> or <ip address>/<netmask> or just a single
1839<ip address>. See
1840.B --dhcp-fqdn
1841which can change the behaviour of dnsmasq with domains.
Simon Kelley28866e92011-02-14 20:19:14 +00001842
1843If the address range is given as ip-address/network-size, then a
1844additional flag "local" may be supplied which has the effect of adding
Peter Pöschl9268b5d2018-06-12 17:04:54 +01001845\fB--local\fP declarations for forward and reverse DNS queries. Eg.
Simon Kelley28866e92011-02-14 20:19:14 +00001846.B --domain=thekelleys.org.uk,192.168.0.0/24,local
1847is identical to
1848.B --domain=thekelleys.org.uk,192.168.0.0/24
Peter Pöschl9268b5d2018-06-12 17:04:54 +01001849.B --local=/thekelleys.org.uk/ --local=/0.168.192.in-addr.arpa/
Simon Kelley28866e92011-02-14 20:19:14 +00001850The network size must be 8, 16 or 24 for this to be legal.
Simon Kelley9009d742008-11-14 20:04:27 +00001851.TP
1852.B --dhcp-fqdn
1853In the default mode, dnsmasq inserts the unqualified names of
1854DHCP clients into the DNS. For this reason, the names must be unique,
1855even if two clients which have the same name are in different
1856domains. If a second DHCP client appears which has the same name as an
Tomas Hozzaa66d36e2013-04-22 15:08:07 +01001857existing client, the name is transferred to the new client. If
Simon Kelley9009d742008-11-14 20:04:27 +00001858.B --dhcp-fqdn
1859is set, this behaviour changes: the unqualified name is no longer
1860put in the DNS, only the qualified name. Two DHCP clients with the
1861same name may both keep the name, provided that the domain part is
1862different (ie the fully qualified names differ.) To ensure that all
1863names have a domain part, there must be at least
1864.B --domain
1865without an address specified when
1866.B --dhcp-fqdn
1867is set.
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001868.TP
Simon Kelleyc72daea2012-01-05 21:33:27 +00001869.B --dhcp-client-update
1870Normally, when giving a DHCP lease, dnsmasq sets flags in the FQDN
1871option to tell the client not to attempt a DDNS update with its name
1872and IP address. This is because the name-IP pair is automatically
1873added into dnsmasq's DNS view. This flag suppresses that behaviour,
1874this is useful, for instance, to allow Windows clients to update
1875Active Directory servers. See RFC 4702 for details.
1876.TP
Simon Kelleyc5ad4e72012-02-24 16:06:20 +00001877.B --enable-ra
1878Enable dnsmasq's IPv6 Router Advertisement feature. DHCPv6 doesn't
1879handle complete network configuration in the same way as DHCPv4. Router
1880discovery and (possibly) prefix discovery for autonomous address
1881creation are handled by a different protocol. When DHCP is in use,
1882only a subset of this is needed, and dnsmasq can handle it, using
1883existing DHCP configuration to provide most data. When RA is enabled,
Peter Pöschl9268b5d2018-06-12 17:04:54 +01001884dnsmasq will advertise a prefix for each \fB--dhcp-range\fP, with default
Simon Kelley20fd11e2015-08-26 22:48:13 +01001885router as the relevant link-local address on
1886the machine running dnsmasq. By default, the "managed address" bits are set, and
Simon Kelleye8ca69e2012-03-26 21:23:26 +01001887the "use SLAAC" bit is reset. This can be changed for individual
1888subnets with the mode keywords described in
1889.B --dhcp-range.
Simon Kelley18f0fb02012-03-31 21:18:55 +01001890RFC6106 DNS parameters are included in the advertisements. By default,
1891the relevant link-local address of the machine running dnsmasq is sent
1892as recursive DNS server. If provided, the DHCPv6 options dns-server and
Josh Soref730c6742017-02-06 16:14:04 +00001893domain-search are used for the DNS server (RDNSS) and the domain search list (DNSSL).
Simon Kelleyc5ad4e72012-02-24 16:06:20 +00001894.TP
Vladislav Grishenko6ec5f5c2017-04-24 22:34:45 +01001895.B --ra-param=<interface>,[mtu:<integer>|<interface>|off,][high,|low,]<ra-interval>[,<router lifetime>]
Simon Kelleyc4cd95d2013-10-10 20:58:11 +01001896Set non-default values for router advertisements sent via an
1897interface. The priority field for the router may be altered from the
1898default of medium with eg
1899.B --ra-param=eth0,high.
1900The interval between router advertisements may be set (in seconds) with
1901.B --ra-param=eth0,60.
1902The lifetime of the route may be changed or set to zero, which allows
1903a router to advertise prefixes but not a route via itself.
Christian Weiske2daca522019-01-03 20:10:14 +00001904.B --ra-param=eth0,0,0
David Flamand005c46d2017-04-11 11:49:54 +01001905(A value of zero for the interval means the default value.) All four parameters may be set at once.
1906.B --ra-param=eth0,mtu:1280,low,60,1200
Vladislav Grishenko6ec5f5c2017-04-24 22:34:45 +01001907
Simon Kelleyc4cd95d2013-10-10 20:58:11 +01001908The interface field may include a wildcard.
Vladislav Grishenko6ec5f5c2017-04-24 22:34:45 +01001909
1910The mtu: parameter may be an arbitrary interface name, in which case the MTU value for that interface is used. This is useful
1911for (eg) advertising the MTU of a WAN interface on the other interfaces of a router.
Simon Kelley8d030462013-07-29 15:41:26 +01001912.TP
Floris Bos503c6092017-04-09 23:07:13 +01001913.B --dhcp-reply-delay=[tag:<tag>,]<integer>
Matthias Andree081a1c42020-04-05 11:26:38 +02001914Delays sending DHCPOFFER and PROXYDHCP replies for at least the specified number of seconds.
Floris Bos503c6092017-04-09 23:07:13 +01001915This can be used as workaround for bugs in PXE boot firmware that does not function properly when
1916receiving an instant reply.
1917This option takes into account the time already spent waiting (e.g. performing ping check) if any.
1918.TP
Simon Kelley2937f8a2013-07-29 19:49:07 +01001919.B --enable-tftp[=<interface>[,<interface>]]
Simon Kelley832af0b2007-01-21 20:01:28 +00001920Enable the TFTP server function. This is deliberately limited to that
Simon Kelley9e038942008-05-30 20:06:34 +01001921needed to net-boot a client. Only reading is allowed; the tsize and
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001922blksize extensions are supported (tsize is only supported in octet
Simon Kelley2937f8a2013-07-29 19:49:07 +01001923mode). Without an argument, the TFTP service is provided to the same set of interfaces as DHCP service.
Josh Soref730c6742017-02-06 16:14:04 +00001924If the list of interfaces is provided, that defines which interfaces receive TFTP service.
Simon Kelleyb8187c82005-11-26 21:46:27 +00001925.TP
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001926.B --tftp-root=<directory>[,<interface>]
Simon Kelley832af0b2007-01-21 20:01:28 +00001927Look for files to transfer using TFTP relative to the given
1928directory. When this is set, TFTP paths which include ".." are
1929rejected, to stop clients getting outside the specified root.
Simon Kelleyf2621c72007-04-29 19:47:21 +01001930Absolute paths (starting with /) are allowed, but they must be within
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001931the tftp-root. If the optional interface argument is given, the
1932directory is only used for TFTP requests via that interface.
Simon Kelley832af0b2007-01-21 20:01:28 +00001933.TP
Stefan Tomanek30d08792015-03-31 22:32:11 +01001934.B --tftp-no-fail
1935Do not abort startup if specified tftp root directories are inaccessible.
1936.TP
Floris Bos60704f52017-04-09 22:22:49 +01001937.B --tftp-unique-root[=ip|mac]
1938Add the IP or hardware address of the TFTP client as a path component on the end
Peter Pöschl9268b5d2018-06-12 17:04:54 +01001939of the TFTP-root. Only valid if a \fB--tftp-root\fP is set and the directory exists.
Floris Bos60704f52017-04-09 22:22:49 +01001940Defaults to adding IP address (in standard dotted-quad format).
Peter Pöschl9268b5d2018-06-12 17:04:54 +01001941For instance, if \fB--tftp-root\fP is "/tftp" and client 1.2.3.4 requests file "myfile"
Floris Bos60704f52017-04-09 22:22:49 +01001942then the effective path will be "/tftp/1.2.3.4/myfile" if /tftp/1.2.3.4 exists or /tftp/myfile otherwise.
1943When "=mac" is specified it will append the MAC address instead, using lowercase zero padded digits
1944separated by dashes, e.g.: 01-02-03-04-aa-bb
1945Note that resolving MAC addresses is only possible if the client is in the local network or obtained
1946a DHCP lease from us.
Simon Kelley5aabfc72007-08-29 11:24:47 +01001947.TP
Simon Kelley832af0b2007-01-21 20:01:28 +00001948.B --tftp-secure
Simon Kelley5aabfc72007-08-29 11:24:47 +01001949Enable TFTP secure mode: without this, any file which is readable by
Simon Kelley832af0b2007-01-21 20:01:28 +00001950the dnsmasq process under normal unix access-control rules is
Peter Pöschl9268b5d2018-06-12 17:04:54 +01001951available via TFTP. When the \fB--tftp-secure\fP flag is given, only files
Simon Kelley832af0b2007-01-21 20:01:28 +00001952owned by the user running the dnsmasq process are accessible. If
Peter Pöschl9268b5d2018-06-12 17:04:54 +01001953dnsmasq is being run as root, different rules apply: \fB--tftp-secure\fP
Simon Kelley1b7ecd12007-02-05 14:57:57 +00001954has no effect, but only files which have the world-readable bit set
Simon Kelley832af0b2007-01-21 20:01:28 +00001955are accessible. It is not recommended to run dnsmasq as root with TFTP
Peter Pöschl9268b5d2018-06-12 17:04:54 +01001956enabled, and certainly not without specifying \fB--tftp-root\fP. Doing so
Simon Kelley832af0b2007-01-21 20:01:28 +00001957can expose any world-readable file on the server to any host on the net.
1958.TP
Simon Kelley61ce6002012-04-20 21:28:49 +01001959.B --tftp-lowercase
1960Convert filenames in TFTP requests to all lowercase. This is useful
1961for requests from Windows machines, which have case-insensitive
1962filesystems and tend to play fast-and-loose with case in filenames.
1963Note that dnsmasq's tftp server always converts "\\" to "/" in filenames.
1964.TP
Simon Kelley832af0b2007-01-21 20:01:28 +00001965.B --tftp-max=<connections>
1966Set the maximum number of concurrent TFTP connections allowed. This
1967defaults to 50. When serving a large number of TFTP connections,
1968per-process file descriptor limits may be encountered. Dnsmasq needs
1969one file descriptor for each concurrent TFTP connection and one
1970file descriptor per unique file (plus a few others). So serving the
1971same file simultaneously to n clients will use require about n + 10 file
1972descriptors, serving different files simultaneously to n clients will
Simon Kelley824af852008-02-12 20:43:05 +00001973require about (2*n) + 10 descriptors. If
1974.B --tftp-port-range
1975is given, that can affect the number of concurrent connections.
Simon Kelley6b010842007-02-12 20:32:07 +00001976.TP
Simon Kelleybec366b2016-02-24 22:03:26 +00001977.B --tftp-mtu=<mtu size>
1978Use size as the ceiling of the MTU supported by the intervening network when
1979negotiating TFTP blocksize, overriding the MTU setting of the local interface if it is larger.
1980.TP
Simon Kelley6b010842007-02-12 20:32:07 +00001981.B --tftp-no-blocksize
1982Stop the TFTP server from negotiating the "blocksize" option with a
1983client. Some buggy clients request this option but then behave badly
1984when it is granted.
Simon Kelley824af852008-02-12 20:43:05 +00001985.TP
1986.B --tftp-port-range=<start>,<end>
1987A TFTP server listens on a well-known port (69) for connection initiation,
1988but it also uses a dynamically-allocated port for each
1989connection. Normally these are allocated by the OS, but this option
1990specifies a range of ports for use by TFTP transfers. This can be
1991useful when TFTP has to traverse a firewall. The start of the range
1992cannot be lower than 1025 unless dnsmasq is running as root. The number
1993of concurrent TFTP connections is limited by the size of the port range.
Simon Kelley66f62652020-01-05 16:21:24 +00001994.TP
1995.B --tftp-single-port
1996Run in a mode where the TFTP server uses ONLY the well-known port (69) for its end
1997of the TFTP transfer. This allows TFTP to work when there in NAT is the path between client and server. Note that
1998this is not strictly compliant with the RFCs specifying the TFTP protocol: use at your own risk.
1999.TP
Simon Kelleyb8187c82005-11-26 21:46:27 +00002000.B \-C, --conf-file=<file>
Simon Kelley5c464ef2019-03-29 23:11:05 +00002001Specify a configuration file. The presence of this option stops dnsmasq from reading the default configuration
2002file (normally /etc/dnsmasq.conf). Multiple files may be specified by repeating the option
2003either on the command line or in configuration files. A
Simon Kelley28866e92011-02-14 20:19:14 +00002004filename of "-" causes dnsmasq to read configuration from stdin.
Simon Kelley849a8352006-06-09 21:02:31 +01002005.TP
Simon Kelley3e1551a2014-09-09 21:46:07 +01002006.B \-7, --conf-dir=<directory>[,<file-extension>......],
Simon Kelley849a8352006-06-09 21:02:31 +01002007Read all the files in the given directory as configuration
Simon Kelley1f15b812009-10-13 17:49:32 +01002008files. If extension(s) are given, any files which end in those
2009extensions are skipped. Any files whose names end in ~ or start with . or start and end
Simon Kelley3e1551a2014-09-09 21:46:07 +01002010with # are always skipped. If the extension starts with * then only files
2011which have that extension are loaded. So
2012.B --conf-dir=/path/to/dir,*.conf
2013loads all files with the suffix .conf in /path/to/dir. This flag may be given on the command
2014line or in a configuration file. If giving it on the command line, be sure to
Simon Kelleyab538832020-01-10 20:44:48 +00002015escape * characters. Files are loaded in alphabetical order of filename.
Simon Kelley7b1eae42014-02-20 13:43:28 +00002016.TP
2017.B --servers-file=<file>
2018A special case of
2019.B --conf-file
Peter Pöschl9268b5d2018-06-12 17:04:54 +01002020which differs in two respects. Firstly, only \fB--server\fP and \fB--rev-server\fP are allowed
Simon Kelley7b1eae42014-02-20 13:43:28 +00002021in the configuration file included. Secondly, the file is re-read and the configuration
Josh Soref730c6742017-02-06 16:14:04 +00002022therein is updated when dnsmasq receives SIGHUP.
Simon Kelley9e4abcb2004-01-22 19:47:41 +00002023.SH CONFIG FILE
Simon Kelley3be34542004-09-11 19:12:13 +01002024At startup, dnsmasq reads
2025.I /etc/dnsmasq.conf,
2026if it exists. (On
2027FreeBSD, the file is
2028.I /usr/local/etc/dnsmasq.conf
Simon Kelleyb8187c82005-11-26 21:46:27 +00002029) (but see the
Peter Pöschl9268b5d2018-06-12 17:04:54 +01002030.B \--conf-file
Simon Kelley849a8352006-06-09 21:02:31 +01002031and
Peter Pöschl9268b5d2018-06-12 17:04:54 +01002032.B \--conf-dir
Simon Kelley849a8352006-06-09 21:02:31 +01002033options.) The format of this
Simon Kelley9e4abcb2004-01-22 19:47:41 +00002034file consists of one option per line, exactly as the long options detailed
2035in the OPTIONS section but without the leading "--". Lines starting with # are comments and ignored. For
Simon Kelleyb49644f2004-01-30 21:36:24 +00002036options which may only be specified once, the configuration file overrides
Simon Kelleyb8187c82005-11-26 21:46:27 +00002037the command line. Quoting is allowed in a config file:
Simon Kelley3d8df262005-08-29 12:19:27 +01002038between " quotes the special meanings of ,:. and # are removed and the
Simon Kelley824af852008-02-12 20:43:05 +00002039following escapes are allowed: \\\\ \\" \\t \\e \\b \\r and \\n. The later
2040corresponding to tab, escape, backspace, return and newline.
Simon Kelley9e4abcb2004-01-22 19:47:41 +00002041.SH NOTES
2042When it receives a SIGHUP,
2043.B dnsmasq
Simon Kelley3be34542004-09-11 19:12:13 +01002044clears its cache and then re-loads
Simon Kelley5aabfc72007-08-29 11:24:47 +01002045.I /etc/hosts
2046and
2047.I /etc/ethers
Peter Pöschl9268b5d2018-06-12 17:04:54 +01002048and any file given by \fB--dhcp-hostsfile\fP, \fB--dhcp-hostsdir\fP, \fB--dhcp-optsfile\fP,
2049\fB--dhcp-optsdir\fP, \fB--addn-hosts\fP or \fB--hostsdir\fP.
Matthias Andree081a1c42020-04-05 11:26:38 +02002050The DHCP lease change script is called for all
Simon Kelley5aabfc72007-08-29 11:24:47 +01002051existing DHCP leases. If
Simon Kelley9e4abcb2004-01-22 19:47:41 +00002052.B
2053--no-poll
Simon Kelley3be34542004-09-11 19:12:13 +01002054is set SIGHUP also re-reads
2055.I /etc/resolv.conf.
2056SIGHUP
Simon Kelleyb49644f2004-01-30 21:36:24 +00002057does NOT re-read the configuration file.
Simon Kelley9e4abcb2004-01-22 19:47:41 +00002058.PP
2059When it receives a SIGUSR1,
2060.B dnsmasq
Simon Kelley824af852008-02-12 20:43:05 +00002061writes statistics to the system log. It writes the cache size,
Simon Kelley9e4abcb2004-01-22 19:47:41 +00002062the number of names which have had to removed from the cache before
2063they expired in order to make room for new names and the total number
Simon Kelleyfec216d2014-03-27 20:54:34 +00002064of names that have been inserted into the cache. The number of cache hits and
2065misses and the number of authoritative queries answered are also given. For each upstream
Simon Kelley824af852008-02-12 20:43:05 +00002066server it gives the number of queries sent, and the number which
2067resulted in an error. In
Simon Kelley9e4abcb2004-01-22 19:47:41 +00002068.B --no-daemon
Peter Pöschl9268b5d2018-06-12 17:04:54 +01002069mode or when full logging is enabled (\fB--log-queries\fP), a complete dump of the
Simon Kelleyfec216d2014-03-27 20:54:34 +00002070contents of the cache is made.
2071
2072The cache statistics are also available in the DNS as answers to
2073queries of class CHAOS and type TXT in domain bind. The domain names are cachesize.bind, insertions.bind, evictions.bind,
2074misses.bind, hits.bind, auth.bind and servers.bind. An example command to query this, using the
2075.B dig
2076utility would be
2077
2078dig +short chaos txt cachesize.bind
2079
Simon Kelley5aabfc72007-08-29 11:24:47 +01002080.PP
2081When it receives SIGUSR2 and it is logging direct to a file (see
2082.B --log-facility
2083)
2084.B dnsmasq
2085will close and reopen the log file. Note that during this operation,
2086dnsmasq will not be running as root. When it first creates the logfile
2087dnsmasq changes the ownership of the file to the non-root user it will run
2088as. Logrotate should be configured to create a new log file with
Simon Kelley9e038942008-05-30 20:06:34 +01002089the ownership which matches the existing one before sending SIGUSR2.
Simon Kelley5aabfc72007-08-29 11:24:47 +01002090If TCP DNS queries are in progress, the old logfile will remain open in
2091child processes which are handling TCP queries and may continue to be
2092written. There is a limit of 150 seconds, after which all existing TCP
2093processes will have expired: for this reason, it is not wise to
2094configure logfile compression for logfiles which have just been
2095rotated. Using logrotate, the required options are
2096.B create
2097and
2098.B delaycompress.
2099
2100
Simon Kelley9e4abcb2004-01-22 19:47:41 +00002101.PP
李三0159ed6bdb02017-11-30 16:47:01 +00002102Dnsmasq is a DNS query forwarder: it is not capable of recursively
Simon Kelley9e4abcb2004-01-22 19:47:41 +00002103answering arbitrary queries starting from the root servers but
2104forwards such queries to a fully recursive upstream DNS server which is
2105typically provided by an ISP. By default, dnsmasq reads
Simon Kelley3be34542004-09-11 19:12:13 +01002106.I /etc/resolv.conf
2107to discover the IP
Simon Kelley9e4abcb2004-01-22 19:47:41 +00002108addresses of the upstream nameservers it should use, since the
2109information is typically stored there. Unless
2110.B --no-poll
2111is used,
2112.B dnsmasq
Simon Kelley3be34542004-09-11 19:12:13 +01002113checks the modification time of
2114.I /etc/resolv.conf
2115(or equivalent if
Simon Kelley9e4abcb2004-01-22 19:47:41 +00002116.B \--resolv-file
2117is used) and re-reads it if it changes. This allows the DNS servers to
2118be set dynamically by PPP or DHCP since both protocols provide the
2119information.
Simon Kelley3be34542004-09-11 19:12:13 +01002120Absence of
2121.I /etc/resolv.conf
2122is not an error
Simon Kelley9e4abcb2004-01-22 19:47:41 +00002123since it may not have been created before a PPP connection exists. Dnsmasq
Simon Kelley3be34542004-09-11 19:12:13 +01002124simply keeps checking in case
2125.I /etc/resolv.conf
2126is created at any
Simon Kelley9e4abcb2004-01-22 19:47:41 +00002127time. Dnsmasq can be told to parse more than one resolv.conf
2128file. This is useful on a laptop, where both PPP and DHCP may be used:
Simon Kelley3be34542004-09-11 19:12:13 +01002129dnsmasq can be set to poll both
2130.I /etc/ppp/resolv.conf
2131and
2132.I /etc/dhcpc/resolv.conf
2133and will use the contents of whichever changed
Simon Kelley9e4abcb2004-01-22 19:47:41 +00002134last, giving automatic switching between DNS servers.
2135.PP
2136Upstream servers may also be specified on the command line or in
Simon Kelleyb49644f2004-01-30 21:36:24 +00002137the configuration file. These server specifications optionally take a
Simon Kelley9e4abcb2004-01-22 19:47:41 +00002138domain name which tells dnsmasq to use that server only to find names
2139in that particular domain.
2140.PP
2141In order to configure dnsmasq to act as cache for the host on which it is running, put "nameserver 127.0.0.1" in
2142.I /etc/resolv.conf
2143to force local processes to send queries to
2144dnsmasq. Then either specify the upstream servers directly to dnsmasq
2145using
2146.B \--server
2147options or put their addresses real in another file, say
2148.I /etc/resolv.dnsmasq
2149and run dnsmasq with the
Peter Pöschl9268b5d2018-06-12 17:04:54 +01002150.B \--resolv-file /etc/resolv.dnsmasq
Simon Kelley9e4abcb2004-01-22 19:47:41 +00002151option. This second technique allows for dynamic update of the server
2152addresses by PPP or DHCP.
Simon Kelley3be34542004-09-11 19:12:13 +01002153.PP
Simon Kelleyf6b7dc42005-01-23 12:06:08 +00002154Addresses in /etc/hosts will "shadow" different addresses for the same
2155names in the upstream DNS, so "mycompany.com 1.2.3.4" in /etc/hosts will ensure that
2156queries for "mycompany.com" always return 1.2.3.4 even if queries in
2157the upstream DNS would otherwise return a different address. There is
2158one exception to this: if the upstream DNS contains a CNAME which
2159points to a shadowed name, then looking up the CNAME through dnsmasq
2160will result in the unshadowed address associated with the target of
2161the CNAME. To work around this, add the CNAME to /etc/hosts so that
2162the CNAME is shadowed too.
2163
2164.PP
Simon Kelley8ef5ada2010-06-03 19:42:45 +01002165The tag system works as follows: For each DHCP request, dnsmasq
2166collects a set of valid tags from active configuration lines which
2167include set:<tag>, including one from the
Peter Pöschl9268b5d2018-06-12 17:04:54 +01002168.B --dhcp-range
Simon Kelley26128d22004-11-14 16:43:54 +00002169used to allocate the address, one from any matching
Peter Pöschl9268b5d2018-06-12 17:04:54 +01002170.B --dhcp-host
2171(and "known" or "known-othernet" if a \fB--dhcp-host\fP matches)
Simon Kelley8ef5ada2010-06-03 19:42:45 +01002172The tag "bootp" is set for BOOTP requests, and a tag whose name is the
2173name of the interface on which the request arrived is also set.
2174
Tomas Hozzaa66d36e2013-04-22 15:08:07 +01002175Any configuration lines which include one or more tag:<tag> constructs
Simon Kelley8ef5ada2010-06-03 19:42:45 +01002176will only be valid if all that tags are matched in the set derived
Peter Pöschl9268b5d2018-06-12 17:04:54 +01002177above. Typically this is \fB--dhcp-option\fP.
2178.B --dhcp-option
Simon Kelley8ef5ada2010-06-03 19:42:45 +01002179which has tags will be used in preference to an untagged
Peter Pöschl9268b5d2018-06-12 17:04:54 +01002180.B --dhcp-option,
Simon Kelley26128d22004-11-14 16:43:54 +00002181provided that _all_ the tags match somewhere in the
Simon Kelley8ef5ada2010-06-03 19:42:45 +01002182set collected as described above. The prefix '!' on a tag means 'not'
Peter Pöschl9268b5d2018-06-12 17:04:54 +01002183so \fB--dhcp-option=tag:!purple,3,1.2.3.4\fP sends the option when the
Simon Kelley8ef5ada2010-06-03 19:42:45 +01002184tag purple is not in the set of valid tags. (If using this in a
2185command line rather than a configuration file, be sure to escape !,
2186which is a shell metacharacter)
Simon Kelley7de060b2011-08-26 17:24:52 +01002187
Peter Pöschl9268b5d2018-06-12 17:04:54 +01002188When selecting \fB--dhcp-options\fP, a tag from \fB--dhcp-range\fP is second class
Simon Kelley7de060b2011-08-26 17:24:52 +01002189relative to other tags, to make it easy to override options for
2190individual hosts, so
Peter Pöschl9268b5d2018-06-12 17:04:54 +01002191.B --dhcp-range=set:interface1,......
2192.B --dhcp-host=set:myhost,.....
2193.B --dhcp-option=tag:interface1,option:nis-domain,"domain1"
2194.B --dhcp-option=tag:myhost,option:nis-domain,"domain2"
Simon Kelley7de060b2011-08-26 17:24:52 +01002195will set the NIS-domain to domain1 for hosts in the range, but
2196override that to domain2 for a particular host.
2197
Simon Kelley26128d22004-11-14 16:43:54 +00002198.PP
Simon Kelley8ef5ada2010-06-03 19:42:45 +01002199Note that for
Peter Pöschl9268b5d2018-06-12 17:04:54 +01002200.B --dhcp-range
Simon Kelley8ef5ada2010-06-03 19:42:45 +01002201both tag:<tag> and set:<tag> are allowed, to both select the range in
Peter Pöschl9268b5d2018-06-12 17:04:54 +01002202use based on (eg) \fB--dhcp-host\fP, and to affect the options sent, based on
Simon Kelley8ef5ada2010-06-03 19:42:45 +01002203the range selected.
2204
2205This system evolved from an earlier, more limited one and for backward
2206compatibility "net:" may be used instead of "tag:" and "set:" may be
2207omitted. (Except in
Peter Pöschl9268b5d2018-06-12 17:04:54 +01002208.B --dhcp-host,
Simon Kelley8ef5ada2010-06-03 19:42:45 +01002209where "net:" may be used instead of "set:".) For the same reason, '#'
2210may be used instead of '!' to indicate NOT.
Simon Kelleyf6b7dc42005-01-23 12:06:08 +00002211.PP
Simon Kelley3be34542004-09-11 19:12:13 +01002212The DHCP server in dnsmasq will function as a BOOTP server also,
2213provided that the MAC address and IP address for clients are given,
2214either using
Peter Pöschl9268b5d2018-06-12 17:04:54 +01002215.B --dhcp-host
Simon Kelley3be34542004-09-11 19:12:13 +01002216configurations or in
2217.I /etc/ethers
2218, and a
Peter Pöschl9268b5d2018-06-12 17:04:54 +01002219.B --dhcp-range
Simon Kelley3be34542004-09-11 19:12:13 +01002220configuration option is present to activate the DHCP server
Peter Pöschl9268b5d2018-06-12 17:04:54 +01002221on a particular network. (Setting \fB--bootp-dynamic\fP removes the need for
Simon Kelleyb8187c82005-11-26 21:46:27 +00002222static address mappings.) The filename
Simon Kelley8ef5ada2010-06-03 19:42:45 +01002223parameter in a BOOTP request is used as a tag,
2224as is the tag "bootp", allowing some control over the options returned to
Simon Kelley3be34542004-09-11 19:12:13 +01002225different classes of hosts.
2226
Simon Kelley333b2ce2013-01-07 21:46:03 +00002227.SH AUTHORITATIVE CONFIGURATION
Simon Kelley333b2ce2013-01-07 21:46:03 +00002228Configuring dnsmasq to act as an authoritative DNS server is
2229complicated by the fact that it involves configuration of external DNS
2230servers to provide delegation. We will walk through three scenarios of
2231increasing complexity. Prerequisites for all of these scenarios
Simon Kelley81925ab2013-04-10 11:43:58 +01002232are a globally accessible IP address, an A or AAAA record pointing to that address,
Simon Kelley333b2ce2013-01-07 21:46:03 +00002233and an external DNS server capable of doing delegation of the zone in
2234question. For the first part of this explanation, we will call the A (or AAAA) record
2235for the globally accessible address server.example.com, and the zone
2236for which dnsmasq is authoritative our.zone.com.
2237
2238The simplest configuration consists of two lines of dnsmasq configuration; something like
2239
2240.nf
Peter Pöschl9268b5d2018-06-12 17:04:54 +01002241.B --auth-server=server.example.com,eth0
2242.B --auth-zone=our.zone.com,1.2.3.0/24
Simon Kelley333b2ce2013-01-07 21:46:03 +00002243.fi
2244
2245and two records in the external DNS
2246
2247.nf
2248server.example.com A 192.0.43.10
2249our.zone.com NS server.example.com
2250.fi
2251
2252eth0 is the external network interface on which dnsmasq is listening,
2253and has (globally accessible) address 192.0.43.10.
2254
2255Note that the external IP address may well be dynamic (ie assigned
2256from an ISP by DHCP or PPP) If so, the A record must be linked to this
2257dynamic assignment by one of the usual dynamic-DNS systems.
2258
2259A more complex, but practically useful configuration has the address
2260record for the globally accessible IP address residing in the
2261authoritative zone which dnsmasq is serving, typically at the root. Now
2262we have
2263
2264.nf
Peter Pöschl9268b5d2018-06-12 17:04:54 +01002265.B --auth-server=our.zone.com,eth0
2266.B --auth-zone=our.zone.com,1.2.3.0/24
Simon Kelley333b2ce2013-01-07 21:46:03 +00002267.fi
2268
2269.nf
Simon Kelley0f128eb2013-03-11 21:21:35 +00002270our.zone.com A 1.2.3.4
Simon Kelley333b2ce2013-01-07 21:46:03 +00002271our.zone.com NS our.zone.com
2272.fi
2273
2274The A record for our.zone.com has now become a glue record, it solves
2275the chicken-and-egg problem of finding the IP address of the
2276nameserver for our.zone.com when the A record is within that
2277zone. Note that this is the only role of this record: as dnsmasq is
2278now authoritative from our.zone.com it too must provide this
2279record. If the external address is static, this can be done with an
2280.B /etc/hosts
2281entry or
2282.B --host-record.
Simon Kelley333b2ce2013-01-07 21:46:03 +00002283
2284.nf
Peter Pöschl9268b5d2018-06-12 17:04:54 +01002285.B --auth-server=our.zone.com,eth0
2286.B --host-record=our.zone.com,1.2.3.4
2287.B --auth-zone=our.zone.com,1.2.3.0/24
Simon Kelley0f128eb2013-03-11 21:21:35 +00002288.fi
2289
2290If the external address is dynamic, the address
2291associated with our.zone.com must be derived from the address of the
Simon Kelley6f130de2013-04-15 14:47:14 +01002292relevant interface. This is done using
Peter Pöschl9268b5d2018-06-12 17:04:54 +01002293.B --interface-name
Simon Kelley0f128eb2013-03-11 21:21:35 +00002294Something like:
2295
2296.nf
Peter Pöschl9268b5d2018-06-12 17:04:54 +01002297.B --auth-server=our.zone.com,eth0
2298.B --interface-name=our.zone.com,eth0
2299.B --auth-zone=our.zone.com,1.2.3.0/24,eth0
Simon Kelley333b2ce2013-01-07 21:46:03 +00002300.fi
2301
Peter Pöschl9268b5d2018-06-12 17:04:54 +01002302(The "eth0" argument in \fB--auth-zone\fP adds the subnet containing eth0's
2303dynamic address to the zone, so that the \fB--interface-name\fP returns the
Simon Kelley32b4e4c2013-11-14 10:36:55 +00002304address in outside queries.)
2305
Simon Kelley333b2ce2013-01-07 21:46:03 +00002306Our final configuration builds on that above, but also adds a
2307secondary DNS server. This is another DNS server which learns the DNS data
2308for the zone by doing zones transfer, and acts as a backup should
2309the primary server become inaccessible. The configuration of the
2310secondary is beyond the scope of this man-page, but the extra
2311configuration of dnsmasq is simple:
2312
2313.nf
Peter Pöschl9268b5d2018-06-12 17:04:54 +01002314.B --auth-sec-servers=secondary.myisp.com
Simon Kelley333b2ce2013-01-07 21:46:03 +00002315.fi
2316
2317and
2318
2319.nf
2320our.zone.com NS secondary.myisp.com
2321.fi
2322
2323Adding auth-sec-servers enables zone transfer in dnsmasq, to allow the
2324secondary to collect the DNS data. If you wish to restrict this data
2325to particular hosts then
2326
2327.nf
Peter Pöschl9268b5d2018-06-12 17:04:54 +01002328.B --auth-peer=<IP address of secondary>
Simon Kelley333b2ce2013-01-07 21:46:03 +00002329.fi
2330
2331will do so.
2332
2333Dnsmasq acts as an authoritative server for in-addr.arpa and
Peter Pöschl9268b5d2018-06-12 17:04:54 +01002334ip6.arpa domains associated with the subnets given in \fB--auth-zone\fP
Simon Kelley333b2ce2013-01-07 21:46:03 +00002335declarations, so reverse (address to name) lookups can be simply
2336configured with a suitable NS record, for instance in this example,
2337where we allow 1.2.3.0/24 addresses.
2338
2339.nf
2340 3.2.1.in-addr.arpa NS our.zone.com
2341.fi
2342
2343Note that at present, reverse (in-addr.arpa and ip6.arpa) zones are
2344not available in zone transfers, so there is no point arranging
2345secondary servers for reverse lookups.
2346
2347.PP
2348When dnsmasq is configured to act as an authoritative server, the
2349following data is used to populate the authoritative zone.
2350.PP
Simon Kelley974a6d02018-08-23 23:01:16 +01002351.B --mx-host, --srv-host, --dns-rr, --txt-record, --naptr-record, --caa-record,
2352as long as the record names are in the authoritative domain.
Simon Kelley333b2ce2013-01-07 21:46:03 +00002353.PP
2354.B --cname
2355as long as the record name is in the authoritative domain. If the
2356target of the CNAME is unqualified, then it is qualified with the
Simon Kelleyb637d782016-12-13 16:44:11 +00002357authoritative zone name. CNAME used in this way (only) may be wildcards, as in
2358
2359.nf
Peter Pöschl9268b5d2018-06-12 17:04:54 +01002360.B --cname=*.example.com,default.example.com
Simon Kelleyb637d782016-12-13 16:44:11 +00002361.fi
2362
Simon Kelley333b2ce2013-01-07 21:46:03 +00002363.PP
2364IPv4 and IPv6 addresses from /etc/hosts (and
2365.B --addn-hosts
2366) and
2367.B --host-record
Simon Kelley376d48c2013-11-13 13:04:30 +00002368and
2369.B --interface-name
Simon Kelley333b2ce2013-01-07 21:46:03 +00002370provided the address falls into one of the subnets specified in the
2371.B --auth-zone.
2372.PP
Simon Kelley333b2ce2013-01-07 21:46:03 +00002373Addresses of DHCP leases, provided the address falls into one of the subnets specified in the
Simon Kelley376d48c2013-11-13 13:04:30 +00002374.B --auth-zone.
Josh Soref730c6742017-02-06 16:14:04 +00002375(If constructed DHCP ranges are is use, which depend on the address dynamically
Simon Kelley376d48c2013-11-13 13:04:30 +00002376assigned to an interface, then the form of
Simon Kelley333b2ce2013-01-07 21:46:03 +00002377.B --auth-zone
Simon Kelley376d48c2013-11-13 13:04:30 +00002378which defines subnets by the dynamic address of an interface should
2379be used to ensure this condition is met.)
2380.PP
2381In the default mode, where a DHCP lease
Simon Kelley333b2ce2013-01-07 21:46:03 +00002382has an unqualified name, and possibly a qualified name constructed
2383using
2384.B --domain
2385then the name in the authoritative zone is constructed from the
2386unqualified name and the zone's domain. This may or may not equal
2387that specified by
2388.B --domain.
2389If
2390.B --dhcp-fqdn
2391is set, then the fully qualified names associated with DHCP leases are
2392used, and must match the zone's domain.
2393
2394
2395
Simon Kelley5aabfc72007-08-29 11:24:47 +01002396.SH EXIT CODES
Simon Kelley5aabfc72007-08-29 11:24:47 +010023970 - Dnsmasq successfully forked into the background, or terminated
2398normally if backgrounding is not enabled.
2399.PP
24001 - A problem with configuration was detected.
2401.PP
24022 - A problem with network access occurred (address in use, attempt
2403to use privileged ports without permission).
2404.PP
Simon Kelley9e038942008-05-30 20:06:34 +010024053 - A problem occurred with a filesystem operation (missing
Simon Kelley5aabfc72007-08-29 11:24:47 +01002406file/directory, permissions).
2407.PP
24084 - Memory allocation failure.
2409.PP
24105 - Other miscellaneous problem.
2411.PP
241211 or greater - a non zero return code was received from the
2413lease-script process "init" call. The exit code from dnsmasq is the
2414script's exit code with 10 added.
2415
Simon Kelley1b7ecd12007-02-05 14:57:57 +00002416.SH LIMITS
2417The default values for resource limits in dnsmasq are generally
2418conservative, and appropriate for embedded router type devices with
2419slow processors and limited memory. On more capable hardware, it is
2420possible to increase the limits, and handle many more clients. The
2421following applies to dnsmasq-2.37: earlier versions did not scale as well.
2422
2423.PP
2424Dnsmasq is capable of handling DNS and DHCP for at least a thousand
Simon Kelley8ef5ada2010-06-03 19:42:45 +01002425clients. The DHCP lease times should not be very short (less than one hour). The
Simon Kelley1b7ecd12007-02-05 14:57:57 +00002426value of
2427.B --dns-forward-max
2428can be increased: start with it equal to
2429the number of clients and increase if DNS seems slow. Note that DNS
2430performance depends too on the performance of the upstream
2431nameservers. The size of the DNS cache may be increased: the hard
2432limit is 10000 names and the default (150) is very low. Sending
2433SIGUSR1 to dnsmasq makes it log information which is useful for tuning
2434the cache size. See the
2435.B NOTES
2436section for details.
2437
2438.PP
2439The built-in TFTP server is capable of many simultaneous file
2440transfers: the absolute limit is related to the number of file-handles
2441allowed to a process and the ability of the select() system call to
2442cope with large numbers of file handles. If the limit is set too high
2443using
2444.B --tftp-max
2445it will be scaled down and the actual limit logged at
2446start-up. Note that more transfers are possible when the same file is
2447being sent than when each transfer sends a different file.
2448
2449.PP
2450It is possible to use dnsmasq to block Web advertising by using a list
2451of known banner-ad servers, all resolving to 127.0.0.1 or 0.0.0.0, in
2452.B /etc/hosts
2453or an additional hosts file. The list can be very long,
2454dnsmasq has been tested successfully with one million names. That size
2455file needs a 1GHz processor and about 60Mb of RAM.
2456
Simon Kelley1f15b812009-10-13 17:49:32 +01002457.SH INTERNATIONALISATION
2458Dnsmasq can be compiled to support internationalisation. To do this,
2459the make targets "all-i18n" and "install-i18n" should be used instead of
2460the standard targets "all" and "install". When internationalisation
2461is compiled in, dnsmasq will produce log messages in the local
2462language and support internationalised domain names (IDN). Domain
2463names in /etc/hosts, /etc/ethers and /etc/dnsmasq.conf which contain
2464non-ASCII characters will be translated to the DNS-internal punycode
2465representation. Note that
2466dnsmasq determines both the language for messages and the assumed
2467charset for configuration
2468files from the LANG environment variable. This should be set to the system
2469default value by the script which is responsible for starting
2470dnsmasq. When editing the configuration files, be careful to do so
2471using only the system-default locale and not user-specific one, since
2472dnsmasq has no direct way of determining the charset in use, and must
2473assume that it is the system default.
2474
Simon Kelley9e4abcb2004-01-22 19:47:41 +00002475.SH FILES
Simon Kelleyb49644f2004-01-30 21:36:24 +00002476.IR /etc/dnsmasq.conf
2477
2478.IR /usr/local/etc/dnsmasq.conf
Simon Kelley9e4abcb2004-01-22 19:47:41 +00002479
2480.IR /etc/resolv.conf
Simon Kelley28866e92011-02-14 20:19:14 +00002481.IR /var/run/dnsmasq/resolv.conf
2482.IR /etc/ppp/resolv.conf
2483.IR /etc/dhcpc/resolv.conf
Simon Kelley9e4abcb2004-01-22 19:47:41 +00002484
2485.IR /etc/hosts
2486
Simon Kelley3be34542004-09-11 19:12:13 +01002487.IR /etc/ethers
2488
Simon Kelleyb49644f2004-01-30 21:36:24 +00002489.IR /var/lib/misc/dnsmasq.leases
2490
2491.IR /var/db/dnsmasq.leases
Simon Kelley9e4abcb2004-01-22 19:47:41 +00002492
2493.IR /var/run/dnsmasq.pid
2494.SH SEE ALSO
Simon Kelley9e4abcb2004-01-22 19:47:41 +00002495.BR hosts (5),
2496.BR resolver (5)
2497.SH AUTHOR
2498This manual page was written by Simon Kelley <simon@thekelleys.org.uk>.
2499
2500