blob: 4357d994fe848bd55226274a6005b2a82a79b93e [file] [log] [blame]
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001.TH DNSMASQ 8
2.SH NAME
3dnsmasq \- A lightweight DHCP and caching DNS server.
4.SH SYNOPSIS
5.B dnsmasq
6.I [OPTION]...
7.SH "DESCRIPTION"
8.BR dnsmasq
Simon Kelley34d0a362013-01-02 11:40:56 +00009is a lightweight DNS, TFTP, PXE, router advertisement and DHCP server. It is intended to provide
Simon Kelley5aabfc72007-08-29 11:24:47 +010010coupled DNS and DHCP service to a LAN.
Simon Kelley9e4abcb2004-01-22 19:47:41 +000011.PP
12Dnsmasq accepts DNS queries and either answers them from a small, local,
13cache or forwards them to a real, recursive, DNS server. It loads the
14contents of /etc/hosts so that local hostnames
15which do not appear in the global DNS can be resolved and also answers
Simon Kelley34d0a362013-01-02 11:40:56 +000016DNS queries for DHCP configured hosts. It can also act as the authoritative DNS server for one or more domains, allowing local names to appear in the global DNS.
Simon Kelley9e4abcb2004-01-22 19:47:41 +000017.PP
Simon Kelley73a08a22009-02-05 20:28:08 +000018The dnsmasq DHCP server supports static address assignments and multiple
19networks. It automatically
Simon Kelley3be34542004-09-11 19:12:13 +010020sends a sensible default set of DHCP options, and can be configured to
Simon Kelleyf2621c72007-04-29 19:47:21 +010021send any desired set of DHCP options, including vendor-encapsulated
Simon Kelley1b7ecd12007-02-05 14:57:57 +000022options. It includes a secure, read-only,
Simon Kelley34d0a362013-01-02 11:40:56 +000023TFTP 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 +000024.PP
Simon Kelley81925ab2013-04-10 11:43:58 +010025The dnsmasq DHCPv6 server provides the same set of features as the
26DHCPv4 server, and in addition, it includes router advertisements and
27a neat feature which allows nameing for clients which use DHCPv4 and
Simon Kelley834f36f2013-04-17 13:52:49 +010028stateless 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 +000029.PP
30Dnsmasq is coded with small embedded systems in mind. It aims for the smallest possible memory footprint compatible with the supported functions, and allows uneeded functions to be omitted from the compiled binary.
Simon Kelley9e4abcb2004-01-22 19:47:41 +000031.SH OPTIONS
32Note that in general missing parameters are allowed and switch off
Simon Kelley832af0b2007-01-21 20:01:28 +000033functions, for instance "--pid-file" disables writing a PID file. On
Simon Kelley33820b72004-04-03 21:10:00 +010034BSD, unless the GNU getopt library is linked, the long form of the
35options does not work on the command line; it is still recognised in
36the configuration file.
Simon Kelley9e4abcb2004-01-22 19:47:41 +000037.TP
Simon Kelley7622fc02009-06-04 20:32:05 +010038.B --test
39Read and syntax check configuration file(s). Exit with code 0 if all
40is OK, or a non-zero code otherwise. Do not start up dnsmasq.
41.TP
Simon Kelley9e4abcb2004-01-22 19:47:41 +000042.B \-h, --no-hosts
43Don't read the hostnames in /etc/hosts.
44.TP
45.B \-H, --addn-hosts=<file>
46Additional hosts file. Read the specified file as well as /etc/hosts. If -h is given, read
Simon Kelleyfd9fa482004-10-21 20:24:00 +010047only the specified file. This option may be repeated for more than one
Simon Kelley7622fc02009-06-04 20:32:05 +010048additional hosts file. If a directory is given, then read all the files contained in that directory.
Simon Kelley9e4abcb2004-01-22 19:47:41 +000049.TP
Simon Kelley832af0b2007-01-21 20:01:28 +000050.B \-E, --expand-hosts
51Add the domain to simple names (without a period) in /etc/hosts
Simon Kelley1f15b812009-10-13 17:49:32 +010052in the same way as for DHCP-derived names. Note that this does not
53apply to domain names in cnames, PTR records, TXT records etc.
Simon Kelley832af0b2007-01-21 20:01:28 +000054.TP
Simon Kelley9e4abcb2004-01-22 19:47:41 +000055.B \-T, --local-ttl=<time>
56When replying with information from /etc/hosts or the DHCP leases
57file dnsmasq by default sets the time-to-live field to zero, meaning
Simon Kelleyc72daea2012-01-05 21:33:27 +000058that the requester should not itself cache the information. This is
Simon Kelley9e4abcb2004-01-22 19:47:41 +000059the correct thing to do in almost all situations. This option allows a
60time-to-live (in seconds) to be given for these replies. This will
61reduce the load on the server at the expense of clients using stale
62data under some circumstances.
63.TP
Simon Kelley824af852008-02-12 20:43:05 +000064.B --neg-ttl=<time>
65Negative replies from upstream servers normally contain time-to-live
66information in SOA records which dnsmasq uses for caching. If the
67replies from upstream servers omit this information, dnsmasq does not
68cache the reply. This option gives a default value for time-to-live
69(in seconds) which dnsmasq uses to cache negative replies even in
70the absence of an SOA record.
71.TP
Simon Kelley8ef5ada2010-06-03 19:42:45 +010072.B --max-ttl=<time>
73Set a maximum TTL value that will be handed out to clients. The specified
74maximum TTL will be given to clients instead of the true TTL value if it is
75lower. The true TTL value is however kept in the cache to avoid flooding
76the upstream DNS servers.
77.TP
Simon Kelley1d860412012-09-20 20:48:04 +010078.B --max-cache-ttl=<time>
79Set a maximum TTL value for entries in the cache.
80.TP
Simon Kelley333b2ce2013-01-07 21:46:03 +000081.B --auth-ttl=<time>
82Set the TTL value returned in answers from the authoritative server.
83.TP
Simon Kelley3be34542004-09-11 19:12:13 +010084.B \-k, --keep-in-foreground
85Do not go into the background at startup but otherwise run as
Simon Kelley3d8df262005-08-29 12:19:27 +010086normal. This is intended for use when dnsmasq is run under daemontools
87or launchd.
Simon Kelley3be34542004-09-11 19:12:13 +010088.TP
Simon Kelley9e4abcb2004-01-22 19:47:41 +000089.B \-d, --no-daemon
90Debug mode: don't fork to the background, don't write a pid file,
91don't change user id, generate a complete cache dump on receipt on
Simon Kelley3be34542004-09-11 19:12:13 +010092SIGUSR1, log to stderr as well as syslog, don't fork new processes
Simon Kelley83b21982012-11-12 21:07:44 +000093to handle TCP queries. Note that this option is for use in debugging
94only, to stop dnsmasq daemonising in production, use
95.B -k.
Simon Kelley9e4abcb2004-01-22 19:47:41 +000096.TP
97.B \-q, --log-queries
98Log the results of DNS queries handled by dnsmasq. Enable a full cache dump on receipt of SIGUSR1.
99.TP
Simon Kelley849a8352006-06-09 21:02:31 +0100100.B \-8, --log-facility=<facility>
101Set the facility to which dnsmasq will send syslog entries, this
Simon Kelleyf2621c72007-04-29 19:47:21 +0100102defaults to DAEMON, and to LOCAL0 when debug mode is in operation. If
Simon Kelley9e038942008-05-30 20:06:34 +0100103the facility given contains at least one '/' character, it is taken to
Simon Kelleyf2621c72007-04-29 19:47:21 +0100104be a filename, and dnsmasq logs to the given file, instead of
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100105syslog. If the facility is '-' then dnsmasq logs to stderr.
106(Errors whilst reading configuration will still go to syslog,
Simon Kelleyf2621c72007-04-29 19:47:21 +0100107but all output from a successful startup, and all output whilst
Simon Kelley5aabfc72007-08-29 11:24:47 +0100108running, will go exclusively to the file.) When logging to a file,
109dnsmasq will close and reopen the file when it receives SIGUSR2. This
110allows the log file to be rotated without stopping dnsmasq.
Simon Kelleyf2621c72007-04-29 19:47:21 +0100111.TP
112.B --log-async[=<lines>]
113Enable asynchronous logging and optionally set the limit on the
114number of lines
115which will be queued by dnsmasq when writing to the syslog is slow.
116Dnsmasq can log asynchronously: this
117allows it to continue functioning without being blocked by syslog, and
118allows syslog to use dnsmasq for DNS queries without risking deadlock.
119If the queue of log-lines becomes full, dnsmasq will log the
120overflow, and the number of messages lost. The default queue length is
1215, a sane value would be 5-25, and a maximum limit of 100 is imposed.
Simon Kelley849a8352006-06-09 21:02:31 +0100122.TP
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000123.B \-x, --pid-file=<path>
124Specify an alternate path for dnsmasq to record its process-id in. Normally /var/run/dnsmasq.pid.
125.TP
126.B \-u, --user=<username>
127Specify 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 +0000128privileges after startup by changing id to another user. Normally this user is "nobody" but that
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000129can be over-ridden with this switch.
130.TP
131.B \-g, --group=<groupname>
132Specify the group which dnsmasq will run
133as. The defaults to "dip", if available, to facilitate access to
134/etc/ppp/resolv.conf which is not normally world readable.
135.TP
136.B \-v, --version
137Print the version number.
138.TP
139.B \-p, --port=<port>
Simon Kelley824af852008-02-12 20:43:05 +0000140Listen on <port> instead of the standard DNS port (53). Setting this
141to zero completely disables DNS function, leaving only DHCP and/or TFTP.
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000142.TP
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100143.B \-P, --edns-packet-max=<size>
144Specify the largest EDNS.0 UDP packet which is supported by the DNS
Simon Kelley316e2732010-01-22 20:16:09 +0000145forwarder. Defaults to 4096, which is the RFC5625-recommended size.
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100146.TP
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000147.B \-Q, --query-port=<query_port>
Simon Kelley1a6bca82008-07-11 11:11:42 +0100148Send outbound DNS queries from, and listen for their replies on, the
149specific UDP port <query_port> instead of using random ports. NOTE
150that using this option will make dnsmasq less secure against DNS
151spoofing attacks but it may be faster and use less resources. Setting this option
152to zero makes dnsmasq use a single port allocated to it by the
153OS: this was the default behaviour in versions prior to 2.43.
154.TP
155.B --min-port=<port>
156Do not use ports less than that given as source for outbound DNS
157queries. Dnsmasq picks random ports as source for outbound queries:
158when this option is given, the ports used will always to larger
159than that specified. Useful for systems behind firewalls.
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000160.TP
161.B \-i, --interface=<interface name>
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100162Listen only on the specified interface(s). Dnsmasq automatically adds
163the loopback (local) interface to the list of interfaces to use when
164the
165.B \--interface
166option is used. If no
167.B \--interface
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000168or
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100169.B \--listen-address
170options are given dnsmasq listens on all available interfaces except any
171given in
172.B \--except-interface
Simon Kelley309331f2006-04-22 15:05:01 +0100173options. IP alias interfaces (eg "eth1:0") cannot be used with
Simon Kelley8a911cc2004-03-16 18:35:52 +0000174.B --interface
175or
176.B --except-interface
Simon Kelley49333cb2013-03-15 20:30:51 +0000177options, use --listen-address instead. A simple wildcard, consisting
178of a trailing '*', can be used in
179.B \--interface
180and
181.B \--except-interface
182options.
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000183.TP
184.B \-I, --except-interface=<interface name>
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100185Do not listen on the specified interface. Note that the order of
186.B \--listen-address
187.B --interface
188and
189.B --except-interface
190options does not matter and that
191.B --except-interface
192options always override the others.
Simon Kelley34d0a362013-01-02 11:40:56 +0000193.TP
194.B --auth-server=<domain>,<interface>|<ip-address>
Simon Kelley81925ab2013-04-10 11:43:58 +0100195Enable DNS authoritative mode for queries arriving at an interface or address. Note that the interface or address
Simon Kelley34d0a362013-01-02 11:40:56 +0000196need not be mentioned in
197.B --interface
198or
199.B --listen-address
200configuration, indeed
201.B --auth-server
202will overide these and provide a different DNS service on the specified interface. The <domain> is the "glue record". It should resolve in the global DNS to a A and/or AAAA record which points to the address dnsmasq is listening on.
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000203.TP
Simon Kelley3d8df262005-08-29 12:19:27 +0100204.B \-2, --no-dhcp-interface=<interface name>
Simon Kelley832af0b2007-01-21 20:01:28 +0000205Do not provide DHCP or TFTP on the specified interface, but do provide DNS service.
Simon Kelley3d8df262005-08-29 12:19:27 +0100206.TP
Simon Kelley44a2a312004-03-10 20:04:35 +0000207.B \-a, --listen-address=<ipaddr>
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100208Listen on the given IP address(es). Both
209.B \--interface
210and
211.B \--listen-address
212options may be given, in which case the set of both interfaces and
213addresses is used. Note that if no
214.B \--interface
215option is given, but
216.B \--listen-address
217is, dnsmasq will not automatically listen on the loopback
218interface. To achieve this, its IP address, 127.0.0.1, must be
219explicitly given as a
220.B \--listen-address
221option.
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000222.TP
Simon Kelley44a2a312004-03-10 20:04:35 +0000223.B \-z, --bind-interfaces
224On systems which support it, dnsmasq binds the wildcard address,
225even when it is listening on only some interfaces. It then discards
226requests that it shouldn't reply to. This has the advantage of
227working even when interfaces come and go and change address. This
228option forces dnsmasq to really bind only the interfaces it is
229listening on. About the only time when this is useful is when
Simon Kelleyf6b7dc42005-01-23 12:06:08 +0000230running another nameserver (or another instance of dnsmasq) on the
Simon Kelley309331f2006-04-22 15:05:01 +0100231same machine. Setting this option also enables multiple instances of
Simon Kelleyf6b7dc42005-01-23 12:06:08 +0000232dnsmasq which provide DHCP service to run in the same machine.
233.TP
Simon Kelley54dd3932012-06-20 11:23:38 +0100234.B --bind-dynamic
235Enable a network mode which is a hybrid between
236.B --bind-interfaces
Simon Kelleya2ce6fc2012-08-06 20:05:48 +0100237and the default. Dnsmasq binds the address of individual interfaces,
Simon Kelley54dd3932012-06-20 11:23:38 +0100238allowing multiple dnsmasq instances, but if new interfaces or
239addresses appear, it automatically listens on those (subject to any
240access-control configuration). This makes dynamically created
241interfaces work in the same way as the default. Implementing this
Simon Kelleya2ce6fc2012-08-06 20:05:48 +0100242option requires non-standard networking APIs and it is only available
Simon Kelley05ff1ed2012-06-26 16:58:12 +0100243under Linux. On other platforms it falls-back to --bind-interfaces mode.
Simon Kelley54dd3932012-06-20 11:23:38 +0100244.TP
Simon Kelleyf6b7dc42005-01-23 12:06:08 +0000245.B \-y, --localise-queries
246Return answers to DNS queries from /etc/hosts which depend on the interface over which the query was
Simon Kelleyb8187c82005-11-26 21:46:27 +0000247received. If a name in /etc/hosts has more than one address associated with
Simon Kelleyf6b7dc42005-01-23 12:06:08 +0000248it, and at least one of those addresses is on the same subnet as the
249interface to which the query was sent, then return only the
250address(es) on that subnet. This allows for a server to have multiple
251addresses in /etc/hosts corresponding to each of its interfaces, and
252hosts will get the correct address based on which network they are
253attached to. Currently this facility is limited to IPv4.
Simon Kelley44a2a312004-03-10 20:04:35 +0000254.TP
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000255.B \-b, --bogus-priv
256Bogus private reverse lookups. All reverse lookups for private IP ranges (ie 192.168.x.x, etc)
Simon Kelleyfeba5c12004-07-27 20:28:58 +0100257which are not found in /etc/hosts or the DHCP leases file are answered
258with "no such domain" rather than being forwarded upstream.
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000259.TP
Simon Kelley73a08a22009-02-05 20:28:08 +0000260.B \-V, --alias=[<old-ip>]|[<start-ip>-<end-ip>],<new-ip>[,<mask>]
Simon Kelley1cff1662004-03-12 08:12:58 +0000261Modify IPv4 addresses returned from upstream nameservers; old-ip is
262replaced by new-ip. If the optional mask is given then any address
263which matches the masked old-ip will be re-written. So, for instance
264.B --alias=1.2.3.0,6.7.8.0,255.255.255.0
265will 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 +0000266Cisco PIX routers call "DNS doctoring". If the old IP is given as
267range, then only addresses in the range, rather than a whole subnet,
268are re-written. So
269.B --alias=192.168.0.10-192.168.0.40,10.0.0.0,255.255.255.0
270maps 192.168.0.10->192.168.0.40 to 10.0.0.10->10.0.0.40
Simon Kelley1cff1662004-03-12 08:12:58 +0000271.TP
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000272.B \-B, --bogus-nxdomain=<ipaddr>
273Transform replies which contain the IP address given into "No such
274domain" replies. This is intended to counteract a devious move made by
Simon Kelleyb8187c82005-11-26 21:46:27 +0000275Verisign in September 2003 when they started returning the address of
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000276an advertising web page in response to queries for unregistered names,
277instead of the correct NXDOMAIN response. This option tells dnsmasq to
278fake the correct response when it sees this behaviour. As at Sept 2003
Simon Kelleyb8187c82005-11-26 21:46:27 +0000279the IP address being returned by Verisign is 64.94.110.11
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000280.TP
281.B \-f, --filterwin2k
282Later versions of windows make periodic DNS requests which don't get sensible answers from
283the public DNS and can cause problems by triggering dial-on-demand links. This flag turns on an option
284to filter such requests. The requests blocked are for records of types SOA and SRV, and type ANY where the
285requested name has underscores, to catch LDAP requests.
286.TP
287.B \-r, --resolv-file=<file>
288Read the IP addresses of the upstream nameservers from <file>, instead of
289/etc/resolv.conf. For the format of this file see
Simon Kelley7de060b2011-08-26 17:24:52 +0100290.BR resolv.conf (5).
291The only lines relevant to dnsmasq are nameserver ones. Dnsmasq can
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000292be told to poll more than one resolv.conf file, the first file name specified
293overrides the default, subsequent ones add to the list. This is only
294allowed when polling; the file with the currently latest modification
295time is the one used.
296.TP
297.B \-R, --no-resolv
298Don't read /etc/resolv.conf. Get upstream servers only from the command
Simon Kelleyb49644f2004-01-30 21:36:24 +0000299line or the dnsmasq configuration file.
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000300.TP
Simon Kelleyad094272012-08-10 17:10:54 +0100301.B \-1, --enable-dbus[=<service-name>]
Simon Kelley3d8df262005-08-29 12:19:27 +0100302Allow dnsmasq configuration to be updated via DBus method calls. The
303configuration which can be changed is upstream DNS servers (and
Simon Kelleyb8187c82005-11-26 21:46:27 +0000304corresponding domains) and cache clear. Requires that dnsmasq has
Simon Kelleyad094272012-08-10 17:10:54 +0100305been built with DBus support. If the service name is given, dnsmasq
306provides service at that name, rather than the default which is
307.B uk.org.thekelleys.dnsmasq
Simon Kelley3d8df262005-08-29 12:19:27 +0100308.TP
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000309.B \-o, --strict-order
310By default, dnsmasq will send queries to any of the upstream servers
Simon Kelley824af852008-02-12 20:43:05 +0000311it knows about and tries to favour servers that are known to
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000312be up. Setting this flag forces dnsmasq to try each query with each
313server strictly in the order they appear in /etc/resolv.conf
314.TP
Simon Kelley824af852008-02-12 20:43:05 +0000315.B --all-servers
316By default, when dnsmasq has more than one upstream server available,
317it will send queries to just one server. Setting this flag forces
318dnsmasq to send all queries to all available servers. The reply from
Simon Kelleyc72daea2012-01-05 21:33:27 +0000319the server which answers first will be returned to the original requester.
Simon Kelley824af852008-02-12 20:43:05 +0000320.TP
321.B --stop-dns-rebind
322Reject (and log) addresses from upstream nameservers which are in the
323private IP ranges. This blocks an attack where a browser behind a
324firewall is used to probe machines on the local network.
325.TP
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100326.B --rebind-localhost-ok
327Exempt 127.0.0.0/8 from rebinding checks. This address range is
328returned by realtime black hole servers, so blocking it may disable
329these services.
330.TP
331.B --rebind-domain-ok=[<domain>]|[[/<domain>/[<domain>/]
332Do not detect and block dns-rebind on queries to these domains. The
333argument may be either a single domain, or multiple domains surrounded
334by '/', like the --server syntax, eg.
335.B --rebind-domain-ok=/domain1/domain2/domain3/
336.TP
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000337.B \-n, --no-poll
338Don't poll /etc/resolv.conf for changes.
339.TP
Simon Kelley16972692006-10-16 20:04:18 +0100340.B --clear-on-reload
Simon Kelleyd9fb0be2013-07-25 21:47:17 +0100341Whenever /etc/resolv.conf is re-read or the upstream servers are set
342via DBus, clear the DNS cache.
Simon Kelley16972692006-10-16 20:04:18 +0100343This is useful when new nameservers may have different
344data than that held in cache.
345.TP
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000346.B \-D, --domain-needed
Simon Kelley7de060b2011-08-26 17:24:52 +0100347Tells dnsmasq to never forward A or AAAA queries for plain names, without dots
Simon Kelley3d8df262005-08-29 12:19:27 +0100348or domain parts, to upstream nameservers. If the name is not known
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000349from /etc/hosts or DHCP then a "not found" answer is returned.
350.TP
Simon Kelley824af852008-02-12 20:43:05 +0000351.B \-S, --local, --server=[/[<domain>]/[domain/]][<ipaddr>[#<port>][@<source-ip>|<interface>[#<port>]]
Simon Kelley5aabfc72007-08-29 11:24:47 +0100352Specify IP address of upstream servers directly. Setting this flag does
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000353not suppress reading of /etc/resolv.conf, use -R to do that. If one or
354more
355optional domains are given, that server is used only for those domains
356and they are queried only using the specified server. This is
357intended for private nameservers: if you have a nameserver on your
358network which deals with names of the form
359xxx.internal.thekelleys.org.uk at 192.168.1.1 then giving the flag
Simon Kelleyb8187c82005-11-26 21:46:27 +0000360.B -S /internal.thekelleys.org.uk/192.168.1.1
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000361will send all queries for
362internal machines to that nameserver, everything else will go to the
363servers in /etc/resolv.conf. An empty domain specification,
364.B //
365has the special meaning of "unqualified names only" ie names without any
366dots in them. A non-standard port may be specified as
367part of the IP
368address using a # character.
369More than one -S flag is allowed, with
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100370repeated domain or ipaddr parts as required.
371
372More specific domains take precendence over less specific domains, so:
373.B --server=/google.com/1.2.3.4
374.B --server=/www.google.com/2.3.4.5
375will send queries for *.google.com to 1.2.3.4, except *www.google.com,
376which will go to 2.3.4.5
377
378The special server address '#' means, "use the standard servers", so
379.B --server=/google.com/1.2.3.4
380.B --server=/www.google.com/#
381will send queries for *.google.com to 1.2.3.4, except *www.google.com which will
382be forwarded as usual.
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000383
384Also permitted is a -S
385flag which gives a domain but no IP address; this tells dnsmasq that
386a domain is local and it may answer queries from /etc/hosts or DHCP
387but should never forward queries on that domain to any upstream
388servers.
389.B local
390is a synonym for
391.B server
392to make configuration files clearer in this case.
393
Simon Kelley7de060b2011-08-26 17:24:52 +0100394IPv6 addresses may include a %interface scope-id, eg
395fe80::202:a412:4512:7bbf%eth0.
396
Simon Kelley824af852008-02-12 20:43:05 +0000397The optional string after the @ character tells
398dnsmasq how to set the source of the queries to this
399nameserver. It should be an ip-address, which should belong to the machine on which
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000400dnsmasq is running otherwise this server line will be logged and then
Simon Kelley824af852008-02-12 20:43:05 +0000401ignored, or an interface name. If an interface name is given, then
402queries to the server will be forced via that interface; if an
403ip-address is given then the source address of the queries will be set
404to that address.
405The query-port flag is ignored for any servers which have a
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000406source address specified but the port may be specified directly as
Simon Kelley824af852008-02-12 20:43:05 +0000407part of the source address. Forcing queries to an interface is not
408implemented on all platforms supported by dnsmasq.
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000409.TP
410.B \-A, --address=/<domain>/[domain/]<ipaddr>
411Specify an IP address to return for any host in the given domains.
412Queries in the domains are never forwarded and always replied to
413with the specified IP address which may be IPv4 or IPv6. To give
414both IPv4 and IPv6 addresses for a domain, use repeated -A flags.
415Note that /etc/hosts and DHCP leases override this for individual
416names. A common use of this is to redirect the entire doubleclick.net
Simon Kelleya2226412004-05-13 20:27:08 +0100417domain to some friendly local web server to avoid banner ads. The
418domain specification works in the same was as for --server, with the
419additional facility that /#/ matches any domain. Thus
420--address=/#/1.2.3.4 will always return 1.2.3.4 for any query not
421answered from /etc/hosts or DHCP and not sent to an upstream
422nameserver by a more specific --server directive.
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000423.TP
Jason A. Donenfeld13d86c72013-02-22 18:20:53 +0000424.B --ipset=/<domain>/[domain/]<ipset>[,<ipset>]
425Places the resolved IP addresses of queries for the specified domains
426in the specified netfilter ip sets. Domains and subdomains are matched
427in the same way as --address. These ip sets must already exist. See
428ipset(8) for more details.
429.TP
Simon Kelleyf6b7dc42005-01-23 12:06:08 +0000430.B \-m, --mx-host=<mx name>[[,<hostname>],<preference>]
Simon Kelleyde379512004-06-22 20:23:33 +0100431Return an MX record named <mx name> pointing to the given hostname (if
432given), or
433the host specified in the --mx-target switch
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000434or, if that switch is not given, the host on which dnsmasq
Simon Kelleyf6b7dc42005-01-23 12:06:08 +0000435is running. The default is useful for directing mail from systems on a LAN
436to a central server. The preference value is optional, and defaults to
4371 if not given. More than one MX record may be given for a host.
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000438.TP
439.B \-t, --mx-target=<hostname>
Simon Kelleyf6b7dc42005-01-23 12:06:08 +0000440Specify the default target for the MX record returned by dnsmasq. See
441--mx-host. If --mx-target is given, but not --mx-host, then dnsmasq
442returns a MX record containing the MX target for MX queries on the
443hostname of the machine on which dnsmasq is running.
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000444.TP
445.B \-e, --selfmx
446Return an MX record pointing to itself for each local
447machine. Local machines are those in /etc/hosts or with DHCP leases.
448.TP
449.B \-L, --localmx
450Return an MX record pointing to the host given by mx-target (or the
451machine on which dnsmasq is running) for each
452local machine. Local machines are those in /etc/hosts or with DHCP
453leases.
454.TP
Simon Kelleyf6b7dc42005-01-23 12:06:08 +0000455.B \-W, --srv-host=<_service>.<_prot>.[<domain>],[<target>[,<port>[,<priority>[,<weight>]]]]
456Return a SRV DNS record. See RFC2782 for details. If not supplied, the
457domain defaults to that given by
458.B --domain.
459The default for the target domain is empty, and the default for port
460is one and the defaults for
461weight and priority are zero. Be careful if transposing data from BIND
462zone files: the port, weight and priority numbers are in a different
463order. More than one SRV record for a given service/domain is allowed,
Simon Kelley3d8df262005-08-29 12:19:27 +0100464all that match are returned.
Simon Kelleyf6b7dc42005-01-23 12:06:08 +0000465.TP
Simon Kelleye46164e2012-04-16 16:39:38 +0100466.B --host-record=<name>[,<name>....][<IPv4-address>],[<IPv6-address>]
Simon Kelleye759d422012-03-16 13:18:57 +0000467Add A, AAAA and PTR records to the DNS. This adds one or more names to
468the DNS with associated IPv4 (A) and IPv6 (AAAA) records. A name may
469appear in more than one
470.B host-record
471and therefore be assigned more than one address. Only the first
472address creates a PTR record linking the address to the name. This is
473the same rule as is used reading hosts-files.
474.B host-record
475options are considered to be read before host-files, so a name
476appearing there inhibits PTR-record creation if it appears in
Simon Kelleye46164e2012-04-16 16:39:38 +0100477hosts-file also. Unlike hosts-files, names are not expanded, even when
Simon Kelleye759d422012-03-16 13:18:57 +0000478.B expand-hosts
479is in effect. Short and long names may appear in the same
Simon Kelleye46164e2012-04-16 16:39:38 +0100480.B host-record,
481eg.
482.B --host-record=laptop,laptop.thekelleys.org,192.168.0.1,1234::100
Simon Kelleye759d422012-03-16 13:18:57 +0000483.TP
Simon Kelley0a852542005-03-23 20:28:59 +0000484.B \-Y, --txt-record=<name>[[,<text>],<text>]
485Return a TXT DNS record. The value of TXT record is a set of strings,
Simon Kelley28866e92011-02-14 20:19:14 +0000486so any number may be included, delimited by commas; use quotes to put
487commas into a string. Note that the maximum length of a single string
488is 255 characters, longer strings are split into 255 character chunks.
Simon Kelley0a852542005-03-23 20:28:59 +0000489.TP
Simon Kelley832af0b2007-01-21 20:01:28 +0000490.B --ptr-record=<name>[,<target>]
491Return a PTR DNS record.
492.TP
Simon Kelley1a6bca82008-07-11 11:11:42 +0100493.B --naptr-record=<name>,<order>,<preference>,<flags>,<service>,<regexp>[,<replacement>]
494Return an NAPTR DNS record, as specified in RFC3403.
495.TP
Simon Kelley9009d742008-11-14 20:04:27 +0000496.B --cname=<cname>,<target>
497Return a CNAME record which indicates that <cname> is really
498<target>. There are significant limitations on the target; it must be a
499DNS name which is known to dnsmasq from /etc/hosts (or additional
Simon Kelley611ebc52012-07-16 16:23:46 +0100500hosts files), from DHCP or from another
501.B --cname.
502If the target does not satisfy this
Simon Kelley9009d742008-11-14 20:04:27 +0000503criteria, the whole cname is ignored. The cname must be unique, but it
504is permissable to have more than one cname pointing to the same target.
505.TP
Simon Kelley9f7f3b12012-05-28 21:39:57 +0100506.B --dns-rr=<name>,<RR-number>,[<hex data>]
507Return an arbitrary DNS Resource Record. The number is the type of the
508record (which is always in the C_IN class). The value of the record is
Simon Kelleya2ce6fc2012-08-06 20:05:48 +0100509given 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 +0100510012345 or any mixture of these.
511.TP
Simon Kelleyf2621c72007-04-29 19:47:21 +0100512.B --interface-name=<name>,<interface>
513Return a DNS record associating the name with the primary address on
514the given interface. This flag specifies an A record for the given
515name in the same way as an /etc/hosts line, except that the address is
516not constant, but taken from the given interface. If the interface is
Simon Kelley9e038942008-05-30 20:06:34 +0100517down, not configured or non-existent, an empty record is returned. The
Simon Kelleyf2621c72007-04-29 19:47:21 +0100518matching PTR record is also created, mapping the interface address to
519the name. More than one name may be associated with an interface
520address by repeating the flag; in that case the first instance is used
521for the reverse address-to-name mapping.
522.TP
Simon Kelley48fd1c42013-04-25 09:49:38 +0100523.B --synth-domain=<domain>,<address range>[,<prefix>]
Simon Kelley2bb73af2013-04-24 17:38:19 +0100524Create artificial A/AAAA and PTR records for an address range. The
525records use the address, with periods (or colons for IPv6) replaced
526with dashes.
527
528An example should make this clearer.
Simon Kelley48fd1c42013-04-25 09:49:38 +0100529.B --synth-domain=thekelleys.org.uk,192.168.0.0/24,internal-
530will result in a query for internal-192-168-0-56.thekelleys.org.uk returning
531192.168.0.56 and a reverse query vice versa. The same applies to IPv6,
532but IPv6 addresses may start with '::'
533but DNS labels may not start with '-' so in this case if no prefix is
534configured a zero is added in front of the label. ::1 becomes 0--1.
Simon Kelley2bb73af2013-04-24 17:38:19 +0100535
536The address range can be of the form
537<ip address>,<ip address> or <ip address>/<netmask>
538.TP
Simon Kelley28866e92011-02-14 20:19:14 +0000539.B --add-mac
540Add the MAC address of the requestor to DNS queries which are
541forwarded upstream. This may be used to DNS filtering by the upstream
542server. The MAC address can only be added if the requestor is on the same
543subnet as the dnsmasq server. Note that the mechanism used to achieve this (an EDNS0 option)
544is not yet standardised, so this should be considered
545experimental. Also note that exposing MAC addresses in this way may
546have security and privacy implications.
547.TP
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000548.B \-c, --cache-size=<cachesize>
549Set the size of dnsmasq's cache. The default is 150 names. Setting the cache size to zero disables caching.
550.TP
551.B \-N, --no-negcache
552Disable negative caching. Negative caching allows dnsmasq to remember
553"no such domain" answers from upstream nameservers and answer
Simon Kelley5aabfc72007-08-29 11:24:47 +0100554identical queries without forwarding them again.
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000555.TP
Simon Kelley16972692006-10-16 20:04:18 +0100556.B \-0, --dns-forward-max=<queries>
557Set the maximum number of concurrent DNS queries. The default value is
558150, which should be fine for most setups. The only known situation
559where this needs to be increased is when using web-server log file
560resolvers, which can generate large numbers of concurrent queries.
Simon Kelley208b65c2006-08-05 21:41:37 +0100561.TP
Simon Kelley28866e92011-02-14 20:19:14 +0000562.B --proxy-dnssec
563A resolver on a client machine can do DNSSEC validation in two ways: it
564can perform the cryptograhic operations on the reply it receives, or
565it can rely on the upstream recursive nameserver to do the validation
566and set a bit in the reply if it succeeds. Dnsmasq is not a DNSSEC
567validator, so it cannot perform the validation role of the recursive nameserver,
568but it can pass through the validation results from its own upstream
569nameservers. This option enables this behaviour. You should only do
570this if you trust all the configured upstream nameservers
571.I and the network between you and them.
572If you use the first DNSSEC mode, validating resolvers in clients,
573this option is not required. Dnsmasq always returns all the data
574needed for a client to do validation itself.
575.TP
Simon Kelleybaa80ae2013-05-29 16:32:07 +0100576.B --auth-zone=<domain>[,<subnet>[/<prefix length>][,<subnet>[/<prefix length>].....]]
Simon Kelley34d0a362013-01-02 11:40:56 +0000577Define a DNS zone for which dnsmasq acts as authoritative server. Locally defined DNS records which are in the domain
Simon Kelley921360c2013-05-31 14:07:22 +0100578will be served. A and AAAA records must be in one of the
Tomas Hozzaa66d36e2013-04-22 15:08:07 +0100579specified subnets, or in a subnet corresponding to a constructed DHCP
Simon Kelley921360c2013-05-31 14:07:22 +0100580range. (This can be overridden with
581.B constructor-noauth:
582) The subnet(s) are also used to define in-addr.arpa and
Simon Kelleybaa80ae2013-05-29 16:32:07 +0100583ipv6.arpa domains which are served for reverse-DNS queries. If not
584specified, the prefix length defaults to 24 for IPv4 and 64 for IPv6.
585For IPv4 subnets, the prefix length should be have the value 8, 16 or 24
586unless you are familiar with RFC 2317 and have arranged the
587in-addr.arpa delegation accordingly.
Simon Kelley333b2ce2013-01-07 21:46:03 +0000588.TP
589.B --auth-soa=<serial>[,<hostmaster>[,<refresh>[,<retry>[,<expiry>]]]]
590Specify fields in the SOA record associated with authoritative
591zones. Note that this is optional, all the values are set to sane defaults.
592.TP
593.B --auth-sec-servers=<domain>[,<domain>[,<domain>...]]
594Specify any secondary servers for a zone for which dnsmasq is
595authoritative. These servers must be configured to get zone data from
596dnsmasq by zone transfer, and answer queries for the same
Simon Kelley6f130de2013-04-15 14:47:14 +0100597authoritative zones as dnsmasq.
Simon Kelley333b2ce2013-01-07 21:46:03 +0000598.TP
599.B --auth-peer=<ip-address>[,<ip-address>[,<ip-address>...]]
600Specify the addresses of secondary servers which are allowed to
601initiate zone transfer (AXFR) requests for zones for which dnsmasq is
Simon Kelley6f130de2013-04-15 14:47:14 +0100602authoritative. If this option is not given, then AXFR requests will be
Simon Kelley333b2ce2013-01-07 21:46:03 +0000603accepted from any secondary.
604.TP
Simon Kelley7de060b2011-08-26 17:24:52 +0100605.B --conntrack
606Read the Linux connection track mark associated with incoming DNS
607queries and set the same mark value on upstream traffic used to answer
608those queries. This allows traffic generated by dnsmasq to be
609associated with the queries which cause it, useful for bandwidth
610accounting and firewalling. Dnsmasq must have conntrack support
611compiled in and the kernel must have conntrack support
612included and configured. This option cannot be combined with
613--query-port.
614.TP
Simon Kelley49dc5702013-04-02 20:27:07 +0100615.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 +0000616.TP
Simon Kelley83f28be2013-04-03 14:46:46 +0100617.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 +0000618
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000619Enable the DHCP server. Addresses will be given out from the range
Simon Kelley44a2a312004-03-10 20:04:35 +0000620<start-addr> to <end-addr> and from statically defined addresses given
621in
622.B dhcp-host
623options. If the lease time is given, then leases
Simon Kelleyb8187c82005-11-26 21:46:27 +0000624will be given for that length of time. The lease time is in seconds,
Simon Kelley7622fc02009-06-04 20:32:05 +0100625or minutes (eg 45m) or hours (eg 1h) or "infinite". If not given,
626the default lease time is one hour. The
Simon Kelleyc8257542012-03-28 21:15:41 +0100627minimum lease time is two minutes. For IPv6 ranges, the lease time
628maybe "deprecated"; this sets the preferred lifetime sent in a DHCP
629lease or router advertisement to zero, which causes clients to use
630other addresses, if available, for new connections as a prelude to renumbering.
631
632This option may be repeated, with different addresses, to enable DHCP
Simon Kelley44a2a312004-03-10 20:04:35 +0000633service to more than one network. For directly connected networks (ie,
634networks on which the machine running dnsmasq has an interface) the
Simon Kelley7de060b2011-08-26 17:24:52 +0100635netmask is optional: dnsmasq will determine it from the interface
636configuration. For networks which receive DHCP service via a relay
637agent, dnsmasq cannot determine the netmask itself, so it should be
638specified, otherwise dnsmasq will have to guess, based on the class (A, B or
639C) of the network address. The broadcast address is
Simon Kelley7622fc02009-06-04 20:32:05 +0100640always optional. It is always
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100641allowed to have more than one dhcp-range in a single subnet.
642
Simon Kelley1adadf52012-02-13 22:15:58 +0000643For IPv6, the parameters are slightly different: instead of netmask
644and broadcast address, there is an optional prefix length. If not
645given, this defaults to 64. Unlike the IPv4 case, the prefix length is not
646automatically derived from the interface configuration. The mimimum
647size of the prefix length is 64.
648
Simon Kelley34d0a362013-01-02 11:40:56 +0000649IPv6 (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
650.B constructor:<interface>.
651This forms a template which describes how to create ranges, based on the addresses assigned to the interface. For instance
652
Simon Kelley83f28be2013-04-03 14:46:46 +0100653.B --dhcp-range=::1,::400,constructor:eth0
Simon Kelley34d0a362013-01-02 11:40:56 +0000654
Simon Kelley429805d2013-05-31 13:47:26 +0100655will look for addresses of the form <network>::1 or <network>:400 on
656eth0 and then create a range from <network>::1 to <network>::400. If
657the interface is assigned more than one network, then the
658corresponding ranges will be automatically created, and then
659deprecated and finally removed again as the address is deprecated and
660then deleted. The interface name may have a final "*" wildcard. Note
661that just any address on eth0 will not do: the non-prefix part must be
662equal either the start or end address given in the dhcp-range. This is
663to prevent prefixes becoming perpetual if the interface
664gains a SLAAC address for the prefix when it is advertised by dnsmasq.
Simon Kelley34d0a362013-01-02 11:40:56 +0000665
Vladislav Grishenkoe4cdbbf2013-08-19 16:20:31 +0100666If a dhcp-range is only being used for stateless DHCP and/or SLAAC,
667then the address can be simply ::
668
669.B --dhcp-range=::,constructor:eth0
670
671This removes the condition above, and will pick up the prefix from any address on eth0 which is NOT
672autoconfigured, slaac, temporary or deprecated.
673
Simon Kelley921360c2013-05-31 14:07:22 +0100674There is a variant of the constructor: syntax using the keyword
675.B constructor-noauth.
676See
677.B --auth-zone
678for an explanation of this.
679
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100680The optional
681.B set:<tag>
682sets an alphanumeric label which marks this network so that
Simon Kelley0a852542005-03-23 20:28:59 +0000683dhcp options may be specified on a per-network basis.
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100684When it is prefixed with 'tag:' instead, then its meaning changes from setting
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000685a tag to matching it. Only one tag may be set, but more than one tag
686may be matched.
687
Simon Kelleye8ca69e2012-03-26 21:23:26 +0100688The optional <mode> keyword may be
Simon Kelley33820b72004-04-03 21:10:00 +0100689.B static
690which tells dnsmasq to enable DHCP for the network specified, but not
Simon Kelley7622fc02009-06-04 20:32:05 +0100691to dynamically allocate IP addresses: only hosts which have static
Simon Kelley33820b72004-04-03 21:10:00 +0100692addresses given via
693.B dhcp-host
Simon Kelley52002052012-10-26 11:39:02 +0100694or from /etc/ethers will be served. A static-only subnet with address
695all zeros may be used as a "catch-all" address to enable replies to all
696Information-request packets on a subnet which is provided with
697stateless DHCPv6, ie
698.B --dhcp=range=::,static
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000699
Simon Kelleye46164e2012-04-16 16:39:38 +0100700For IPv4, the <mode> may be
Simon Kelley7622fc02009-06-04 20:32:05 +0100701.B proxy
702in which case dnsmasq will provide proxy-DHCP on the specified
703subnet. (See
704.B pxe-prompt
705and
706.B pxe-service
Simon Kelleye8ca69e2012-03-26 21:23:26 +0100707for details.)
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100708
Simon Kelleye8ca69e2012-03-26 21:23:26 +0100709For IPv6, the mode may be some combination of
710.B ra-only, slaac, ra-names, ra-stateless.
711
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000712.B ra-only
Simon Kelleye8ca69e2012-03-26 21:23:26 +0100713tells dnsmasq to offer Router Advertisement only on this subnet,
714and not DHCP.
715
716.B slaac
717tells dnsmasq to offer Router Advertisement on this subnet and to set
718the A bit in the router advertisement, so that the client will use
719SLAAC addresses. When used with a DHCP range or static DHCP address
720this results in the client having both a DHCP-assigned and a SLAAC
721address.
722
723.B ra-stateless
724sends router advertisements with the O and A bits set, and provides a
725stateless DHCP service. The client will use a SLAAC address, and use
726DHCP for other configuration information.
727
Simon Kelley7023e382012-03-09 12:05:49 +0000728.B ra-names
Simon Kelleye8ca69e2012-03-26 21:23:26 +0100729enables a mode
Simon Kelley7023e382012-03-09 12:05:49 +0000730which gives DNS names to dual-stack hosts which do SLAAC for
Simon Kelley884a6df2012-03-20 16:20:22 +0000731IPv6. Dnsmasq uses the host's IPv4 lease to derive the name, network
Simon Kelley7023e382012-03-09 12:05:49 +0000732segment and MAC address and assumes that the host will also have an
Simon Kelleye46164e2012-04-16 16:39:38 +0100733IPv6 address calculated using the SLAAC algorithm, on the same network
Simon Kelley884a6df2012-03-20 16:20:22 +0000734segment. The address is pinged, and if a reply is received, an AAAA
735record is added to the DNS for this IPv6
Simon Kelley7023e382012-03-09 12:05:49 +0000736address. Note that this is only happens for directly-connected
Simon Kelley884a6df2012-03-20 16:20:22 +0000737networks, (not one doing DHCP via a relay) and it will not work
738if a host is using privacy extensions.
Simon Kelleye8ca69e2012-03-26 21:23:26 +0100739.B ra-names
740can be combined with
741.B ra-stateless
742and
743.B slaac.
Simon Kelleyc5ad4e72012-02-24 16:06:20 +0000744
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000745.TP
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100746.B \-G, --dhcp-host=[<hwaddr>][,id:<client_id>|*][,set:<tag>][,<ipaddr>][,<hostname>][,<lease_time>][,ignore]
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000747Specify per host parameters for the DHCP server. This allows a machine
748with a particular hardware address to be always allocated the same
749hostname, IP address and lease time. A hostname specified like this
750overrides any supplied by the DHCP client on the machine. It is also
Simon Kelleyc72daea2012-01-05 21:33:27 +0000751allowable to omit the hardware address and include the hostname, in
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000752which case the IP address and lease times will apply to any machine
753claiming that name. For example
754.B --dhcp-host=00:20:e0:3b:13:af,wap,infinite
755tells dnsmasq to give
Simon Kelleycdeda282006-03-16 20:16:06 +0000756the machine with hardware address 00:20:e0:3b:13:af the name wap, and
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000757an infinite DHCP lease.
758.B --dhcp-host=lap,192.168.0.199
759tells
760dnsmasq to always allocate the machine lap the IP address
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100761192.168.0.199.
762
763Addresses allocated like this are not constrained to be
764in the range given by the --dhcp-range option, but they must be in
765the same subnet as some valid dhcp-range. For
766subnets which don't need a pool of dynamically allocated addresses,
767use the "static" keyword in the dhcp-range declaration.
768
769It is allowed to use client identifiers rather than
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000770hardware addresses to identify hosts by prefixing with 'id:'. Thus:
771.B --dhcp-host=id:01:02:03:04,.....
772refers to the host with client identifier 01:02:03:04. It is also
773allowed to specify the client ID as text, like this:
Simon Kelleya84fa1d2004-04-23 22:21:21 +0100774.B --dhcp-host=id:clientidastext,.....
Simon Kelley9009d742008-11-14 20:04:27 +0000775
Simon Kelley1adadf52012-02-13 22:15:58 +0000776A single
777.B dhcp-host
778may contain an IPv4 address or an IPv6 address, or both. IPv6 addresses must be bracketed by square brackets thus:
779.B --dhcp-host=laptop,[1234::56]
Simon Kelley30393102013-01-17 16:34:16 +0000780IPv6 addresses may contain only the host-identifier part:
781.B --dhcp-host=laptop,[::56]
Simon Kelley6f130de2013-04-15 14:47:14 +0100782in which case they act as wildcards in constructed dhcp ranges, with
Simon Kelley30393102013-01-17 16:34:16 +0000783the appropriate network part inserted.
784Note that in IPv6 DHCP, the hardware address is not normally
785available, so a client must be identified by client-id (called client
786DUID in IPv6-land) or hostname.
Simon Kelley1adadf52012-02-13 22:15:58 +0000787
Simon Kelleya84fa1d2004-04-23 22:21:21 +0100788The special option id:* means "ignore any client-id
789and use MAC addresses only." This is useful when a client presents a client-id sometimes
790but not others.
Simon Kelley9009d742008-11-14 20:04:27 +0000791
Simon Kelley1ab84e22004-01-29 16:48:35 +0000792If a name appears in /etc/hosts, the associated address can be
793allocated to a DHCP lease, but only if a
794.B --dhcp-host
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100795option specifying the name also exists. Only one hostname can be
796given in a
797.B dhcp-host
798option, but aliases are possible by using CNAMEs. (See
799.B --cname
800).
801
802The special keyword "ignore"
Simon Kelley33820b72004-04-03 21:10:00 +0100803tells dnsmasq to never offer a DHCP lease to a machine. The machine
804can be specified by hardware address, client ID or hostname, for
805instance
806.B --dhcp-host=00:20:e0:3b:13:af,ignore
807This is
808useful when there is another DHCP server on the network which should
Simon Kelley9009d742008-11-14 20:04:27 +0000809be used by some machines.
810
Tomas Hozzaa66d36e2013-04-22 15:08:07 +0100811The set:<tag> construct sets the tag
Simon Kelley9009d742008-11-14 20:04:27 +0000812whenever this dhcp-host directive is in use. This can be used to
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100813selectively send DHCP options just for this host. More than one tag
814can be set in a dhcp-host directive (but not in other places where
815"set:<tag>" is allowed). When a host matches any
Simon Kelley5aabfc72007-08-29 11:24:47 +0100816dhcp-host directive (or one implied by /etc/ethers) then the special
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100817tag "known" is set. This allows dnsmasq to be configured to
Simon Kelley5aabfc72007-08-29 11:24:47 +0100818ignore requests from unknown machines using
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100819.B --dhcp-ignore=tag:!known
Simon Kelley0a852542005-03-23 20:28:59 +0000820Ethernet addresses (but not client-ids) may have
821wildcard bytes, so for example
822.B --dhcp-host=00:20:e0:3b:13:*,ignore
Simon Kelleycdeda282006-03-16 20:16:06 +0000823will cause dnsmasq to ignore a range of hardware addresses. Note that
Simon Kelley0a852542005-03-23 20:28:59 +0000824the "*" will need to be escaped or quoted on a command line, but not
Simon Kelley9009d742008-11-14 20:04:27 +0000825in the configuration file.
826
827Hardware addresses normally match any
Simon Kelleycdeda282006-03-16 20:16:06 +0000828network (ARP) type, but it is possible to restrict them to a single
829ARP type by preceding them with the ARP-type (in HEX) and "-". so
830.B --dhcp-host=06-00:20:e0:3b:13:af,1.2.3.4
831will only match a
832Token-Ring hardware address, since the ARP-address type for token ring
Simon Kelley9009d742008-11-14 20:04:27 +0000833is 6.
834
Simon Kelley1adadf52012-02-13 22:15:58 +0000835As a special case, in DHCPv4, it is possible to include more than one
Simon Kelley73a08a22009-02-05 20:28:08 +0000836hardware address. eg:
837.B --dhcp-host=11:22:33:44:55:66,12:34:56:78:90:12,192.168.0.2
838This allows an IP address to be associated with
Simon Kelley9009d742008-11-14 20:04:27 +0000839multiple hardware addresses, and gives dnsmasq permission to abandon a
840DHCP lease to one of the hardware addresses when another one asks for
841a lease. Beware that this is a dangerous thing to do, it will only
842work reliably if only one of the hardware addresses is active at any
Simon Kelley73a08a22009-02-05 20:28:08 +0000843time and there is no way for dnsmasq to enforce this. It is, for instance,
844useful to allocate a stable IP address to a laptop which
Simon Kelley9009d742008-11-14 20:04:27 +0000845has both wired and wireless interfaces.
Simon Kelley5aabfc72007-08-29 11:24:47 +0100846.TP
Simon Kelley28866e92011-02-14 20:19:14 +0000847.B --dhcp-hostsfile=<path>
848Read DHCP host information from the specified file. If a directory
849is given, then read all the files contained in that directory. The file contains
Simon Kelley5aabfc72007-08-29 11:24:47 +0100850information about one host per line. The format of a line is the same
851as text to the right of '=' in --dhcp-host. The advantage of storing DHCP host information
852in this file is that it can be changed without re-starting dnsmasq:
853the file will be re-read when dnsmasq receives SIGHUP.
Simon Kelley824af852008-02-12 20:43:05 +0000854.TP
Simon Kelley28866e92011-02-14 20:19:14 +0000855.B --dhcp-optsfile=<path>
856Read DHCP option information from the specified file. If a directory
857is given, then read all the files contained in that directory. The advantage of
Simon Kelley824af852008-02-12 20:43:05 +0000858using this option is the same as for --dhcp-hostsfile: the
Simon Kelley1f15b812009-10-13 17:49:32 +0100859dhcp-optsfile will be re-read when dnsmasq receives SIGHUP. Note that
860it is possible to encode the information in a
861.B --dhcp-boot
862flag as DHCP options, using the options names bootfile-name,
863server-ip-address and tftp-server. This allows these to be included
864in a dhcp-optsfile.
Simon Kelley44a2a312004-03-10 20:04:35 +0000865.TP
866.B \-Z, --read-ethers
867Read /etc/ethers for information about hosts for the DHCP server. The
868format of /etc/ethers is a hardware address, followed by either a
869hostname or dotted-quad IP address. When read by dnsmasq these lines
870have exactly the same effect as
871.B --dhcp-host
Simon Kelley5aabfc72007-08-29 11:24:47 +0100872options containing the same information. /etc/ethers is re-read when
Simon Kelley1adadf52012-02-13 22:15:58 +0000873dnsmasq receives SIGHUP. IPv6 addresses are NOT read from /etc/ethers.
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000874.TP
Simon Kelley1adadf52012-02-13 22:15:58 +0000875.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 +0000876Specify different or extra options to DHCP clients. By default,
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000877dnsmasq sends some standard options to DHCP clients, the netmask and
878broadcast address are set to the same as the host running dnsmasq, and
879the DNS server and default route are set to the address of the machine
Simon Kelley1adadf52012-02-13 22:15:58 +0000880running dnsmasq. (Equivalent rules apply for IPv6.) If the domain name option has been set, that is sent.
Simon Kelleyf2621c72007-04-29 19:47:21 +0100881This configuration allows these defaults to be overridden,
882or other options specified. The option, to be sent may be given as a
883decimal number or as "option:<option-name>" The option numbers are
884specified in RFC2132 and subsequent RFCs. The set of option-names
885known by dnsmasq can be discovered by running "dnsmasq --help dhcp".
886For example, to set the default route option to
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000887192.168.4.4, do
Simon Kelleyf2621c72007-04-29 19:47:21 +0100888.B --dhcp-option=3,192.168.4.4
889or
890.B --dhcp-option = option:router, 192.168.4.4
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000891and to set the time-server address to 192.168.0.4, do
Simon Kelleyf2621c72007-04-29 19:47:21 +0100892.B --dhcp-option = 42,192.168.0.4
893or
894.B --dhcp-option = option:ntp-server, 192.168.0.4
Simon Kelley0010b472012-02-29 12:18:30 +0000895The special address 0.0.0.0 (or [::] for DHCPv6) is taken to mean "the address of the
Simon Kelleyf6b7dc42005-01-23 12:06:08 +0000896machine running dnsmasq". Data types allowed are comma separated
897dotted-quad IP addresses, a decimal number, colon-separated hex digits
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100898and a text string. If the optional tags are given then
899this option is only sent when all the tags are matched.
Simon Kelley91dccd02005-03-31 17:48:32 +0100900
Simon Kelleycdeda282006-03-16 20:16:06 +0000901Special processing is done on a text argument for option 119, to
Simon Kelley832af0b2007-01-21 20:01:28 +0000902conform with RFC 3397. Text or dotted-quad IP addresses as arguments
903to option 120 are handled as per RFC 3361. Dotted-quad IP addresses
904which are followed by a slash and then a netmask size are encoded as
905described in RFC 3442.
Simon Kelleycdeda282006-03-16 20:16:06 +0000906
Simon Kelley1adadf52012-02-13 22:15:58 +0000907IPv6 options are specified using the
908.B option6:
909keyword, followed by the option number or option name. The IPv6 option
910name space is disjoint from the IPv4 option name space. IPv6 addresses
911in options must be bracketed with square brackets, eg.
912.B --dhcp-option=option6:ntp-server,[1234::56]
913
914
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000915Be careful: no checking is done that the correct type of data for the
Simon Kelley26128d22004-11-14 16:43:54 +0000916option number is sent, it is quite possible to
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000917persuade dnsmasq to generate illegal DHCP packets with injudicious use
Simon Kelley91dccd02005-03-31 17:48:32 +0100918of this flag. When the value is a decimal number, dnsmasq must determine how
919large the data item is. It does this by examining the option number and/or the
Simon Kelleyb8187c82005-11-26 21:46:27 +0000920value, but can be overridden by appending a single letter flag as follows:
Simon Kelley91dccd02005-03-31 17:48:32 +0100921b = one byte, s = two bytes, i = four bytes. This is mainly useful with
Simon Kelley3d8df262005-08-29 12:19:27 +0100922encapsulated vendor class options (see below) where dnsmasq cannot
923determine data size from the option number. Option data which
924consists solely of periods and digits will be interpreted by dnsmasq
925as an IP address, and inserted into an option as such. To force a
926literal string, use quotes. For instance when using option 66 to send
927a literal IP address as TFTP server name, it is necessary to do
928.B --dhcp-option=66,"1.2.3.4"
Simon Kelley91dccd02005-03-31 17:48:32 +0100929
Simon Kelley1adadf52012-02-13 22:15:58 +0000930Encapsulated Vendor-class options may also be specified (IPv4 only) using
Simon Kelley91dccd02005-03-31 17:48:32 +0100931--dhcp-option: for instance
Simon Kelley1b7ecd12007-02-05 14:57:57 +0000932.B --dhcp-option=vendor:PXEClient,1,0.0.0.0
933sends the encapsulated vendor
934class-specific option "mftp-address=0.0.0.0" to any client whose
935vendor-class matches "PXEClient". The vendor-class matching is
Simon Kelley6b010842007-02-12 20:32:07 +0000936substring based (see --dhcp-vendorclass for details). If a
937vendor-class option (number 60) is sent by dnsmasq, then that is used
938for selecting encapsulated options in preference to any sent by the
939client. It is
Simon Kelley1b7ecd12007-02-05 14:57:57 +0000940possible to omit the vendorclass completely;
941.B --dhcp-option=vendor:,1,0.0.0.0
Simon Kelley1adadf52012-02-13 22:15:58 +0000942in which case the encapsulated option is always sent.
Simon Kelley73a08a22009-02-05 20:28:08 +0000943
Simon Kelley1adadf52012-02-13 22:15:58 +0000944Options may be encapsulated (IPv4 only) within other options: for instance
Simon Kelley73a08a22009-02-05 20:28:08 +0000945.B --dhcp-option=encap:175, 190, "iscsi-client0"
946will send option 175, within which is the option 190. If multiple
947options are given which are encapsulated with the same option number
948then they will be correctly combined into one encapsulated option.
949encap: and vendor: are may not both be set in the same dhcp-option.
950
Simon Kelley316e2732010-01-22 20:16:09 +0000951The final variant on encapsulated options is "Vendor-Identifying
952Vendor Options" as specified by RFC3925. These are denoted like this:
953.B --dhcp-option=vi-encap:2, 10, "text"
954The number in the vi-encap: section is the IANA enterprise number
Simon Kelley1adadf52012-02-13 22:15:58 +0000955used to identify this option. This form of encapsulation is supported
956in IPv6.
957
Simon Kelley1b7ecd12007-02-05 14:57:57 +0000958The address 0.0.0.0 is not treated specially in
Simon Kelley73a08a22009-02-05 20:28:08 +0000959encapsulated options.
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000960.TP
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100961.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 +0000962This works in exactly the same way as
Simon Kelleyf2621c72007-04-29 19:47:21 +0100963.B --dhcp-option
964except that the option will always be sent, even if the client does
Simon Kelley6b010842007-02-12 20:32:07 +0000965not ask for it in the parameter request list. This is sometimes
966needed, for example when sending options to PXELinux.
967.TP
Simon Kelley824af852008-02-12 20:43:05 +0000968.B --dhcp-no-override
Simon Kelley1adadf52012-02-13 22:15:58 +0000969(IPv4 only) Disable re-use of the DHCP servername and filename fields as extra
Simon Kelley824af852008-02-12 20:43:05 +0000970option space. If it can, dnsmasq moves the boot server and filename
971information (from dhcp-boot) out of their dedicated fields into
972DHCP options. This make extra space available in the DHCP packet for
973options but can, rarely, confuse old or broken clients. This flag
974forces "simple and safe" behaviour to avoid problems in such a case.
975.TP
Simon Kelley1adadf52012-02-13 22:15:58 +0000976.B \-U, --dhcp-vendorclass=set:<tag>,[enterprise:<IANA-enterprise number>,]<vendor-class>
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100977Map from a vendor-class string to a tag. Most DHCP clients provide a
Simon Kelleya2226412004-05-13 20:27:08 +0100978"vendor class" which represents, in some sense, the type of host. This option
Simon Kelleyf2621c72007-04-29 19:47:21 +0100979maps vendor classes to tags, so that DHCP options may be selectively delivered
Simon Kelleya84fa1d2004-04-23 22:21:21 +0100980to different classes of hosts. For example
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100981.B dhcp-vendorclass=set:printers,Hewlett-Packard JetDirect
Simon Kelleya84fa1d2004-04-23 22:21:21 +0100982will allow options to be set only for HP printers like so:
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100983.B --dhcp-option=tag:printers,3,192.168.4.4
Simon Kelleya2226412004-05-13 20:27:08 +0100984The vendor-class string is
985substring matched against the vendor-class supplied by the client, to
Simon Kelley1adadf52012-02-13 22:15:58 +0000986allow fuzzy matching. The set: prefix is optional but allowed for
987consistency.
988
989Note that in IPv6 only, vendorclasses are namespaced with an
990IANA-allocated enterprise number. This is given with enterprise:
991keyword and specifies that only vendorclasses matching the specified
992number should be searched.
Simon Kelleya2226412004-05-13 20:27:08 +0100993.TP
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100994.B \-j, --dhcp-userclass=set:<tag>,<user-class>
995Map from a user-class string to a tag (with substring
Simon Kelleya2226412004-05-13 20:27:08 +0100996matching, like vendor classes). Most DHCP clients provide a
997"user class" which is configurable. This option
Simon Kelleyf2621c72007-04-29 19:47:21 +0100998maps user classes to tags, so that DHCP options may be selectively delivered
Simon Kelleya2226412004-05-13 20:27:08 +0100999to different classes of hosts. It is possible, for instance to use
1000this to set a different printer server for hosts in the class
1001"accounts" than for hosts in the class "engineering".
Simon Kelleya84fa1d2004-04-23 22:21:21 +01001002.TP
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001003.B \-4, --dhcp-mac=set:<tag>,<MAC address>
Simon Kelley1adadf52012-02-13 22:15:58 +00001004(IPv4 only) Map from a MAC address to a tag. The MAC address may include
Simon Kelleycdeda282006-03-16 20:16:06 +00001005wildcards. For example
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001006.B --dhcp-mac=set:3com,01:34:23:*:*:*
Simon Kelleycdeda282006-03-16 20:16:06 +00001007will set the tag "3com" for any host whose MAC address matches the pattern.
1008.TP
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001009.B --dhcp-circuitid=set:<tag>,<circuit-id>, --dhcp-remoteid=set:<tag>,<remote-id>
1010Map from RFC3046 relay agent options to tags. This data may
Simon Kelleyf2621c72007-04-29 19:47:21 +01001011be provided by DHCP relay agents. The circuit-id or remote-id is
1012normally given as colon-separated hex, but is also allowed to be a
1013simple string. If an exact match is achieved between the circuit or
Simon Kelley1adadf52012-02-13 22:15:58 +00001014agent ID and one provided by a relay agent, the tag is set.
1015
1016.B dhcp-remoteid
1017(but not dhcp-circuitid) is supported in IPv6.
Simon Kelleyf2621c72007-04-29 19:47:21 +01001018.TP
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001019.B --dhcp-subscrid=set:<tag>,<subscriber-id>
Simon Kelley1adadf52012-02-13 22:15:58 +00001020(IPv4 and IPv6) Map from RFC3993 subscriber-id relay agent options to tags.
Simon Kelley824af852008-02-12 20:43:05 +00001021.TP
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001022.B --dhcp-proxy[=<ip addr>]......
Simon Kelley07933802012-02-14 20:55:25 +00001023(IPv4 only) A normal DHCP relay agent is only used to forward the initial parts of
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001024a DHCP interaction to the DHCP server. Once a client is configured, it
1025communicates directly with the server. This is undesirable if the
Tomas Hozzaa66d36e2013-04-22 15:08:07 +01001026relay agent is adding extra information to the DHCP packets, such as
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001027that used by
1028.B dhcp-circuitid
1029and
1030.B dhcp-remoteid.
1031A full relay implementation can use the RFC 5107 serverid-override
1032option to force the DHCP server to use the relay as a full proxy, with all
1033packets passing through it. This flag provides an alternative method
1034of doing the same thing, for relays which don't support RFC
10355107. Given alone, it manipulates the server-id for all interactions
1036via relays. If a list of IP addresses is given, only interactions via
1037relays at those addresses are affected.
1038.TP
1039.B --dhcp-match=set:<tag>,<option number>|option:<option name>|vi-encap:<enterprise>[,<value>]
1040Without a value, set the tag if the client sends a DHCP
Simon Kelley73a08a22009-02-05 20:28:08 +00001041option of the given number or name. When a value is given, set the tag only if
1042the option is sent and matches the value. The value may be of the form
Tomas Hozzaa66d36e2013-04-22 15:08:07 +01001043"01:ff:*:02" in which case the value must match (apart from wildcards)
Simon Kelley73a08a22009-02-05 20:28:08 +00001044but the option sent may have unmatched data past the end of the
1045value. The value may also be of the same form as in
1046.B dhcp-option
1047in which case the option sent is treated as an array, and one element
1048must match, so
1049
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001050--dhcp-match=set:efi-ia32,option:client-arch,6
Simon Kelley73a08a22009-02-05 20:28:08 +00001051
1052will set the tag "efi-ia32" if the the number 6 appears in the list of
1053architectures sent by the client in option 93. (See RFC 4578 for
Simon Kelley316e2732010-01-22 20:16:09 +00001054details.) If the value is a string, substring matching is used.
1055
Tomas Hozzaa66d36e2013-04-22 15:08:07 +01001056The special form with vi-encap:<enterprise number> matches against
Simon Kelley316e2732010-01-22 20:16:09 +00001057vendor-identifying vendor classes for the specified enterprise. Please
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001058see RFC 3925 for more details of these rare and interesting beasts.
Simon Kelleyf2621c72007-04-29 19:47:21 +01001059.TP
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001060.B --tag-if=set:<tag>[,set:<tag>[,tag:<tag>[,tag:<tag>]]]
1061Perform boolean operations on tags. Any tag appearing as set:<tag> is set if
1062all the tags which appear as tag:<tag> are set, (or unset when tag:!<tag> is used)
1063If no tag:<tag> appears set:<tag> tags are set unconditionally.
1064Any number of set: and tag: forms may appear, in any order.
1065Tag-if lines ares executed in order, so if the tag in tag:<tag> is a
1066tag set by another
1067.B tag-if,
1068the line which sets the tag must precede the one which tests it.
1069.TP
1070.B \-J, --dhcp-ignore=tag:<tag>[,tag:<tag>]
1071When all the given tags appear in the tag set ignore the host and do
Simon Kelley26128d22004-11-14 16:43:54 +00001072not allocate it a DHCP lease.
1073.TP
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001074.B --dhcp-ignore-names[=tag:<tag>[,tag:<tag>]]
1075When all the given tags appear in the tag set, ignore any hostname
Simon Kelley9e038942008-05-30 20:06:34 +01001076provided by the host. Note that, unlike dhcp-ignore, it is permissible
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001077to supply no tags, in which case DHCP-client supplied hostnames
Simon Kelley832af0b2007-01-21 20:01:28 +00001078are always ignored, and DHCP hosts are added to the DNS using only
1079dhcp-host configuration in dnsmasq and the contents of /etc/hosts and
1080/etc/ethers.
1081.TP
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001082.B --dhcp-generate-names=tag:<tag>[,tag:<tag>]
Simon Kelley1adadf52012-02-13 22:15:58 +00001083(IPv4 only) Generate a name for DHCP clients which do not otherwise have one,
Tomas Hozzaa66d36e2013-04-22 15:08:07 +01001084using the MAC address expressed in hex, separated by dashes. Note that
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001085if a host provides a name, it will be used by preference to this,
1086unless
1087.B --dhcp-ignore-names
1088is set.
1089.TP
1090.B --dhcp-broadcast[=tag:<tag>[,tag:<tag>]]
Simon Kelley1adadf52012-02-13 22:15:58 +00001091(IPv4 only) When all the given tags appear in the tag set, always use broadcast to
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001092communicate with the host when it is unconfigured. It is permissible
1093to supply no tags, in which case this is unconditional. Most DHCP clients which
Simon Kelley824af852008-02-12 20:43:05 +00001094need broadcast replies set a flag in their requests so that this
1095happens automatically, some old BOOTP clients do not.
1096.TP
Simon Kelley7de060b2011-08-26 17:24:52 +01001097.B \-M, --dhcp-boot=[tag:<tag>,]<filename>,[<servername>[,<server address>|<tftp_servername>]]
Simon Kelley1adadf52012-02-13 22:15:58 +00001098(IPv4 only) Set BOOTP options to be returned by the DHCP server. Server name and
Simon Kelley832af0b2007-01-21 20:01:28 +00001099address are optional: if not provided, the name is left empty, and the
1100address set to the address of the machine running dnsmasq. If dnsmasq
1101is providing a TFTP service (see
1102.B --enable-tftp
1103) then only the filename is required here to enable network booting.
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001104If the optional tag(s) are given,
1105they must match for this configuration to be sent.
Simon Kelley7de060b2011-08-26 17:24:52 +01001106Instead of an IP address, the TFTP server address can be given as a domain
1107name which is looked up in /etc/hosts. This name can be associated in
1108/etc/hosts with multiple IP addresses, which are used round-robin.
1109This facility can be used to load balance the tftp load among a set of servers.
1110.TP
1111.B --dhcp-sequential-ip
1112Dnsmasq is designed to choose IP addresses for DHCP clients using a
1113hash of the client's MAC address. This normally allows a client's
1114address to remain stable long-term, even if the client sometimes allows its DHCP
1115lease to expire. In this default mode IP addresses are distributed
1116pseudo-randomly over the entire available address range. There are
1117sometimes circumstances (typically server deployment) where it is more
1118convenient to have IP
1119addresses allocated sequentially, starting from the lowest available
1120address, and setting this flag enables this mode. Note that in the
1121sequential mode, clients which allow a lease to expire are much more
1122likely to move IP address; for this reason it should not be generally used.
Simon Kelley7622fc02009-06-04 20:32:05 +01001123.TP
Simon Kelley751d6f42012-02-10 15:24:51 +00001124.B --pxe-service=[tag:<tag>,]<CSA>,<menu text>[,<basename>|<bootservicetype>][,<server address>|<server_name>]
Simon Kelley7622fc02009-06-04 20:32:05 +01001125Most uses of PXE boot-ROMS simply allow the PXE
1126system to obtain an IP address and then download the file specified by
1127.B dhcp-boot
1128and execute it. However the PXE system is capable of more complex
1129functions when supported by a suitable DHCP server.
1130
1131This specifies a boot option which may appear in a PXE boot menu. <CSA> is
1132client system type, only services of the correct type will appear in a
1133menu. The known types are x86PC, PC98, IA64_EFI, Alpha, Arc_x86,
1134Intel_Lean_Client, IA32_EFI, BC_EFI, Xscale_EFI and X86-64_EFI; an
1135integer may be used for other types. The
1136parameter after the menu text may be a file name, in which case dnsmasq acts as a
1137boot server and directs the PXE client to download the file by TFTP,
1138either from itself (
1139.B enable-tftp
Simon Kelley751d6f42012-02-10 15:24:51 +00001140must be set for this to work) or another TFTP server if the final server
1141address/name is given.
Simon Kelley7622fc02009-06-04 20:32:05 +01001142Note that the "layer"
1143suffix (normally ".0") is supplied by PXE, and should not be added to
1144the basename. If an integer boot service type, rather than a basename
1145is given, then the PXE client will search for a
1146suitable boot service for that type on the network. This search may be done
Simon Kelley751d6f42012-02-10 15:24:51 +00001147by broadcast, or direct to a server if its IP address/name is provided.
Simon Kelley316e2732010-01-22 20:16:09 +00001148If no boot service type or filename is provided (or a boot service type of 0 is specified)
1149then the menu entry will abort the net boot procedure and
Simon Kelley751d6f42012-02-10 15:24:51 +00001150continue booting from local media. The server address can be given as a domain
1151name which is looked up in /etc/hosts. This name can be associated in
1152/etc/hosts with multiple IP addresses, which are used round-robin.
Simon Kelley7622fc02009-06-04 20:32:05 +01001153.TP
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001154.B --pxe-prompt=[tag:<tag>,]<prompt>[,<timeout>]
Simon Kelley7622fc02009-06-04 20:32:05 +01001155Setting this provides a prompt to be displayed after PXE boot. If the
1156timeout is given then after the
1157timeout has elapsed with no keyboard input, the first available menu
1158option will be automatically executed. If the timeout is zero then the first available menu
1159item will be executed immediately. If
1160.B pxe-prompt
Tomas Hozzaa66d36e2013-04-22 15:08:07 +01001161is omitted the system will wait for user input if there are multiple
Simon Kelley7622fc02009-06-04 20:32:05 +01001162items in the menu, but boot immediately if
1163there is only one. See
1164.B pxe-service
1165for details of menu items.
1166
1167Dnsmasq supports PXE "proxy-DHCP", in this case another DHCP server on
1168the network is responsible for allocating IP addresses, and dnsmasq
1169simply provides the information given in
1170.B pxe-prompt
1171and
1172.B pxe-service
1173to allow netbooting. This mode is enabled using the
1174.B proxy
1175keyword in
1176.B dhcp-range.
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001177.TP
Simon Kelley44a2a312004-03-10 20:04:35 +00001178.B \-X, --dhcp-lease-max=<number>
1179Limits dnsmasq to the specified maximum number of DHCP leases. The
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001180default is 1000. This limit is to prevent DoS attacks from hosts which
Simon Kelley44a2a312004-03-10 20:04:35 +00001181create thousands of leases and use lots of memory in the dnsmasq
1182process.
1183.TP
Simon Kelleyfd9fa482004-10-21 20:24:00 +01001184.B \-K, --dhcp-authoritative
Simon Kelley095f6252013-01-30 11:31:02 +00001185Should be set when dnsmasq is definitely the only DHCP server on a network.
1186For DHCPv4, it changes the behaviour from strict RFC compliance so that DHCP requests on
Simon Kelleyfd9fa482004-10-21 20:24:00 +01001187unknown leases from unknown hosts are not ignored. This allows new hosts
Simon Kelleycdeda282006-03-16 20:16:06 +00001188to get a lease without a tedious timeout under all circumstances. It also
1189allows dnsmasq to rebuild its lease database without each client needing to
Simon Kelley095f6252013-01-30 11:31:02 +00001190reacquire a lease, if the database is lost. For DHCPv6 it sets the
1191priority in replies to 255 (the maximum) instead of 0 (the minimum).
Simon Kelley9e038942008-05-30 20:06:34 +01001192.TP
1193.B --dhcp-alternate-port[=<server port>[,<client port>]]
Simon Kelley1adadf52012-02-13 22:15:58 +00001194(IPv4 only) Change the ports used for DHCP from the default. If this option is
Simon Kelley9e038942008-05-30 20:06:34 +01001195given alone, without arguments, it changes the ports used for DHCP
1196from 67 and 68 to 1067 and 1068. If a single argument is given, that
1197port number is used for the server and the port number plus one used
1198for the client. Finally, two port numbers allows arbitrary
1199specification of both server and client ports for DHCP.
Simon Kelleyfd9fa482004-10-21 20:24:00 +01001200.TP
Simon Kelley9009d742008-11-14 20:04:27 +00001201.B \-3, --bootp-dynamic[=<network-id>[,<network-id>]]
Simon Kelley1adadf52012-02-13 22:15:58 +00001202(IPv4 only) Enable dynamic allocation of IP addresses to BOOTP clients. Use this
Simon Kelley3d8df262005-08-29 12:19:27 +01001203with care, since each address allocated to a BOOTP client is leased
1204forever, and therefore becomes permanently unavailable for re-use by
Simon Kelley9009d742008-11-14 20:04:27 +00001205other hosts. if this is given without tags, then it unconditionally
1206enables dynamic allocation. With tags, only when the tags are all
1207set. It may be repeated with different tag sets.
Simon Kelley3d8df262005-08-29 12:19:27 +01001208.TP
Simon Kelley5e9e0ef2006-04-17 14:24:29 +01001209.B \-5, --no-ping
Simon Kelley1adadf52012-02-13 22:15:58 +00001210(IPv4 only) By default, the DHCP server will attempt to ensure that an address in
Simon Kelley5e9e0ef2006-04-17 14:24:29 +01001211not in use before allocating it to a host. It does this by sending an
1212ICMP echo request (aka "ping") to the address in question. If it gets
1213a reply, then the address must already be in use, and another is
1214tried. This flag disables this check. Use with caution.
1215.TP
Simon Kelleyf2621c72007-04-29 19:47:21 +01001216.B --log-dhcp
1217Extra logging for DHCP: log all the options sent to DHCP clients and
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001218the tags used to determine them.
Simon Kelleyf2621c72007-04-29 19:47:21 +01001219.TP
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001220.B \-l, --dhcp-leasefile=<path>
Simon Kelley73a08a22009-02-05 20:28:08 +00001221Use the specified file to store DHCP lease information.
Simon Kelley208b65c2006-08-05 21:41:37 +01001222.TP
Simon Kelley8b372702012-03-09 17:45:10 +00001223.B --dhcp-duid=<enterprise-id>,<uid>
1224(IPv6 only) Specify the server persistent UID which the DHCPv6 server
1225will use. This option is not normally required as dnsmasq creates a
1226DUID automatically when it is first needed. When given, this option
1227provides dnsmasq the data required to create a DUID-EN type DUID. Note
1228that once set, the DUID is stored in the lease database, so to change between DUID-EN and
1229automatically created DUIDs or vice-versa, the lease database must be
1230re-intialised. The enterprise-id is assigned by IANA, and the uid is a
1231string of hex octets unique to a particular device.
1232.TP
Simon Kelley7cebd202006-05-06 14:13:33 +01001233.B \-6 --dhcp-script=<path>
Simon Kelleya9530962012-03-20 22:07:35 +00001234Whenever a new DHCP lease is created, or an old one destroyed, or a
1235TFTP file transfer completes, the
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001236executable specified by this option is run. <path>
1237must be an absolute pathname, no PATH search occurs.
1238The arguments to the process
Simon Kelley7cebd202006-05-06 14:13:33 +01001239are "add", "old" or "del", the MAC
Simon Kelley1adadf52012-02-13 22:15:58 +00001240address of the host (or DUID for IPv6) , the IP address, and the hostname,
Simon Kelley7cebd202006-05-06 14:13:33 +01001241if known. "add" means a lease has been created, "del" means it has
1242been destroyed, "old" is a notification of an existing lease when
Simon Kelley208b65c2006-08-05 21:41:37 +01001243dnsmasq starts or a change to MAC address or hostname of an existing
1244lease (also, lease length or expiry and client-id, if leasefile-ro is set).
Simon Kelley9009d742008-11-14 20:04:27 +00001245If the MAC address is from a network type other than ethernet,
1246it will have the network type prepended, eg "06-01:23:45:67:89:ab" for
1247token ring. The process is run as root (assuming that dnsmasq was originally run as
Simon Kelley16972692006-10-16 20:04:18 +01001248root) even if dnsmasq is configured to change UID to an unprivileged user.
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001249
1250The environment is inherited from the invoker of dnsmasq, with some or
Simon Kelley1adadf52012-02-13 22:15:58 +00001251all of the following variables added
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001252
Simon Kelley1adadf52012-02-13 22:15:58 +00001253For both IPv4 and IPv6:
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001254
1255DNSMASQ_DOMAIN if the fully-qualified domain name of the host is
Simon Kelley28866e92011-02-14 20:19:14 +00001256known, this is set to the domain part. (Note that the hostname passed
1257to the script as an argument is never fully-qualified.)
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001258
Simon Kelley1adadf52012-02-13 22:15:58 +00001259If the client provides a hostname, DNSMASQ_SUPPLIED_HOSTNAME
1260
1261If the client provides user-classes, DNSMASQ_USER_CLASS0..DNSMASQ_USER_CLASSn
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001262
1263If dnsmasq was compiled with HAVE_BROKEN_RTC, then
Simon Kelley208b65c2006-08-05 21:41:37 +01001264the length of the lease (in seconds) is stored in
Simon Kelley16972692006-10-16 20:04:18 +01001265DNSMASQ_LEASE_LENGTH, otherwise the time of lease expiry is stored in
Simon Kelley5aabfc72007-08-29 11:24:47 +01001266DNSMASQ_LEASE_EXPIRES. The number of seconds until lease expiry is
1267always stored in DNSMASQ_TIME_REMAINING.
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001268
Simon Kelley5aabfc72007-08-29 11:24:47 +01001269If a lease used to have a hostname, which is
Simon Kelley16972692006-10-16 20:04:18 +01001270removed, an "old" event is generated with the new state of the lease,
1271ie no name, and the former name is provided in the environment
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001272variable DNSMASQ_OLD_HOSTNAME.
1273
1274DNSMASQ_INTERFACE stores the name of
Simon Kelley9e038942008-05-30 20:06:34 +01001275the interface on which the request arrived; this is not set for "old"
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001276actions when dnsmasq restarts.
1277
1278DNSMASQ_RELAY_ADDRESS is set if the client
Simon Kelley316e2732010-01-22 20:16:09 +00001279used a DHCP relay to contact dnsmasq and the IP address of the relay
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001280is known.
1281
1282DNSMASQ_TAGS contains all the tags set during the
Simon Kelley316e2732010-01-22 20:16:09 +00001283DHCP transaction, separated by spaces.
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001284
Simon Kelleye46164e2012-04-16 16:39:38 +01001285DNSMASQ_LOG_DHCP is set if
1286.B --log-dhcp
1287is in effect.
Simon Kelleya9530962012-03-20 22:07:35 +00001288
Simon Kelley1adadf52012-02-13 22:15:58 +00001289For IPv4 only:
1290
1291DNSMASQ_CLIENT_ID if the host provided a client-id.
1292
Simon Kelleydd1721c2013-02-18 21:04:04 +00001293DNSMASQ_CIRCUIT_ID, DNSMASQ_SUBSCRIBER_ID, DNSMASQ_REMOTE_ID if a
1294DHCP relay-agent added any of these options.
1295
Simon Kelley1adadf52012-02-13 22:15:58 +00001296If the client provides vendor-class, DNSMASQ_VENDOR_CLASS.
1297
1298For IPv6 only:
1299
1300If the client provides vendor-class, DNSMASQ_VENDOR_CLASS_ID,
1301containing the IANA enterprise id for the class, and
1302DNSMASQ_VENDOR_CLASS0..DNSMASQ_VENDOR_CLASSn for the data.
1303
Simon Kelley57f460d2012-02-16 20:00:32 +00001304DNSMASQ_SERVER_DUID containing the DUID of the server: this is the same for
Simon Kelley1adadf52012-02-13 22:15:58 +00001305every call to the script.
1306
1307DNSMASQ_IAID containing the IAID for the lease. If the lease is a
1308temporary allocation, this is prefixed to 'T'.
1309
1310
1311
1312Note that the supplied hostname, vendorclass and userclass data is
1313only supplied for
1314"add" actions or "old" actions when a host resumes an existing lease,
1315since these data are not held in dnsmasq's lease
1316database.
1317
Simon Kelleya9530962012-03-20 22:07:35 +00001318
1319
Simon Kelley9e038942008-05-30 20:06:34 +01001320All file descriptors are
Simon Kelley7cebd202006-05-06 14:13:33 +01001321closed except stdin, stdout and stderr which are open to /dev/null
1322(except in debug mode).
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001323
1324The script is not invoked concurrently: at most one instance
1325of the script is ever running (dnsmasq waits for an instance of script to exit
1326before running the next). Changes to the lease database are which
1327require the script to be invoked are queued awaiting exit of a running instance.
1328If this queueing allows multiple state changes occur to a single
1329lease before the script can be run then
1330earlier states are discarded and the current state of that lease is
1331reflected when the script finally runs.
1332
1333At dnsmasq startup, the script will be invoked for
Simon Kelley7cebd202006-05-06 14:13:33 +01001334all existing leases as they are read from the lease file. Expired
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001335leases will be called with "del" and others with "old". When dnsmasq
Simon Kelley5aabfc72007-08-29 11:24:47 +01001336receives a HUP signal, the script will be invoked for existing leases
Simon Kelley9e038942008-05-30 20:06:34 +01001337with an "old " event.
Simon Kelleya9530962012-03-20 22:07:35 +00001338
1339
1340There are two further actions which may appear as the first argument
1341to the script, "init" and "tftp". More may be added in the future, so
1342scripts should be written to ignore unknown actions. "init" is
Simon Kelleye46164e2012-04-16 16:39:38 +01001343described below in
Simon Kelleya9530962012-03-20 22:07:35 +00001344.B --leasefile-ro
1345The "tftp" action is invoked when a TFTP file transfer completes: the
1346arguments are the file size in bytes, the address to which the file
1347was sent, and the complete pathname of the file.
1348
Simon Kelley9e038942008-05-30 20:06:34 +01001349.TP
Simon Kelley57f460d2012-02-16 20:00:32 +00001350.B --dhcp-luascript=<path>
1351Specify a script written in Lua, to be run when leases are created,
1352destroyed or changed. To use this option, dnsmasq must be compiled
1353with the correct support. The Lua interpreter is intialised once, when
1354dnsmasq starts, so that global variables persist between lease
1355events. The Lua code must define a
1356.B lease
1357function, and may provide
1358.B init
1359and
1360.B shutdown
1361functions, which are called, without arguments when dnsmasq starts up
Simon Kelleya9530962012-03-20 22:07:35 +00001362and terminates. It may also provide a
1363.B tftp
1364function.
Simon Kelley57f460d2012-02-16 20:00:32 +00001365
1366The
1367.B lease
Simon Kelleya9530962012-03-20 22:07:35 +00001368function receives the information detailed in
Simon Kelley57f460d2012-02-16 20:00:32 +00001369.B --dhcp-script.
1370It gets two arguments, firstly the action, which is a string
1371containing, "add", "old" or "del", and secondly a table of tag value
1372pairs. The tags mostly correspond to the environment variables
1373detailed above, for instance the tag "domain" holds the same data as
1374the environment variable DNSMASQ_DOMAIN. There are a few extra tags
1375which hold the data supplied as arguments to
1376.B --dhcp-script.
1377These are
1378.B mac_address, ip_address
1379and
1380.B hostname
1381for IPv4, and
1382.B client_duid, ip_address
1383and
1384.B hostname
Simon Kelleya9530962012-03-20 22:07:35 +00001385for IPv6.
1386
1387The
1388.B tftp
1389function is called in the same way as the lease function, and the
1390table holds the tags
1391.B destination_address,
1392.B file_name
1393and
1394.B file_size.
Simon Kelley57f460d2012-02-16 20:00:32 +00001395.TP
Simon Kelley9e038942008-05-30 20:06:34 +01001396.B --dhcp-scriptuser
Simon Kelley57f460d2012-02-16 20:00:32 +00001397Specify 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 Kelley208b65c2006-08-05 21:41:37 +01001398.TP
1399.B \-9, --leasefile-ro
1400Completely suppress use of the lease database file. The file will not
1401be created, read, or written. Change the way the lease-change
1402script (if one is provided) is called, so that the lease database may
1403be maintained in external storage by the script. In addition to the
Simon Kelleyf2621c72007-04-29 19:47:21 +01001404invocations given in
Simon Kelley208b65c2006-08-05 21:41:37 +01001405.B --dhcp-script
1406the lease-change script is called once, at dnsmasq startup, with the
1407single argument "init". When called like this the script should write
1408the saved state of the lease database, in dnsmasq leasefile format, to
1409stdout and exit with zero exit code. Setting this
1410option also forces the leasechange script to be called on changes
1411to the client-id and lease length and expiry time.
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001412.TP
Simon Kelley832af0b2007-01-21 20:01:28 +00001413.B --bridge-interface=<interface>,<alias>[,<alias>]
1414Treat DHCP request packets arriving at any of the <alias> interfaces
Simon Kelley7622fc02009-06-04 20:32:05 +01001415as if they had arrived at <interface>. This option is necessary when
1416using "old style" bridging on BSD platforms, since
Simon Kelley832af0b2007-01-21 20:01:28 +00001417packets arrive at tap interfaces which don't have an IP address.
1418.TP
Simon Kelley28866e92011-02-14 20:19:14 +00001419.B \-s, --domain=<domain>[,<address range>[,local]]
Simon Kelley9009d742008-11-14 20:04:27 +00001420Specifies DNS domains for the DHCP server. Domains may be be given
1421unconditionally (without the IP range) or for limited IP ranges. This has two effects;
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001422firstly it causes the DHCP server to return the domain to any hosts
1423which request it, and secondly it sets the domain which it is legal
Simon Kelley1b7ecd12007-02-05 14:57:57 +00001424for DHCP-configured hosts to claim. The intention is to constrain
1425hostnames so that an untrusted host on the LAN cannot advertise
1426its name via dhcp as e.g. "microsoft.com" and capture traffic not
1427meant for it. If no domain suffix is specified, then any DHCP
1428hostname with a domain part (ie with a period) will be disallowed
1429and logged. If suffix is specified, then hostnames with a domain
1430part are allowed, provided the domain part matches the suffix. In
1431addition, when a suffix is set then hostnames without a domain
1432part have the suffix added as an optional domain part. Eg on my network I can set
Simon Kelley3d8df262005-08-29 12:19:27 +01001433.B --domain=thekelleys.org.uk
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001434and have a machine whose DHCP hostname is "laptop". The IP address for that machine is available from
1435.B dnsmasq
Simon Kelleyde379512004-06-22 20:23:33 +01001436both as "laptop" and "laptop.thekelleys.org.uk". If the domain is
1437given as "#" then the domain is read from the first "search" directive
Simon Kelley28866e92011-02-14 20:19:14 +00001438in /etc/resolv.conf (or equivalent).
1439
1440The address range can be of the form
Simon Kelley9009d742008-11-14 20:04:27 +00001441<ip address>,<ip address> or <ip address>/<netmask> or just a single
1442<ip address>. See
1443.B --dhcp-fqdn
1444which can change the behaviour of dnsmasq with domains.
Simon Kelley28866e92011-02-14 20:19:14 +00001445
1446If the address range is given as ip-address/network-size, then a
1447additional flag "local" may be supplied which has the effect of adding
1448--local declarations for forward and reverse DNS queries. Eg.
1449.B --domain=thekelleys.org.uk,192.168.0.0/24,local
1450is identical to
1451.B --domain=thekelleys.org.uk,192.168.0.0/24
1452--local=/thekelleys.org.uk/ --local=/0.168.192.in-addr.arpa/
1453The network size must be 8, 16 or 24 for this to be legal.
Simon Kelley9009d742008-11-14 20:04:27 +00001454.TP
1455.B --dhcp-fqdn
1456In the default mode, dnsmasq inserts the unqualified names of
1457DHCP clients into the DNS. For this reason, the names must be unique,
1458even if two clients which have the same name are in different
1459domains. If a second DHCP client appears which has the same name as an
Tomas Hozzaa66d36e2013-04-22 15:08:07 +01001460existing client, the name is transferred to the new client. If
Simon Kelley9009d742008-11-14 20:04:27 +00001461.B --dhcp-fqdn
1462is set, this behaviour changes: the unqualified name is no longer
1463put in the DNS, only the qualified name. Two DHCP clients with the
1464same name may both keep the name, provided that the domain part is
1465different (ie the fully qualified names differ.) To ensure that all
1466names have a domain part, there must be at least
1467.B --domain
1468without an address specified when
1469.B --dhcp-fqdn
1470is set.
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001471.TP
Simon Kelleyc72daea2012-01-05 21:33:27 +00001472.B --dhcp-client-update
1473Normally, when giving a DHCP lease, dnsmasq sets flags in the FQDN
1474option to tell the client not to attempt a DDNS update with its name
1475and IP address. This is because the name-IP pair is automatically
1476added into dnsmasq's DNS view. This flag suppresses that behaviour,
1477this is useful, for instance, to allow Windows clients to update
1478Active Directory servers. See RFC 4702 for details.
1479.TP
Simon Kelleyc5ad4e72012-02-24 16:06:20 +00001480.B --enable-ra
1481Enable dnsmasq's IPv6 Router Advertisement feature. DHCPv6 doesn't
1482handle complete network configuration in the same way as DHCPv4. Router
1483discovery and (possibly) prefix discovery for autonomous address
1484creation are handled by a different protocol. When DHCP is in use,
1485only a subset of this is needed, and dnsmasq can handle it, using
1486existing DHCP configuration to provide most data. When RA is enabled,
1487dnsmasq will advertise a prefix for each dhcp-range, with default
1488router and recursive DNS server as the relevant link-local address on
Simon Kelleye8ca69e2012-03-26 21:23:26 +01001489the machine running dnsmasq. By default, he "managed address" bits are set, and
1490the "use SLAAC" bit is reset. This can be changed for individual
1491subnets with the mode keywords described in
1492.B --dhcp-range.
Simon Kelley18f0fb02012-03-31 21:18:55 +01001493RFC6106 DNS parameters are included in the advertisements. By default,
1494the relevant link-local address of the machine running dnsmasq is sent
1495as recursive DNS server. If provided, the DHCPv6 options dns-server and
1496domain-search are used for RDNSS and DNSSL.
Simon Kelleyc5ad4e72012-02-24 16:06:20 +00001497.TP
Simon Kelley8d030462013-07-29 15:41:26 +01001498.B --force-fast-ra
1499Normally, dnsmasq advertises a new IPv6 prefix frequently (every 10 seconds or so) for the first minute, and then
1500drops back to sending "maintenance" advertisements every 10 minutes or so. This option forces dnsmasq to be always in
1501frequent RA mode. It's a bug workaround for mobile devices which go deaf to RAs during sleep and therefore
1502lose conectivity; with frequent RAs they recover in a reasonable time after wakeup.
1503.TP
Simon Kelley2937f8a2013-07-29 19:49:07 +01001504.B --enable-tftp[=<interface>[,<interface>]]
Simon Kelley832af0b2007-01-21 20:01:28 +00001505Enable the TFTP server function. This is deliberately limited to that
Simon Kelley9e038942008-05-30 20:06:34 +01001506needed to net-boot a client. Only reading is allowed; the tsize and
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001507blksize extensions are supported (tsize is only supported in octet
Simon Kelley2937f8a2013-07-29 19:49:07 +01001508mode). Without an argument, the TFTP service is provided to the same set of interfaces as DHCP service.
1509If the list of interfaces is provided, that defines which interfaces recieve TFTP service.
Simon Kelleyb8187c82005-11-26 21:46:27 +00001510.TP
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001511.B --tftp-root=<directory>[,<interface>]
Simon Kelley832af0b2007-01-21 20:01:28 +00001512Look for files to transfer using TFTP relative to the given
1513directory. When this is set, TFTP paths which include ".." are
1514rejected, to stop clients getting outside the specified root.
Simon Kelleyf2621c72007-04-29 19:47:21 +01001515Absolute paths (starting with /) are allowed, but they must be within
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001516the tftp-root. If the optional interface argument is given, the
1517directory is only used for TFTP requests via that interface.
Simon Kelley832af0b2007-01-21 20:01:28 +00001518.TP
Simon Kelley5aabfc72007-08-29 11:24:47 +01001519.B --tftp-unique-root
1520Add the IP address of the TFTP client as a path component on the end
1521of the TFTP-root (in standard dotted-quad format). Only valid if a
1522tftp-root is set and the directory exists. For instance, if tftp-root is "/tftp" and client
15231.2.3.4 requests file "myfile" then the effective path will be
1524"/tftp/1.2.3.4/myfile" if /tftp/1.2.3.4 exists or /tftp/myfile otherwise.
1525.TP
Simon Kelley832af0b2007-01-21 20:01:28 +00001526.B --tftp-secure
Simon Kelley5aabfc72007-08-29 11:24:47 +01001527Enable TFTP secure mode: without this, any file which is readable by
Simon Kelley832af0b2007-01-21 20:01:28 +00001528the dnsmasq process under normal unix access-control rules is
1529available via TFTP. When the --tftp-secure flag is given, only files
1530owned by the user running the dnsmasq process are accessible. If
1531dnsmasq is being run as root, different rules apply: --tftp-secure
Simon Kelley1b7ecd12007-02-05 14:57:57 +00001532has no effect, but only files which have the world-readable bit set
Simon Kelley832af0b2007-01-21 20:01:28 +00001533are accessible. It is not recommended to run dnsmasq as root with TFTP
1534enabled, and certainly not without specifying --tftp-root. Doing so
1535can expose any world-readable file on the server to any host on the net.
1536.TP
Simon Kelley61ce6002012-04-20 21:28:49 +01001537.B --tftp-lowercase
1538Convert filenames in TFTP requests to all lowercase. This is useful
1539for requests from Windows machines, which have case-insensitive
1540filesystems and tend to play fast-and-loose with case in filenames.
1541Note that dnsmasq's tftp server always converts "\\" to "/" in filenames.
1542.TP
Simon Kelley832af0b2007-01-21 20:01:28 +00001543.B --tftp-max=<connections>
1544Set the maximum number of concurrent TFTP connections allowed. This
1545defaults to 50. When serving a large number of TFTP connections,
1546per-process file descriptor limits may be encountered. Dnsmasq needs
1547one file descriptor for each concurrent TFTP connection and one
1548file descriptor per unique file (plus a few others). So serving the
1549same file simultaneously to n clients will use require about n + 10 file
1550descriptors, serving different files simultaneously to n clients will
Simon Kelley824af852008-02-12 20:43:05 +00001551require about (2*n) + 10 descriptors. If
1552.B --tftp-port-range
1553is given, that can affect the number of concurrent connections.
Simon Kelley6b010842007-02-12 20:32:07 +00001554.TP
1555.B --tftp-no-blocksize
1556Stop the TFTP server from negotiating the "blocksize" option with a
1557client. Some buggy clients request this option but then behave badly
1558when it is granted.
Simon Kelley824af852008-02-12 20:43:05 +00001559.TP
1560.B --tftp-port-range=<start>,<end>
1561A TFTP server listens on a well-known port (69) for connection initiation,
1562but it also uses a dynamically-allocated port for each
1563connection. Normally these are allocated by the OS, but this option
1564specifies a range of ports for use by TFTP transfers. This can be
1565useful when TFTP has to traverse a firewall. The start of the range
1566cannot be lower than 1025 unless dnsmasq is running as root. The number
1567of concurrent TFTP connections is limited by the size of the port range.
Simon Kelley832af0b2007-01-21 20:01:28 +00001568.TP
Simon Kelleyb8187c82005-11-26 21:46:27 +00001569.B \-C, --conf-file=<file>
1570Specify a different configuration file. The conf-file option is also allowed in
Simon Kelley28866e92011-02-14 20:19:14 +00001571configuration files, to include multiple configuration files. A
1572filename of "-" causes dnsmasq to read configuration from stdin.
Simon Kelley849a8352006-06-09 21:02:31 +01001573.TP
Simon Kelley1f15b812009-10-13 17:49:32 +01001574.B \-7, --conf-dir=<directory>[,<file-extension>......]
Simon Kelley849a8352006-06-09 21:02:31 +01001575Read all the files in the given directory as configuration
Simon Kelley1f15b812009-10-13 17:49:32 +01001576files. If extension(s) are given, any files which end in those
1577extensions are skipped. Any files whose names end in ~ or start with . or start and end
1578with # are always skipped. This flag may be given on the command
Simon Kelley849a8352006-06-09 21:02:31 +01001579line or in a configuration file.
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001580.SH CONFIG FILE
Simon Kelley3be34542004-09-11 19:12:13 +01001581At startup, dnsmasq reads
1582.I /etc/dnsmasq.conf,
1583if it exists. (On
1584FreeBSD, the file is
1585.I /usr/local/etc/dnsmasq.conf
Simon Kelleyb8187c82005-11-26 21:46:27 +00001586) (but see the
1587.B \-C
Simon Kelley849a8352006-06-09 21:02:31 +01001588and
1589.B \-7
1590options.) The format of this
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001591file consists of one option per line, exactly as the long options detailed
1592in the OPTIONS section but without the leading "--". Lines starting with # are comments and ignored. For
Simon Kelleyb49644f2004-01-30 21:36:24 +00001593options which may only be specified once, the configuration file overrides
Simon Kelleyb8187c82005-11-26 21:46:27 +00001594the command line. Quoting is allowed in a config file:
Simon Kelley3d8df262005-08-29 12:19:27 +01001595between " quotes the special meanings of ,:. and # are removed and the
Simon Kelley824af852008-02-12 20:43:05 +00001596following escapes are allowed: \\\\ \\" \\t \\e \\b \\r and \\n. The later
1597corresponding to tab, escape, backspace, return and newline.
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001598.SH NOTES
1599When it receives a SIGHUP,
1600.B dnsmasq
Simon Kelley3be34542004-09-11 19:12:13 +01001601clears its cache and then re-loads
Simon Kelley5aabfc72007-08-29 11:24:47 +01001602.I /etc/hosts
1603and
1604.I /etc/ethers
Simon Kelley824af852008-02-12 20:43:05 +00001605and any file given by --dhcp-hostsfile, --dhcp-optsfile or --addn-hosts.
Simon Kelley5aabfc72007-08-29 11:24:47 +01001606The dhcp lease change script is called for all
1607existing DHCP leases. If
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001608.B
1609--no-poll
Simon Kelley3be34542004-09-11 19:12:13 +01001610is set SIGHUP also re-reads
1611.I /etc/resolv.conf.
1612SIGHUP
Simon Kelleyb49644f2004-01-30 21:36:24 +00001613does NOT re-read the configuration file.
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001614.PP
1615When it receives a SIGUSR1,
1616.B dnsmasq
Simon Kelley824af852008-02-12 20:43:05 +00001617writes statistics to the system log. It writes the cache size,
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001618the number of names which have had to removed from the cache before
1619they expired in order to make room for new names and the total number
Simon Kelley824af852008-02-12 20:43:05 +00001620of names that have been inserted into the cache. For each upstream
1621server it gives the number of queries sent, and the number which
1622resulted in an error. In
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001623.B --no-daemon
Simon Kelley5aabfc72007-08-29 11:24:47 +01001624mode or when full logging is enabled (-q), a complete dump of the
1625contents of the cache is made.
1626.PP
1627When it receives SIGUSR2 and it is logging direct to a file (see
1628.B --log-facility
1629)
1630.B dnsmasq
1631will close and reopen the log file. Note that during this operation,
1632dnsmasq will not be running as root. When it first creates the logfile
1633dnsmasq changes the ownership of the file to the non-root user it will run
1634as. Logrotate should be configured to create a new log file with
Simon Kelley9e038942008-05-30 20:06:34 +01001635the ownership which matches the existing one before sending SIGUSR2.
Simon Kelley5aabfc72007-08-29 11:24:47 +01001636If TCP DNS queries are in progress, the old logfile will remain open in
1637child processes which are handling TCP queries and may continue to be
1638written. There is a limit of 150 seconds, after which all existing TCP
1639processes will have expired: for this reason, it is not wise to
1640configure logfile compression for logfiles which have just been
1641rotated. Using logrotate, the required options are
1642.B create
1643and
1644.B delaycompress.
1645
1646
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001647.PP
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001648Dnsmasq is a DNS query forwarder: it it not capable of recursively
1649answering arbitrary queries starting from the root servers but
1650forwards such queries to a fully recursive upstream DNS server which is
1651typically provided by an ISP. By default, dnsmasq reads
Simon Kelley3be34542004-09-11 19:12:13 +01001652.I /etc/resolv.conf
1653to discover the IP
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001654addresses of the upstream nameservers it should use, since the
1655information is typically stored there. Unless
1656.B --no-poll
1657is used,
1658.B dnsmasq
Simon Kelley3be34542004-09-11 19:12:13 +01001659checks the modification time of
1660.I /etc/resolv.conf
1661(or equivalent if
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001662.B \--resolv-file
1663is used) and re-reads it if it changes. This allows the DNS servers to
1664be set dynamically by PPP or DHCP since both protocols provide the
1665information.
Simon Kelley3be34542004-09-11 19:12:13 +01001666Absence of
1667.I /etc/resolv.conf
1668is not an error
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001669since it may not have been created before a PPP connection exists. Dnsmasq
Simon Kelley3be34542004-09-11 19:12:13 +01001670simply keeps checking in case
1671.I /etc/resolv.conf
1672is created at any
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001673time. Dnsmasq can be told to parse more than one resolv.conf
1674file. This is useful on a laptop, where both PPP and DHCP may be used:
Simon Kelley3be34542004-09-11 19:12:13 +01001675dnsmasq can be set to poll both
1676.I /etc/ppp/resolv.conf
1677and
1678.I /etc/dhcpc/resolv.conf
1679and will use the contents of whichever changed
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001680last, giving automatic switching between DNS servers.
1681.PP
1682Upstream servers may also be specified on the command line or in
Simon Kelleyb49644f2004-01-30 21:36:24 +00001683the configuration file. These server specifications optionally take a
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001684domain name which tells dnsmasq to use that server only to find names
1685in that particular domain.
1686.PP
1687In order to configure dnsmasq to act as cache for the host on which it is running, put "nameserver 127.0.0.1" in
1688.I /etc/resolv.conf
1689to force local processes to send queries to
1690dnsmasq. Then either specify the upstream servers directly to dnsmasq
1691using
1692.B \--server
1693options or put their addresses real in another file, say
1694.I /etc/resolv.dnsmasq
1695and run dnsmasq with the
1696.B \-r /etc/resolv.dnsmasq
1697option. This second technique allows for dynamic update of the server
1698addresses by PPP or DHCP.
Simon Kelley3be34542004-09-11 19:12:13 +01001699.PP
Simon Kelleyf6b7dc42005-01-23 12:06:08 +00001700Addresses in /etc/hosts will "shadow" different addresses for the same
1701names in the upstream DNS, so "mycompany.com 1.2.3.4" in /etc/hosts will ensure that
1702queries for "mycompany.com" always return 1.2.3.4 even if queries in
1703the upstream DNS would otherwise return a different address. There is
1704one exception to this: if the upstream DNS contains a CNAME which
1705points to a shadowed name, then looking up the CNAME through dnsmasq
1706will result in the unshadowed address associated with the target of
1707the CNAME. To work around this, add the CNAME to /etc/hosts so that
1708the CNAME is shadowed too.
1709
1710.PP
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001711The tag system works as follows: For each DHCP request, dnsmasq
1712collects a set of valid tags from active configuration lines which
1713include set:<tag>, including one from the
Simon Kelley26128d22004-11-14 16:43:54 +00001714.B dhcp-range
1715used to allocate the address, one from any matching
1716.B dhcp-host
Simon Kelley9009d742008-11-14 20:04:27 +00001717(and "known" if a dhcp-host matches)
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001718The tag "bootp" is set for BOOTP requests, and a tag whose name is the
1719name of the interface on which the request arrived is also set.
1720
Tomas Hozzaa66d36e2013-04-22 15:08:07 +01001721Any configuration lines which include one or more tag:<tag> constructs
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001722will only be valid if all that tags are matched in the set derived
1723above. Typically this is dhcp-option.
Simon Kelley26128d22004-11-14 16:43:54 +00001724.B dhcp-option
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001725which has tags will be used in preference to an untagged
Simon Kelley26128d22004-11-14 16:43:54 +00001726.B dhcp-option,
1727provided that _all_ the tags match somewhere in the
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001728set collected as described above. The prefix '!' on a tag means 'not'
1729so --dhcp=option=tag:!purple,3,1.2.3.4 sends the option when the
1730tag purple is not in the set of valid tags. (If using this in a
1731command line rather than a configuration file, be sure to escape !,
1732which is a shell metacharacter)
Simon Kelley7de060b2011-08-26 17:24:52 +01001733
1734When selecting dhcp-options, a tag from dhcp-range is second class
1735relative to other tags, to make it easy to override options for
1736individual hosts, so
1737.B dhcp-range=set:interface1,......
1738.B dhcp-host=set:myhost,.....
1739.B dhcp-option=tag:interface1,option:nis-domain,"domain1"
1740.B dhcp-option=tag:myhost,option:nis-domain,"domain2"
1741will set the NIS-domain to domain1 for hosts in the range, but
1742override that to domain2 for a particular host.
1743
Simon Kelley26128d22004-11-14 16:43:54 +00001744.PP
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001745Note that for
Simon Kelleyf6b7dc42005-01-23 12:06:08 +00001746.B dhcp-range
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001747both tag:<tag> and set:<tag> are allowed, to both select the range in
1748use based on (eg) dhcp-host, and to affect the options sent, based on
1749the range selected.
1750
1751This system evolved from an earlier, more limited one and for backward
1752compatibility "net:" may be used instead of "tag:" and "set:" may be
1753omitted. (Except in
1754.B dhcp-host,
1755where "net:" may be used instead of "set:".) For the same reason, '#'
1756may be used instead of '!' to indicate NOT.
Simon Kelleyf6b7dc42005-01-23 12:06:08 +00001757.PP
Simon Kelley3be34542004-09-11 19:12:13 +01001758The DHCP server in dnsmasq will function as a BOOTP server also,
1759provided that the MAC address and IP address for clients are given,
1760either using
1761.B dhcp-host
1762configurations or in
1763.I /etc/ethers
1764, and a
1765.B dhcp-range
1766configuration option is present to activate the DHCP server
Simon Kelleyb8187c82005-11-26 21:46:27 +00001767on a particular network. (Setting --bootp-dynamic removes the need for
1768static address mappings.) The filename
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001769parameter in a BOOTP request is used as a tag,
1770as is the tag "bootp", allowing some control over the options returned to
Simon Kelley3be34542004-09-11 19:12:13 +01001771different classes of hosts.
1772
Simon Kelley333b2ce2013-01-07 21:46:03 +00001773.SH AUTHORITATIVE CONFIGURATION
1774.PP
1775Configuring dnsmasq to act as an authoritative DNS server is
1776complicated by the fact that it involves configuration of external DNS
1777servers to provide delegation. We will walk through three scenarios of
1778increasing complexity. Prerequisites for all of these scenarios
Simon Kelley81925ab2013-04-10 11:43:58 +01001779are a globally accessible IP address, an A or AAAA record pointing to that address,
Simon Kelley333b2ce2013-01-07 21:46:03 +00001780and an external DNS server capable of doing delegation of the zone in
1781question. For the first part of this explanation, we will call the A (or AAAA) record
1782for the globally accessible address server.example.com, and the zone
1783for which dnsmasq is authoritative our.zone.com.
1784
1785The simplest configuration consists of two lines of dnsmasq configuration; something like
1786
1787.nf
1788.B auth-server=server.example.com,eth0
Simon Kelley79cb46c2013-01-23 19:49:21 +00001789.B auth-zone=our.zone.com,1.2.3.0/24
Simon Kelley333b2ce2013-01-07 21:46:03 +00001790.fi
1791
1792and two records in the external DNS
1793
1794.nf
1795server.example.com A 192.0.43.10
1796our.zone.com NS server.example.com
1797.fi
1798
1799eth0 is the external network interface on which dnsmasq is listening,
1800and has (globally accessible) address 192.0.43.10.
1801
1802Note that the external IP address may well be dynamic (ie assigned
1803from an ISP by DHCP or PPP) If so, the A record must be linked to this
1804dynamic assignment by one of the usual dynamic-DNS systems.
1805
1806A more complex, but practically useful configuration has the address
1807record for the globally accessible IP address residing in the
1808authoritative zone which dnsmasq is serving, typically at the root. Now
1809we have
1810
1811.nf
1812.B auth-server=our.zone.com,eth0
Simon Kelley79cb46c2013-01-23 19:49:21 +00001813.B auth-zone=our.zone.com,1.2.3.0/24
Simon Kelley333b2ce2013-01-07 21:46:03 +00001814.fi
1815
1816.nf
Simon Kelley0f128eb2013-03-11 21:21:35 +00001817our.zone.com A 1.2.3.4
Simon Kelley333b2ce2013-01-07 21:46:03 +00001818our.zone.com NS our.zone.com
1819.fi
1820
1821The A record for our.zone.com has now become a glue record, it solves
1822the chicken-and-egg problem of finding the IP address of the
1823nameserver for our.zone.com when the A record is within that
1824zone. Note that this is the only role of this record: as dnsmasq is
1825now authoritative from our.zone.com it too must provide this
1826record. If the external address is static, this can be done with an
1827.B /etc/hosts
1828entry or
1829.B --host-record.
Simon Kelley333b2ce2013-01-07 21:46:03 +00001830
1831.nf
Simon Kelley0f128eb2013-03-11 21:21:35 +00001832.B auth-server=our.zone.com,eth0
1833.B host-record=our.zone.com,1.2.3.4
1834.B auth-zone=our.zone.com,1.2.3.0/24
1835.fi
1836
1837If the external address is dynamic, the address
1838associated with our.zone.com must be derived from the address of the
Simon Kelley6f130de2013-04-15 14:47:14 +01001839relevant interface. This is done using
Simon Kelley0f128eb2013-03-11 21:21:35 +00001840.B interface-name
1841Something like:
1842
1843.nf
1844.B auth-server=our.zone.com,eth0
1845.B interface-name=our.zone.com,eth0
1846.B auth-zone=our.zone.com,1.2.3.0/24
Simon Kelley333b2ce2013-01-07 21:46:03 +00001847.fi
1848
1849Our final configuration builds on that above, but also adds a
1850secondary DNS server. This is another DNS server which learns the DNS data
1851for the zone by doing zones transfer, and acts as a backup should
1852the primary server become inaccessible. The configuration of the
1853secondary is beyond the scope of this man-page, but the extra
1854configuration of dnsmasq is simple:
1855
1856.nf
1857.B auth-sec-servers=secondary.myisp.com
1858.fi
1859
1860and
1861
1862.nf
1863our.zone.com NS secondary.myisp.com
1864.fi
1865
1866Adding auth-sec-servers enables zone transfer in dnsmasq, to allow the
1867secondary to collect the DNS data. If you wish to restrict this data
1868to particular hosts then
1869
1870.nf
1871.B auth-peer=<IP address of secondary>
1872.fi
1873
1874will do so.
1875
1876Dnsmasq acts as an authoritative server for in-addr.arpa and
1877ipv6.arpa domains associated with the subnets given in auth-zone
1878declarations, so reverse (address to name) lookups can be simply
1879configured with a suitable NS record, for instance in this example,
1880where we allow 1.2.3.0/24 addresses.
1881
1882.nf
1883 3.2.1.in-addr.arpa NS our.zone.com
1884.fi
1885
1886Note that at present, reverse (in-addr.arpa and ip6.arpa) zones are
1887not available in zone transfers, so there is no point arranging
1888secondary servers for reverse lookups.
1889
1890.PP
1891When dnsmasq is configured to act as an authoritative server, the
1892following data is used to populate the authoritative zone.
1893.PP
1894.B --mx-host, --srv-host, --dns-rr, --txt-record, --naptr-record
1895, as long as the record names are in the authoritative domain.
1896.PP
1897.B --cname
1898as long as the record name is in the authoritative domain. If the
1899target of the CNAME is unqualified, then it is qualified with the
1900authoritative zone name.
1901.PP
1902IPv4 and IPv6 addresses from /etc/hosts (and
1903.B --addn-hosts
1904) and
1905.B --host-record
1906provided the address falls into one of the subnets specified in the
1907.B --auth-zone.
1908.PP
1909Addresses specified by
1910.B --interface-name.
1911In this case, the address is not contrained to a subnet from
1912.B --auth-zone.
1913
1914.PP
1915Addresses of DHCP leases, provided the address falls into one of the subnets specified in the
1916.B --auth-zone
1917OR a constructed DHCP range. In the default mode, where a DHCP lease
1918has an unqualified name, and possibly a qualified name constructed
1919using
1920.B --domain
1921then the name in the authoritative zone is constructed from the
1922unqualified name and the zone's domain. This may or may not equal
1923that specified by
1924.B --domain.
1925If
1926.B --dhcp-fqdn
1927is set, then the fully qualified names associated with DHCP leases are
1928used, and must match the zone's domain.
1929
1930
1931
Simon Kelley5aabfc72007-08-29 11:24:47 +01001932.SH EXIT CODES
1933.PP
19340 - Dnsmasq successfully forked into the background, or terminated
1935normally if backgrounding is not enabled.
1936.PP
19371 - A problem with configuration was detected.
1938.PP
19392 - A problem with network access occurred (address in use, attempt
1940to use privileged ports without permission).
1941.PP
Simon Kelley9e038942008-05-30 20:06:34 +010019423 - A problem occurred with a filesystem operation (missing
Simon Kelley5aabfc72007-08-29 11:24:47 +01001943file/directory, permissions).
1944.PP
19454 - Memory allocation failure.
1946.PP
19475 - Other miscellaneous problem.
1948.PP
194911 or greater - a non zero return code was received from the
1950lease-script process "init" call. The exit code from dnsmasq is the
1951script's exit code with 10 added.
1952
Simon Kelley1b7ecd12007-02-05 14:57:57 +00001953.SH LIMITS
1954The default values for resource limits in dnsmasq are generally
1955conservative, and appropriate for embedded router type devices with
1956slow processors and limited memory. On more capable hardware, it is
1957possible to increase the limits, and handle many more clients. The
1958following applies to dnsmasq-2.37: earlier versions did not scale as well.
1959
1960.PP
1961Dnsmasq is capable of handling DNS and DHCP for at least a thousand
Simon Kelley8ef5ada2010-06-03 19:42:45 +01001962clients. The DHCP lease times should not be very short (less than one hour). The
Simon Kelley1b7ecd12007-02-05 14:57:57 +00001963value of
1964.B --dns-forward-max
1965can be increased: start with it equal to
1966the number of clients and increase if DNS seems slow. Note that DNS
1967performance depends too on the performance of the upstream
1968nameservers. The size of the DNS cache may be increased: the hard
1969limit is 10000 names and the default (150) is very low. Sending
1970SIGUSR1 to dnsmasq makes it log information which is useful for tuning
1971the cache size. See the
1972.B NOTES
1973section for details.
1974
1975.PP
1976The built-in TFTP server is capable of many simultaneous file
1977transfers: the absolute limit is related to the number of file-handles
1978allowed to a process and the ability of the select() system call to
1979cope with large numbers of file handles. If the limit is set too high
1980using
1981.B --tftp-max
1982it will be scaled down and the actual limit logged at
1983start-up. Note that more transfers are possible when the same file is
1984being sent than when each transfer sends a different file.
1985
1986.PP
1987It is possible to use dnsmasq to block Web advertising by using a list
1988of known banner-ad servers, all resolving to 127.0.0.1 or 0.0.0.0, in
1989.B /etc/hosts
1990or an additional hosts file. The list can be very long,
1991dnsmasq has been tested successfully with one million names. That size
1992file needs a 1GHz processor and about 60Mb of RAM.
1993
Simon Kelley1f15b812009-10-13 17:49:32 +01001994.SH INTERNATIONALISATION
1995Dnsmasq can be compiled to support internationalisation. To do this,
1996the make targets "all-i18n" and "install-i18n" should be used instead of
1997the standard targets "all" and "install". When internationalisation
1998is compiled in, dnsmasq will produce log messages in the local
1999language and support internationalised domain names (IDN). Domain
2000names in /etc/hosts, /etc/ethers and /etc/dnsmasq.conf which contain
2001non-ASCII characters will be translated to the DNS-internal punycode
2002representation. Note that
2003dnsmasq determines both the language for messages and the assumed
2004charset for configuration
2005files from the LANG environment variable. This should be set to the system
2006default value by the script which is responsible for starting
2007dnsmasq. When editing the configuration files, be careful to do so
2008using only the system-default locale and not user-specific one, since
2009dnsmasq has no direct way of determining the charset in use, and must
2010assume that it is the system default.
2011
Simon Kelley9e4abcb2004-01-22 19:47:41 +00002012.SH FILES
Simon Kelleyb49644f2004-01-30 21:36:24 +00002013.IR /etc/dnsmasq.conf
2014
2015.IR /usr/local/etc/dnsmasq.conf
Simon Kelley9e4abcb2004-01-22 19:47:41 +00002016
2017.IR /etc/resolv.conf
Simon Kelley28866e92011-02-14 20:19:14 +00002018.IR /var/run/dnsmasq/resolv.conf
2019.IR /etc/ppp/resolv.conf
2020.IR /etc/dhcpc/resolv.conf
Simon Kelley9e4abcb2004-01-22 19:47:41 +00002021
2022.IR /etc/hosts
2023
Simon Kelley3be34542004-09-11 19:12:13 +01002024.IR /etc/ethers
2025
Simon Kelleyb49644f2004-01-30 21:36:24 +00002026.IR /var/lib/misc/dnsmasq.leases
2027
2028.IR /var/db/dnsmasq.leases
Simon Kelley9e4abcb2004-01-22 19:47:41 +00002029
2030.IR /var/run/dnsmasq.pid
2031.SH SEE ALSO
Simon Kelley9e4abcb2004-01-22 19:47:41 +00002032.BR hosts (5),
2033.BR resolver (5)
2034.SH AUTHOR
2035This manual page was written by Simon Kelley <simon@thekelleys.org.uk>.
2036
2037