Expand PMF_FN_* macros.
[netbsd-mini2440.git] / dist / dhcp / client / dhclient.8
blobad20fb3c49e81224b78afd6825dbc022e64a44d5
1 .\"     dhclient.8
2 .\"
3 .\" Copyright (c) 2004 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 .\" $Id: dhclient.8,v 1.9 2005/08/11 17:13:21 drochner Exp $
25 .\"
26 .TH dhclient 8
27 .SH NAME
28 dhclient - Dynamic Host Configuration Protocol (DHCP) Client
29 .SH SYNOPSIS
30 .B dhclient
32 .B -p
33 .I port
36 .B -d
39 .B -q
42 .B -1
45 .B -o
48 .B -r
51 .B -lf
52 .I lease-file
55 .B -pf
56 .I pid-file
59 .B -cf
60 .I config-file
63 .B -sf
64 .I script-file
67 .B -s
68 server
71 .B -g
72 relay
75 .B -n
78 .B -nw
81 .B -w
84 .I if0
86 .I ...ifN
89 .SH DESCRIPTION
90 The Internet Systems Consortium DHCP Client, dhclient, provides a
91 means for configuring one or more network interfaces using the Dynamic
92 Host Configuration Protocol, BOOTP protocol, or if these protocols
93 fail, by statically assigning an address.
94 .SH SYSTEM REQUIREMENTS
95 You must have the Berkeley Packet Filter (bpf) configured in your NetBSD kernel.
96 .SH OPERATION
97 .PP
98 The DHCP protocol allows a host to contact a central server which
99 maintains a list of IP addresses which may be assigned on one or more
100 subnets.   A DHCP client may request an address from this pool, and
101 then use it on a temporary basis for communication on network.   The
102 DHCP protocol also provides a mechanism whereby a client can learn
103 important details about the network to which it is attached, such as
104 the location of a default router, the location of a name server, and
105 so on.
107 On startup, dhclient reads the
108 .IR dhclient.conf
109 for configuration instructions.   It then gets a list of all the
110 network interfaces that are configured in the current system.   For
111 each interface, it attempts to configure the interface using the DHCP
112 protocol.
114 In order to keep track of leases across system reboots and server
115 restarts, dhclient keeps a list of leases it has been assigned in the
116 dhclient.leases(5) file.   On startup, after reading the dhclient.conf
117 file, dhclient reads the dhclient.leases file to refresh its memory
118 about what leases it has been assigned.
120 When a new lease is acquired, it is appended to the end of the
121 dhclient.leases file.   In order to prevent the file from becoming
122 arbitrarily large, from time to time dhclient creates a new
123 dhclient.leases file from its in-core lease database.  The old version
124 of the dhclient.leases file is retained under the name
125 .IR dhclient.leases~
126 until the next time dhclient rewrites the database.
128 Old leases are kept around in case the DHCP server is unavailable when
129 dhclient is first invoked (generally during the initial system boot
130 process).   In that event, old leases from the dhclient.leases file
131 which have not yet expired are tested, and if they are determined to
132 be valid, they are used until either they expire or the DHCP server
133 becomes available.
135 A mobile host which may sometimes need to access a network on which no
136 DHCP server exists may be preloaded with a lease for a fixed
137 address on that network.   When all attempts to contact a DHCP server
138 have failed, dhclient will try to validate the static lease, and if it
139 succeeds, will use that lease until it is restarted.
141 A mobile host may also travel to some networks on which DHCP is not
142 available but BOOTP is.   In that case, it may be advantageous to
143 arrange with the network administrator for an entry on the BOOTP
144 database, so that the host can boot quickly on that network rather
145 than cycling through the list of old leases.
146 .SH COMMAND LINE
148 The names of the network interfaces that dhclient should attempt to
149 configure may be specified on the command line.  If no interface names
150 are specified on the command line dhclient will normally identify all
151 network interfaces, eliminating non-broadcast interfaces if
152 possible, and attempt to configure each interface.
154 It is also possible to specify interfaces by name in the
155 .B dhclient.conf(5)
156 file.   If interfaces are specified in this way, then the client will
157 only configure interfaces that are either specified in the
158 configuration file or on the command line, and will ignore all other
159 interfaces.
161 If the DHCP client should listen and transmit on a port other than the
162 standard (port 68), the
163 .B -p
164 flag may used.  It should be followed by the udp port number that
165 dhclient should use.  This is mostly useful for debugging purposes.
166 If a different port is specified for the client to listen on and
167 transmit on, the client will also use a different destination port -
168 one greater than the specified destination port.
170 The DHCP client normally transmits any protocol messages it sends
171 before acquiring an IP address to, 255.255.255.255, the IP limited
172 broadcast address.   For debugging purposes, it may be useful to have
173 the server transmit these messages to some other address.   This can
174 be specified with the 
175 .B -s
176 flag, followed by the IP address or domain name of the destination.
178 For testing purposes, the giaddr field of all packets that the client
179 sends can be set using the
180 .B -g
181 flag, followed by the IP address to send.   This is only useful for testing,
182 and should not be expected to work in any consistent or useful way.
184 The DHCP client will normally run in the foreground until it has
185 configured an interface, and then will revert to running in the
186 background.   To run force dhclient to always run as a foreground
187 process, the
188 .B -d
189 flag should be specified.  This is useful when running the client
190 under a debugger, or when running it out of inittab on System V
191 systems.
193 The client normally prints a startup message and displays the
194 protocol sequence to the standard error descriptor until it has
195 acquired an address, and then only logs messages using the
196 .B syslog (3)
197 facility.   The
198 .B -q
199 flag prevents any messages other than errors from being printed to the
200 standard error descriptor.
202 The client normally doesn't release the current lease as it is not
203 required by the DHCP protocol.  Some cable ISPs require their clients
204 to notify the server if they wish to release an assigned IP address.
206 .B -r
207 flag explicitly releases the current lease, and once the lease has been
208 released, the client exits.
211 .B -1
212 flag cause dhclient to try once to get a lease.  If it fails, dhclient exits
213 with exit code two.
216 .B -o
217 flag cause dhclient to assume that it's been given a fixed lease, so once it
218 installs the lease, it exits.   This is really only useful on very small
219 systems, and only works on a single interface at a time - if you want it to
220 support multiple interfaces, run dhclient on each interface in succession.
222 The DHCP client normally gets its configuration information from
223 .B /etc/dhclient.conf,
224 its lease database from
225 .B /var/db/dhclient.leases,
226 stores its process ID in a file called
227 .B /var/run/dhclient.pid,
228 and configures the network interface using
229 .B /sbin/dhclient-script
230 To specify different names and/or locations for these files, use the
231 .B -cf,
232 .B -lf,
233 .B -pf
235 .B -sf
236 flags, respectively, followed by the name of the file.   This can be
237 particularly useful if, for example,
238 .B /var/db
240 .B /var/run
241 has not yet been mounted when the DHCP client is started.
243 The DHCP client normally exits if it isn't able to identify any
244 network interfaces to configure.   On laptop computers and other
245 computers with hot-swappable I/O buses, it is possible that a
246 broadcast interface may be added after system startup.   The
247 .B -w
248 flag can be used to cause the client not to exit when it doesn't find
249 any such interfaces.   The
250 .B omshell (1)
251 program can then be used to notify the client when a network interface
252 has been added or removed, so that the client can attempt to configure an IP
253 address on that interface.
255 The DHCP client can be directed not to attempt to configure any interfaces
256 using the
257 .B -n
258 flag.   This is most likely to be useful in combination with the
259 .B -w
260 flag.
262 The client can also be instructed to become a daemon immediately, rather
263 than waiting until it has acquired an IP address.   This can be done by
264 supplying the
265 .B -nw
266 flag.
267 .SH CONFIGURATION
268 The syntax of the dhclient.conf(5) file is discussed separately.
269 .SH OMAPI
270 The DHCP client provides some ability to control it while it is
271 running, without stopping it.  This capability is provided using OMAPI,
272 an API for manipulating remote objects.  OMAPI clients connect to the
273 client using TCP/IP, authenticate, and can then examine the client's
274 current status and make changes to it. 
276 Rather than implementing the underlying OMAPI protocol directly, user
277 programs should use the dhcpctl API or OMAPI itself.   Dhcpctl is a
278 wrapper that handles some of the housekeeping chores that OMAPI does
279 not do automatically.   Dhcpctl and OMAPI are documented in \fBdhcpctl(3)\fR
280 and \fBomapi(3)\fR.   Most things you'd want to do with the client can
281 be done directly using the \fBomshell(1)\fR command, rather than
282 having to write a special program.
283 .SH THE CONTROL OBJECT
284 The control object allows you to shut the client down, releasing all
285 leases that it holds and deleting any DNS records it may have added.
286 It also allows you to pause the client - this unconfigures any
287 interfaces the client is using.   You can then restart it, which
288 causes it to reconfigure those interfaces.   You would normally pause
289 the client prior to going into hibernation or sleep on a laptop
290 computer.   You would then resume it after the power comes back.
291 This allows PC cards to be shut down while the computer is hibernating
292 or sleeping, and then reinitialized to their previous state once the
293 computer comes out of hibernation or sleep.
295 The control object has one attribute - the state attribute.   To shut
296 the client down, set its state attribute to 2.   It will automatically
297 do a DHCPRELEASE.   To pause it, set its state attribute to 3.   To
298 resume it, set its state attribute to 4.
300 .SH FILES
301 .B /sbin/dhclient-script,
302 .B /etc/dhclient.conf, /var/db/dhclient.leases, /var/run/dhclient.pid,
303 .B /var/db/dhclient.leases~.
304 .SH SEE ALSO
305 dhcpd(8), dhcrelay(8), dhclient-script(8), dhclient.conf(5),
306 dhclient.leases(5).
307 .SH AUTHOR
308 .B dhclient(8)
309 has been written for Internet Systems Consortium
310 by Ted Lemon in cooperation with Vixie
311 Enterprises.  To learn more about Internet Systems Consortium,
313 .B http://www.isc.org
314 To learn more about Vixie
315 Enterprises, see
316 .B http://www.vix.com.
318 This client was substantially modified and enhanced by Elliot Poger
319 for use on Linux while he was working on the MosquitoNet project at
320 Stanford.
322 The current version owes much to Elliot's Linux enhancements, but
323 was substantially reorganized and partially rewritten by Ted Lemon
324 so as to use the same networking framework that the Internet Systems
325 Consortium DHCP server uses.   Much system-specific configuration code
326 was moved into a shell script so that as support for more operating
327 systems is added, it will not be necessary to port and maintain
328 system-specific configuration code to these operating systems - instead,
329 the shell script can invoke the native tools to accomplish the same
330 purpose.