bin/184117: dhclient does not parse /etc/dhclient.conf correctly
Mark Linimon
linimon at lonesome.com
Thu Nov 21 06:20:01 UTC 2013
The following reply was made to PR bin/184117; it has been noted by GNATS.
From: Mark Linimon <linimon at lonesome.com>
To: bug-followup at FreeBSD.org
Cc:
Subject: Re: bin/184117: dhclient does not parse /etc/dhclient.conf correctly
Date: Thu, 21 Nov 2013 00:19:51 -0600
----- Forwarded message from Lowell Gilbert <freebsd-bugs-local at be-well.ilk.org> -----
Date: Wed, 20 Nov 2013 09:57:53 -0500
From: Lowell Gilbert <freebsd-bugs-local at be-well.ilk.org>
To: freebsd-bugs at freebsd.org
Subject: Re: misc/184117: dhclient does not parse /etc/dhclient.conf correctly
User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3 (berkeley-unix)
Making all options work with the "option-nnn" syntax would best be done
by importing a newer version of the ISC code. For defined option types,
it's better to use the official names because that way type handling is
enabled as well.
The user-class option is not in the dhcp_option_default_priority_list
array in sbin/dhclient/tables.c. Adding it (DHO_DHCP_USER_CLASS_ID) will
make the user-class option work. I.E.:
--- tables.c.~1~ 2013-11-20 09:52:25.521743815 -0500
+++ tables.c 2013-11-20 09:53:33.733663843 -0500
@@ -365,6 +365,7 @@
DHO_INTERFACE_MTU,
DHO_ALL_SUBNETS_LOCAL,
DHO_BROADCAST_ADDRESS,
+ DHO_DHCP_USER_CLASS_ID
DHO_PERFORM_MASK_DISCOVERY,
DHO_MASK_SUPPLIER,
DHO_ROUTER_DISCOVERY,
_______________________________________________
freebsd-bugs at freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscribe at freebsd.org"
----- End forwarded message -----
More information about the freebsd-bugs
mailing list