dhclient-script relied on incorrect behavior of SIOCAIFADDR ioctl,

that changed 0.0.0.0/0.0.0.0 prefix to 0.0.0.0/255.0.0.0.

In the r228313 this behavior was fixed, and since dhclient-script
got broken.

I'm not sure this fix is a perfect one, it just changes
dhclient-script to set 0.0.0.0/255.0.0.0 explicitly.

PR:		kern/163206
This commit is contained in:
glebius 2011-12-13 11:54:51 +00:00
parent bb0222f95e
commit b87df3a8d3

View File

@ -320,7 +320,7 @@ MEDIUM)
PREINIT)
delete_old_alias
$IFCONFIG $interface inet alias 0.0.0.0 netmask 0.0.0.0 broadcast 255.255.255.255 up
$IFCONFIG $interface inet alias 0.0.0.0 netmask 255.0.0.0 broadcast 255.255.255.255 up
;;
ARPCHECK|ARPSEND)