svn commit: r228463 - head/sbin/dhclient

Gleb Smirnoff glebius at FreeBSD.org
Tue Dec 13 11:54:52 UTC 2011


Author: glebius
Date: Tue Dec 13 11:54:51 2011
New Revision: 228463
URL: http://svn.freebsd.org/changeset/base/228463

Log:
  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

Modified:
  head/sbin/dhclient/dhclient-script

Modified: head/sbin/dhclient/dhclient-script
==============================================================================
--- head/sbin/dhclient/dhclient-script	Tue Dec 13 11:13:28 2011	(r228462)
+++ head/sbin/dhclient/dhclient-script	Tue Dec 13 11:54:51 2011	(r228463)
@@ -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)


More information about the svn-src-head mailing list