blob: fd634bc3ed038025f7839d55c6798da5d548a318 [file] [log] [blame]
Simon Kelley9e4abcb2004-01-22 19:47:41 +00001# Configuration file for dnsmasq.
2#
3# Format is one option per line, legal options are the same
4# as the long options legal on the command line. See
5# "/usr/sbin/dnsmasq --help" or "man 8 dnsmasq" for details.
6
Simon Kelleyb8187c82005-11-26 21:46:27 +00007# The following two options make you a better netizen, since they
Simon Kelley9e4abcb2004-01-22 19:47:41 +00008# tell dnsmasq to filter out queries which the public DNS cannot
Simon Kelleyb8187c82005-11-26 21:46:27 +00009# answer, and which load the servers (especially the root servers)
Simon Kelley9e4abcb2004-01-22 19:47:41 +000010# uneccessarily. If you have a dial-on-demand link they also stop
11# these requests from bringing up the link uneccessarily.
12
Simon Kelley3d8df262005-08-29 12:19:27 +010013# Never forward plain names (without a dot or domain part)
Simon Kelley16972692006-10-16 20:04:18 +010014#domain-needed
Simon Kelleyc1bb8502004-08-11 18:40:17 +010015# Never forward addresses in the non-routed address spaces.
Simon Kelley16972692006-10-16 20:04:18 +010016#bogus-priv
Simon Kelley9e4abcb2004-01-22 19:47:41 +000017
18
Simon Kelleyc1bb8502004-08-11 18:40:17 +010019# Uncomment this to filter useless windows-originated DNS requests
20# which can trigger dial-on-demand links needlessly.
Simon Kelleyb8187c82005-11-26 21:46:27 +000021# Note that (amongst other things) this blocks all SRV requests,
Simon Kelley824af852008-02-12 20:43:05 +000022# so don't use it if you use eg Kerberos, SIP, XMMP or Google-talk.
Simon Kelleyf6b7dc42005-01-23 12:06:08 +000023# This option only affects forwarding, SRV records originating for
24# dnsmasq (via srv-host= lines) are not suppressed by it.
Simon Kelleyc1bb8502004-08-11 18:40:17 +010025#filterwin2k
26
Simon Kelley9e4abcb2004-01-22 19:47:41 +000027# Change this line if you want dns to get its upstream servers from
Simon Kelleyb8187c82005-11-26 21:46:27 +000028# somewhere other that /etc/resolv.conf
Simon Kelley9e4abcb2004-01-22 19:47:41 +000029#resolv-file=
30
Simon Kelley1ab84e22004-01-29 16:48:35 +000031# By default, dnsmasq will send queries to any of the upstream
32# servers it knows about and tries to favour servers to are known
33# to be up. Uncommenting this forces dnsmasq to try each query
34# with each server strictly in the order they appear in
35# /etc/resolv.conf
36#strict-order
37
Simon Kelley9e4abcb2004-01-22 19:47:41 +000038# If you don't want dnsmasq to read /etc/resolv.conf or any other
Simon Kelleyb8187c82005-11-26 21:46:27 +000039# file, getting its servers from this file instead (see below), then
Simon Kelley832af0b2007-01-21 20:01:28 +000040# uncomment this.
Simon Kelley9e4abcb2004-01-22 19:47:41 +000041#no-resolv
42
43# If you don't want dnsmasq to poll /etc/resolv.conf or other resolv
44# files for changes and re-read them then uncomment this.
45#no-poll
46
Simon Kelleyb8187c82005-11-26 21:46:27 +000047# Add other name servers here, with domain specs if they are for
Simon Kelley9e4abcb2004-01-22 19:47:41 +000048# non-public domains.
49#server=/localnet/192.168.0.1
50
Simon Kelleyf2621c72007-04-29 19:47:21 +010051# Example of routing PTR queries to nameservers: this will send all
52# address->name queries for 192.168.3/24 to nameserver 10.1.2.3
53#server=/3.168.192.in-addr.arpa/10.1.2.3
54
Simon Kelley9e4abcb2004-01-22 19:47:41 +000055# Add local-only domains here, queries in these domains are answered
56# from /etc/hosts or DHCP only.
57#local=/localnet/
58
59# Add domains which you want to force to an IP address here.
60# The example below send any host in doubleclick.net to a local
61# webserver.
62#address=/doubleclick.net/127.0.0.1
63
Simon Kelley824af852008-02-12 20:43:05 +000064# --address (and --server) work with IPv6 addresses too.
65#address=/www.thekelleys.org.uk/fe80::20d:60ff:fe36:f83
66
67# You can control how dnsmasq talks to a server: this forces
68# queries to 10.1.2.3 to be routed via eth1
Simon Kelley8ef5ada2010-06-03 19:42:45 +010069# server=10.1.2.3@eth1
Simon Kelley824af852008-02-12 20:43:05 +000070
71# and this sets the source (ie local) address used to talk to
72# 10.1.2.3 to 192.168.1.1 port 55 (there must be a interface with that
73# IP on the machine, obviously).
Simon Kelley8ef5ada2010-06-03 19:42:45 +010074# server=10.1.2.3@192.168.1.1#55
Simon Kelley824af852008-02-12 20:43:05 +000075
Simon Kelleyf6b7dc42005-01-23 12:06:08 +000076# If you want dnsmasq to change uid and gid to something other
77# than the default, edit the following lines.
Simon Kelley9e4abcb2004-01-22 19:47:41 +000078#user=
79#group=
80
Simon Kelleyb8187c82005-11-26 21:46:27 +000081# If you want dnsmasq to listen for DHCP and DNS requests only on
82# specified interfaces (and the loopback) give the name of the
83# interface (eg eth0) here.
Simon Kelley9e4abcb2004-01-22 19:47:41 +000084# Repeat the line for more than one interface.
85#interface=
86# Or you can specify which interface _not_ to listen on
87#except-interface=
88# Or which to listen on by address (remember to include 127.0.0.1 if
89# you use this.)
90#listen-address=
Simon Kelley3d8df262005-08-29 12:19:27 +010091# If you want dnsmasq to provide only DNS service on an interface,
92# configure it as shown above, and then use the following line to
93# disable DHCP on it.
94#no-dhcp-interface=
Simon Kelley9e4abcb2004-01-22 19:47:41 +000095
Simon Kelley44a2a312004-03-10 20:04:35 +000096# On systems which support it, dnsmasq binds the wildcard address,
97# even when it is listening on only some interfaces. It then discards
Simon Kelleyb8187c82005-11-26 21:46:27 +000098# requests that it shouldn't reply to. This has the advantage of
Simon Kelley44a2a312004-03-10 20:04:35 +000099# working even when interfaces come and go and change address. If you
100# want dnsmasq to really bind only the interfaces it is listening on,
Simon Kelleyb8187c82005-11-26 21:46:27 +0000101# uncomment this option. About the only time you may need this is when
Simon Kelley44a2a312004-03-10 20:04:35 +0000102# running another nameserver on the same machine.
Simon Kelleyb8187c82005-11-26 21:46:27 +0000103#bind-interfaces
Simon Kelley44a2a312004-03-10 20:04:35 +0000104
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000105# If you don't want dnsmasq to read /etc/hosts, uncomment the
106# following line.
107#no-hosts
108# or if you want it to read another file, as well as /etc/hosts, use
109# this.
110#addn-hosts=/etc/banner_add_hosts
111
112# Set this (and domain: see below) if you want to have a domain
113# automatically added to simple names in a hosts-file.
114#expand-hosts
115
Simon Kelley44a2a312004-03-10 20:04:35 +0000116# Set the domain for dnsmasq. this is optional, but if it is set, it
117# does the following things.
118# 1) Allows DHCP hosts to have fully qualified domain names, as long
119# as the domain part matches this setting.
120# 2) Sets the "domain" DHCP option thereby potentially setting the
121# domain of all systems configured by DHCP
122# 3) Provides the domain part for "expand-hosts"
123#domain=thekelleys.org.uk
Simon Kelleyb8187c82005-11-26 21:46:27 +0000124
Simon Kelley9009d742008-11-14 20:04:27 +0000125# Set a different domain for a particular subnet
126#domain=wireless.thekelleys.org.uk,192.168.2.0/24
127
128# Same idea, but range rather then subnet
129#domain=reserved.thekelleys.org.uk,192.68.3.100,192.168.3.200
130
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000131# Uncomment this to enable the integrated DHCP server, you need
Simon Kelleyb8187c82005-11-26 21:46:27 +0000132# to supply the range of addresses available for lease and optionally
Simon Kelley44a2a312004-03-10 20:04:35 +0000133# a lease time. If you have more than one network, you will need to
134# repeat this for each network on which you want to supply DHCP
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000135# service.
136#dhcp-range=192.168.0.50,192.168.0.150,12h
137
Simon Kelley44a2a312004-03-10 20:04:35 +0000138# This is an example of a DHCP range where the netmask is given. This
Simon Kelleyb8187c82005-11-26 21:46:27 +0000139# is needed for networks we reach the dnsmasq DHCP server via a relay
Simon Kelley44a2a312004-03-10 20:04:35 +0000140# agent. If you don't know what a DHCP relay agent is, you probably
141# don't need to worry about this.
142#dhcp-range=192.168.0.50,192.168.0.150,255.255.255.0,12h
143
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100144# This is an example of a DHCP range which sets a tag, so that
Simon Kelley44a2a312004-03-10 20:04:35 +0000145# some DHCP options may be set only for this network.
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100146#dhcp-range=set:red,192.168.0.50,192.168.0.150
Simon Kelley44a2a312004-03-10 20:04:35 +0000147
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100148# Use this DHCP range only when the tag "green" is set.
149#dhcp-range=tag:green,192.168.0.50,192.168.0.150,12h
150
151# Specify a subnet which can't be used for dynamic address allocation,
152# is available for hosts with matching --dhcp-host lines. Note that
153# dhcp-host declarations will be ignored unless there is a dhcp-range
154# of some type for the subnet in question.
155# In this case the netmask is implied (it comes from the network
156# configuration on the machine running dnsmasq) it is possible to give
157# an explict netmask instead.
158#dhcp-range=192.168.0.0,static
159
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000160# Supply parameters for specified hosts using DHCP. There are lots
Simon Kelley1ab84e22004-01-29 16:48:35 +0000161# of valid alternatives, so we will give examples of each. Note that
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000162# IP addresses DO NOT have to be in the range given above, they just
Simon Kelley1ab84e22004-01-29 16:48:35 +0000163# need to be on the same network. The order of the parameters in these
164# do not matter, it's permissble to give name,adddress and MAC in any order
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000165
Simon Kelleyb8187c82005-11-26 21:46:27 +0000166# Always allocate the host with ethernet address 11:22:33:44:55:66
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000167# The IP address 192.168.0.60
168#dhcp-host=11:22:33:44:55:66,192.168.0.60
169
170# Always set the name of the host with hardware address
171# 11:22:33:44:55:66 to be "fred"
172#dhcp-host=11:22:33:44:55:66,fred
173
174# Always give the host with ethernet address 11:22:33:44:55:66
175# the name fred and IP address 192.168.0.60 and lease time 45 minutes
176#dhcp-host=11:22:33:44:55:66,fred,192.168.0.60,45m
177
Simon Kelley9009d742008-11-14 20:04:27 +0000178# Give a host with ethernet address 11:22:33:44:55:66 or
179# 12:34:56:78:90:12 the IP address 192.168.0.60. Dnsmasq will assume
180# that these two ethernet interfaces will never be in use at the same
181# time, and give the IP address to the second, even if it is already
182# in use by the first. Useful for laptops with wired and wireless
183# addresses.
184#dhcp-host=11:22:33:44:55:66,12:34:56:78:90:12,192.168.0.60
185
Simon Kelley824af852008-02-12 20:43:05 +0000186# Give the machine which says its name is "bert" IP address
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000187# 192.168.0.70 and an infinite lease
188#dhcp-host=bert,192.168.0.70,infinite
189
Simon Kelleyb8187c82005-11-26 21:46:27 +0000190# Always give the host with client identifier 01:02:02:04
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000191# the IP address 192.168.0.60
192#dhcp-host=id:01:02:02:04,192.168.0.60
193
194# Always give the host with client identifier "marjorie"
195# the IP address 192.168.0.60
196#dhcp-host=id:marjorie,192.168.0.60
197
Simon Kelley1ab84e22004-01-29 16:48:35 +0000198# Enable the address given for "judge" in /etc/hosts
199# to be given to a machine presenting the name "judge" when
200# it asks for a DHCP lease.
201#dhcp-host=judge
202
Simon Kelleyb8187c82005-11-26 21:46:27 +0000203# Never offer DHCP service to a machine whose ethernet
Simon Kelley33820b72004-04-03 21:10:00 +0100204# address is 11:22:33:44:55:66
205#dhcp-host=11:22:33:44:55:66,ignore
206
Simon Kelleya84fa1d2004-04-23 22:21:21 +0100207# Ignore any client-id presented by the machine with ethernet
Simon Kelleyb8187c82005-11-26 21:46:27 +0000208# address 11:22:33:44:55:66. This is useful to prevent a machine
Simon Kelleya84fa1d2004-04-23 22:21:21 +0100209# being treated differently when running under different OS's or
210# between PXE boot and OS boot.
211#dhcp-host=11:22:33:44:55:66,id:*
212
Simon Kelleyb8187c82005-11-26 21:46:27 +0000213# Send extra options which are tagged as "red" to
Simon Kelley33820b72004-04-03 21:10:00 +0100214# the machine with ethernet address 11:22:33:44:55:66
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100215#dhcp-host=11:22:33:44:55:66,set:red
Simon Kelley33820b72004-04-03 21:10:00 +0100216
Simon Kelleyb8187c82005-11-26 21:46:27 +0000217# Send extra options which are tagged as "red" to
Simon Kelley0a852542005-03-23 20:28:59 +0000218# any machine with ethernet address starting 11:22:33:
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100219#dhcp-host=11:22:33:*:*:*,set:red
Simon Kelley0a852542005-03-23 20:28:59 +0000220
Simon Kelley5aabfc72007-08-29 11:24:47 +0100221# Ignore any clients which are specified in dhcp-host lines
222# or /etc/ethers. Equivalent to ISC "deny unkown-clients".
223# This relies on the special "known" tag which is set when
224# a host is matched.
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100225#dhcp-ignore=tag:!known
Simon Kelley5aabfc72007-08-29 11:24:47 +0100226
Simon Kelleya2226412004-05-13 20:27:08 +0100227# Send extra options which are tagged as "red" to any machine whose
228# DHCP vendorclass string includes the substring "Linux"
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100229#dhcp-vendorclass=set:red,Linux
Simon Kelleya2226412004-05-13 20:27:08 +0100230
Simon Kelleyb8187c82005-11-26 21:46:27 +0000231# Send extra options which are tagged as "red" to any machine one
Simon Kelleya2226412004-05-13 20:27:08 +0100232# of whose DHCP userclass strings includes the substring "accounts"
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100233#dhcp-userclass=set:red,accounts
Simon Kelleya2226412004-05-13 20:27:08 +0100234
Simon Kelleycdeda282006-03-16 20:16:06 +0000235# Send extra options which are tagged as "red" to any machine whose
236# MAC address matches the pattern.
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100237#dhcp-mac=set:red,00:60:8C:*:*:*
Simon Kelleycdeda282006-03-16 20:16:06 +0000238
Simon Kelley44a2a312004-03-10 20:04:35 +0000239# If this line is uncommented, dnsmasq will read /etc/ethers and act
240# on the ethernet-address/IP pairs found there just as if they had
241# been given as --dhcp-host options. Useful if you keep
242# MAC-address/host mappings there for other purposes.
243#read-ethers
244
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000245# Send options to hosts which ask for a DHCP lease.
246# See RFC 2132 for details of available options.
Simon Kelleyf2621c72007-04-29 19:47:21 +0100247# Common options can be given to dnsmasq by name:
248# run "dnsmasq --help dhcp" to get a list.
Simon Kelley1ab84e22004-01-29 16:48:35 +0000249# Note that all the common settings, such as netmask and
250# broadcast address, DNS server and default route, are given
Simon Kelley5aabfc72007-08-29 11:24:47 +0100251# sane defaults by dnsmasq. You very likely will not need
Simon Kelley1ab84e22004-01-29 16:48:35 +0000252# any dhcp-options. If you use Windows clients and Samba, there
253# are some options which are recommended, they are detailed at the
254# end of this section.
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000255
Simon Kelleycdeda282006-03-16 20:16:06 +0000256# Override the default route supplied by dnsmasq, which assumes the
257# router is the same machine as the one running dnsmasq.
258#dhcp-option=3,1.2.3.4
259
Simon Kelleyf2621c72007-04-29 19:47:21 +0100260# Do the same thing, but using the option name
261#dhcp-option=option:router,1.2.3.4
262
Simon Kelley832af0b2007-01-21 20:01:28 +0000263# Override the default route supplied by dnsmasq and send no default
264# route at all. Note that this only works for the options sent by
265# default (1, 3, 6, 12, 28) the same line will send a zero-length option
266# for all other option numbers.
267#dhcp-option=3
268
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000269# Set the NTP time server addresses to 192.168.0.4 and 10.10.0.5
Simon Kelleyf2621c72007-04-29 19:47:21 +0100270#dhcp-option=option:ntp-server,192.168.0.4,10.10.0.5
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000271
Simon Kelleyb8187c82005-11-26 21:46:27 +0000272# Set the NTP time server address to be the same machine as
Simon Kelley1ab84e22004-01-29 16:48:35 +0000273# is running dnsmasq
274#dhcp-option=42,0.0.0.0
275
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000276# Set the NIS domain name to "welly"
277#dhcp-option=40,welly
278
Simon Kelley1ab84e22004-01-29 16:48:35 +0000279# Set the default time-to-live to 50
280#dhcp-option=23,50
281
282# Set the "all subnets are local" flag
283#dhcp-option=27,1
284
Simon Kelley33820b72004-04-03 21:10:00 +0100285# Send the etherboot magic flag and then etherboot options (a string).
286#dhcp-option=128,e4:45:74:68:00:00
287#dhcp-option=129,NIC=eepro100
288
Simon Kelleyb8187c82005-11-26 21:46:27 +0000289# Specify an option which will only be sent to the "red" network
Simon Kelley44a2a312004-03-10 20:04:35 +0000290# (see dhcp-range for the declaration of the "red" network)
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100291# Note that the tag: part must precede the option: part.
292#dhcp-option = tag:red, option:ntp-server, 192.168.1.1
Simon Kelley44a2a312004-03-10 20:04:35 +0000293
Simon Kelley1ab84e22004-01-29 16:48:35 +0000294# The following DHCP options set up dnsmasq in the same way as is specified
Simon Kelleyb8187c82005-11-26 21:46:27 +0000295# for the ISC dhcpcd in
Simon Kelley1ab84e22004-01-29 16:48:35 +0000296# http://www.samba.org/samba/ftp/docs/textdocs/DHCP-Server-Configuration.txt
297# adapted for a typical dnsmasq installation where the host running
298# dnsmasq is also the host running samba.
Simon Kelley9009d742008-11-14 20:04:27 +0000299# you may want to uncomment some or all of them if you use
300# Windows clients and Samba.
Simon Kelleyb8187c82005-11-26 21:46:27 +0000301#dhcp-option=19,0 # option ip-forwarding off
Simon Kelley1ab84e22004-01-29 16:48:35 +0000302#dhcp-option=44,0.0.0.0 # set netbios-over-TCP/IP nameserver(s) aka WINS server(s)
303#dhcp-option=45,0.0.0.0 # netbios datagram distribution server
304#dhcp-option=46,8 # netbios node type
Simon Kelleyfd9fa482004-10-21 20:24:00 +0100305
306# Send RFC-3397 DNS domain search DHCP option. WARNING: Your DHCP client
307# probably doesn't support this......
Simon Kelleyf2621c72007-04-29 19:47:21 +0100308#dhcp-option=option:domain-search,eng.apple.com,marketing.apple.com
Simon Kelley1ab84e22004-01-29 16:48:35 +0000309
Simon Kelleycdeda282006-03-16 20:16:06 +0000310# Send RFC-3442 classless static routes (note the netmask encoding)
311#dhcp-option=121,192.168.1.0/24,1.2.3.4,10.0.0.0/8,5.6.7.8
312
Simon Kelley1b7ecd12007-02-05 14:57:57 +0000313# Send vendor-class specific options encapsulated in DHCP option 43.
314# The meaning of the options is defined by the vendor-class so
315# options are sent only when the client supplied vendor class
316# matches the class given here. (A substring match is OK, so "MSFT"
317# matches "MSFT" and "MSFT 5.0"). This example sets the
318# mtftp address to 0.0.0.0 for PXEClients.
Simon Kelley91dccd02005-03-31 17:48:32 +0100319#dhcp-option=vendor:PXEClient,1,0.0.0.0
320
Simon Kelley1b7ecd12007-02-05 14:57:57 +0000321# Send microsoft-specific option to tell windows to release the DHCP lease
322# when it shuts down. Note the "i" flag, to tell dnsmasq to send the
323# value as a four-byte integer - that's what microsoft wants. See
324# http://technet2.microsoft.com/WindowsServer/en/library/a70f1bb7-d2d4-49f0-96d6-4b7414ecfaae1033.mspx?mfr=true
325#dhcp-option=vendor:MSFT,2,1i
326
Simon Kelley6b010842007-02-12 20:32:07 +0000327# Send the Encapsulated-vendor-class ID needed by some configurations of
328# Etherboot to allow is to recognise the DHCP server.
329#dhcp-option=vendor:Etherboot,60,"Etherboot"
330
331# Send options to PXELinux. Note that we need to send the options even
332# though they don't appear in the parameter request list, so we need
333# to use dhcp-option-force here.
334# See http://syslinux.zytor.com/pxe.php#special for details.
335# Magic number - needed before anything else is recognised
336#dhcp-option-force=208,f1:00:74:7e
337# Configuration file name
338#dhcp-option-force=209,configs/common
339# Path prefix
340#dhcp-option-force=210,/tftpboot/pxelinux/files/
341# Reboot time. (Note 'i' to send 32-bit value)
342#dhcp-option-force=211,30i
343
Simon Kelley7622fc02009-06-04 20:32:05 +0100344# Set the boot filename for netboot/PXE. You will only need
Simon Kelley832af0b2007-01-21 20:01:28 +0000345# this is you want to boot machines over the network and you will need
346# a TFTP server; either dnsmasq's built in TFTP server or an
347# external one. (See below for how to enable the TFTP server.)
348#dhcp-boot=pxelinux.0
349
Simon Kelley824af852008-02-12 20:43:05 +0000350# Boot for Etherboot gPXE. The idea is to send two different
351# filenames, the first loads gPXE, and the second tells gPXE what to
352# load. The dhcp-match sets the gpxe tag for requests from gPXE.
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100353#dhcp-match=set:gpxe,175 # gPXE sends a 175 option.
354#dhcp-boot=tag:!gpxe,undionly.kpxe
Simon Kelley824af852008-02-12 20:43:05 +0000355#dhcp-boot=mybootimage
356
Simon Kelley73a08a22009-02-05 20:28:08 +0000357# Encapsulated options for Etherboot gPXE. All the options are
358# encapsulated within option 175
359#dhcp-option=encap:175, 1, 5b # priority code
360#dhcp-option=encap:175, 176, 1b # no-proxydhcp
361#dhcp-option=encap:175, 177, string # bus-id
362#dhcp-option=encap:175, 189, 1b # BIOS drive code
363#dhcp-option=encap:175, 190, user # iSCSI username
364#dhcp-option=encap:175, 191, pass # iSCSI password
365
366# Test for the architecture of a netboot client. PXE clients are
367# supposed to send their architecture as option 93. (See RFC 4578)
368#dhcp-match=peecees, option:client-arch, 0 #x86-32
369#dhcp-match=itanics, option:client-arch, 2 #IA64
370#dhcp-match=hammers, option:client-arch, 6 #x86-64
371#dhcp-match=mactels, option:client-arch, 7 #EFI x86-64
372
Simon Kelley7622fc02009-06-04 20:32:05 +0100373# Do real PXE, rather than just booting a single file, this is an
374# alternative to dhcp-boot.
375#pxe-prompt="What system shall I netboot?"
376# or with timeout before first available action is taken:
377#pxe-prompt="Press F8 for menu.", 60
378
379# Available boot services. for PXE.
Simon Kelley316e2732010-01-22 20:16:09 +0000380#pxe-service=x86PC, "Boot from local disk"
Simon Kelley7622fc02009-06-04 20:32:05 +0100381
382# Loads <tftp-root>/pxelinux.0 from dnsmasq TFTP server.
383#pxe-service=x86PC, "Install Linux", pxelinux
384
385# Loads <tftp-root>/pxelinux.0 from TFTP server at 1.2.3.4.
386# Beware this fails on old PXE ROMS.
387#pxe-service=x86PC, "Install Linux", pxelinux, 1.2.3.4
388
389# Use bootserver on network, found my multicast or broadcast.
390#pxe-service=x86PC, "Install windows from RIS server", 1
391
392# Use bootserver at a known IP address.
393#pxe-service=x86PC, "Install windows from RIS server", 1, 1.2.3.4
394
395# If you have multicast-FTP available,
396# information for that can be passed in a similar way using options 1
397# to 5. See page 19 of
398# http://download.intel.com/design/archives/wfm/downloads/pxespec.pdf
399
400
Simon Kelley832af0b2007-01-21 20:01:28 +0000401# Enable dnsmasq's built-in TFTP server
402#enable-tftp
403
404# Set the root directory for files availble via FTP.
405#tftp-root=/var/ftpd
406
407# Make the TFTP server more secure: with this set, only files owned by
408# the user dnsmasq is running as will be send over the net.
409#tftp-secure
410
Simon Kelley1f15b812009-10-13 17:49:32 +0100411# This option stops dnsmasq from negotiating a larger blocksize for TFTP
412# transfers. It will slow things down, but may rescue some broken TFTP
413# clients.
414#tftp-no-blocksize
415
Simon Kelley832af0b2007-01-21 20:01:28 +0000416# Set the boot file name only when the "red" tag is set.
417#dhcp-boot=net:red,pxelinux.red-net
418
Simon Kelley7622fc02009-06-04 20:32:05 +0100419# An example of dhcp-boot with an external TFTP server: the name and IP
Simon Kelley832af0b2007-01-21 20:01:28 +0000420# address of the server are given after the filename.
Simon Kelley7622fc02009-06-04 20:32:05 +0100421# Can fail with old PXE ROMS. Overridden by --pxe-service.
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000422#dhcp-boot=/var/ftpd/pxelinux.0,boothost,192.168.0.3
423
Simon Kelley44a2a312004-03-10 20:04:35 +0000424# Set the limit on DHCP leases, the default is 150
425#dhcp-lease-max=150
426
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000427# The DHCP server needs somewhere on disk to keep its lease database.
428# This defaults to a sane location, but if you want to change it, use
429# the line below.
Simon Kelley1ab84e22004-01-29 16:48:35 +0000430#dhcp-leasefile=/var/lib/misc/dnsmasq.leases
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000431
Simon Kelleyb8187c82005-11-26 21:46:27 +0000432# Set the DHCP server to authoritative mode. In this mode it will barge in
433# and take over the lease for any client which broadcasts on the network,
Simon Kelleyfd9fa482004-10-21 20:24:00 +0100434# whether it has a record of the lease or not. This avoids long timeouts
Simon Kelleyb8187c82005-11-26 21:46:27 +0000435# when a machine wakes up on a new network. DO NOT enable this if there's
Simon Kelleyfd9fa482004-10-21 20:24:00 +0100436# the slighest chance that you might end up accidentally configuring a DHCP
Simon Kelley5aabfc72007-08-29 11:24:47 +0100437# server for your campus/company accidentally. The ISC server uses
Simon Kelleyfd9fa482004-10-21 20:24:00 +0100438# the same option, and this URL provides more information:
439# http://www.isc.org/index.pl?/sw/dhcp/authoritative.php
440#dhcp-authoritative
441
Simon Kelley7cebd202006-05-06 14:13:33 +0100442# Run an executable when a DHCP lease is created or destroyed.
443# The arguments sent to the script are "add" or "del",
444# then the MAC address, the IP address and finally the hostname
445# if there is one.
446#dhcp-script=/bin/echo
447
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000448# Set the cachesize here.
Simon Kelley1ab84e22004-01-29 16:48:35 +0000449#cache-size=150
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000450
451# If you want to disable negative caching, uncomment this.
452#no-negcache
453
454# Normally responses which come form /etc/hosts and the DHCP lease
455# file have Time-To-Live set as zero, which conventionally means
Simon Kelleyb8187c82005-11-26 21:46:27 +0000456# do not cache further. If you are happy to trade lower load on the
457# server for potentially stale date, you can set a time-to-live (in
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000458# seconds) here.
459#local-ttl=
460
461# If you want dnsmasq to detect attempts by Verisign to send queries
462# to unregistered .com and .net hosts to its sitefinder service and
463# have dnsmasq instead return the correct NXDOMAIN response, uncomment
464# this line. You can add similar lines to do the same for other
465# registries which have implemented wildcard A records.
466#bogus-nxdomain=64.94.110.11
467
Simon Kelley1cff1662004-03-12 08:12:58 +0000468# If you want to fix up DNS results from upstream servers, use the
469# alias option. This only works for IPv4.
470# This alias makes a result of 1.2.3.4 appear as 5.6.7.8
471#alias=1.2.3.4,5.6.7.8
472# and this maps 1.2.3.x to 5.6.7.x
473#alias=1.2.3.0,5.6.7.0,255.255.255.0
Simon Kelley73a08a22009-02-05 20:28:08 +0000474# and this maps 192.168.0.10->192.168.0.40 to 10.0.0.10->10.0.0.40
475#alias=192.168.0.10-192.168.0.40,10.0.0.0,255.255.255.0
Simon Kelleyf6b7dc42005-01-23 12:06:08 +0000476
477# Change these lines if you want dnsmasq to serve MX records.
478
479# Return an MX record named "maildomain.com" with target
480# servermachine.com and preference 50
481#mx-host=maildomain.com,servermachine.com,50
482
483# Set the default target for MX records created using the localmx option.
484#mx-target=servermachine.com
485
486# Return an MX record pointing to the mx-target for all local
487# machines.
488#localmx
489
490# Return an MX record pointing to itself for all local machines.
491#selfmx
492
Simon Kelleyb8187c82005-11-26 21:46:27 +0000493# Change the following lines if you want dnsmasq to serve SRV
Simon Kelleyf6b7dc42005-01-23 12:06:08 +0000494# records. These are useful if you want to serve ldap requests for
495# Active Directory and other windows-originated DNS requests.
496# See RFC 2782.
Simon Kelleyb8187c82005-11-26 21:46:27 +0000497# You may add multiple srv-host lines.
Simon Kelleyf6b7dc42005-01-23 12:06:08 +0000498# The fields are <name>,<target>,<port>,<priority>,<weight>
499# If the domain part if missing from the name (so that is just has the
500# service and protocol sections) then the domain given by the domain=
Simon Kelley0a852542005-03-23 20:28:59 +0000501# config option is used. (Note that expand-hosts does not need to be
502# set for this to work.)
Simon Kelleyf6b7dc42005-01-23 12:06:08 +0000503
504# A SRV record sending LDAP for the example.com domain to
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100505# ldapserver.example.com port 389
Simon Kelleyf6b7dc42005-01-23 12:06:08 +0000506#srv-host=_ldap._tcp.example.com,ldapserver.example.com,389
507
508# A SRV record sending LDAP for the example.com domain to
Simon Kelley8ef5ada2010-06-03 19:42:45 +0100509# ldapserver.example.com port 389 (using domain=)
Simon Kelleyf6b7dc42005-01-23 12:06:08 +0000510#domain=example.com
511#srv-host=_ldap._tcp,ldapserver.example.com,389
512
513# Two SRV records for LDAP, each with different priorities
514#srv-host=_ldap._tcp.example.com,ldapserver.example.com,389,1
515#srv-host=_ldap._tcp.example.com,ldapserver.example.com,389,2
516
517# A SRV record indicating that there is no LDAP server for the domain
Simon Kelleyb8187c82005-11-26 21:46:27 +0000518# example.com
Simon Kelleyf6b7dc42005-01-23 12:06:08 +0000519#srv-host=_ldap._tcp.example.com
520
Simon Kelley832af0b2007-01-21 20:01:28 +0000521# The following line shows how to make dnsmasq serve an arbitrary PTR
522# record. This is useful for DNS-SD. (Note that the
523# domain-name expansion done for SRV records _does_not
524# occur for PTR records.)
525#ptr-record=_http._tcp.dns-sd-services,"New Employee Page._http._tcp.dns-sd-services"
Simon Kelley0a852542005-03-23 20:28:59 +0000526
527# Change the following lines to enable dnsmasq to serve TXT records.
528# These are used for things like SPF and zeroconf. (Note that the
Simon Kelleyb8187c82005-11-26 21:46:27 +0000529# domain-name expansion done for SRV records _does_not
Simon Kelley0a852542005-03-23 20:28:59 +0000530# occur for TXT records.)
531
532#Example SPF.
Simon Kelley832af0b2007-01-21 20:01:28 +0000533#txt-record=example.com,"v=spf1 a -all"
Simon Kelley0a852542005-03-23 20:28:59 +0000534
535#Example zeroconf
536#txt-record=_http._tcp.example.com,name=value,paper=A4
537
Simon Kelley9009d742008-11-14 20:04:27 +0000538# Provide an alias for a "local" DNS name. Note that this _only_ works
539# for targets which are names from DHCP or /etc/hosts. Give host
540# "bert" another name, bertrand
541#cname=bertand,bert
Simon Kelley0a852542005-03-23 20:28:59 +0000542
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000543# For debugging purposes, log each DNS query as it passes through
544# dnsmasq.
545#log-queries
546
Simon Kelleyf2621c72007-04-29 19:47:21 +0100547# Log lots of extra information about DHCP transactions.
548#log-dhcp
549
Simon Kelley33820b72004-04-03 21:10:00 +0100550# Include a another lot of configuration options.
551#conf-file=/etc/dnsmasq.more.conf
Simon Kelley16972692006-10-16 20:04:18 +0100552#conf-dir=/etc/dnsmasq.d