2002-10-15 03:11:28 +05:30
|
|
|
udhcp server/client package readme
|
|
|
|
-------------------------
|
|
|
|
|
|
|
|
The udhcp server/client package is primarily geared towards embedded
|
|
|
|
systems. It does however, strive to be fully functional, and RFC
|
|
|
|
compliant.
|
|
|
|
|
|
|
|
|
|
|
|
compile time options
|
|
|
|
-------------------
|
|
|
|
|
|
|
|
The Makefile contains three of the compile time options:
|
|
|
|
|
2003-12-19 03:55:38 +05:30
|
|
|
UDHCP_DEBUG: If UDHCP_DEBUG is defined, udhcpd will output extra
|
|
|
|
debugging output, compile with -g, and not fork to the background when
|
|
|
|
run.
|
|
|
|
UDHCP_SYSLOG: If UDHCP_SYSLOG is defined, udhcpd will log all its
|
|
|
|
messages syslog, otherwise, it will attempt to log them to stdout.
|
2002-10-15 03:11:28 +05:30
|
|
|
|
|
|
|
COMBINED_BINARY: If COMBINED_BINARY is define, one binary, udhcpd,
|
|
|
|
is created. If called as udhcpd, the dhcp server will be started.
|
|
|
|
If called as udhcpc, the dhcp client will be started.
|
|
|
|
|
2003-12-19 03:55:38 +05:30
|
|
|
dhcpd.h contains the other three compile time options:
|
2002-10-15 03:11:28 +05:30
|
|
|
|
|
|
|
LEASE_TIME: The default lease time if not specified in the config
|
|
|
|
file.
|
2003-12-19 03:55:38 +05:30
|
|
|
|
|
|
|
LEASES_FILE: The default file for storing leases.
|
2002-10-15 03:11:28 +05:30
|
|
|
|
|
|
|
DHCPD_CONFIG_FILE: The defualt config file to use.
|
|
|
|
|
|
|
|
options.c contains a set of dhcp options for the client:
|
|
|
|
|
|
|
|
name[10]: The name of the option as it will appear in scripts
|
|
|
|
|
|
|
|
flags: The type of option, as well as if it will be requested
|
|
|
|
by the client (OPTION_REQ)
|
|
|
|
|
|
|
|
code: The DHCP code for this option
|
|
|
|
|
2002-11-01 00:51:27 +05:30
|
|
|
|
2002-10-15 03:11:28 +05:30
|
|
|
busybox drop-in
|
|
|
|
--------------
|
|
|
|
udhcp is now a drop-in component for busybox (http://busybox.net).
|
|
|
|
To update busybox to the latest revision, simply do a:
|
|
|
|
|
|
|
|
cp *.[ch] README AUTHORS COPYING ChangeLog TODO \
|
|
|
|
<busybox_source>/networking/udhcp
|
|
|
|
|
|
|
|
The only two files udhcp does not provide are config.in and
|
|
|
|
Makefile.in, so these may need to be updated from time to time.
|
2002-11-01 00:51:27 +05:30
|
|
|
|