📄 dhcpd.8
字号:
.\" dhcpd.8.\".\" Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC").\" Copyright (c) 1996-2003 by Internet Software Consortium.\".\" Permission to use, copy, modify, and distribute this software for any.\" purpose with or without fee is hereby granted, provided that the above.\" copyright notice and this permission notice appear in all copies..\".\" THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES.\" WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF.\" MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR.\" ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES.\" WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN.\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT.\" OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE..\".\" Internet Systems Consortium, Inc..\" 950 Charter Street.\" Redwood City, CA 94063.\" <info@isc.org>.\" http://www.isc.org/.\".\" This software has been written for Internet Systems Consortium.\" by Ted Lemon in cooperation with Vixie Enterprises and Nominum, Inc..\" To learn more about Internet Systems Consortium, see.\" ``http://www.isc.org/''. To learn more about Vixie Enterprises,.\" see ``http://www.vix.com''. To learn more about Nominum, Inc., see.\" ``http://www.nominum.com''..\".\" $Id: dhcpd.8,v 1.18.2.9 2004/06/10 17:59:52 dhankins Exp $.\".TH dhcpd 8.SH NAMEdhcpd - Dynamic Host Configuration Protocol Server.SH SYNOPSIS.B dhcpd[.B -p.I port][.B -f][.B -d][.B -q][.B -t|.B -T][.B -cf.I config-file][.B -lf.I lease-file][.B -tf.I trace-output-file][.B -play.I trace-playback-file][.I if0[.I ...ifN]].SH DESCRIPTIONThe Internet Systems Consortium DHCP Server, dhcpd, implements theDynamic Host Configuration Protocol (DHCP) and the Internet BootstrapProtocol (BOOTP). DHCP allows hosts on a TCP/IP network to requestand be assigned IP addresses, and also to discover information aboutthe network to which they are attached. BOOTP provides similarfunctionality, with certain restrictions..SH CONTRIBUTIONS.PPThis software is free software. At various times its development hasbeen underwritten by various organizations, including the ISC andVixie Enterprises. The development of 3.0 has been funded almostentirely by Nominum, Inc..PPAt this point development is being shepherded by Ted Lemon, and hostedby the ISC, but the future of this project depends on you. If youhave features you want, please consider implementing them..SH OPERATION.PPThe DHCP protocol allows a host which is unknown to the networkadministrator to be automatically assigned a new IP address out of apool of IP addresses for its network. In order for this to work, thenetwork administrator allocates address pools in each subnet andenters them into the dhcpd.conf(5) file..PPOn startup, dhcpd reads the.IR dhcpd.conffile and stores a list of available addresses on each subnet inmemory. When a client requests an address using the DHCP protocol,dhcpd allocates an address for it. Each client is assigned a lease,which expires after an amount of time chosen by the administrator (bydefault, one day). Before leases expire, the clients to which leasesare assigned are expected to renew them in order to continue to usethe addresses. Once a lease has expired, the client to which thatlease was assigned is no longer permitted to use the leased IPaddress..PPIn order to keep track of leases across system reboots and serverrestarts, dhcpd keeps a list of leases it has assigned in thedhcpd.leases(5) file. Before dhcpd grants a lease to a host, itrecords the lease in this file and makes sure that the contents of thefile are flushed to disk. This ensures that even in the event of asystem crash, dhcpd will not forget about a lease that it hasassigned. On startup, after reading the dhcpd.conf file, dhcpdreads the dhcpd.leases file to refresh its memory about what leaseshave been assigned..PPNew leases are appended to the end of the dhcpd.leasesfile. In order to prevent the file from becoming arbitrarily large,from time to time dhcpd creates a new dhcpd.leases file from itsin-core lease database. Once this file has been written to disk, theold file is renamed.IR dhcpd.leases~ ,and the new file is renamed dhcpd.leases. If the system crashes inthe middle of this process, whichever dhcpd.leases file remains willcontain all the lease information, so there is no need for a specialcrash recovery process..PPBOOTP support is also provided by this server. Unlike DHCP, the BOOTPprotocol does not provide a protocol for recoveringdynamically-assigned addresses once they are no longer needed. It isstill possible to dynamically assign addresses to BOOTP clients, butsome administrative process for reclaiming addresses is required. Bydefault, leases are granted to BOOTP clients in perpetuity, althoughthe network administrator may set an earlier cutoff date or a shorterlease length for BOOTP leases if that makes sense..PPBOOTP clients may also be served in the old standard way, which is tosimply provide a declaration in the dhcpd.conf file for eachBOOTP client, permanently assigning an address to each client..PPWhenever changes are made to the dhcpd.conf file, dhcpd must berestarted. To restart dhcpd, send a SIGTERM (signal 15) to theprocess ID contained in.IR RUNDIR/dhcpd.pid ,and then re-invoke dhcpd. Because the DHCP server database is not aslightweight as a BOOTP database, dhcpd does not automatically restartitself when it sees a change to the dhcpd.conf file..PPNote: We get a lot of complaints about this. We realize that it wouldbe nice if one could send a SIGHUP to the server and have it reloadthe database. This is not technically impossible, but it wouldrequire a great deal of work, our resources are extremely limited, andthey can be better spent elsewhere. So please don't complain aboutthis on the mailing list unless you're prepared to fund a project toimplement this feature, or prepared to do it yourself..SH COMMAND LINE.PPThe names of the network interfaces on which dhcpd should listen forbroadcasts may be specified on the command line. This should be doneon systems where dhcpd is unable to identify non-broadcast interfaces,but should not be required on other systems. If no interface namesare specified on the command line dhcpd will identify all networkinterfaces which are up, eliminating non-broadcast interfaces ifpossible, and listen for DHCP broadcasts on each interface..PPIf dhcpd should listen on a port other than the standard (port 67),the.B -pflag may used. It should be followed by the udp port number on whichdhcpd should listen. This is mostly useful for debugging purposes..PPTo run dhcpd as a foreground process, rather than allowing it to runas a daemon in the background, the.B -fflag should be specified. This is useful when running dhcpd under adebugger, or when running it out of inittab on System V systems..PPTo have dhcpd log to the standard error descriptor, specify the.B -dflag. This can be useful for debugging, and also at sites where acomplete log of all dhcp activity must be kept but syslogd is notreliable or otherwise cannot be used. Normally, dhcpd will log alloutput using the syslog(3) function with the log facility set toLOG_DAEMON..PPDhcpd can be made to use an alternate configuration file with the.B -cfflag, or an alternate lease file with the.B -lfflag. Because of the importance of using the same lease database atall times when running dhcpd in production, these options should beused \fBonly\fR for testing lease files or database files in anon-production environment..PPWhen starting dhcpd up from a system startup script (e.g., /etc/rc),it may not be desirable to print out the entire copyright message onstartup. To avoid printing this message, the.B -qflag may be specified..PPThe DHCP server reads two files on startup: a configuration file, anda lease database. If the.B -tflag is specified, the server will simply test the configuration filefor correct syntax, but will not attempt to perform any networkoperations. This can be used to test the a new configuration fileautomatically before installing it..PPThe.B -Tflag can be used to test the lease database file in a similar way..PPThe \fB-tf\fR and \fB-play\fR options allow you to specify a file intowhich the entire startup state of the server and all the transactionsit processes are either logged or played back from. This can beuseful in submitting bug reports - if you are getting a core dumpevery so often, you can start the server with the \fB-tf\fR option andthen, when the server dumps core, the trace file will contain all thetransactions that led up to it dumping core, so that the problem canbe easily debugged with \fB-play\fR..PPThe \fB-play\fR option must be specified with an alternate lease file,using the \fB-lf\fR switch, so that the DHCP server doesn't wipe outyour existing lease file with its test data. The DHCP server willrefuse to operate in playback mode unless you specify an alternatelease file..SH CONFIGURATIONThe syntax of the dhcpd.conf(5) file is discussed separately. Thissection should be used as an overview of the configuration process,and the dhcpd.conf(5) documentation should be consulted for detailedreference information..PP.SH Subnetsdhcpd needs to know the subnet numbers and netmasks of all subnets forwhich it will be providing service. In addition, in order todynamically allocate addresses, it must be assigned one or more rangesof addresses on each subnet which it can in turn assign to clienthosts as they boot. Thus, a very simple configuration providing DHCPsupport might look like this:.nf.sp 1 subnet 239.252.197.0 netmask 255.255.255.0 { range 239.252.197.10 239.252.197.250; }.fi.PPMultiple address ranges may be specified like this:.nf.sp 1 subnet 239.252.197.0 netmask 255.255.255.0 { range 239.252.197.10 239.252.197.107; range 239.252.197.113 239.252.197.250; }.fi.PPIf a subnet will only be provided with BOOTP service and no dynamicaddress assignment, the range clause can be left out entirely, but thesubnet statement must appear..PP.SH Lease LengthsDHCP leases can be assigned almost any length from zero seconds toinfinity. What lease length makes sense for any given subnet, or forany given installation, will vary depending on the kinds of hostsbeing served..PPFor example, in an office environment where systems are added fromtime to time and removed from time to time, but move relativelyinfrequently, it might make sense to allow lease times of a month ofmore. In a final test environment on a manufacturing floor, it maymake more sense to assign a maximum lease length of 30 minutes -enough time to go through a simple test procedure on a networkappliance before packaging it up for delivery..PPIt is possible to specify two lease lengths: the default length thatwill be assigned if a client doesn't ask for any particular leaselength, and a maximum lease length. These are specified as clausesto the subnet command:.nf.sp 1 subnet 239.252.197.0 netmask 255.255.255.0 { range 239.252.197.10 239.252.197.107; default-lease-time 600; max-lease-time 7200; }.fi.PPThis particular subnet declaration specifies a default lease time of600 seconds (ten minutes), and a maximum lease time of 7200 seconds(two hours). Other common values would be 86400 (one day), 604800(one week) and 2592000 (30 days)..PPEach subnet need not have the same lease\(emin the case of an officeenvironment and a manufacturing environment served by the same DHCPserver, it might make sense to have widely disparate values fordefault and maximum lease times on each subnet..SH BOOTP SupportEach BOOTP client must be explicitly declared in the dhcpd.conffile. A very basic client declaration will specify the clientnetwork interface's hardware address and the IP address to assign tothat client. If the client needs to be able to load a boot file fromthe server, that file's name must be specified. A simple bootpclient declaration might look like this:.nf.sp 1 host haagen { hardware ethernet 08:00:2b:4c:59:23; fixed-address 239.252.197.9; filename "/tftpboot/haagen.boot"; }.fi.SH OptionsDHCP (and also BOOTP with Vendor Extensions) provide a mechanismwhereby the server can provide the client with information about howto configure its network interface (e.g., subnet mask), and also howthe client can access various network services (e.g., DNS, IP routers,and so on)..PPThese options can be specified on a per-subnet basis, and, for BOOTPclients, also on a per-client basis. In the event that a BOOTPclient declaration specifies options that are also specified in itssubnet declaration, the options specified in the client declarationtake precedence. A reasonably complete DHCP configuration mightlook something like this:.nf.sp 1 subnet 239.252.197.0 netmask 255.255.255.0 { range 239.252.197.10 239.252.197.250; default-lease-time 600 max-lease-time 7200; option subnet-mask 255.255.255.0; option broadcast-address 239.252.197.255; option routers 239.252.197.1; option domain-name-servers 239.252.197.2, 239.252.197.3; option domain-name "isc.org"; }.fi.PPA bootp host on that subnet that needs to be in a different domain anduse a different name server might be declared as follows:.nf.sp 1 host haagen { hardware ethernet 08:00:2b:4c:59:23; fixed-address 239.252.197.9; filename "/tftpboot/haagen.boot"; option domain-name-servers 192.5.5.1; option domain-name "vix.com"; }.fi.PPA more complete description of the dhcpd.conf file syntax is providedin dhcpd.conf(5)..SH OMAPIThe DHCP server provides the capability to modify some of itsconfiguration while it is running, without stopping it, modifying itsdatabase files, and restarting it. This capability is currentlyprovided using OMAPI - an API for manipulating remote objects. OMAPIclients connect to the server using TCP/IP, authenticate, and can thenexamine the server's current status and make changes to it..PPRather than implementing the underlying OMAPI protocol directly, user
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -