7b1f88bc8a
- Don't complain when debouncing dhclient startup. - Fix buffer handling in reveive_packet(). This fixes infinite cpu eating loops and probably some crashes. - Spell if_defaultroute route correctly in dhclient-script so we are allowed to change the default route. - Document dhclient -b. - Treat reassociation like association. - Do not force server-name to be a valid domain name. - Handle servers that send NUL-terminated host-name options. Approved by: re (scottl)
51 lines
729 B
Bash
Executable File
51 lines
729 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# $NetBSD: dhclient,v 1.8 2002/03/22 04:33:58 thorpej Exp $
|
|
# $FreeBSD$
|
|
#
|
|
|
|
# PROVIDE: dhclient
|
|
# KEYWORD: nojail nostart
|
|
#
|
|
|
|
. /etc/rc.subr
|
|
. /etc/network.subr
|
|
|
|
name="dhclient"
|
|
rcvar=
|
|
start_cmd="dhclient_start"
|
|
stop_cmd="dhclient_stop"
|
|
|
|
dhclient_start()
|
|
{
|
|
# prevent unnecessicary restarts
|
|
# XXX: should use a pidfile
|
|
if [ -x /usr/bin/pgrep ]; then
|
|
pids=`/usr/bin/pgrep -f "dhclient: $ifn(\$| .*)"`
|
|
if [ -n "$pids" ]; then
|
|
exit 0
|
|
fi
|
|
fi
|
|
|
|
if checkyesno background_dhclient; then
|
|
rc_flags="${rc_flags} -b"
|
|
fi
|
|
|
|
${dhclient_program} ${rc_flags} $ifn
|
|
}
|
|
|
|
dhclient_stop()
|
|
{
|
|
ifconfig $ifn down # cause dhclient to die
|
|
}
|
|
|
|
ifn="$2"
|
|
|
|
load_rc_config $name
|
|
|
|
if ! dhcpif $ifn; then
|
|
return 1
|
|
fi
|
|
|
|
run_rc_command "$1"
|