]> git.ipfire.org Git - thirdparty/dhcp.git/blob - server/dhcpd.conf.5
- Delayed-ack is now a compile-time option, compiled out by default.
[thirdparty/dhcp.git] / server / dhcpd.conf.5
1 .\" dhcpd.conf.5
2 .\"
3 .\" Copyright (c) 2004-2008 by Internet Systems Consortium, Inc. ("ISC")
4 .\" Copyright (c) 1996-2003 by Internet Software Consortium
5 .\"
6 .\" Permission to use, copy, modify, and distribute this software for any
7 .\" purpose with or without fee is hereby granted, provided that the above
8 .\" copyright notice and this permission notice appear in all copies.
9 .\"
10 .\" THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES
11 .\" WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12 .\" MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR
13 .\" ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14 .\" WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15 .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
16 .\" OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17 .\"
18 .\" Internet Systems Consortium, Inc.
19 .\" 950 Charter Street
20 .\" Redwood City, CA 94063
21 .\" <info@isc.org>
22 .\" http://www.isc.org/
23 .\"
24 .\" This software has been written for Internet Systems Consortium
25 .\" by Ted Lemon in cooperation with Vixie Enterprises and Nominum, Inc.
26 .\" To learn more about Internet Systems Consortium, see
27 .\" ``http://www.isc.org/''. To learn more about Vixie Enterprises,
28 .\" see ``http://www.vix.com''. To learn more about Nominum, Inc., see
29 .\" ``http://www.nominum.com''.
30 .\"
31 .\" $Id: dhcpd.conf.5,v 1.99 2008/11/03 18:13:58 dhankins Exp $
32 .\"
33 .TH dhcpd.conf 5
34 .SH NAME
35 dhcpd.conf - dhcpd configuration file
36 .SH DESCRIPTION
37 The dhcpd.conf file contains configuration information for
38 .IR dhcpd,
39 the Internet Systems Consortium DHCP Server.
40 .PP
41 The dhcpd.conf file is a free-form ASCII text file. It is parsed by
42 the recursive-descent parser built into dhcpd. The file may contain
43 extra tabs and newlines for formatting purposes. Keywords in the file
44 are case-insensitive. Comments may be placed anywhere within the
45 file (except within quotes). Comments begin with the # character and
46 end at the end of the line.
47 .PP
48 The file essentially consists of a list of statements. Statements
49 fall into two broad categories - parameters and declarations.
50 .PP
51 Parameter statements either say how to do something (e.g., how long a
52 lease to offer), whether to do something (e.g., should dhcpd provide
53 addresses to unknown clients), or what parameters to provide to the
54 client (e.g., use gateway 220.177.244.7).
55 .PP
56 Declarations are used to describe the topology of the
57 network, to describe clients on the network, to provide addresses that
58 can be assigned to clients, or to apply a group of parameters to a
59 group of declarations. In any group of parameters and declarations,
60 all parameters must be specified before any declarations which depend
61 on those parameters may be specified.
62 .PP
63 Declarations about network topology include the \fIshared-network\fR
64 and the \fIsubnet\fR declarations. If clients on a subnet are to be
65 assigned addresses
66 dynamically, a \fIrange\fR declaration must appear within the
67 \fIsubnet\fR declaration. For clients with statically assigned
68 addresses, or for installations where only known clients will be
69 served, each such client must have a \fIhost\fR declaration. If
70 parameters are to be applied to a group of declarations which are not
71 related strictly on a per-subnet basis, the \fIgroup\fR declaration
72 can be used.
73 .PP
74 For every subnet which will be served, and for every subnet
75 to which the dhcp server is connected, there must be one \fIsubnet\fR
76 declaration, which tells dhcpd how to recognize that an address is on
77 that subnet. A \fIsubnet\fR declaration is required for each subnet
78 even if no addresses will be dynamically allocated on that subnet.
79 .PP
80 Some installations have physical networks on which more than one IP
81 subnet operates. For example, if there is a site-wide requirement
82 that 8-bit subnet masks be used, but a department with a single
83 physical ethernet network expands to the point where it has more than
84 254 nodes, it may be necessary to run two 8-bit subnets on the same
85 ethernet until such time as a new physical network can be added. In
86 this case, the \fIsubnet\fR declarations for these two networks must be
87 enclosed in a \fIshared-network\fR declaration.
88 .PP
89 Note that even when the \fIshared-network\fR declaration is absent, an
90 empty one is created by the server to contain the \fIsubnet\fR (and any scoped
91 parameters included in the \fIsubnet\fR). For practical purposes, this means
92 that "stateless" DHCP clients, which are not tied to addresses (and therefore
93 subnets) will receive the same configuration as stateful ones.
94 .PP
95 Some sites may have departments which have clients on more than one
96 subnet, but it may be desirable to offer those clients a uniform set
97 of parameters which are different than what would be offered to
98 clients from other departments on the same subnet. For clients which
99 will be declared explicitly with \fIhost\fR declarations, these
100 declarations can be enclosed in a \fIgroup\fR declaration along with
101 the parameters which are common to that department. For clients
102 whose addresses will be dynamically assigned, class declarations and
103 conditional declarations may be used to group parameter assignments
104 based on information the client sends.
105 .PP
106 When a client is to be booted, its boot parameters are determined by
107 consulting that client's \fIhost\fR declaration (if any), and then
108 consulting any \fIclass\fR declarations matching the client,
109 followed by the \fIpool\fR, \fIsubnet\fR and \fIshared-network\fR
110 declarations for the IP address assigned to the client. Each of
111 these declarations itself appears within a lexical scope, and all
112 declarations at less specific lexical scopes are also consulted for
113 client option declarations. Scopes are never considered
114 twice, and if parameters are declared in more than one scope, the
115 parameter declared in the most specific scope is the one that is
116 used.
117 .PP
118 When dhcpd tries to find a \fIhost\fR declaration for a client, it
119 first looks for a \fIhost\fR declaration which has a
120 \fIfixed-address\fR declaration that lists an IP address that is valid
121 for the subnet or shared network on which the client is booting. If
122 it doesn't find any such entry, it tries to find an entry which has
123 no \fIfixed-address\fR declaration.
124 .SH EXAMPLES
125 .PP
126 A typical dhcpd.conf file will look something like this:
127 .nf
128
129 .I global parameters...
130
131 subnet 204.254.239.0 netmask 255.255.255.224 {
132 \fIsubnet-specific parameters...\fR
133 range 204.254.239.10 204.254.239.30;
134 }
135
136 subnet 204.254.239.32 netmask 255.255.255.224 {
137 \fIsubnet-specific parameters...\fR
138 range 204.254.239.42 204.254.239.62;
139 }
140
141 subnet 204.254.239.64 netmask 255.255.255.224 {
142 \fIsubnet-specific parameters...\fR
143 range 204.254.239.74 204.254.239.94;
144 }
145
146 group {
147 \fIgroup-specific parameters...\fR
148 host zappo.test.isc.org {
149 \fIhost-specific parameters...\fR
150 }
151 host beppo.test.isc.org {
152 \fIhost-specific parameters...\fR
153 }
154 host harpo.test.isc.org {
155 \fIhost-specific parameters...\fR
156 }
157 }
158
159 .ce 1
160 Figure 1
161
162 .fi
163 .PP
164 Notice that at the beginning of the file, there's a place
165 for global parameters. These might be things like the organization's
166 domain name, the addresses of the name servers (if they are common to
167 the entire organization), and so on. So, for example:
168 .nf
169
170 option domain-name "isc.org";
171 option domain-name-servers ns1.isc.org, ns2.isc.org;
172
173 .ce 1
174 Figure 2
175 .fi
176 .PP
177 As you can see in Figure 2, you can specify host addresses in
178 parameters using their domain names rather than their numeric IP
179 addresses. If a given hostname resolves to more than one IP address
180 (for example, if that host has two ethernet interfaces), then where
181 possible, both addresses are supplied to the client.
182 .PP
183 The most obvious reason for having subnet-specific parameters as
184 shown in Figure 1 is that each subnet, of necessity, has its own
185 router. So for the first subnet, for example, there should be
186 something like:
187 .nf
188
189 option routers 204.254.239.1;
190 .fi
191 .PP
192 Note that the address here is specified numerically. This is not
193 required - if you have a different domain name for each interface on
194 your router, it's perfectly legitimate to use the domain name for that
195 interface instead of the numeric address. However, in many cases
196 there may be only one domain name for all of a router's IP addresses, and
197 it would not be appropriate to use that name here.
198 .PP
199 In Figure 1 there is also a \fIgroup\fR statement, which provides
200 common parameters for a set of three hosts - zappo, beppo and harpo.
201 As you can see, these hosts are all in the test.isc.org domain, so it
202 might make sense for a group-specific parameter to override the domain
203 name supplied to these hosts:
204 .nf
205
206 option domain-name "test.isc.org";
207 .fi
208 .PP
209 Also, given the domain they're in, these are probably test machines.
210 If we wanted to test the DHCP leasing mechanism, we might set the
211 lease timeout somewhat shorter than the default:
212
213 .nf
214 max-lease-time 120;
215 default-lease-time 120;
216 .fi
217 .PP
218 You may have noticed that while some parameters start with the
219 \fIoption\fR keyword, some do not. Parameters starting with the
220 \fIoption\fR keyword correspond to actual DHCP options, while
221 parameters that do not start with the option keyword either control
222 the behavior of the DHCP server (e.g., how long a lease dhcpd will
223 give out), or specify client parameters that are not optional in the
224 DHCP protocol (for example, server-name and filename).
225 .PP
226 In Figure 1, each host had \fIhost-specific parameters\fR. These
227 could include such things as the \fIhostname\fR option, the name of a
228 file to upload (the \fIfilename\fR parameter) and the address of the
229 server from which to upload the file (the \fInext-server\fR
230 parameter). In general, any parameter can appear anywhere that
231 parameters are allowed, and will be applied according to the scope in
232 which the parameter appears.
233 .PP
234 Imagine that you have a site with a lot of NCD X-Terminals. These
235 terminals come in a variety of models, and you want to specify the
236 boot files for each model. One way to do this would be to have host
237 declarations for each server and group them by model:
238 .nf
239
240 group {
241 filename "Xncd19r";
242 next-server ncd-booter;
243
244 host ncd1 { hardware ethernet 0:c0:c3:49:2b:57; }
245 host ncd4 { hardware ethernet 0:c0:c3:80:fc:32; }
246 host ncd8 { hardware ethernet 0:c0:c3:22:46:81; }
247 }
248
249 group {
250 filename "Xncd19c";
251 next-server ncd-booter;
252
253 host ncd2 { hardware ethernet 0:c0:c3:88:2d:81; }
254 host ncd3 { hardware ethernet 0:c0:c3:00:14:11; }
255 }
256
257 group {
258 filename "XncdHMX";
259 next-server ncd-booter;
260
261 host ncd1 { hardware ethernet 0:c0:c3:11:90:23; }
262 host ncd4 { hardware ethernet 0:c0:c3:91:a7:8; }
263 host ncd8 { hardware ethernet 0:c0:c3:cc:a:8f; }
264 }
265 .fi
266 .SH ADDRESS POOLS
267 .PP
268 The
269 .B pool
270 declaration can be used to specify a pool of addresses that will be
271 treated differently than another pool of addresses, even on the same
272 network segment or subnet. For example, you may want to provide a
273 large set of addresses that can be assigned to DHCP clients that are
274 registered to your DHCP server, while providing a smaller set of
275 addresses, possibly with short lease times, that are available for
276 unknown clients. If you have a firewall, you may be able to arrange
277 for addresses from one pool to be allowed access to the Internet,
278 while addresses in another pool are not, thus encouraging users to
279 register their DHCP clients. To do this, you would set up a pair of
280 pool declarations:
281 .PP
282 .nf
283 subnet 10.0.0.0 netmask 255.255.255.0 {
284 option routers 10.0.0.254;
285
286 # Unknown clients get this pool.
287 pool {
288 option domain-name-servers bogus.example.com;
289 max-lease-time 300;
290 range 10.0.0.200 10.0.0.253;
291 allow unknown-clients;
292 }
293
294 # Known clients get this pool.
295 pool {
296 option domain-name-servers ns1.example.com, ns2.example.com;
297 max-lease-time 28800;
298 range 10.0.0.5 10.0.0.199;
299 deny unknown-clients;
300 }
301 }
302 .fi
303 .PP
304 It is also possible to set up entirely different subnets for known and
305 unknown clients - address pools exist at the level of shared networks,
306 so address ranges within pool declarations can be on different
307 subnets.
308 .PP
309 As you can see in the preceding example, pools can have permit lists
310 that control which clients are allowed access to the pool and which
311 aren't. Each entry in a pool's permit list is introduced with the
312 .I allow
313 or \fIdeny\fR keyword. If a pool has a permit list, then only those
314 clients that match specific entries on the permit list will be
315 eligible to be assigned addresses from the pool. If a pool has a
316 deny list, then only those clients that do not match any entries on
317 the deny list will be eligible. If both permit and deny lists exist
318 for a pool, then only clients that match the permit list and do not
319 match the deny list will be allowed access.
320 .SH DYNAMIC ADDRESS ALLOCATION
321 Address allocation is actually only done when a client is in the INIT
322 state and has sent a DHCPDISCOVER message. If the client thinks it
323 has a valid lease and sends a DHCPREQUEST to initiate or renew that
324 lease, the server has only three choices - it can ignore the
325 DHCPREQUEST, send a DHCPNAK to tell the client it should stop using
326 the address, or send a DHCPACK, telling the client to go ahead and use
327 the address for a while.
328 .PP
329 If the server finds the address the client is requesting, and that
330 address is available to the client, the server will send a DHCPACK.
331 If the address is no longer available, or the client isn't permitted
332 to have it, the server will send a DHCPNAK. If the server knows
333 nothing about the address, it will remain silent, unless the address
334 is incorrect for the network segment to which the client has been
335 attached and the server is authoritative for that network segment, in
336 which case the server will send a DHCPNAK even though it doesn't know
337 about the address.
338 .PP
339 There may be a host declaration matching the client's identification.
340 If that host declaration contains a fixed-address declaration that
341 lists an IP address that is valid for the network segment to which the
342 client is connected. In this case, the DHCP server will never do
343 dynamic address allocation. In this case, the client is \fIrequired\fR
344 to take the address specified in the host declaration. If the
345 client sends a DHCPREQUEST for some other address, the server will respond
346 with a DHCPNAK.
347 .PP
348 When the DHCP server allocates a new address for a client (remember,
349 this only happens if the client has sent a DHCPDISCOVER), it first
350 looks to see if the client already has a valid lease on an IP address,
351 or if there is an old IP address the client had before that hasn't yet
352 been reassigned. In that case, the server will take that address and
353 check it to see if the client is still permitted to use it. If the
354 client is no longer permitted to use it, the lease is freed if the
355 server thought it was still in use - the fact that the client has sent
356 a DHCPDISCOVER proves to the server that the client is no longer using
357 the lease.
358 .PP
359 If no existing lease is found, or if the client is forbidden to
360 receive the existing lease, then the server will look in the list of
361 address pools for the network segment to which the client is attached
362 for a lease that is not in use and that the client is permitted to
363 have. It looks through each pool declaration in sequence (all
364 .I range
365 declarations that appear outside of pool declarations are grouped into
366 a single pool with no permit list). If the permit list for the pool
367 allows the client to be allocated an address from that pool, the pool
368 is examined to see if there is an address available. If so, then the
369 client is tentatively assigned that address. Otherwise, the next
370 pool is tested. If no addresses are found that can be assigned to
371 the client, no response is sent to the client.
372 .PP
373 If an address is found that the client is permitted to have, and that
374 has never been assigned to any client before, the address is
375 immediately allocated to the client. If the address is available for
376 allocation but has been previously assigned to a different client, the
377 server will keep looking in hopes of finding an address that has never
378 before been assigned to a client.
379 .PP
380 The DHCP server generates the list of available IP addresses from a
381 hash table. This means that the addresses are not sorted in any
382 particular order, and so it is not possible to predict the order in
383 which the DHCP server will allocate IP addresses. Users of previous
384 versions of the ISC DHCP server may have become accustomed to the DHCP
385 server allocating IP addresses in ascending order, but this is no
386 longer possible, and there is no way to configure this behavior with
387 version 3 of the ISC DHCP server.
388 .SH IP ADDRESS CONFLICT PREVENTION
389 The DHCP server checks IP addresses to see if they are in use before
390 allocating them to clients. It does this by sending an ICMP Echo
391 request message to the IP address being allocated. If no ICMP Echo
392 reply is received within a second, the address is assumed to be free.
393 This is only done for leases that have been specified in range
394 statements, and only when the lease is thought by the DHCP server to
395 be free - i.e., the DHCP server or its failover peer has not listed
396 the lease as in use.
397 .PP
398 If a response is received to an ICMP Echo request, the DHCP server
399 assumes that there is a configuration error - the IP address is in use
400 by some host on the network that is not a DHCP client. It marks the
401 address as abandoned, and will not assign it to clients.
402 .PP
403 If a DHCP client tries to get an IP address, but none are available,
404 but there are abandoned IP addresses, then the DHCP server will
405 attempt to reclaim an abandoned IP address. It marks one IP address
406 as free, and then does the same ICMP Echo request check described
407 previously. If there is no answer to the ICMP Echo request, the
408 address is assigned to the client.
409 .PP
410 The DHCP server does not cycle through abandoned IP addresses if the
411 first IP address it tries to reclaim is free. Rather, when the next
412 DHCPDISCOVER comes in from the client, it will attempt a new
413 allocation using the same method described here, and will typically
414 try a new IP address.
415 .SH DHCP FAILOVER
416 This version of the ISC DHCP server supports the DHCP failover
417 protocol as documented in draft-ietf-dhc-failover-07.txt. This is
418 not a final protocol document, and we have not done interoperability
419 testing with other vendors' implementations of this protocol, so you
420 must not assume that this implementation conforms to the standard.
421 If you wish to use the failover protocol, make sure that both failover
422 peers are running the same version of the ISC DHCP server.
423 .PP
424 The failover protocol allows two DHCP servers (and no more than two)
425 to share a common address pool. Each server will have about half of
426 the available IP addresses in the pool at any given time for
427 allocation. If one server fails, the other server will continue to
428 renew leases out of the pool, and will allocate new addresses out of
429 the roughly half of available addresses that it had when
430 communications with the other server were lost.
431 .PP
432 It is possible during a prolonged failure to tell the remaining server
433 that the other server is down, in which case the remaining server will
434 (over time) reclaim all the addresses the other server had available
435 for allocation, and begin to reuse them. This is called putting the
436 server into the PARTNER-DOWN state.
437 .PP
438 You can put the server into the PARTNER-DOWN state either by using the
439 .B omshell (1)
440 command or by stopping the server, editing the last peer state
441 declaration in the lease file, and restarting the server. If you use
442 this last method, be sure to leave the date and time of the start of
443 the state blank:
444 .PP
445 .nf
446 .B failover peer "\fIname\fB" state {
447 .B my state partner-down;
448 .B peer state \fIstate\fB at \fIdate\fB;
449 .B }
450 .fi
451 .PP
452 When the other server comes back online, it should automatically
453 detect that it has been offline and request a complete update from the
454 server that was running in the PARTNER-DOWN state, and then both
455 servers will resume processing together.
456 .PP
457 It is possible to get into a dangerous situation: if you put one
458 server into the PARTNER-DOWN state, and then *that* server goes down,
459 and the other server comes back up, the other server will not know
460 that the first server was in the PARTNER-DOWN state, and may issue
461 addresses previously issued by the other server to different clients,
462 resulting in IP address conflicts. Before putting a server into
463 PARTNER-DOWN state, therefore, make
464 .I sure
465 that the other server will not restart automatically.
466 .PP
467 The failover protocol defines a primary server role and a secondary
468 server role. There are some differences in how primaries and
469 secondaries act, but most of the differences simply have to do with
470 providing a way for each peer to behave in the opposite way from the
471 other. So one server must be configured as primary, and the other
472 must be configured as secondary, and it doesn't matter too much which
473 one is which.
474 .SH FAILOVER STARTUP
475 When a server starts that has not previously communicated with its
476 failover peer, it must establish communications with its failover peer
477 and synchronize with it before it can serve clients. This can happen
478 either because you have just configured your DHCP servers to perform
479 failover for the first time, or because one of your failover servers
480 has failed catastrophically and lost its database.
481 .PP
482 The initial recovery process is designed to ensure that when one
483 failover peer loses its database and then resynchronizes, any leases
484 that the failed server gave out before it failed will be honored.
485 When the failed server starts up, it notices that it has no saved
486 failover state, and attempts to contact its peer.
487 .PP
488 When it has established contact, it asks the peer for a complete copy
489 its peer's lease database. The peer then sends its complete database,
490 and sends a message indicating that it is done. The failed server
491 then waits until MCLT has passed, and once MCLT has passed both
492 servers make the transition back into normal operation. This waiting
493 period ensures that any leases the failed server may have given out
494 while out of contact with its partner will have expired.
495 .PP
496 While the failed server is recovering, its partner remains in the
497 partner-down state, which means that it is serving all clients. The
498 failed server provides no service at all to DHCP clients until it has
499 made the transition into normal operation.
500 .PP
501 In the case where both servers detect that they have never before
502 communicated with their partner, they both come up in this recovery
503 state and follow the procedure we have just described. In this case,
504 no service will be provided to DHCP clients until MCLT has expired.
505 .SH CONFIGURING FAILOVER
506 In order to configure failover, you need to write a peer declaration
507 that configures the failover protocol, and you need to write peer
508 references in each pool declaration for which you want to do
509 failover. You do not have to do failover for all pools on a given
510 network segment. You must not tell one server it's doing failover
511 on a particular address pool and tell the other it is not. You must
512 not have any common address pools on which you are not doing
513 failover. A pool declaration that utilizes failover would look like this:
514 .PP
515 .nf
516 pool {
517 failover peer "foo";
518 \fIpool specific parameters\fR
519 };
520 .fi
521 .PP
522 The server currently does very little sanity checking, so if you
523 configure it wrong, it will just fail in odd ways. I would recommend
524 therefore that you either do failover or don't do failover, but don't
525 do any mixed pools. Also, use the same master configuration file for
526 both servers, and have a separate file that contains the peer
527 declaration and includes the master file. This will help you to avoid
528 configuration mismatches. As our implementation evolves, this will
529 become less of a problem. A basic sample dhcpd.conf file for a
530 primary server might look like this:
531 .PP
532 .nf
533 failover peer "foo" {
534 primary;
535 address anthrax.rc.vix.com;
536 port 519;
537 peer address trantor.rc.vix.com;
538 peer port 520;
539 max-response-delay 60;
540 max-unacked-updates 10;
541 mclt 3600;
542 split 128;
543 load balance max seconds 3;
544 }
545
546 include "/etc/dhcpd.master";
547 .fi
548 .PP
549 The statements in the peer declaration are as follows:
550 .PP
551 The
552 .I primary
553 and
554 .I secondary
555 statements
556 .RS 0.25i
557 .PP
558 [ \fBprimary\fR | \fBsecondary\fR ]\fB;\fR
559 .PP
560 This determines whether the server is primary or secondary, as
561 described earlier under DHCP FAILOVER.
562 .RE
563 .PP
564 The
565 .I address
566 statement
567 .RS 0.25i
568 .PP
569 .B address \fIaddress\fR\fB;\fR
570 .PP
571 The \fBaddress\fR statement declares the IP address or DNS name on which the
572 server should listen for connections from its failover peer, and also the
573 value to use for the DHCP Failover Protocol server identifier. Because this
574 value is used as an identifier, it may not be omitted.
575 .RE
576 .PP
577 The
578 .I peer address
579 statement
580 .RS 0.25i
581 .PP
582 .B peer address \fIaddress\fR\fB;\fR
583 .PP
584 The \fBpeer address\fR statement declares the IP address or DNS name to
585 which the server should connect to reach its failover peer for failover
586 messages.
587 .RE
588 .PP
589 The
590 .I port
591 statement
592 .RS 0.25i
593 .PP
594 .B port \fIport-number\fR\fB;\fR
595 .PP
596 The \fBport\fR statement declares the TCP port on which the server
597 should listen for connections from its failover peer. This statement
598 may not currently be omitted, because the failover protocol does not
599 yet have a reserved TCP port number.
600 .RE
601 .PP
602 The
603 .I peer port
604 statement
605 .RS 0.25i
606 .PP
607 .B peer port \fIport-number\fR\fB;\fR
608 .PP
609 The \fBpeer port\fR statement declares the TCP port to which the
610 server should connect to reach its failover peer for failover
611 messages. This statement may not be omitted because the failover
612 protocol does not yet have a reserved TCP port number. The port
613 number declared in the \fBpeer port\fR statement may be the same as
614 the port number declared in the \fBport\fR statement.
615 .RE
616 .PP
617 The
618 .I max-response-delay
619 statement
620 .RS 0.25i
621 .PP
622 .B max-response-delay \fIseconds\fR\fB;\fR
623 .PP
624 The \fBmax-response-delay\fR statement tells the DHCP server how
625 many seconds may pass without receiving a message from its failover
626 peer before it assumes that connection has failed. This number
627 should be small enough that a transient network failure that breaks
628 the connection will not result in the servers being out of
629 communication for a long time, but large enough that the server isn't
630 constantly making and breaking connections. This parameter must be
631 specified.
632 .RE
633 .PP
634 The
635 .I max-unacked-updates
636 statement
637 .RS 0.25i
638 .PP
639 .B max-unacked-updates \fIcount\fR\fB;\fR
640 .PP
641 The \fBmax-unacked-updates\fR statement tells the remote DHCP server how
642 many BNDUPD messages it can send before it receives a BNDACK
643 from the local system. We don't have enough operational experience
644 to say what a good value for this is, but 10 seems to work. This
645 parameter must be specified.
646 .RE
647 .PP
648 The
649 .I mclt
650 statement
651 .RS 0.25i
652 .PP
653 .B mclt \fIseconds\fR\fB;\fR
654 .PP
655 The \fBmclt\fR statement defines the Maximum Client Lead Time. It
656 must be specified on the primary, and may not be specified on the
657 secondary. This is the length of time for which a lease may be
658 renewed by either failover peer without contacting the other. The
659 longer you set this, the longer it will take for the running server to
660 recover IP addresses after moving into PARTNER-DOWN state. The
661 shorter you set it, the more load your servers will experience when
662 they are not communicating. A value of something like 3600 is
663 probably reasonable, but again bear in mind that we have no real
664 operational experience with this.
665 .RE
666 .PP
667 The
668 .I split
669 statement
670 .RS 0.25i
671 .PP
672 .B split \fIindex\fR\fB;\fR
673 .PP
674 The split statement specifies the split between the primary and
675 secondary for the purposes of load balancing. Whenever a client
676 makes a DHCP request, the DHCP server runs a hash on the client
677 identification, resulting in value from 0 to 255. This is used as
678 an index into a 256 bit field. If the bit at that index is set,
679 the primary is responsible. If the bit at that index is not set,
680 the secondary is responsible. The \fBsplit\fR value determines
681 how many of the leading bits are set to one. So, in practice, higher
682 split values will cause the primary to serve more clients than the
683 secondary. Lower split values, the converse. Legal values are between
684 0 and 255, of which the most reasonable is 128.
685 .RE
686 .PP
687 The
688 .I hba
689 statement
690 .RS 0.25i
691 .PP
692 .B hba \fIcolon-separated-hex-list\fB;\fR
693 .PP
694 The hba statement specifies the split between the primary and
695 secondary as a bitmap rather than a cutoff, which theoretically allows
696 for finer-grained control. In practice, there is probably no need
697 for such fine-grained control, however. An example hba statement:
698 .PP
699 .nf
700 hba ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:
701 00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00;
702 .fi
703 .PP
704 This is equivalent to a \fBsplit 128;\fR statement, and identical. The
705 following two examples are also equivalent to a \fBsplit\fR of 128, but
706 are not identical:
707 .PP
708 .nf
709 hba aa:aa:aa:aa:aa:aa:aa:aa:aa:aa:aa:aa:aa:aa:aa:aa:
710 aa:aa:aa:aa:aa:aa:aa:aa:aa:aa:aa:aa:aa:aa:aa:aa;
711
712 hba 55:55:55:55:55:55:55:55:55:55:55:55:55:55:55:55:
713 55:55:55:55:55:55:55:55:55:55:55:55:55:55:55:55;
714 .fi
715 .PP
716 They are equivalent, because half the bits are set to 0, half are set to
717 1 (0xa and 0x5 are 1010 and 0101 binary respectively) and consequently this
718 would roughly divide the clients equally between the servers. They are not
719 identical, because the actual peers this would load balance to each server
720 are different for each example.
721 .PP
722 You must only have \fBsplit\fR or \fBhba\fR defined, never both. For most
723 cases, the fine-grained control that \fBhba\fR offers isn't necessary, and
724 \fBsplit\fR should be used.
725 .RE
726 .PP
727 The
728 .I load balance max seconds
729 statement
730 .RS 0.25i
731 .PP
732 .B load balance max seconds \fIseconds\fR\fB;\fR
733 .PP
734 This statement allows you to configure a cutoff after which load
735 balancing is disabled. The cutoff is based on the number of seconds
736 since the client sent its first DHCPDISCOVER or DHCPREQUEST message,
737 and only works with clients that correctly implement the \fIsecs\fR
738 field - fortunately most clients do. We recommend setting this to
739 something like 3 or 5. The effect of this is that if one of the
740 failover peers gets into a state where it is responding to failover
741 messages but not responding to some client requests, the other
742 failover peer will take over its client load automatically as the
743 clients retry.
744 .RE
745 .PP
746 The Failover pool balance statements.
747 .RS 0.25i
748 .PP
749 \fBmax-lease-misbalance \fIpercentage\fR\fB;\fR
750 \fBmax-lease-ownership \fIpercentage\fR\fB;\fR
751 \fBmin-balance \fIseconds\fR\fB;\fR
752 \fBmax-balance \fIseconds\fR\fB;\fR
753 .PP
754 This version of the DHCP Server evaluates pool balance on a schedule,
755 rather than on demand as leases are allocated. The latter approach
756 proved to be slightly klunky when pool misbalanced reach total
757 saturation...when any server ran out of leases to assign, it also lost
758 its ability to notice it had run dry.
759 .PP
760 In order to understand pool balance, some elements of its operation
761 first need to be defined. First, there are 'free' and 'backup' leases.
762 Both of these are referred to as 'free state leases'. 'free' and 'backup'
763 are 'the free states' for the purpose of this document. The difference
764 is that only the primary may allocate from 'free' leases unless under
765 special circumstances, and only the secondary may allocate 'backup' leases.
766 .PP
767 When pool balance is performed, the only plausible expectation is to
768 provide a 50/50 split of the free state leases between the two servers.
769 This is because no one can predict which server will fail, regardless
770 of the relative load placed upon the two servers, so giving each server
771 half the leases gives both servers the same amount of 'failure endurance'.
772 Therefore, there is no way to configure any different behaviour, outside of
773 some very small windows we will describe shortly.
774 .PP
775 The first thing calculated on any pool balance run is a value referred to
776 as 'lts', or "Leases To Send". This, simply, is the difference in the
777 count of free and backup leases, divided by two. For the secondary,
778 it is the difference in the backup and free leases, divided by two.
779 The resulting value is signed: if it is positive, the local server is
780 expected to hand out leases to retain a 50/50 balance. If it is negative,
781 the remote server would need to send leases to balance the pool. Once
782 the lts value reaches zero, the pool is perfectly balanced (give or take
783 one lease in the case of an odd number of total free state leases).
784 .PP
785 The current approach is still something of a hybrid of the old approach,
786 marked by the presence of the \fBmax-lease-misbalance\fR statement. This
787 parameter configures what used to be a 10% fixed value in previous versions:
788 if lts is less than free+backup * \fBmax-lease-misbalance\fR percent, then
789 the server will skip balancing a given pool (it won't bother moving any
790 leases, even if some leases "should" be moved). The meaning of this value
791 is also somewhat overloaded, however, in that it also governs the estimation
792 of when to attempt to balance the pool (which may then also be skipped over).
793 The oldest leases in the free and backup states are examined. The time
794 they have resided in their respective queues is used as an estimate to
795 indicate how much time it is probable it would take before the leases at
796 the top of the list would be consumed (and thus, how long it would take
797 to use all leases in that state). This percentage is directly multiplied
798 by this time, and fit into the schedule if it falls within
799 the \fBmin-balance\fR and \fBmax-balance\fR configured values. The
800 scheduled pool check time is only moved in a downwards direction, it is
801 never increased. Lastly, if the lts is more than double this number in
802 the negative direction, the local server will 'panic' and transmit a
803 Failover protocol POOLREQ message, in the hopes that the remote system
804 will be woken up into action.
805 .PP
806 Once the lts value exceeds the \fBmax-lease-misbalance\fR percentage of
807 total free state leases as described above, leases are moved to the remote
808 server. This is done in two passes.
809 .PP
810 In the first pass, only leases whose most recent bound client would have
811 been served by the remote server - according to the Load Balance Algorithm
812 (see above \fBsplit\fR and \fBhba\fR configuration statements) - are given
813 away to the peer. This first pass will happily continue to give away leases,
814 decrementing the lts value by one for each, until the lts value has reached
815 the negative of the total number of leases multiplied by
816 the \fBmax-lease-ownership\fR percentage. So it is through this value that
817 you can permit a small misbalance of the lease pools - for the purpose of
818 giving the peer more than a 50/50 share of leases in the hopes that their
819 clients might some day return and be allocated by the peer (operating
820 normally). This process is referred to as 'MAC Address Affinity', but this
821 is somewhat misnamed: it applies equally to DHCP Client Identifier options.
822 Note also that affinity is applied to leases when they enter the state
823 'free' from 'expired' or 'released'. In this case also, leases will not
824 be moved from free to backup if the secondary already has more than its
825 share.
826 .PP
827 The second pass is only entered into if the first pass fails to reduce
828 the lts underneath the total number of free state leases multiplied by
829 the \fBmax-lease-ownership\fR percentage. In this pass, the oldest
830 leases are given over to the peer without second thought about the Load
831 Balance Algorithm, and this continues until the lts falls under this
832 value. In this way, the local server will also happily keep a small
833 percentage of the leases that would normally load balance to itself.
834 .PP
835 So, the \fBmax-lease-misbalance\fR value acts as a behavioural gate.
836 Smaller values will cause more leases to transition states to balance
837 the pools over time, higher values will decrease the amount of change
838 (but may lead to pool starvation if there's a run on leases).
839 .PP
840 The \fBmax-lease-ownership\fR value permits a small (percentage) skew
841 in the lease balance of a percentage of the total number of free state
842 leases.
843 .PP
844 Finally, the \fBmin-balance\fR and \fBmax-balance\fR make certain that a
845 scheduled rebalance event happens within a reasonable timeframe (not
846 to be thrown off by, for example, a 7 year old free lease).
847 .PP
848 Plausible values for the percentages lie between 0 and 100, inclusive, but
849 values over 50 are indistinguishable from one another (once lts exceeds
850 50% of the free state leases, one server must therefore have 100% of the
851 leases in its respective free state). It is recommended to select
852 a \fBmax-lease-ownership\fR value that is lower than the value selected
853 for the \fBmax-lease-misbalance\fR value. \fBmax-lease-ownership\fR
854 defaults to 10, and \fBmax-lease-misbalance\fR defaults to 15.
855 .PP
856 Plausible values for the \fBmin-balance\fR and \fBmax-balance\fR times also
857 range from 0 to (2^32)-1 (or the limit of your local time_t value), but
858 default to values 60 and 3600 respectively (to place balance events between
859 1 minute and 1 hour).
860 .RE
861 .SH CLIENT CLASSING
862 Clients can be separated into classes, and treated differently
863 depending on what class they are in. This separation can be done
864 either with a conditional statement, or with a match statement within
865 the class declaration. It is possible to specify a limit on the
866 total number of clients within a particular class or subclass that may
867 hold leases at one time, and it is possible to specify automatic
868 subclassing based on the contents of the client packet.
869 .PP
870 To add clients to classes based on conditional evaluation, you can
871 specify a matching expression in the class statement:
872 .PP
873 .nf
874 class "ras-clients" {
875 match if substring (option dhcp-client-identifier, 1, 3) = "RAS";
876 }
877 .fi
878 .PP
879 Note that whether you use matching expressions or add statements (or
880 both) to classify clients, you must always write a class declaration
881 for any class that you use. If there will be no match statement and
882 no in-scope statements for a class, the declaration should look like
883 this:
884 .PP
885 .nf
886 class "ras-clients" {
887 }
888 .fi
889 .SH SUBCLASSES
890 .PP
891 In addition to classes, it is possible to declare subclasses. A
892 subclass is a class with the same name as a regular class, but with a
893 specific submatch expression which is hashed for quick matching.
894 This is essentially a speed hack - the main difference between five
895 classes with match expressions and one class with five subclasses is
896 that it will be quicker to find the subclasses. Subclasses work as
897 follows:
898 .PP
899 .nf
900 class "allocation-class-1" {
901 match pick-first-value (option dhcp-client-identifier, hardware);
902 }
903
904 class "allocation-class-2" {
905 match pick-first-value (option dhcp-client-identifier, hardware);
906 }
907
908 subclass "allocation-class-1" 1:8:0:2b:4c:39:ad;
909 subclass "allocation-class-2" 1:8:0:2b:a9:cc:e3;
910 subclass "allocation-class-1" 1:0:0:c4:aa:29:44;
911
912 subnet 10.0.0.0 netmask 255.255.255.0 {
913 pool {
914 allow members of "allocation-class-1";
915 range 10.0.0.11 10.0.0.50;
916 }
917 pool {
918 allow members of "allocation-class-2";
919 range 10.0.0.51 10.0.0.100;
920 }
921 }
922 .fi
923 .PP
924 The data following the class name in the subclass declaration is a
925 constant value to use in matching the match expression for the class.
926 When class matching is done, the server will evaluate the match
927 expression and then look the result up in the hash table. If it
928 finds a match, the client is considered a member of both the class and
929 the subclass.
930 .PP
931 Subclasses can be declared with or without scope. In the above
932 example, the sole purpose of the subclass is to allow some clients
933 access to one address pool, while other clients are given access to
934 the other pool, so these subclasses are declared without scopes. If
935 part of the purpose of the subclass were to define different parameter
936 values for some clients, you might want to declare some subclasses
937 with scopes.
938 .PP
939 In the above example, if you had a single client that needed some
940 configuration parameters, while most didn't, you might write the
941 following subclass declaration for that client:
942 .PP
943 .nf
944 subclass "allocation-class-2" 1:08:00:2b:a1:11:31 {
945 option root-path "samsara:/var/diskless/alphapc";
946 filename "/tftpboot/netbsd.alphapc-diskless";
947 }
948 .fi
949 .PP
950 In this example, we've used subclassing as a way to control address
951 allocation on a per-client basis. However, it's also possible to use
952 subclassing in ways that are not specific to clients - for example, to
953 use the value of the vendor-class-identifier option to determine what
954 values to send in the vendor-encapsulated-options option. An example
955 of this is shown under the VENDOR ENCAPSULATED OPTIONS head in the
956 .B dhcp-options(5)
957 manual page.
958 .SH PER-CLASS LIMITS ON DYNAMIC ADDRESS ALLOCATION
959 .PP
960 You may specify a limit to the number of clients in a class that can
961 be assigned leases. The effect of this will be to make it difficult
962 for a new client in a class to get an address. Once a class with
963 such a limit has reached its limit, the only way a new client in that
964 class can get a lease is for an existing client to relinquish its
965 lease, either by letting it expire, or by sending a DHCPRELEASE
966 packet. Classes with lease limits are specified as follows:
967 .PP
968 .nf
969 class "limited-1" {
970 lease limit 4;
971 }
972 .fi
973 .PP
974 This will produce a class in which a maximum of four members may hold
975 a lease at one time.
976 .SH SPAWNING CLASSES
977 .PP
978 It is possible to declare a
979 .I spawning class\fR.
980 A spawning class is a class that automatically produces subclasses
981 based on what the client sends. The reason that spawning classes
982 were created was to make it possible to create lease-limited classes
983 on the fly. The envisioned application is a cable-modem environment
984 where the ISP wishes to provide clients at a particular site with more
985 than one IP address, but does not wish to provide such clients with
986 their own subnet, nor give them an unlimited number of IP addresses
987 from the network segment to which they are connected.
988 .PP
989 Many cable modem head-end systems can be configured to add a Relay
990 Agent Information option to DHCP packets when relaying them to the
991 DHCP server. These systems typically add a circuit ID or remote ID
992 option that uniquely identifies the customer site. To take advantage
993 of this, you can write a class declaration as follows:
994 .PP
995 .nf
996 class "customer" {
997 spawn with option agent.circuit-id;
998 lease limit 4;
999 }
1000 .fi
1001 .PP
1002 Now whenever a request comes in from a customer site, the circuit ID
1003 option will be checked against the class's hash table. If a subclass
1004 is found that matches the circuit ID, the client will be classified in
1005 that subclass and treated accordingly. If no subclass is found
1006 matching the circuit ID, a new one will be created and logged in the
1007 .B dhcpd.leases
1008 file, and the client will be classified in this new class. Once the
1009 client has been classified, it will be treated according to the rules
1010 of the class, including, in this case, being subject to the per-site
1011 limit of four leases.
1012 .PP
1013 The use of the subclass spawning mechanism is not restricted to relay
1014 agent options - this particular example is given only because it is a
1015 fairly straightforward one.
1016 .SH COMBINING MATCH, MATCH IF AND SPAWN WITH
1017 .PP
1018 In some cases, it may be useful to use one expression to assign a
1019 client to a particular class, and a second expression to put it into a
1020 subclass of that class. This can be done by combining the \fBmatch
1021 if\fR and \fBspawn with\fR statements, or the \fBmatch if\fR and
1022 \fBmatch\fR statements. For example:
1023 .PP
1024 .nf
1025 class "jr-cable-modems" {
1026 match if option dhcp-vendor-identifier = "jrcm";
1027 spawn with option agent.circuit-id;
1028 lease limit 4;
1029 }
1030
1031 class "dv-dsl-modems" {
1032 match if opton dhcp-vendor-identifier = "dvdsl";
1033 spawn with option agent.circuit-id;
1034 lease limit 16;
1035 }
1036 .fi
1037 .PP
1038 This allows you to have two classes that both have the same \fBspawn
1039 with\fR expression without getting the clients in the two classes
1040 confused with each other.
1041 .SH DYNAMIC DNS UPDATES
1042 .PP
1043 The DHCP server has the ability to dynamically update the Domain Name
1044 System. Within the configuration files, you can define how you want
1045 the Domain Name System to be updated. These updates are RFC 2136
1046 compliant so any DNS server supporting RFC 2136 should be able to
1047 accept updates from the DHCP server.
1048 .PP
1049 Two DNS update schemes are currently implemented, and another is
1050 planned. The two that are currently available are the ad-hoc DNS
1051 update mode and the interim DHCP-DNS interaction draft update mode.
1052 If and when the DHCP-DNS interaction draft and the DHCID draft make it
1053 through the IETF standards process, there will be a third mode, which
1054 will be the standard DNS update method. The DHCP server must be
1055 configured to use one of the two currently-supported methods, or not
1056 to do dns updates. This can be done with the
1057 .I ddns-update-style
1058 configuration parameter.
1059 .SH THE AD-HOC DNS UPDATE SCHEME
1060 The ad-hoc Dynamic DNS update scheme is
1061 .B now deprecated
1062 and
1063 .B
1064 does not work.
1065 In future releases of the ISC DHCP server, this scheme will not likely be
1066 available. The interim scheme works, allows for failover, and should now be
1067 used. The following description is left here for informational purposes
1068 only.
1069 .PP
1070 The ad-hoc Dynamic DNS update scheme implemented in this version of
1071 the ISC DHCP server is a prototype design, which does not
1072 have much to do with the standard update method that is being
1073 standardized in the IETF DHC working group, but rather implements some
1074 very basic, yet useful, update capabilities. This mode
1075 .B does not work
1076 with the
1077 .I failover protocol
1078 because it does not account for the possibility of two different DHCP
1079 servers updating the same set of DNS records.
1080 .PP
1081 For the ad-hoc DNS update method, the client's FQDN is derived in two
1082 parts. First, the hostname is determined. Then, the domain name is
1083 determined, and appended to the hostname.
1084 .PP
1085 The DHCP server determines the client's hostname by first looking for
1086 a \fIddns-hostname\fR configuration option, and using that if it is
1087 present. If no such option is present, the server looks for a
1088 valid hostname in the FQDN option sent by the client. If one is
1089 found, it is used; otherwise, if the client sent a host-name option,
1090 that is used. Otherwise, if there is a host declaration that applies
1091 to the client, the name from that declaration will be used. If none
1092 of these applies, the server will not have a hostname for the client,
1093 and will not be able to do a DNS update.
1094 .PP
1095 The domain name is determined from the
1096 .I ddns-domainname
1097 configuration option. The default configuration for this option is:
1098 .nf
1099 .sp 1
1100 option server.ddns-domainname = config-option domain-name;
1101
1102 .fi
1103 So if this configuration option is not configured to a different
1104 value (over-riding the above default), or if a domain-name option
1105 has not been configured for the client's scope, then the server will
1106 not attempt to perform a DNS update.
1107 .PP
1108 The client's fully-qualified domain name, derived as we have
1109 described, is used as the name on which an "A" record will be stored.
1110 The A record will contain the IP address that the client was assigned
1111 in its lease. If there is already an A record with the same name in
1112 the DNS server, no update of either the A or PTR records will occur -
1113 this prevents a client from claiming that its hostname is the name of
1114 some network server. For example, if you have a fileserver called
1115 "fs.sneedville.edu", and the client claims its hostname is "fs", no
1116 DNS update will be done for that client, and an error message will be
1117 logged.
1118 .PP
1119 If the A record update succeeds, a PTR record update for the assigned
1120 IP address will be done, pointing to the A record. This update is
1121 unconditional - it will be done even if another PTR record of the same
1122 name exists. Since the IP address has been assigned to the DHCP
1123 server, this should be safe.
1124 .PP
1125 Please note that the current implementation assumes clients only have
1126 a single network interface. A client with two network interfaces
1127 will see unpredictable behavior. This is considered a bug, and will
1128 be fixed in a later release. It may be helpful to enable the
1129 .I one-lease-per-client
1130 parameter so that roaming clients do not trigger this same behavior.
1131 .PP
1132 The DHCP protocol normally involves a four-packet exchange - first the
1133 client sends a DHCPDISCOVER message, then the server sends a
1134 DHCPOFFER, then the client sends a DHCPREQUEST, then the server sends
1135 a DHCPACK. In the current version of the server, the server will do
1136 a DNS update after it has received the DHCPREQUEST, and before it has
1137 sent the DHCPACK. It only sends the DNS update if it has not sent
1138 one for the client's address before, in order to minimize the impact
1139 on the DHCP server.
1140 .PP
1141 When the client's lease expires, the DHCP server (if it is operating
1142 at the time, or when next it operates) will remove the client's A and
1143 PTR records from the DNS database. If the client releases its lease
1144 by sending a DHCPRELEASE message, the server will likewise remove the
1145 A and PTR records.
1146 .SH THE INTERIM DNS UPDATE SCHEME
1147 The interim DNS update scheme operates mostly according to several
1148 drafts that are being considered by the IETF and are expected to
1149 become standards, but are not yet standards, and may not be
1150 standardized exactly as currently proposed. These are:
1151 .PP
1152 .nf
1153 .ce 3
1154 draft-ietf-dhc-ddns-resolution-??.txt
1155 draft-ietf-dhc-fqdn-option-??.txt
1156 draft-ietf-dnsext-dhcid-rr-??.txt
1157 .fi
1158 .PP
1159 Because our implementation is slightly different than the standard, we
1160 will briefly document the operation of this update style here.
1161 .PP
1162 The first point to understand about this style of DNS update is that
1163 unlike the ad-hoc style, the DHCP server does not necessarily
1164 always update both the A and the PTR records. The FQDN option
1165 includes a flag which, when sent by the client, indicates that the
1166 client wishes to update its own A record. In that case, the server
1167 can be configured either to honor the client's intentions or ignore
1168 them. This is done with the statement \fIallow client-updates;\fR or
1169 the statement \fIignore client-updates;\fR. By default, client
1170 updates are allowed.
1171 .PP
1172 If the server is configured to allow client updates, then if the
1173 client sends a fully-qualified domain name in the FQDN option, the
1174 server will use that name the client sent in the FQDN option to update
1175 the PTR record. For example, let us say that the client is a visitor
1176 from the "radish.org" domain, whose hostname is "jschmoe". The
1177 server is for the "example.org" domain. The DHCP client indicates in
1178 the FQDN option that its FQDN is "jschmoe.radish.org.". It also
1179 indicates that it wants to update its own A record. The DHCP server
1180 therefore does not attempt to set up an A record for the client, but
1181 does set up a PTR record for the IP address that it assigns the
1182 client, pointing at jschmoe.radish.org. Once the DHCP client has an
1183 IP address, it can update its own A record, assuming that the
1184 "radish.org" DNS server will allow it to do so.
1185 .PP
1186 If the server is configured not to allow client updates, or if the
1187 client doesn't want to do its own update, the server will simply
1188 choose a name for the client from either the fqdn option (if present)
1189 or the hostname option (if present). It will use its own
1190 domain name for the client, just as in the ad-hoc update scheme.
1191 It will then update both the A and PTR record, using the name that it
1192 chose for the client. If the client sends a fully-qualified domain
1193 name in the fqdn option, the server uses only the leftmost part of the
1194 domain name - in the example above, "jschmoe" instead of
1195 "jschmoe.radish.org".
1196 .PP
1197 Further, if the \fIignore client-updates;\fR directive is used, then
1198 the server will in addition send a response in the DHCP packet, using
1199 the FQDN Option, that implies to the client that it should perform its
1200 own updates if it chooses to do so. With \fIdeny client-updates;\fR, a
1201 response is sent which indicates the client may not perform updates.
1202 .PP
1203 Also, if the
1204 .I use-host-decl-names
1205 configuration option is enabled, then the host declaration's
1206 .I hostname
1207 will be used in place of the
1208 .I hostname
1209 option, and the same rules will apply as described above.
1210 .PP
1211 The other difference between the ad-hoc scheme and the interim
1212 scheme is that with the interim scheme, a method is used that
1213 allows more than one DHCP server to update the DNS database without
1214 accidentally deleting A records that shouldn't be deleted nor failing
1215 to add A records that should be added. The scheme works as follows:
1216 .PP
1217 When the DHCP server issues a client a new lease, it creates a text
1218 string that is an MD5 hash over the DHCP client's identification (see
1219 draft-ietf-dnsext-dhcid-rr-??.txt for details). The update adds an A
1220 record with the name the server chose and a TXT record containing the
1221 hashed identifier string (hashid). If this update succeeds, the
1222 server is done.
1223 .PP
1224 If the update fails because the A record already exists, then the DHCP
1225 server attempts to add the A record with the prerequisite that there
1226 must be a TXT record in the same name as the new A record, and that
1227 TXT record's contents must be equal to hashid. If this update
1228 succeeds, then the client has its A record and PTR record. If it
1229 fails, then the name the client has been assigned (or requested) is in
1230 use, and can't be used by the client. At this point the DHCP server
1231 gives up trying to do a DNS update for the client until the client
1232 chooses a new name.
1233 .PP
1234 The interim DNS update scheme is called interim for two reasons.
1235 First, it does not quite follow the drafts. The current versions of
1236 the drafts call for a new DHCID RRtype, but this is not yet
1237 available. The interim DNS update scheme uses a TXT record
1238 instead. Also, the existing ddns-resolution draft calls for the DHCP
1239 server to put a DHCID RR on the PTR record, but the \fIinterim\fR
1240 update method does not do this. It is our position that this is not
1241 useful, and we are working with the author in hopes of removing it
1242 from the next version of the draft, or better understanding why it is
1243 considered useful.
1244 .PP
1245 In addition to these differences, the server also does not update very
1246 aggressively. Because each DNS update involves a round trip to the
1247 DNS server, there is a cost associated with doing updates even if they
1248 do not actually modify the DNS database. So the DHCP server tracks
1249 whether or not it has updated the record in the past (this information
1250 is stored on the lease) and does not attempt to update records that it
1251 thinks it has already updated.
1252 .PP
1253 This can lead to cases where the DHCP server adds a record, and then
1254 the record is deleted through some other mechanism, but the server
1255 never again updates the DNS because it thinks the data is already
1256 there. In this case the data can be removed from the lease through
1257 operator intervention, and once this has been done, the DNS will be
1258 updated the next time the client renews.
1259 .SH DYNAMIC DNS UPDATE SECURITY
1260 .PP
1261 When you set your DNS server up to allow updates from the DHCP server,
1262 you may be exposing it to unauthorized updates. To avoid this, you
1263 should use TSIG signatures - a method of cryptographically signing
1264 updates using a shared secret key. As long as you protect the
1265 secrecy of this key, your updates should also be secure. Note,
1266 however, that the DHCP protocol itself provides no security, and that
1267 clients can therefore provide information to the DHCP server which the
1268 DHCP server will then use in its updates, with the constraints
1269 described previously.
1270 .PP
1271 The DNS server must be configured to allow updates for any zone that
1272 the DHCP server will be updating. For example, let us say that
1273 clients in the sneedville.edu domain will be assigned addresses on the
1274 10.10.17.0/24 subnet. In that case, you will need a key declaration
1275 for the TSIG key you will be using, and also two zone declarations -
1276 one for the zone containing A records that will be updates and one for
1277 the zone containing PTR records - for ISC BIND, something like this:
1278 .PP
1279 .nf
1280 key DHCP_UPDATER {
1281 algorithm HMAC-MD5.SIG-ALG.REG.INT;
1282 secret pRP5FapFoJ95JEL06sv4PQ==;
1283 };
1284
1285 zone "example.org" {
1286 type master;
1287 file "example.org.db";
1288 allow-update { key DHCP_UPDATER; };
1289 };
1290
1291 zone "17.10.10.in-addr.arpa" {
1292 type master;
1293 file "10.10.17.db";
1294 allow-update { key DHCP_UPDATER; };
1295 };
1296 .fi
1297 .PP
1298 You will also have to configure your DHCP server to do updates to
1299 these zones. To do so, you need to add something like this to your
1300 dhcpd.conf file:
1301 .PP
1302 .nf
1303 key DHCP_UPDATER {
1304 algorithm HMAC-MD5.SIG-ALG.REG.INT;
1305 secret pRP5FapFoJ95JEL06sv4PQ==;
1306 };
1307
1308 zone EXAMPLE.ORG. {
1309 primary 127.0.0.1;
1310 key DHCP_UPDATER;
1311 }
1312
1313 zone 17.127.10.in-addr.arpa. {
1314 primary 127.0.0.1;
1315 key DHCP_UPDATER;
1316 }
1317 .fi
1318 .PP
1319 The \fIprimary\fR statement specifies the IP address of the name
1320 server whose zone information is to be updated.
1321 .PP
1322 Note that the zone declarations have to correspond to authority
1323 records in your name server - in the above example, there must be an
1324 SOA record for "example.org." and for "17.10.10.in-addr.arpa.". For
1325 example, if there were a subdomain "foo.example.org" with no separate
1326 SOA, you could not write a zone declaration for "foo.example.org."
1327 Also keep in mind that zone names in your DHCP configuration should end in a
1328 "."; this is the preferred syntax. If you do not end your zone name in a
1329 ".", the DHCP server will figure it out. Also note that in the DHCP
1330 configuration, zone names are not encapsulated in quotes where there are in
1331 the DNS configuration.
1332 .PP
1333 You should choose your own secret key, of course. The ISC BIND 8 and
1334 9 distributions come with a program for generating secret keys called
1335 dnssec-keygen. The version that comes with BIND 9 is likely to produce a
1336 substantially more random key, so we recommend you use that one even
1337 if you are not using BIND 9 as your DNS server. If you are using BIND 9's
1338 dnssec-keygen, the above key would be created as follows:
1339 .PP
1340 .nf
1341 dnssec-keygen -a HMAC-MD5 -b 128 -n USER DHCP_UPDATER
1342 .fi
1343 .PP
1344 If you are using the BIND 8 dnskeygen program, the following command will
1345 generate a key as seen above:
1346 .PP
1347 .nf
1348 dnskeygen -H 128 -u -c -n DHCP_UPDATER
1349 .fi
1350 .PP
1351 You may wish to enable logging of DNS updates on your DNS server.
1352 To do so, you might write a logging statement like the following:
1353 .PP
1354 .nf
1355 logging {
1356 channel update_debug {
1357 file "/var/log/update-debug.log";
1358 severity debug 3;
1359 print-category yes;
1360 print-severity yes;
1361 print-time yes;
1362 };
1363 channel security_info {
1364 file "/var/log/named-auth.info";
1365 severity info;
1366 print-category yes;
1367 print-severity yes;
1368 print-time yes;
1369 };
1370
1371 category update { update_debug; };
1372 category security { security_info; };
1373 };
1374 .fi
1375 .PP
1376 You must create the /var/log/named-auth.info and
1377 /var/log/update-debug.log files before starting the name server. For
1378 more information on configuring ISC BIND, consult the documentation
1379 that accompanies it.
1380 .SH REFERENCE: EVENTS
1381 .PP
1382 There are three kinds of events that can happen regarding a lease, and
1383 it is possible to declare statements that occur when any of these
1384 events happen. These events are the commit event, when the server
1385 has made a commitment of a certain lease to a client, the release
1386 event, when the client has released the server from its commitment,
1387 and the expiry event, when the commitment expires.
1388 .PP
1389 To declare a set of statements to execute when an event happens, you
1390 must use the \fBon\fR statement, followed by the name of the event,
1391 followed by a series of statements to execute when the event happens,
1392 enclosed in braces. Events are used to implement DNS
1393 updates, so you should not define your own event handlers if you are
1394 using the built-in DNS update mechanism.
1395 .PP
1396 The built-in version of the DNS update mechanism is in a text
1397 string towards the top of server/dhcpd.c. If you want to use events
1398 for things other than DNS updates, and you also want DNS updates, you
1399 will have to start out by copying this code into your dhcpd.conf file
1400 and modifying it.
1401 .SH REFERENCE: DECLARATIONS
1402 .PP
1403 .B The
1404 .I include
1405 .B statement
1406 .PP
1407 .nf
1408 \fBinclude\fR \fI"filename"\fR\fB;\fR
1409 .fi
1410 .PP
1411 The \fIinclude\fR statement is used to read in a named file, and process
1412 the contents of that file as though it were entered in place of the
1413 include statement.
1414 .PP
1415 .B The
1416 .I shared-network
1417 .B statement
1418 .PP
1419 .nf
1420 \fBshared-network\fR \fIname\fR \fB{\fR
1421 [ \fIparameters\fR ]
1422 [ \fIdeclarations\fR ]
1423 \fB}\fR
1424 .fi
1425 .PP
1426 The \fIshared-network\fR statement is used to inform the DHCP server
1427 that some IP subnets actually share the same physical network. Any
1428 subnets in a shared network should be declared within a
1429 \fIshared-network\fR statement. Parameters specified in the
1430 \fIshared-network\fR statement will be used when booting clients on
1431 those subnets unless parameters provided at the subnet or host level
1432 override them. If any subnet in a shared network has addresses
1433 available for dynamic allocation, those addresses are collected into a
1434 common pool for that shared network and assigned to clients as needed.
1435 There is no way to distinguish on which subnet of a shared network a
1436 client should boot.
1437 .PP
1438 .I Name
1439 should be the name of the shared network. This name is used when
1440 printing debugging messages, so it should be descriptive for the
1441 shared network. The name may have the syntax of a valid domain name
1442 (although it will never be used as such), or it may be any arbitrary
1443 name, enclosed in quotes.
1444 .PP
1445 .B The
1446 .I subnet
1447 .B statement
1448 .PP
1449 .nf
1450 \fBsubnet\fR \fIsubnet-number\fR \fBnetmask\fR \fInetmask\fR \fB{\fR
1451 [ \fIparameters\fR ]
1452 [ \fIdeclarations\fR ]
1453 \fB}\fR
1454 .fi
1455 .PP
1456 The \fIsubnet\fR statement is used to provide dhcpd with enough
1457 information to tell whether or not an IP address is on that subnet.
1458 It may also be used to provide subnet-specific parameters and to
1459 specify what addresses may be dynamically allocated to clients booting
1460 on that subnet. Such addresses are specified using the \fIrange\fR
1461 declaration.
1462 .PP
1463 The
1464 .I subnet-number
1465 should be an IP address or domain name which resolves to the subnet
1466 number of the subnet being described. The
1467 .I netmask
1468 should be an IP address or domain name which resolves to the subnet mask
1469 of the subnet being described. The subnet number, together with the
1470 netmask, are sufficient to determine whether any given IP address is
1471 on the specified subnet.
1472 .PP
1473 Although a netmask must be given with every subnet declaration, it is
1474 recommended that if there is any variance in subnet masks at a site, a
1475 subnet-mask option statement be used in each subnet declaration to set
1476 the desired subnet mask, since any subnet-mask option statement will
1477 override the subnet mask declared in the subnet statement.
1478 .PP
1479 .B The
1480 .I subnet6
1481 .B statement
1482 .PP
1483 .nf
1484 \fBsubnet6\fR \fIsubnet6-number\fR \fB{\fR
1485 [ \fIparameters\fR ]
1486 [ \fIdeclarations\fR ]
1487 \fB}\fR
1488 .fi
1489 .PP
1490 The \fIsubnet6\fR statement is used to provide dhcpd with enough
1491 information to tell whether or not an IPv6 address is on that subnet6.
1492 It may also be used to provide subnet-specific parameters and to
1493 specify what addresses may be dynamically allocated to clients booting
1494 on that subnet.
1495 .PP
1496 The
1497 .I subnet6-number
1498 should be an IPv6 network identifier, specified as ip6-address/bits.
1499 .PP
1500 .B The
1501 .I range
1502 .B statement
1503 .PP
1504 .nf
1505 .B range\fR [ \fBdynamic-bootp\fR ] \fIlow-address\fR [ \fIhigh-address\fR]\fB;\fR
1506 .fi
1507 .PP
1508 For any subnet on which addresses will be assigned dynamically, there
1509 must be at least one \fIrange\fR statement. The range statement
1510 gives the lowest and highest IP addresses in a range. All IP
1511 addresses in the range should be in the subnet in which the
1512 \fIrange\fR statement is declared. The \fIdynamic-bootp\fR flag may
1513 be specified if addresses in the specified range may be dynamically
1514 assigned to BOOTP clients as well as DHCP clients. When specifying a
1515 single address, \fIhigh-address\fR can be omitted.
1516 .PP
1517 .B The
1518 .I range6
1519 .B statement
1520 .PP
1521 .nf
1522 .B range6\fR \fIlow-address\fR \fIhigh-address\fR\fB;\fR
1523 .B range6\fR \fIsubnet6-number\fR\fB;\fR
1524 .B range6\fR \fIsubnet6-number\fR \fBtemporary\fR\fB;\fR
1525 .B range6\fR \fIaddress\fR \fBtemporary\fR\fB;\fR
1526 .fi
1527 .PP
1528 For any IPv6 subnet6 on which addresses will be assigned dynamically, there
1529 must be at least one \fIrange6\fR statement. The \fIrange6\fR statement
1530 can either be the lowest and highest IPv6 addresses in a \fIrange6\fR, or
1531 use CIDR notation, specified as ip6-address/bits. All IP addresses
1532 in the \fIrange6\fR should be in the subnet6 in which the
1533 \fIrange6\fR statement is declared.
1534 .PP
1535 The \fItemporay\fR variant makes the prefix (by default on 64 bits) available
1536 for temporary (RFC 4941) addresses. A new address per prefix in the shared
1537 network is computed at each request with an IA_TA option. Release and Confirm
1538 ignores temporary addresses.
1539 .PP
1540 Any IPv6 addresses given to hosts with \fIfixed-address6\fR are excluded
1541 from the \fIrange6\fR, as are IPv6 addresses on the server itself.
1542 .PP
1543 .PP
1544 .B The
1545 .I prefix6
1546 .B statement
1547 .PP
1548 .nf
1549 .B prefix6\fR \fIlow-address\fR \fIhigh-address\fR \fB/\fR \fIbits\fR\fB;\fR
1550 .fi
1551 .PP
1552 The \fIprefix6\fR is the \fIrange6\fR equivalent for Prefix Delegation
1553 (RFC 3633). Prefixes of \fIbits\fR length are assigned between
1554 \fIlow-address\fR and \fIhigh-address\fR.
1555 .PP
1556 Any IPv6 prefixes given to static entries (hosts) with \fIfixed-prefix6\fR
1557 are excluded from the \fIprefix6\fR.
1558 .PP
1559 This statement is currently global but it should have a shared-network scope.
1560 .PP
1561 .B The
1562 .I host
1563 .B statement
1564 .PP
1565 .nf
1566 \fBhost\fR \fIhostname\fR {
1567 [ \fIparameters\fR ]
1568 [ \fIdeclarations\fR ]
1569 \fB}\fR
1570 .fi
1571 .PP
1572 The
1573 .B host
1574 declaration provides a scope in which to provide configuration information about
1575 a specific client, and also provides a way to assign a client a fixed address.
1576 The host declaration provides a way for the DHCP server to identify a DHCP or
1577 BOOTP client, and also a way to assign the client a static IP address.
1578 .PP
1579 If it is desirable to be able to boot a DHCP or BOOTP client on more than one
1580 subnet with fixed addresses, more than one address may be specified in the
1581 .I fixed-address
1582 declaration, or more than one
1583 .B host
1584 statement may be specified matching the same client.
1585 .PP
1586 If client-specific boot parameters must change based on the network
1587 to which the client is attached, then multiple
1588 .B host
1589 declarations should be used. The
1590 .B host
1591 declarations will only match a client if one of their
1592 .I fixed-address
1593 statements is viable on the subnet (or shared network) where the client is
1594 attached. Conversely, for a
1595 .B host
1596 declaration to match a client being allocated a dynamic address, it must not
1597 have any
1598 .I fixed-address
1599 statements. You may therefore need a mixture of
1600 .B host
1601 declarations for any given client...some having
1602 .I fixed-address
1603 statements, others without.
1604 .PP
1605 .I hostname
1606 should be a name identifying the host. If a \fIhostname\fR option is
1607 not specified for the host, \fIhostname\fR is used.
1608 .PP
1609 \fIHost\fR declarations are matched to actual DHCP or BOOTP clients
1610 by matching the \fRdhcp-client-identifier\fR option specified in the
1611 \fIhost\fR declaration to the one supplied by the client, or, if the
1612 \fIhost\fR declaration or the client does not provide a
1613 \fRdhcp-client-identifier\fR option, by matching the \fIhardware\fR
1614 parameter in the \fIhost\fR declaration to the network hardware
1615 address supplied by the client. BOOTP clients do not normally
1616 provide a \fIdhcp-client-identifier\fR, so the hardware address must
1617 be used for all clients that may boot using the BOOTP protocol.
1618 .PP
1619 DHCPv6 servers can use the \fIhost-identifier option\fR parameter in
1620 the \fIhost\fR declaration, and specify any option with a fixed value
1621 to identify hosts.
1622 .PP
1623 Please be aware that
1624 .B only
1625 the \fIdhcp-client-identifier\fR option and the hardware address can be
1626 used to match a host declaration, or the \fIhost-identifier option\fR
1627 parameter for DHCPv6 servers. For example, it is not possible to
1628 match a host declaration to a \fIhost-name\fR option. This is
1629 because the host-name option cannot be guaranteed to be unique for any
1630 given client, whereas both the hardware address and
1631 \fIdhcp-client-identifier\fR option are at least theoretically
1632 guaranteed to be unique to a given client.
1633 .PP
1634 .B The
1635 .I group
1636 .B statement
1637 .PP
1638 .nf
1639 \fBgroup\fR {
1640 [ \fIparameters\fR ]
1641 [ \fIdeclarations\fR ]
1642 \fB}\fR
1643 .fi
1644 .PP
1645 The group statement is used simply to apply one or more parameters to
1646 a group of declarations. It can be used to group hosts, shared
1647 networks, subnets, or even other groups.
1648 .SH REFERENCE: ALLOW AND DENY
1649 The
1650 .I allow
1651 and
1652 .I deny
1653 statements can be used to control the response of the DHCP server to
1654 various sorts of requests. The allow and deny keywords actually have
1655 different meanings depending on the context. In a pool context, these
1656 keywords can be used to set up access lists for address allocation
1657 pools. In other contexts, the keywords simply control general server
1658 behavior with respect to clients based on scope. In a non-pool
1659 context, the
1660 .I ignore
1661 keyword can be used in place of the
1662 .I deny
1663 keyword to prevent logging of denied requests.
1664 .PP
1665 .SH ALLOW DENY AND IGNORE IN SCOPE
1666 The following usages of allow and deny will work in any scope,
1667 although it is not recommended that they be used in pool
1668 declarations.
1669 .PP
1670 .B The
1671 .I unknown-clients
1672 .B keyword
1673 .PP
1674 \fBallow unknown-clients;\fR
1675 \fBdeny unknown-clients;\fR
1676 \fBignore unknown-clients;\fR
1677 .PP
1678 The \fBunknown-clients\fR flag is used to tell dhcpd whether
1679 or not to dynamically assign addresses to unknown clients. Dynamic
1680 address assignment to unknown clients is \fBallow\fRed by default.
1681 An unknown client is simply a client that has no host declaration.
1682 .PP
1683 The use of this option is now \fIdeprecated\fR. If you are trying to
1684 restrict access on your network to known clients, you should use \fBdeny
1685 unknown-clients;\fR inside of your address pool, as described under the
1686 heading ALLOW AND DENY WITHIN POOL DECLARATIONS.
1687 .PP
1688 .B The
1689 .I bootp
1690 .B keyword
1691 .PP
1692 \fBallow bootp;\fR
1693 \fBdeny bootp;\fR
1694 \fBignore bootp;\fR
1695 .PP
1696 The \fBbootp\fR flag is used to tell dhcpd whether
1697 or not to respond to bootp queries. Bootp queries are \fBallow\fRed
1698 by default.
1699 .PP
1700 This option does not satisfy the requirement of failover peers for denying
1701 dynamic bootp clients. The \fBdeny dynamic bootp clients;\fR option should
1702 be used instead. See the ALLOW AND DENY WITHIN POOL DECLARATIONS section
1703 of this man page for more details.
1704 .PP
1705 .B The
1706 .I booting
1707 .B keyword
1708 .PP
1709 \fBallow booting;\fR
1710 \fBdeny booting;\fR
1711 \fBignore booting;\fR
1712 .PP
1713 The \fBbooting\fR flag is used to tell dhcpd whether or not to respond
1714 to queries from a particular client. This keyword only has meaning
1715 when it appears in a host declaration. By default, booting is
1716 \fBallow\fRed, but if it is disabled for a particular client, then
1717 that client will not be able to get an address from the DHCP server.
1718 .PP
1719 .B The
1720 .I duplicates
1721 .B keyword
1722 .PP
1723 \fBallow duplicates;\fR
1724 \fBdeny duplicates;\fR
1725 .PP
1726 Host declarations can match client messages based on the DHCP Client
1727 Identifier option or based on the client's network hardware type and
1728 MAC address. If the MAC address is used, the host declaration will
1729 match any client with that MAC address - even clients with different
1730 client identifiers. This doesn't normally happen, but is possible
1731 when one computer has more than one operating system installed on it -
1732 for example, Microsoft Windows and NetBSD or Linux.
1733 .PP
1734 The \fBduplicates\fR flag tells the DHCP server that if a request is
1735 received from a client that matches the MAC address of a host
1736 declaration, any other leases matching that MAC address should be
1737 discarded by the server, even if the UID is not the same. This is a
1738 violation of the DHCP protocol, but can prevent clients whose client
1739 identifiers change regularly from holding many leases at the same time.
1740 By default, duplicates are \fBallow\fRed.
1741 .PP
1742 .B The
1743 .I declines
1744 .B keyword
1745 .PP
1746 \fBallow declines;\fR
1747 \fBdeny declines;\fR
1748 \fBignore declines;\fR
1749 .PP
1750 The DHCPDECLINE message is used by DHCP clients to indicate that the
1751 lease the server has offered is not valid. When the server receives
1752 a DHCPDECLINE for a particular address, it normally abandons that
1753 address, assuming that some unauthorized system is using it.
1754 Unfortunately, a malicious or buggy client can, using DHCPDECLINE
1755 messages, completely exhaust the DHCP server's allocation pool. The
1756 server will reclaim these leases, but while the client is running
1757 through the pool, it may cause serious thrashing in the DNS, and it
1758 will also cause the DHCP server to forget old DHCP client address
1759 allocations.
1760 .PP
1761 The \fBdeclines\fR flag tells the DHCP server whether or not to honor
1762 DHCPDECLINE messages. If it is set to \fBdeny\fR or \fBignore\fR in
1763 a particular scope, the DHCP server will not respond to DHCPDECLINE
1764 messages.
1765 .PP
1766 .B The
1767 .I client-updates
1768 .B keyword
1769 .PP
1770 \fBallow client-updates;\fR
1771 \fBdeny client-updates;\fR
1772 .PP
1773 The \fBclient-updates\fR flag tells the DHCP server whether or not to
1774 honor the client's intention to do its own update of its A record.
1775 This is only relevant when doing \fIinterim\fR DNS updates. See the
1776 documentation under the heading THE INTERIM DNS UPDATE SCHEME for
1777 details.
1778 .PP
1779 .B The
1780 .I leasequery
1781 .B keyword
1782 .PP
1783 \fBallow leasequery;\fR
1784 \fBdeny leasequery;\fR
1785 .PP
1786 The \fBleasequery\fR flag tells the DHCP server whether or not to
1787 answer DHCPLEASEQUERY packets. The answer to a DHCPLEASEQUERY packet
1788 includes information about a specific lease, such as when it was
1789 issued and when it will expire. By default, the server will not
1790 respond to these packets.
1791 .SH ALLOW AND DENY WITHIN POOL DECLARATIONS
1792 .PP
1793 The uses of the allow and deny keywords shown in the previous section
1794 work pretty much the same way whether the client is sending a
1795 DHCPDISCOVER or a DHCPREQUEST message - an address will be allocated
1796 to the client (either the old address it's requesting, or a new
1797 address) and then that address will be tested to see if it's okay to
1798 let the client have it. If the client requested it, and it's not
1799 okay, the server will send a DHCPNAK message. Otherwise, the server
1800 will simply not respond to the client. If it is okay to give the
1801 address to the client, the server will send a DHCPACK message.
1802 .PP
1803 The primary motivation behind pool declarations is to have address
1804 allocation pools whose allocation policies are different. A client
1805 may be denied access to one pool, but allowed access to another pool
1806 on the same network segment. In order for this to work, access
1807 control has to be done during address allocation, not after address
1808 allocation is done.
1809 .PP
1810 When a DHCPREQUEST message is processed, address allocation simply
1811 consists of looking up the address the client is requesting and seeing
1812 if it's still available for the client. If it is, then the DHCP
1813 server checks both the address pool permit lists and the relevant
1814 in-scope allow and deny statements to see if it's okay to give the
1815 lease to the client. In the case of a DHCPDISCOVER message, the
1816 allocation process is done as described previously in the ADDRESS
1817 ALLOCATION section.
1818 .PP
1819 When declaring permit lists for address allocation pools, the
1820 following syntaxes are recognized following the allow or deny keywords:
1821 .PP
1822 \fBknown-clients;\fR
1823 .PP
1824 If specified, this statement either allows or prevents allocation from
1825 this pool to any client that has a host declaration (i.e., is known).
1826 A client is known if it has a host declaration in \fIany\fR scope, not
1827 just the current scope.
1828 .PP
1829 \fBunknown-clients;\fR
1830 .PP
1831 If specified, this statement either allows or prevents allocation from
1832 this pool to any client that has no host declaration (i.e., is not
1833 known).
1834 .PP
1835 \fBmembers of "\fRclass\fB";\fR
1836 .PP
1837 If specified, this statement either allows or prevents allocation from
1838 this pool to any client that is a member of the named class.
1839 .PP
1840 \fBdynamic bootp clients;\fR
1841 .PP
1842 If specified, this statement either allows or prevents allocation from
1843 this pool to any bootp client.
1844 .PP
1845 \fBauthenticated clients;\fR
1846 .PP
1847 If specified, this statement either allows or prevents allocation from
1848 this pool to any client that has been authenticated using the DHCP
1849 authentication protocol. This is not yet supported.
1850 .PP
1851 \fBunauthenticated clients;\fR
1852 .PP
1853 If specified, this statement either allows or prevents allocation from
1854 this pool to any client that has not been authenticated using the DHCP
1855 authentication protocol. This is not yet supported.
1856 .PP
1857 \fBall clients;\fR
1858 .PP
1859 If specified, this statement either allows or prevents allocation from
1860 this pool to all clients. This can be used when you want to write a
1861 pool declaration for some reason, but hold it in reserve, or when you
1862 want to renumber your network quickly, and thus want the server to
1863 force all clients that have been allocated addresses from this pool to
1864 obtain new addresses immediately when they next renew.
1865 .PP
1866 \fBafter \fItime\fR\fB;\fR
1867 .PP
1868 If specified, this statement either allows or prevents allocation from
1869 this pool after a given date. This can be used when you want to move
1870 clients from one pool to another. The server adjusts the regular lease
1871 time so that the latest expiry time is at the given time+min-lease-time.
1872 A short min-lease-time enforces a step change, whereas a longer
1873 min-lease-time allows for a gradual change.
1874 \fItime\fR is either second since epoch, or a UTC time string e.g.
1875 4 2007/08/24 09:14:32 or a string with time zone offset in seconds
1876 e.g. 4 2007/08/24 11:14:32 -7200
1877 .SH REFERENCE: PARAMETERS
1878 The
1879 .I adaptive-lease-time-threshold
1880 statement
1881 .RS 0.25i
1882 .PP
1883 .B adaptive-lease-time-threshold \fIpercentage\fR\fB;\fR
1884 .PP
1885 When the number of allocated leases within a pool rises above
1886 the \fIpercentage\fR given in this statement, the DHCP server decreases
1887 the lease length for new clients within this pool to \fImin-lease-time\fR
1888 seconds. Clients renewing an already valid (long) leases get at least the
1889 remaining time from the current lease. Since the leases expire faster,
1890 the server may either recover more quickly or avoid pool exhaustion
1891 entirely. Once the number of allocated leases drop below the threshold,
1892 the server reverts back to normal lease times. Valid percentages are
1893 between 1 and 99.
1894 .RE
1895 .PP
1896 The
1897 .I always-broadcast
1898 statement
1899 .RS 0.25i
1900 .PP
1901 .B always-broadcast \fIflag\fR\fB;\fR
1902 .PP
1903 The DHCP and BOOTP protocols both require DHCP and BOOTP clients to
1904 set the broadcast bit in the flags field of the BOOTP message header.
1905 Unfortunately, some DHCP and BOOTP clients do not do this, and
1906 therefore may not receive responses from the DHCP server. The DHCP
1907 server can be made to always broadcast its responses to clients by
1908 setting this flag to 'on' for the relevant scope; relevant scopes would be
1909 inside a conditional statement, as a parameter for a class, or as a parameter
1910 for a host declaration. To avoid creating excess broadcast traffic on your
1911 network, we recommend that you restrict the use of this option to as few
1912 clients as possible. For example, the Microsoft DHCP client is known not
1913 to have this problem, as are the OpenTransport and ISC DHCP clients.
1914 .RE
1915 .PP
1916 The
1917 .I always-reply-rfc1048
1918 statement
1919 .RS 0.25i
1920 .PP
1921 .B always-reply-rfc1048 \fIflag\fR\fB;\fR
1922 .PP
1923 Some BOOTP clients expect RFC1048-style responses, but do not follow
1924 RFC1048 when sending their requests. You can tell that a client is
1925 having this problem if it is not getting the options you have
1926 configured for it and if you see in the server log the message
1927 "(non-rfc1048)" printed with each BOOTREQUEST that is logged.
1928 .PP
1929 If you want to send rfc1048 options to such a client, you can set the
1930 .B always-reply-rfc1048
1931 option in that client's host declaration, and the DHCP server will
1932 respond with an RFC-1048-style vendor options field. This flag can
1933 be set in any scope, and will affect all clients covered by that
1934 scope.
1935 .RE
1936 .PP
1937 The
1938 .I authoritative
1939 statement
1940 .RS 0.25i
1941 .PP
1942 .B authoritative;
1943 .PP
1944 .B not authoritative;
1945 .PP
1946 The DHCP server will normally assume that the configuration
1947 information about a given network segment is not known to be correct
1948 and is not authoritative. This is so that if a naive user installs a
1949 DHCP server not fully understanding how to configure it, it does not
1950 send spurious DHCPNAK messages to clients that have obtained addresses
1951 from a legitimate DHCP server on the network.
1952 .PP
1953 Network administrators setting up authoritative DHCP servers for their
1954 networks should always write \fBauthoritative;\fR at the top of their
1955 configuration file to indicate that the DHCP server \fIshould\fR send
1956 DHCPNAK messages to misconfigured clients. If this is not done,
1957 clients will be unable to get a correct IP address after changing
1958 subnets until their old lease has expired, which could take quite a
1959 long time.
1960 .PP
1961 Usually, writing \fBauthoritative;\fR at the top level of the file
1962 should be sufficient. However, if a DHCP server is to be set up so
1963 that it is aware of some networks for which it is authoritative and
1964 some networks for which it is not, it may be more appropriate to
1965 declare authority on a per-network-segment basis.
1966 .PP
1967 Note that the most specific scope for which the concept of authority
1968 makes any sense is the physical network segment - either a
1969 shared-network statement or a subnet statement that is not contained
1970 within a shared-network statement. It is not meaningful to specify
1971 that the server is authoritative for some subnets within a shared
1972 network, but not authoritative for others, nor is it meaningful to
1973 specify that the server is authoritative for some host declarations
1974 and not others.
1975 .RE
1976 .PP
1977 The \fIboot-unknown-clients\fR statement
1978 .RS 0.25i
1979 .PP
1980 .B boot-unknown-clients \fIflag\fB;\fR
1981 .PP
1982 If the \fIboot-unknown-clients\fR statement is present and has a value
1983 of \fIfalse\fR or \fIoff\fR, then clients for which there is no
1984 .I host
1985 declaration will not be allowed to obtain IP addresses. If this
1986 statement is not present or has a value of \fItrue\fR or \fIon\fR,
1987 then clients without host declarations will be allowed to obtain IP
1988 addresses, as long as those addresses are not restricted by
1989 .I allow
1990 and \fIdeny\fR statements within their \fIpool\fR declarations.
1991 .RE
1992 .PP
1993 The \fIddns-hostname\fR statement
1994 .RS 0.25i
1995 .PP
1996 .B ddns-hostname \fIname\fB;\fR
1997 .PP
1998 The \fIname\fR parameter should be the hostname that will be used in
1999 setting up the client's A and PTR records. If no ddns-hostname is
2000 specified in scope, then the server will derive the hostname
2001 automatically, using an algorithm that varies for each of the
2002 different update methods.
2003 .RE
2004 .PP
2005 The \fIddns-domainname\fR statement
2006 .RS 0.25i
2007 .PP
2008 .B ddns-domainname \fIname\fB;\fR
2009 .PP
2010 The \fIname\fR parameter should be the domain name that will be
2011 appended to the client's hostname to form a fully-qualified
2012 domain-name (FQDN).
2013 .RE
2014 .PP
2015 The \fIddns-rev-domainname\fR statement
2016 .RS 0.25i
2017 .PP
2018 .B ddns-rev-domainname \fIname\fB;\fR
2019 The \fIname\fR parameter should be the domain name that will be
2020 appended to the client's reversed IP address to produce a name for use
2021 in the client's PTR record. By default, this is "in-addr.arpa.", but
2022 the default can be overridden here.
2023 .PP
2024 The reversed IP address to which this domain name is appended is
2025 always the IP address of the client, in dotted quad notation, reversed
2026 - for example, if the IP address assigned to the client is
2027 10.17.92.74, then the reversed IP address is 74.92.17.10. So a
2028 client with that IP address would, by default, be given a PTR record
2029 of 10.17.92.74.in-addr.arpa.
2030 .RE
2031 .PP
2032 The \fIddns-update-style\fR parameter
2033 .RS 0.25i
2034 .PP
2035 .B ddns-update-style \fIstyle\fB;\fR
2036 .PP
2037 The
2038 .I style
2039 parameter must be one of \fBad-hoc\fR, \fBinterim\fR or \fBnone\fR.
2040 The \fIddns-update-style\fR statement is only meaningful in the outer
2041 scope - it is evaluated once after reading the dhcpd.conf file, rather
2042 than each time a client is assigned an IP address, so there is no way
2043 to use different DNS update styles for different clients. The default
2044 is \fBnone\fR.
2045 .RE
2046 .PP
2047 .B The
2048 .I ddns-updates
2049 .B statement
2050 .RS 0.25i
2051 .PP
2052 \fBddns-updates \fIflag\fR\fB;\fR
2053 .PP
2054 The \fIddns-updates\fR parameter controls whether or not the server will
2055 attempt to do a DNS update when a lease is confirmed. Set this to \fIoff\fR
2056 if the server should not attempt to do updates within a certain scope.
2057 The \fIddns-updates\fR parameter is on by default. To disable DNS
2058 updates in all scopes, it is preferable to use the
2059 \fIddns-update-style\fR statement, setting the style to \fInone\fR.
2060 .RE
2061 .PP
2062 The
2063 .I default-lease-time
2064 statement
2065 .RS 0.25i
2066 .PP
2067 .B default-lease-time \fItime\fR\fB;\fR
2068 .PP
2069 .I Time
2070 should be the length in seconds that will be assigned to a lease if
2071 the client requesting the lease does not ask for a specific expiration
2072 time. This is used for both DHCPv4 and DHCPv6 leases (it is also known
2073 as the "valid lifetime" in DHCPv6).
2074 .RE
2075 .PP
2076 The
2077 .I delayed-ack
2078 and
2079 .I max-ack-delay
2080 statements
2081 .RS 0.25i
2082 .PP
2083 .B delayed-ack \fIcount\fR\fB;\fR
2084 .B max-ack-delay \fImicroseconds\fR\fB;\fR
2085 .PP
2086 .I Count
2087 should be an integer value from zero to 2^16-1, and defaults to 28. The
2088 count represents how many DHCPv4 replies maximum will be queued pending
2089 transmission until after a database commit event. If this number is
2090 reached, a database commit event (commonly resulting in fsync() and
2091 representing a performance penalty) will be made, and the reply packets
2092 will be transmitted in a batch afterwards. This preserves the RFC2131
2093 direction that "stable storage" be updated prior to replying to clients.
2094 Should the DHCPv4 sockets "go dry" (select() returns immediately with no
2095 read sockets), the commit is made and any queued packets are transmitted.
2096 .PP
2097 Similarly, \fImicroseconds\fR indicates how many microseconds are permitted
2098 to pass inbetween queuing a packet pending an fsync, and performing the
2099 fsync. Valid values range from 0 to 2^32-1, and defaults to 250,000 (1/4 of
2100 a second).
2101 .PP
2102 Please note that as delayed-ack is currently experimental, the delayed-ack
2103 feature is not compiled in by default, but must be enabled at compile time
2104 with './configure --enable-delayed-ack'.
2105 .RE
2106 .PP
2107 The
2108 .I do-forward-updates
2109 statement
2110 .RS 0.25i
2111 .PP
2112 .B do-forward-updates \fIflag\fB;\fR
2113 .PP
2114 The \fIdo-forward-updates\fR statement instructs the DHCP server as
2115 to whether it should attempt to update a DHCP client's A record
2116 when the client acquires or renews a lease. This statement has no
2117 effect unless DNS updates are enabled and \fBddns-update-style\fR is
2118 set to \fBinterim\fR. Forward updates are enabled by default. If
2119 this statement is used to disable forward updates, the DHCP server
2120 will never attempt to update the client's A record, and will only ever
2121 attempt to update the client's PTR record if the client supplies an
2122 FQDN that should be placed in the PTR record using the fqdn option.
2123 If forward updates are enabled, the DHCP server will still honor the
2124 setting of the \fBclient-updates\fR flag.
2125 .RE
2126 .PP
2127 The
2128 .I dynamic-bootp-lease-cutoff
2129 statement
2130 .RS 0.25i
2131 .PP
2132 .B dynamic-bootp-lease-cutoff \fIdate\fB;\fR
2133 .PP
2134 The \fIdynamic-bootp-lease-cutoff\fR statement sets the ending time
2135 for all leases assigned dynamically to BOOTP clients. Because BOOTP
2136 clients do not have any way of renewing leases, and don't know that
2137 their leases could expire, by default dhcpd assigns infinite leases
2138 to all BOOTP clients. However, it may make sense in some situations
2139 to set a cutoff date for all BOOTP leases - for example, the end of a
2140 school term, or the time at night when a facility is closed and all
2141 machines are required to be powered off.
2142 .PP
2143 .I Date
2144 should be the date on which all assigned BOOTP leases will end. The
2145 date is specified in the form:
2146 .PP
2147 .ce 1
2148 W YYYY/MM/DD HH:MM:SS
2149 .PP
2150 W is the day of the week expressed as a number
2151 from zero (Sunday) to six (Saturday). YYYY is the year, including the
2152 century. MM is the month expressed as a number from 1 to 12. DD is
2153 the day of the month, counting from 1. HH is the hour, from zero to
2154 23. MM is the minute and SS is the second. The time is always in
2155 Coordinated Universal Time (UTC), not local time.
2156 .RE
2157 .PP
2158 The
2159 .I dynamic-bootp-lease-length
2160 statement
2161 .RS 0.25i
2162 .PP
2163 .B dynamic-bootp-lease-length\fR \fIlength\fR\fB;\fR
2164 .PP
2165 The \fIdynamic-bootp-lease-length\fR statement is used to set the
2166 length of leases dynamically assigned to BOOTP clients. At some
2167 sites, it may be possible to assume that a lease is no longer in
2168 use if its holder has not used BOOTP or DHCP to get its address within
2169 a certain time period. The period is specified in \fIlength\fR as a
2170 number of seconds. If a client reboots using BOOTP during the
2171 timeout period, the lease duration is reset to \fIlength\fR, so a
2172 BOOTP client that boots frequently enough will never lose its lease.
2173 Needless to say, this parameter should be adjusted with extreme
2174 caution.
2175 .RE
2176 .PP
2177 The
2178 .I filename
2179 statement
2180 .RS 0.25i
2181 .PP
2182 .B filename\fR \fB"\fR\fIfilename\fR\fB";\fR
2183 .PP
2184 The \fIfilename\fR statement can be used to specify the name of the
2185 initial boot file which is to be loaded by a client. The
2186 .I filename
2187 should be a filename recognizable to whatever file transfer protocol
2188 the client can be expected to use to load the file.
2189 .RE
2190 .PP
2191 The
2192 .I fixed-address
2193 declaration
2194 .RS 0.25i
2195 .PP
2196 .B fixed-address address\fR [\fB,\fR \fIaddress\fR ... ]\fB;\fR
2197 .PP
2198 The \fIfixed-address\fR declaration is used to assign one or more fixed
2199 IP addresses to a client. It should only appear in a \fIhost\fR
2200 declaration. If more than one address is supplied, then when the
2201 client boots, it will be assigned the address that corresponds to the
2202 network on which it is booting. If none of the addresses in the
2203 \fIfixed-address\fR statement are valid for the network to which the client
2204 is connected, that client will not match the \fIhost\fR declaration
2205 containing that \fIfixed-address\fR declaration. Each \fIaddress\fR
2206 in the \fIfixed-address\fR declaration should be either an IP address or
2207 a domain name that resolves to one or more IP addresses.
2208 .RE
2209 .PP
2210 The
2211 .I fixed-address6
2212 declaration
2213 .RS 0.25i
2214 .PP
2215 .B fixed-address6 ip6-address\fR ;\fR
2216 .PP
2217 The \fIfixed-address6\fR declaration is used to assign a fixed
2218 IPv6 addresses to a client. It should only appear in a \fIhost\fR
2219 declaration.
2220 .RE
2221 .PP
2222 The
2223 .I get-lease-hostnames
2224 statement
2225 .RS 0.25i
2226 .PP
2227 .B get-lease-hostnames\fR \fIflag\fR\fB;\fR
2228 .PP
2229 The \fIget-lease-hostnames\fR statement is used to tell dhcpd whether
2230 or not to look up the domain name corresponding to the IP address of
2231 each address in the lease pool and use that address for the DHCP
2232 \fIhostname\fR option. If \fIflag\fR is true, then this lookup is
2233 done for all addresses in the current scope. By default, or if
2234 \fIflag\fR is false, no lookups are done.
2235 .RE
2236 .PP
2237 The
2238 .I hardware
2239 statement
2240 .RS 0.25i
2241 .PP
2242 .B hardware \fIhardware-type hardware-address\fB;\fR
2243 .PP
2244 In order for a BOOTP client to be recognized, its network hardware
2245 address must be declared using a \fIhardware\fR clause in the
2246 .I host
2247 statement.
2248 .I hardware-type
2249 must be the name of a physical hardware interface type. Currently,
2250 only the
2251 .B ethernet
2252 and
2253 .B token-ring
2254 types are recognized, although support for a
2255 .B fddi
2256 hardware type (and others) would also be desirable.
2257 The
2258 .I hardware-address
2259 should be a set of hexadecimal octets (numbers from 0 through ff)
2260 separated by colons. The \fIhardware\fR statement may also be used
2261 for DHCP clients.
2262 .RE
2263 .PP
2264 The
2265 .I host-identifier option
2266 statement
2267 .RS 0.25i
2268 .PP
2269 .B host-identifier option \fIoption-name option-data\fB;\fR
2270 .PP
2271 This identifies a DHCPv6 client in a
2272 .I host
2273 statement.
2274 .I option-name
2275 is any option, and
2276 .I option-data
2277 is the value for the option that the client will send. The
2278 .I option-data
2279 must be a constant value.
2280 .RE
2281 .PP
2282 The
2283 .I infinite-is-reserved
2284 statement
2285 .RS 0.25i
2286 .PP
2287 .B infinite-is-reserved \fIflag\fB;\fR
2288 .PP
2289 ISC DHCP now supports 'reserved' leases. See the section on RESERVED LEASES
2290 below. If this \fIflag\fR is on, the server will automatically reserve leases
2291 allocated to clients which requested an infinite (0xffffffff) lease-time.
2292 .PP
2293 The default is off.
2294 .RE
2295 .PP
2296 The
2297 .I lease-file-name
2298 statement
2299 .RS 0.25i
2300 .PP
2301 .B lease-file-name \fIname\fB;\fR
2302 .PP
2303 .I Name
2304 should be the name of the DHCP server's lease file. By default, this
2305 is DBDIR/dhcpd.leases. This statement \fBmust\fR appear in the outer
2306 scope of the configuration file - if it appears in some other scope,
2307 it will have no effect. Furthermore, it has no effect if overridden
2308 by the
2309 .B -lf
2310 flag or the
2311 .B PATH_DHCPD_DB
2312 environment variable.
2313 .RE
2314 .PP
2315 The
2316 .I limit-addrs-per-ia
2317 statement
2318 .RS 0.25i
2319 .PP
2320 .B limit-addrs-per-ia \fInumber\fB;\fR
2321 .PP
2322 By default, the DHCPv6 server will limit clients to one IAADDR per IA
2323 option, meaning one address. If you wish to permit clients to hang onto
2324 multiple addresses at a time, configure a larger \fInumber\fR here.
2325 .PP
2326 Note that there is no present method to configure the server to forcibly
2327 configure the client with one IP address per each subnet on a shared network.
2328 This is left to future work.
2329 .RE
2330 .PP
2331 The
2332 .I dhcpv6-lease-file-name
2333 statement
2334 .RS 0.25i
2335 .PP
2336 .B dhcpv6-lease-file-name \fIname\fB;\fR
2337 .PP
2338 .I Name
2339 is the name of the lease file to use if and only if the server is running
2340 in DHCPv6 mode. By default, this is DBDIR/dhcpd6.leases. This statement,
2341 like
2342 .I lease-file-name,
2343 \fBmust\fR appear in the outer scope of the configuration file. It
2344 has no effect if overridden by the
2345 .B -lf
2346 flag or the
2347 .B PATH_DHCPD6_DB
2348 environment variable. If
2349 .I dhcpv6-lease-file-name
2350 is not specified, but
2351 .I lease-file-name
2352 is, the latter value will be used.
2353 .RE
2354 .PP
2355 The
2356 .I local-port
2357 statement
2358 .RS 0.25i
2359 .PP
2360 .B local-port \fIport\fB;\fR
2361 .PP
2362 This statement causes the DHCP server to listen for DHCP requests on
2363 the UDP port specified in \fIport\fR, rather than on port 67.
2364 .RE
2365 .PP
2366 The
2367 .I local-address
2368 statement
2369 .RS 0.25i
2370 .PP
2371 .B local-address \fIaddress\fB;\fR
2372 .PP
2373 This statement causes the DHCP server to listen for DHCP requests sent
2374 to the specified \fIaddress\fR, rather than requests sent to all addresses.
2375 Since serving directly attached DHCP clients implies that the server must
2376 respond to requests sent to the all-ones IP address, this option cannot be
2377 used if clients are on directly attached networks...it is only realistically
2378 useful for a server whose only clients are reached via unicasts, such as via
2379 DHCP relay agents.
2380 .PP
2381 Note: This statement is only effective if the server was compiled using
2382 the USE_SOCKETS #define statement, which is default on a small number of
2383 operating systems, and must be explicitly chosen at compile-time for all
2384 others. You can be sure if your server is compiled with USE_SOCKETS if
2385 you see lines of this format at startup:
2386 .PP
2387 Listening on Socket/eth0
2388 .PP
2389 Note also that since this bind()s all DHCP sockets to the specified
2390 address, that only one address may be supported in a daemon at a given
2391 time.
2392 .RE
2393 .PP
2394 The
2395 .I log-facility
2396 statement
2397 .RS 0.25i
2398 .PP
2399 .B log-facility \fIfacility\fB;\fR
2400 .PP
2401 This statement causes the DHCP server to do all of its logging on the
2402 specified log facility once the dhcpd.conf file has been read. By
2403 default the DHCP server logs to the daemon facility. Possible log
2404 facilities include auth, authpriv, cron, daemon, ftp, kern, lpr, mail,
2405 mark, news, ntp, security, syslog, user, uucp, and local0 through
2406 local7. Not all of these facilities are available on all systems,
2407 and there may be other facilities available on other systems.
2408 .PP
2409 In addition to setting this value, you may need to modify your
2410 .I syslog.conf
2411 file to configure logging of the DHCP server. For example, you might
2412 add a line like this:
2413 .PP
2414 .nf
2415 local7.debug /var/log/dhcpd.log
2416 .fi
2417 .PP
2418 The syntax of the \fIsyslog.conf\fR file may be different on some
2419 operating systems - consult the \fIsyslog.conf\fR manual page to be
2420 sure. To get syslog to start logging to the new file, you must first
2421 create the file with correct ownership and permissions (usually, the
2422 same owner and permissions of your /var/log/messages or
2423 /usr/adm/messages file should be fine) and send a SIGHUP to syslogd.
2424 Some systems support log rollover using a shell script or program
2425 called newsyslog or logrotate, and you may be able to configure this
2426 as well so that your log file doesn't grow uncontrollably.
2427 .PP
2428 Because the \fIlog-facility\fR setting is controlled by the dhcpd.conf
2429 file, log messages printed while parsing the dhcpd.conf file or before
2430 parsing it are logged to the default log facility. To prevent this,
2431 see the README file included with this distribution, which describes
2432 how to change the default log facility. When this parameter is used,
2433 the DHCP server prints its startup message a second time after parsing
2434 the configuration file, so that the log will be as complete as
2435 possible.
2436 .RE
2437 .PP
2438 The
2439 .I max-lease-time
2440 statement
2441 .RS 0.25i
2442 .PP
2443 .B max-lease-time \fItime\fR\fB;\fR
2444 .PP
2445 .I Time
2446 should be the maximum length in seconds that will be assigned to a
2447 lease. The only exception to this is that Dynamic BOOTP lease
2448 lengths, which are not specified by the client, are not limited by
2449 this maximum.
2450 .RE
2451 .PP
2452 The
2453 .I min-lease-time
2454 statement
2455 .RS 0.25i
2456 .PP
2457 .B min-lease-time \fItime\fR\fB;\fR
2458 .PP
2459 .I Time
2460 should be the minimum length in seconds that will be assigned to a
2461 lease.
2462 .RE
2463 .PP
2464 The
2465 .I min-secs
2466 statement
2467 .RS 0.25i
2468 .PP
2469 .B min-secs \fIseconds\fR\fB;\fR
2470 .PP
2471 .I Seconds
2472 should be the minimum number of seconds since a client began trying to
2473 acquire a new lease before the DHCP server will respond to its request.
2474 The number of seconds is based on what the client reports, and the maximum
2475 value that the client can report is 255 seconds. Generally, setting this
2476 to one will result in the DHCP server not responding to the client's first
2477 request, but always responding to its second request.
2478 .PP
2479 This can be used
2480 to set up a secondary DHCP server which never offers an address to a client
2481 until the primary server has been given a chance to do so. If the primary
2482 server is down, the client will bind to the secondary server, but otherwise
2483 clients should always bind to the primary. Note that this does not, by
2484 itself, permit a primary server and a secondary server to share a pool of
2485 dynamically-allocatable addresses.
2486 .RE
2487 .PP
2488 The
2489 .I next-server
2490 statement
2491 .RS 0.25i
2492 .PP
2493 .B next-server\fR \fIserver-name\fR\fB;\fR
2494 .PP
2495 The \fInext-server\fR statement is used to specify the host address of
2496 the server from which the initial boot file (specified in the
2497 \fIfilename\fR statement) is to be loaded. \fIServer-name\fR should
2498 be a numeric IP address or a domain name.
2499 .RE
2500 .PP
2501 The
2502 .I omapi-port
2503 statement
2504 .RS 0.25i
2505 .PP
2506 .B omapi-port\fR \fIport\fR\fB;\fR
2507 .PP
2508 The \fIomapi-port\fR statement causes the DHCP server to listen for
2509 OMAPI connections on the specified port. This statement is required
2510 to enable the OMAPI protocol, which is used to examine and modify the
2511 state of the DHCP server as it is running.
2512 .RE
2513 .PP
2514 The
2515 .I one-lease-per-client
2516 statement
2517 .RS 0.25i
2518 .PP
2519 .B one-lease-per-client \fIflag\fR\fB;\fR
2520 .PP
2521 If this flag is enabled, whenever a client sends a DHCPREQUEST for a
2522 particular lease, the server will automatically free any other leases
2523 the client holds. This presumes that when the client sends a
2524 DHCPREQUEST, it has forgotten any lease not mentioned in the
2525 DHCPREQUEST - i.e., the client has only a single network interface
2526 .I and
2527 it does not remember leases it's holding on networks to which it is
2528 not currently attached. Neither of these assumptions are guaranteed
2529 or provable, so we urge caution in the use of this statement.
2530 .RE
2531 .PP
2532 The
2533 .I pid-file-name
2534 statement
2535 .RS 0.25i
2536 .PP
2537 .B pid-file-name
2538 .I name\fR\fB;\fR
2539 .PP
2540 .I Name
2541 should be the name of the DHCP server's process ID file. This is the
2542 file in which the DHCP server's process ID is stored when the server
2543 starts. By default, this is RUNDIR/dhcpd.pid. Like the
2544 .I lease-file-name
2545 statement, this statement must appear in the outer scope
2546 of the configuration file. It has no effect if overridden by the
2547 .B -pf
2548 flag or the
2549 .B PATH_DHCPD_PID
2550 environment variable.
2551 .PP
2552 The
2553 .I dhcpv6-pid-file-name
2554 statement
2555 .RS 0.25i
2556 .PP
2557 .B dhcpv6-pid-file-name \fIname\fB;\fR
2558 .PP
2559 .I Name
2560 is the name of the pid file to use if and only if the server is running
2561 in DHCPv6 mode. By default, this is DBDIR/dhcpd6.pid. This statement,
2562 like
2563 .I pid-file-name,
2564 \fBmust\fR appear in the outer scope of the configuration file. It
2565 has no effect if overridden by the
2566 .B -pf
2567 flag or the
2568 .B PATH_DHCPD6_PID
2569 environment variable. If
2570 .I dhcpv6-pid-file-name
2571 is not specified, but
2572 .I pid-file-name
2573 is, the latter value will be used.
2574 .RE
2575 .PP
2576 The
2577 .I ping-check
2578 statement
2579 .RS 0.25i
2580 .PP
2581 .B ping-check
2582 .I flag\fR\fB;\fR
2583 .PP
2584 When the DHCP server is considering dynamically allocating an IP
2585 address to a client, it first sends an ICMP Echo request (a \fIping\fR)
2586 to the address being assigned. It waits for a second, and if no
2587 ICMP Echo response has been heard, it assigns the address. If a
2588 response \fIis\fR heard, the lease is abandoned, and the server does
2589 not respond to the client.
2590 .PP
2591 This \fIping check\fR introduces a default one-second delay in responding
2592 to DHCPDISCOVER messages, which can be a problem for some clients. The
2593 default delay of one second may be configured using the ping-timeout
2594 parameter. The ping-check configuration parameter can be used to control
2595 checking - if its value is false, no ping check is done.
2596 .RE
2597 .PP
2598 The
2599 .I ping-timeout
2600 statement
2601 .RS 0.25i
2602 .PP
2603 .B ping-timeout
2604 .I seconds\fR\fB;\fR
2605 .PP
2606 If the DHCP server determined it should send an ICMP echo request (a
2607 \fIping\fR) because the ping-check statement is true, ping-timeout allows
2608 you to configure how many seconds the DHCP server should wait for an
2609 ICMP Echo response to be heard, if no ICMP Echo response has been received
2610 before the timeout expires, it assigns the address. If a response \fIis\fR
2611 heard, the lease is abandoned, and the server does not respond to the client.
2612 If no value is set, ping-timeout defaults to 1 second.
2613 .RE
2614 .PP
2615 The
2616 .I preferred-lifetime
2617 statement
2618 .RS 0.25i
2619 .PP
2620 .B preferred-lifetime
2621 .I seconds\fR\fB;\fR
2622 .PP
2623 IPv6 addresses have 'valid' and 'preferred' lifetimes. The valid lifetime
2624 determines at what point at lease might be said to have expired, and is no
2625 longer useable. A preferred lifetime is an advisory condition to help
2626 applications move off of the address and onto currently valid addresses
2627 (should there still be any open TCP sockets or similar).
2628 .PP
2629 The preferred lifetime defaults to the renew+rebind timers, or 3/4 the
2630 default lease time if none were specified.
2631 .RE
2632 .PP
2633 The
2634 .I remote-port
2635 statement
2636 .RS 0.25i
2637 .PP
2638 .B remote-port \fIport\fB;\fR
2639 .PP
2640 This statement causes the DHCP server to transmit DHCP responses to DHCP
2641 clients upon the UDP port specified in \fIport\fR, rather than on port 68.
2642 In the event that the UDP response is transmitted to a DHCP Relay, the
2643 server generally uses the \fBlocal-port\fR configuration value. Should the
2644 DHCP Relay happen to be addressed as 127.0.0.1, however, the DHCP Server
2645 transmits its response to the \fBremote-port\fR configuration value. This
2646 is generally only useful for testing purposes, and this configuration value
2647 should generally not be used.
2648 .RE
2649 .PP
2650 The
2651 .I server-identifier
2652 statement
2653 .RS 0.25i
2654 .PP
2655 .B server-identifier \fIhostname\fR\fB;\fR
2656 .PP
2657 The server-identifier statement can be used to define the value that
2658 is sent in the DHCP Server Identifier option for a given scope. The
2659 value specified \fBmust\fR be an IP address for the DHCP server, and
2660 must be reachable by all clients served by a particular scope.
2661 .PP
2662 The use of the server-identifier statement is not recommended - the only
2663 reason to use it is to force a value other than the default value to be
2664 sent on occasions where the default value would be incorrect. The default
2665 value is the first IP address associated with the physical network interface
2666 on which the request arrived.
2667 .PP
2668 The usual case where the
2669 \fIserver-identifier\fR statement needs to be sent is when a physical
2670 interface has more than one IP address, and the one being sent by default
2671 isn't appropriate for some or all clients served by that interface.
2672 Another common case is when an alias is defined for the purpose of
2673 having a consistent IP address for the DHCP server, and it is desired
2674 that the clients use this IP address when contacting the server.
2675 .PP
2676 Supplying a value for the dhcp-server-identifier option is equivalent
2677 to using the server-identifier statement.
2678 .RE
2679 .PP
2680 The
2681 .I server-duid
2682 statement
2683 .RS 0.25i
2684 .PP
2685 .B server-duid \fILLT\fR [ \fIhardware-type\fR \fItimestamp\fR \fIhardware-address\fR ] \fB;\fR
2686
2687 .B server-duid \fIEN\fR \fIenterprise-number\fR \fIenterprise-identifier\fR \fB;\fR
2688
2689 .B server-duid \fILL\fR [ \fIhardware-type\fR \fIhardware-address\fR ] \fB;\fR
2690 .PP
2691 The server-duid statement configures the server DUID. You may pick either
2692 LLT (link local address plus time), EN (enterprise), or LL (link local).
2693 .PP
2694 If you choose LLT or LL, you may specify the exact contents of the DUID.
2695 Otherwise the server will generate a DUID of the specified type.
2696 .PP
2697 If you choose EN, you must include the enterprise number and the
2698 enterprise-identifier.
2699 .PP
2700 The default server-duid type is LLT.
2701 .RE
2702 .PP
2703 The
2704 .I server-name
2705 statement
2706 .RS 0.25i
2707 .PP
2708 .B server-name "\fIname\fB";\fR
2709 .PP
2710 The \fIserver-name\fR statement can be used to inform the client of
2711 the name of the server from which it is booting. \fIName\fR should
2712 be the name that will be provided to the client.
2713 .RE
2714 .PP
2715 The
2716 .I site-option-space
2717 statement
2718 .RS 0.25i
2719 .PP
2720 .B site-option-space "\fIname\fB";\fR
2721 .PP
2722 The \fIsite-option-space\fR statement can be used to determine from
2723 what option space site-local options will be taken. This can be used
2724 in much the same way as the \fIvendor-option-space\fR statement.
2725 Site-local options in DHCP are those options whose numeric codes are
2726 greater than 224. These options are intended for site-specific
2727 uses, but are frequently used by vendors of embedded hardware that
2728 contains DHCP clients. Because site-specific options are allocated
2729 on an ad hoc basis, it is quite possible that one vendor's DHCP client
2730 might use the same option code that another vendor's client uses, for
2731 different purposes. The \fIsite-option-space\fR option can be used
2732 to assign a different set of site-specific options for each such
2733 vendor, using conditional evaluation (see \fBdhcp-eval (5)\fR for
2734 details).
2735 .RE
2736 .PP
2737 The
2738 .I stash-agent-options
2739 statement
2740 .RS 0.25i
2741 .PP
2742 .B stash-agent-options \fIflag\fB;\fR
2743 .PP
2744 If the \fIstash-agent-options\fR parameter is true for a given client,
2745 the server will record the relay agent information options sent during
2746 the client's initial DHCPREQUEST message when the client was in the
2747 SELECTING state and behave as if those options are included in all
2748 subsequent DHCPREQUEST messages sent in the RENEWING state. This
2749 works around a problem with relay agent information options, which is
2750 that they usually not appear in DHCPREQUEST messages sent by the
2751 client in the RENEWING state, because such messages are unicast
2752 directly to the server and not sent through a relay agent.
2753 .RE
2754 .PP
2755 The
2756 .I update-conflict-detection
2757 statement
2758 .RS 0.25i
2759 .PP
2760 .B update-conflict-detection \fIflag\fB;\fR
2761 .PP
2762 If the \fIupdate-conflict-detection\fR parameter is true, the server will
2763 perform standard DHCID multiple-client, one-name conflict detection. If
2764 the parameter has been set false, the server will skip this check and
2765 instead simply tear down any previous bindings to install the new
2766 binding without question. The default is true.
2767 .RE
2768 .PP
2769 The
2770 .I update-optimization
2771 statement
2772 .RS 0.25i
2773 .PP
2774 .B update-optimization \fIflag\fB;\fR
2775 .PP
2776 If the \fIupdate-optimization\fR parameter is false for a given client,
2777 the server will attempt a DNS update for that client each time the
2778 client renews its lease, rather than only attempting an update when it
2779 appears to be necessary. This will allow the DNS to heal from
2780 database inconsistencies more easily, but the cost is that the DHCP
2781 server must do many more DNS updates. We recommend leaving this option
2782 enabled, which is the default. This option only affects the behavior of
2783 the interim DNS update scheme, and has no effect on the ad-hoc DNS update
2784 scheme. If this parameter is not specified, or is true, the DHCP server
2785 will only update when the client information changes, the client gets a
2786 different lease, or the client's lease expires.
2787 .RE
2788 .PP
2789 The
2790 .I update-static-leases
2791 statement
2792 .RS 0.25i
2793 .PP
2794 .B update-static-leases \fIflag\fB;\fR
2795 .PP
2796 The \fIupdate-static-leases\fR flag, if enabled, causes the DHCP
2797 server to do DNS updates for clients even if those clients are being
2798 assigned their IP address using a \fIfixed-address\fR statement - that
2799 is, the client is being given a static assignment. This can only
2800 work with the \fIinterim\fR DNS update scheme. It is not
2801 recommended because the DHCP server has no way to tell that the update
2802 has been done, and therefore will not delete the record when it is not
2803 in use. Also, the server must attempt the update each time the
2804 client renews its lease, which could have a significant performance
2805 impact in environments that place heavy demands on the DHCP server.
2806 .RE
2807 .PP
2808 The
2809 .I use-host-decl-names
2810 statement
2811 .RS 0.25i
2812 .PP
2813 .B use-host-decl-names \fIflag\fB;\fR
2814 .PP
2815 If the \fIuse-host-decl-names\fR parameter is true in a given scope,
2816 then for every host declaration within that scope, the name provided
2817 for the host declaration will be supplied to the client as its
2818 hostname. So, for example,
2819 .PP
2820 .nf
2821 group {
2822 use-host-decl-names on;
2823
2824 host joe {
2825 hardware ethernet 08:00:2b:4c:29:32;
2826 fixed-address joe.fugue.com;
2827 }
2828 }
2829
2830 is equivalent to
2831
2832 host joe {
2833 hardware ethernet 08:00:2b:4c:29:32;
2834 fixed-address joe.fugue.com;
2835 option host-name "joe";
2836 }
2837 .fi
2838 .PP
2839 An \fIoption host-name\fR statement within a host declaration will
2840 override the use of the name in the host declaration.
2841 .PP
2842 It should be noted here that most DHCP clients completely ignore the
2843 host-name option sent by the DHCP server, and there is no way to
2844 configure them not to do this. So you generally have a choice of
2845 either not having any hostname to client IP address mapping that the
2846 client will recognize, or doing DNS updates. It is beyond
2847 the scope of this document to describe how to make this
2848 determination.
2849 .RE
2850 .PP
2851 The
2852 .I use-lease-addr-for-default-route
2853 statement
2854 .RS 0.25i
2855 .PP
2856 .B use-lease-addr-for-default-route \fIflag\fR\fB;\fR
2857 .PP
2858 If the \fIuse-lease-addr-for-default-route\fR parameter is true in a
2859 given scope, then instead of sending the value specified in the
2860 routers option (or sending no value at all), the IP address of the
2861 lease being assigned is sent to the client. This supposedly causes
2862 Win95 machines to ARP for all IP addresses, which can be helpful if
2863 your router is configured for proxy ARP. The use of this feature is
2864 not recommended, because it won't work for many DHCP clients.
2865 .RE
2866 .PP
2867 The
2868 .I vendor-option-space
2869 statement
2870 .RS 0.25i
2871 .PP
2872 .B vendor-option-space \fIstring\fR\fB;\fR
2873 .PP
2874 The \fIvendor-option-space\fR parameter determines from what option
2875 space vendor options are taken. The use of this configuration
2876 parameter is illustrated in the \fBdhcp-options(5)\fR manual page, in
2877 the \fIVENDOR ENCAPSULATED OPTIONS\fR section.
2878 .RE
2879 .SH SETTING PARAMETER VALUES USING EXPRESSIONS
2880 Sometimes it's helpful to be able to set the value of a DHCP server
2881 parameter based on some value that the client has sent. To do this,
2882 you can use expression evaluation. The
2883 .B dhcp-eval(5)
2884 manual page describes how to write expressions. To assign the result
2885 of an evaluation to an option, define the option as follows:
2886 .nf
2887 .sp 1
2888 \fImy-parameter \fB= \fIexpression \fB;\fR
2889 .fi
2890 .PP
2891 For example:
2892 .nf
2893 .sp 1
2894 ddns-hostname = binary-to-ascii (16, 8, "-",
2895 substring (hardware, 1, 6));
2896 .fi
2897 .RE
2898 .SH RESERVED LEASES
2899 It's often useful to allocate a single address to a single client, in
2900 approximate perpetuity. Host statements with \fBfixed-address\fR clauses
2901 exist to a certain extent to serve this purpose, but because host statements
2902 are intended to approximate 'static configuration', they suffer from not being
2903 referenced in a littany of other Server Services, such as dynamic DNS,
2904 failover, 'on events' and so forth.
2905 .PP
2906 If a standard dynamic lease, as from any range statement, is marked 'reserved',
2907 then the server will only allocate this lease to the client it is identified
2908 by (be that by client identifier or hardware address).
2909 .PP
2910 In practice, this means that the lease follows the normal state engine, enters
2911 ACTIVE state when the client is bound to it, expires, or is released, and any
2912 events or services that would normally be supplied during these events are
2913 processed normally, as with any other dynamic lease. The only difference
2914 is that failover servers treat reserved leases as special when they enter
2915 the FREE or BACKUP states - each server applies the lease into the state it
2916 may allocate from - and the leases are not placed on the queue for allocation
2917 to other clients. Instead they may only be 'found' by client identity. The
2918 result is that the lease is only offered to the returning client.
2919 .PP
2920 Care should probably be taken to ensure that the client only has one lease
2921 within a given subnet that it is identified by.
2922 .PP
2923 Leases may be set 'reserved' either through OMAPI, or through the
2924 \'infinite-is-reserved' configuration option (if this is applicable to your
2925 environment and mixture of clients).
2926 .PP
2927 It should also be noted that leases marked 'reserved' are effectively treated
2928 the same as leases marked 'bootp'.
2929 .RE
2930 .SH REFERENCE: OPTION STATEMENTS
2931 DHCP option statements are documented in the
2932 .B dhcp-options(5)
2933 manual page.
2934 .SH REFERENCE: EXPRESSIONS
2935 Expressions used in DHCP option statements and elsewhere are
2936 documented in the
2937 .B dhcp-eval(5)
2938 manual page.
2939 .SH SEE ALSO
2940 dhcpd(8), dhcpd.leases(5), dhcp-options(5), dhcp-eval(5), RFC2132, RFC2131.
2941 .SH AUTHOR
2942 .B dhcpd.conf(5)
2943 was written by Ted Lemon
2944 under a contract with Vixie Labs. Funding
2945 for this project was provided by Internet Systems Consortium.
2946 Information about Internet Systems Consortium can be found at
2947 .B http://www.isc.org.