Home | History | Annotate | Line # | Download | only in dist
      1 	      Internet Systems Consortium DHCP Distribution
      2 			     Version 4.4.3
      3 			     9 March 2022
      4 
      5 			      README FILE
      6 
      7 You should read this file carefully before trying to install or use
      8 the ISC DHCP Distribution.
      9 
     10 			  TABLE OF CONTENTS
     11 
     12 	1	WHERE TO FIND DOCUMENTATION
     13 	2	RELEASE STATUS
     14 	3	BUILDING THE DHCP DISTRIBUTION
     15 	 3.1	 UNPACKING IT
     16 	 3.2	 CONFIGURING IT
     17 	  3.2.1	  DYNAMIC DNS UPDATES
     18 	  3.2.2   LOCALLY DEFINED OPTIONS
     19 	 3.3	 BUILDING IT
     20 	4	INSTALLING THE DHCP DISTRIBUTION
     21 	5	USING THE DHCP DISTRIBUTION
     22 	 5.1	  FIREWALL RULES
     23 	 5.2	 LINUX
     24 	  5.2.1	  IF_TR.H NOT FOUND
     25 	  5.2.2	  SO_ATTACH_FILTER UNDECLARED
     26 	  5.2.3	  PROTOCOL NOT CONFIGURED
     27 	  5.2.4	  BROADCAST
     28 	  5.2.6	  IP BOOTP AGENT
     29 	  5.2.7	  MULTIPLE INTERFACES
     30      5.3    ATF
     31 	6	SUPPORT
     32 	 6.1	 HOW TO REPORT BUGS
     33 	7	HISTORY
     34 
     35 		      WHERE TO FIND DOCUMENTATION
     36 
     37 Documentation for this software includes this README file, the
     38 RELNOTES file, and the manual pages, which are in the server, common,
     39 client and relay subdirectories.  The README file (this file) includes
     40 late-breaking operational and system-specific information that you
     41 should read even if you don't want to read the manual pages, and that
     42 you should *certainly* read if you run into trouble.  Internet
     43 standards relating to the DHCP protocol are listed in the References
     44 document that is available in html, txt and xml formats in doc/
     45 subdirectory.  You will have the best luck reading the manual pages if
     46 you build this software and then install it, although you can read
     47 them directly out of the distribution if you need to.
     48 
     49 DHCP server documentation is in the dhcpd man page.  Information about
     50 the DHCP server lease database is in the dhcpd.leases man page.
     51 Server configuration documentation is in the dhcpd.conf man page as
     52 well as the dhcp-options man page.   A sample DHCP server
     53 configuration is in the file server/dhcpd.conf.example.   The source for
     54 the dhcpd, dhcpd.leases and dhcpd.conf man pages is in the server/ sub-
     55 directory in the distribution.   The source for the dhcp-options.5
     56 man page is in the common/ subdirectory.
     57 
     58 DHCP Client documentation is in the dhclient man page.  DHCP client
     59 configuration documentation is in the dhclient.conf man page and the
     60 dhcp-options man page.  The DHCP client configuration script is
     61 documented in the dhclient-script man page.   The format of the DHCP
     62 client lease database is documented in the dhclient.leases man page.
     63 The source for all these man pages is in the client/ subdirectory in
     64 the distribution.   In addition, the dhcp-options man page should be
     65 referred to for information about DHCP options. The client component
     66 is End-of-Life and will not be part of future releases.
     67 
     68 DHCP relay agent documentation is in the dhcrelay man page, the source
     69 for which is distributed in the relay/ subdirectory. The relay component
     70 is End-of-Life and will not be part of future releases.
     71 
     72 KEA Migration Assistant documentation, including how to build, install
     73 and use it, is included in the keama/ directory.
     74 
     75 To read installed manual pages, use the man command.  Type "man page"
     76 where page is the name of the manual page.   This will only work if
     77 you have installed the ISC DHCP distribution using the ``make install''
     78 command (described later).
     79 
     80 If you want to read manual pages that aren't installed, you can type
     81 ``nroff -man page |more'' where page is the filename of the
     82 unformatted manual page.  The filename of an unformatted manual page
     83 is the name of the manual page, followed by '.', followed by some
     84 number - 5 for documentation about files, and 8 for documentation
     85 about programs.   For example, to read the dhcp-options man page,
     86 you would type ``nroff -man common/dhcp-options.5 |more'', assuming
     87 your current working directory is the top level directory of the ISC
     88 DHCP Distribution.
     89 
     90 Please note that the pathnames of files to which our manpages refer
     91 will not be correct for your operating system until after you iterate
     92 'make install' (so if you're reading a manpage out of the source
     93 directory, it may not have up-to-date information).
     94 
     95 				RELEASE STATUS
     96 
     97 Version 4.4.3 is a maintenance release of the DHCP client, relay and
     98 server. It is the final release for the client and relay components,
     99 which have reached end-of-life and will no longer be maintained.
    100 
    101 		    BUILDING THE DHCP DISTRIBUTION
    102 
    103 			     UNPACKING IT
    104 
    105 To build the DHCP Distribution, unpack the compressed tar file using
    106 the tar utility and the gzip command - type something like:
    107 
    108 	gunzip dhcp-4.4.3.tar.gz
    109 	tar xvf dhcp-4.4.3.tar
    110 
    111 			    CONFIGURING IT
    112 
    113 Now, cd to the dhcp-4.4.3 subdirectory that you've just created and
    114 configure the source tree by typing:
    115 
    116 	./configure
    117 
    118 If the configure utility can figure out what sort of system you're
    119 running on, it will create a custom Makefile for you for that
    120 system; otherwise, it will complain.  If it can't figure out what
    121 system you are using, that system is not supported - you are on
    122 your own.
    123 
    124 Several options may be enabled or disabled via the configure command.
    125 You can get a list of these by typing:
    126 
    127 	./configure --help
    128 
    129 If you want to use dynamic shared libraries automake, autoconf
    130 (aka GNU autotools) and libtool must be available. The DHCP
    131 distribution provides 3 configure.ac* files: the -lt version
    132 has no libtool support and was copied to the configure.ac
    133 standard file in the distribution. To enable libtool support
    134 you should perform these steps:
    135 
    136 	cp configure.ac+lt configure.ac
    137 	autoreconf -i
    138 
    139 after you can use the regenerated configure as usual
    140 (with libtool support (--enable-libtool) on by default):
    141 
    142 	./configure
    143 
    144 For compatibility (and people who don't read this documentation)
    145 the --enable-libtool configuration file is supported even by
    146 the distributed configure (and off by default). The previous
    147 steps are performed and the regenerated configure called with
    148 almost the same parameters (this "almost" makes the use of
    149 this feature not recommended).
    150 
    151 Note you can't go back from with libtool support to without libtool
    152 support by restoring configure.ac and rerun autoreconf. If you
    153 want or need to restore the without libtool support state the
    154 required way is to simply restore the whole distribution.
    155 
    156 			 DYNAMIC DNS UPDATES
    157 
    158 A fully-featured implementation of dynamic DNS updates is included in
    159 this release.  It uses libraries from BIND and, to avoid issues with
    160 different versions, includes the necessary BIND version.  The appropriate
    161 BIND libraries will be compiled and installed in the bind subdirectory
    162 as part of the make step.  In order to build the necessary libraries you
    163 will need to have "gmake" available on your build system.
    164 
    165 
    166 There is documentation for the DDNS support in the dhcpd.conf manual
    167 page - see the beginning of this document for information on finding
    168 manual pages.
    169 
    170 		       LOCALLY DEFINED OPTIONS
    171 
    172 In previous versions of the DHCP server there was a mechanism whereby
    173 options that were not known by the server could be configured using
    174 a name made up of the option code number and an identifier:
    175 "option-nnn"   This is no longer supported, because it is not future-
    176 proof.   Instead, if you want to use an option that the server doesn't
    177 know about, you must explicitly define it using the method described
    178 in the dhcp-options man page under the DEFINING NEW OPTIONS heading.
    179 
    180 			     BUILDING IT
    181 
    182 Once you've run configure, just type ``make'', and after a while
    183 you should have a dhcp server.  If you get compile errors on one
    184 of the supported systems mentioned earlier, please let us know.
    185 If you get warnings, it's not likely to be a problem - the DHCP
    186 server compiles completely warning-free on as many architectures
    187 as we can manage, but there are a few for which this is difficult.
    188 If you get errors on a system not mentioned above, you will need
    189 to do some programming or debugging on your own to get the DHCP
    190 Distribution working.
    191 
    192 If you cross compile you have to follow the instructions from
    193 the BIND README, in particular you must set the BUILD_CC
    194 environment variable.
    195 
    196 		   INSTALLING THE DHCP DISTRIBUTION
    197 
    198 Once you have successfully gotten the DHCP Distribution to build, you
    199 can install it by typing ``make install''.   If you already have an old
    200 version of the DHCP Distribution installed, you may want to save it
    201 before typing ``make install''.
    202 
    203 		     USING THE DHCP DISTRIBUTION
    204 
    205 			    FIREWALL RULES
    206 
    207 If you are running the DHCP server or client on a computer that's also
    208 acting as a firewall, you must be sure to allow DHCP packets through
    209 the firewall.  In particular, your firewall rules _must_ allow packets
    210 from IP address 0.0.0.0 to IP address 255.255.255.255 from UDP port 68
    211 to UDP port 67 through.  They must also allow packets from your local
    212 firewall's IP address and UDP port 67 through to any address your DHCP
    213 server might serve on UDP port 68.  Finally, packets from relay agents
    214 on port 67 to the DHCP server on port 67, and vice versa, must be
    215 permitted.
    216 
    217 We have noticed that on some systems where we are using a packet
    218 filter, if you set up a firewall that blocks UDP port 67 and 68
    219 entirely, packets sent through the packet filter will not be blocked.
    220 However, unicast packets will be blocked.   This can result in strange
    221 behaviour, particularly on DHCP clients, where the initial packet
    222 exchange is broadcast, but renewals are unicast - the client will
    223 appear to be unable to renew until it starts broadcasting its
    224 renewals, and then suddenly it'll work.   The fix is to fix the
    225 firewall rules as described above.
    226 
    227 			   PARTIAL SERVERS
    228 
    229 If you have a server that is connected to two networks, and you only
    230 want to provide DHCP service on one of those networks (e.g., you are
    231 using a cable modem and have set up a NAT router), if you don't write
    232 any subnet declaration for the network you aren't supporting, the DHCP
    233 server will ignore input on that network interface if it can.  If it
    234 can't, it will refuse to run - some operating systems do not have the
    235 capability of supporting DHCP on machines with more than one
    236 interface, and ironically this is the case even if you don't want to
    237 provide DHCP service on one of those interfaces.
    238 
    239 				LINUX
    240 
    241 There are three big LINUX issues: the all-ones broadcast address,
    242 Linux 2.1 ip_bootp_agent enabling, and operations with more than one
    243 network interface.   There are also two potential compilation/runtime
    244 problems for Linux 2.1/2.2: the "SO_ATTACH_FILTER undeclared" problem
    245 and the "protocol not configured" problem.
    246 
    247 		    LINUX: PROTOCOL NOT CONFIGURED
    248 
    249 If you get the following message, it's because your kernel doesn't
    250 have the Linux packetfilter or raw packet socket configured:
    251 
    252  Make sure CONFIG_PACKET (Packet socket) and CONFIG_FILTER (Socket
    253  Filtering) are enabled in your kernel configuration
    254 
    255 If this happens, you need to configure your Linux kernel to support
    256 Socket Filtering and the Packet socket, or to select a kernel provided
    257 by your Linux distribution that has these enabled (virtually all modern
    258 ones do by default).
    259 
    260 			   LINUX: BROADCAST
    261 
    262 If you are running a recent version of Linux, this won't be a problem,
    263 but on older versions of Linux (kernel versions prior to 2.2), there
    264 is a potential problem with the broadcast address being sent
    265 incorrectly.
    266 
    267 In order for dhcpd to work correctly with picky DHCP clients (e.g.,
    268 Windows 95), it must be able to send packets with an IP destination
    269 address of 255.255.255.255.  Unfortunately, Linux changes an IP
    270 destination of 255.255.255.255 into the local subnet broadcast address
    271 (here, that's 192.5.5.223).
    272 
    273 This isn't generally a problem on Linux 2.2 and later kernels, since
    274 we completely bypass the Linux IP stack, but on old versions of Linux
    275 2.1 and all versions of Linux prior to 2.1, it is a problem - pickier
    276 DHCP clients connected to the same network as the ISC DHCP server or
    277 ISC relay agent will not see messages from the DHCP server.   It *is*
    278 possible to run into trouble with this on Linux 2.2 and later if you
    279 are running a version of the DHCP server that was compiled on a Linux
    280 2.0 system, though.
    281 
    282 It is possible to work around this problem on some versions of Linux
    283 by creating a host route from your network interface address to
    284 255.255.255.255.   The command you need to use to do this on Linux
    285 varies from version to version.   The easiest version is:
    286 
    287 	route add -host 255.255.255.255 dev eth0
    288 
    289 On some older Linux systems, you will get an error if you try to do
    290 this.   On those systems, try adding the following entry to your
    291 /etc/hosts file:
    292 
    293 255.255.255.255	all-ones
    294 
    295 Then, try:
    296 
    297 	route add -host all-ones dev eth0
    298 
    299 Another route that has worked for some users is:
    300 
    301 	route add -net 255.255.255.0 dev eth0
    302 
    303 If you are not using eth0 as your network interface, you should
    304 specify the network interface you *are* using in your route command.
    305 
    306 			LINUX: IP BOOTP AGENT
    307 
    308 Some versions of the Linux 2.1 kernel apparently prevent dhcpd from
    309 working unless you enable it by doing the following:
    310 
    311 	      echo 1 >/proc/sys/net/ipv4/ip_bootp_agent
    312 
    313 
    314 		      LINUX: MULTIPLE INTERFACES
    315 
    316 Very old versions of the Linux kernel do not provide a networking API
    317 that allows dhcpd to operate correctly if the system has more than one
    318 broadcast network interface.  However, Linux 2.0 kernels with version
    319 numbers greater than or equal to 2.0.31 add an API feature: the
    320 SO_BINDTODEVICE socket option.  If SO_BINDTODEVICE is present, it is
    321 possible for dhcpd to operate on Linux with more than one network
    322 interface.  In order to take advantage of this, you must be running a
    323 2.0.31 or greater kernel, and you must have 2.0.31 or later system
    324 headers installed *before* you build the DHCP Distribution.
    325 
    326 We have heard reports that you must still add routes to 255.255.255.255
    327 in order for the all-ones broadcast to work, even on 2.0.31 kernels.
    328 In fact, you now need to add a route for each interface.   Hopefully
    329 the Linux kernel gurus will get this straight eventually.
    330 
    331 Linux 2.1 and later kernels do not use SO_BINDTODEVICE or require the
    332 broadcast address hack, but do support multiple interfaces, using the
    333 Linux Packet Filter.
    334 
    335 			     LINUX: OpenWrt
    336 
    337 DHCP 4.1 has been tested on OpenWrt 7.09 and 8.09.  In keeping with
    338 standard practice, client/scripts now includes a dhclient-script file
    339 for OpenWrt.  However, this is not sufficient by itself to run dhcp on
    340 OpenWrt; a full OpenWrt package for DHCP is available at
    341 ftp://ftp.isc.org/isc/dhcp/dhcp-4.1.0-openwrt.tar.gz
    342 
    343 		    LINUX: 802.1q VLAN INTERFACES
    344 
    345 If you're using 802.1q vlan interfaces on Linux, it is necessary to
    346 vconfig the subinterface(s) to rewrite the 802.1q information out of
    347 packets received by the dhcpd daemon via LPF:
    348 
    349 	vconfig set_flag eth1.523 1 1
    350 
    351 Note that this may affect the performance of your system, since the
    352 Linux kernel must rewrite packets received via this interface.  For
    353 more information, consult the vconfig man pages.
    354 
    355 
    356 			       ATF
    357 
    358 Please see the file DHCP/doc/devel/atf.dox for a description of building
    359 and using these tools.
    360 
    361 The optional unit tests use ATF (Automated Testing Framework) including
    362 the atf-run and atf-report tools. ATF deprecated these tools in
    363 version 0.19 and removed these tools from its sources in version 0.20,
    364 requiring you to get an older version, use Kyua with an ATF compatibility
    365 package or use the version included in the Bind sources.
    366 
    367 			       SUPPORT
    368 
    369 The Internet Systems Consortium DHCP server is developed and distributed
    370 by ISC in the public trust, thanks to the generous donations of its
    371 sponsors.  ISC now also offers commercial quality support contracts for
    372 ISC DHCP, more information about ISC Support Contracts can be found at
    373 the following URL:
    374 
    375 	https://www.isc.org/support/
    376 
    377 Please understand that we may not respond to support inquiries unless
    378 you have a support contract.  ISC will continue its practice of always
    379 responding to critical items that effect the entire community, and
    380 responding to all other requests for support upon ISC's mailing lists
    381 on a best-effort basis.
    382 
    383 However, ISC DHCP has attracted a fairly sizable following on the
    384 Internet, which means that there are a lot of knowledgeable users who
    385 may be able to help you if you get stuck.  These people generally
    386 read the dhcp-users (a] isc.org mailing list.  Be sure to provide as much
    387 detail in your query as possible.
    388 
    389 If you are going to use ISC DHCP, you should probably subscribe to
    390 the dhcp-users or dhcp-announce mailing lists.
    391 
    392 WHERE TO SEND FEATURE REQUESTS: We like to hear your feedback.  We may
    393 not respond to it all the time, but we do read it.  If ISC DHCP doesn't
    394 work well for you, or you have an idea that would improve it for your
    395 use, please create an issue at https://gitlab.isc.org/isc-projects/dhcp/issues.
    396 This is also an excellent place to send patches that add new features.
    397 
    398 WHERE TO REPORT BUGS: If you want the act of sending in a bug report
    399 to result in you getting help in the form of a fixed piece of
    400 software, you are asking for help.  Your bug report is helpful to us,
    401 but fundamentally you are making a support request, so please use the
    402 addresses described in the previous paragraphs.  If you are _sure_ that
    403 your problem is a bug, and not user error, or if your bug report
    404 includes a patch, you can submit it to our ticketing system at
    405 https://gitlab.isc.org/isc-projects/dhcp/issues.  If you have not received
    406 a notice that the ticket has been resolved, then we're still working on it.
    407 Notice that this is the final release that features client and relay
    408 components. Reporting bugs in them makes limited sense. The ISC team
    409 will not be fixing any issues related to client or relay. They may be
    410 useful for other users to document some problems or perhaps discuss
    411 and share workarounds.
    412 
    413 PLEASE DO NOT REPORT BUGS IN OLD SOFTWARE RELEASES!  Fetch the latest
    414 release and see if the bug is still in that version of the software,
    415 and if it is still present, _then_ report it.  ISC release versions
    416 always have three numbers, for example: 1.2.3.  The 'major release' is
    417 1 here, the 'minor release' is 2, and the 'maintenance release' is 3.
    418 
    419 PLEASE take a moment to determine where the ISC DHCP distribution
    420 that you're using came from.  ISC DHCP is sometimes heavily modified
    421 by integrators in various operating systems - it's not that we
    422 feel that our software is perfect and incapable of having bugs, but
    423 rather that it is very frustrating to find out after many days trying
    424 to help someone that the sources you're looking at aren't what they're
    425 running.  When in doubt, please retrieve the source distribution from
    426 ISC's web page and install it.
    427 
    428 		HOW TO REPORT BUGS OR REQUEST HELP
    429 
    430 When you report bugs or ask for help, please provide us complete
    431 information.  A list of information we need follows.  Please read it
    432 carefully, and put all the information you can into your initial bug
    433 report.  This will save us a great deal of time and more informative
    434 bug reports are more likely to get handled more quickly overall.
    435 
    436       1.  The specific operating system name and version of the
    437 	  machine on which the DHCP server or client is running.
    438       2.  The specific operating system name and version of the
    439 	  machine on which the client is running, if you are having
    440 	  trouble getting a client working with the server.
    441       3.  If you're running Linux, the version number we care about is
    442 	  the kernel version and maybe the library version, not the
    443 	  distribution version - e.g., while we don't mind knowing
    444 	  that you're running Redhat version mumble.foo, we must know
    445 	  what kernel version you're running, and it helps if you can
    446 	  tell us what version of the C library you're running,
    447 	  although if you don't know that off the top of your head it
    448 	  may be hard for you to figure it out, so don't go crazy
    449 	  trying.
    450       4.  The specific version of the DHCP distribution you're
    451 	  running, as reported by dhcpd -t.
    452       5.  Please explain the problem carefully, thinking through what
    453 	  you're saying to ensure that you don't assume we know
    454 	  something about your situation that we don't know.
    455       6.  Include your dhcpd.conf and dhcpd.leases file as MIME attachments
    456 	  if they're not over 100 kilobytes in size each.  If they are
    457 	  this large, please make them available to us, e.g., via a hidden
    458 	  http:// URL or FTP site.  If you're not comfortable releasing
    459 	  this information due to sensitive contents, you may encrypt
    460 	  the file to our release signing key, available on our website.
    461       7.  Include a log of your server or client running until it
    462 	  encounters the problem - for example, if you are having
    463 	  trouble getting some client to get an address, restart the
    464 	  server with the -d flag and then restart the client, and
    465 	  send us what the server prints.   Likewise, with the client,
    466 	  include the output of the client as it fails to get an
    467 	  address or otherwise does the wrong thing.   Do not leave
    468 	  out parts of the output that you think aren't interesting.
    469       8.  If the client or server is dumping core, please run the
    470 	  debugger and get a stack trace, and include that in your
    471 	  bug report.   For example, if your debugger is gdb, do the
    472 	  following:
    473 
    474 		gdb dhcpd dhcpd.core
    475 		(gdb) where
    476 		      [...]
    477 		(gdb) quit
    478 
    479 	  This assumes that it's the dhcp server you're debugging, and
    480 	  that the core file is in dhcpd.core.
    481 
    482 Please see https://www.isc.org/dhcp/ for details on how to subscribe
    483 to the ISC DHCP mailing lists.
    484 
    485 			       HISTORY
    486 
    487 ISC DHCP was originally written by Ted Lemon under a contract with
    488 Vixie Labs with the goal of being a complete reference implementation
    489 of the DHCP protocol.  Funding for this project was provided by
    490 Internet Systems Consortium. The first release of the ISC DHCP
    491 distribution in December 1997 included just the DHCP server.
    492 Release 2 in June 1999 added a DHCP client and a BOOTP/DHCP relay
    493 agent. DHCP 3 was released in October 2001 and included DHCP failover
    494 support, OMAPI, Dynamic DNS, conditional behaviour, client classing,
    495 and more. Version 3 of the DHCP server was funded by Nominum, Inc.
    496 The 4.0 release in December 2007 introduced DHCPv6 protocol support
    497 for the server and client. The client and relay components reached
    498 their End-of-Life in January 2022.
    499 
    500 This product includes cryptographic software written
    501 by Eric Young (eay (a] cryptsoft.com).
    502