]> CyberLeo.Net >> Repos - FreeBSD/stable/8.git/commit
MFC r228259:
authordumbbell <dumbbell@ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f>
Thu, 26 Jan 2012 22:01:05 +0000 (22:01 +0000)
committerdumbbell <dumbbell@ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f>
Thu, 26 Jan 2012 22:01:05 +0000 (22:01 +0000)
commitab61f95f16558033ac38c06d1175d851a17dccae
tree1d031f9f7ab34fad1f65d7e06fb8d9607bb69ffc
parentc5e66c801d55521271328d093ca97a7916b96357
MFC r228259:
Support domain-search in dhclient(8)

The "domain-search" option (option 119) allows a DHCP server to publish
a list of implicit domain suffixes used during name lookup. This option
is described in RFC 3397.

For instance, if the domain-search option says:
    ".example.org .example.com"
and one wants to resolve "foobar", the resolver will try:
    1. "foobar.example.org"
    2. "foobar.example.com"

The file /etc/resolv.conf is updated with a "search" directive if the
DHCP server provides "domain-search".

A regression test suite is included in this patch under
tools/regression/sbin/dhclient.

PR: bin/151940
Sponsored by: Yakaz (http://www.yakaz.com)

MFC r229000:
Invalid Domain Search option isn't considered as a fatal error

In the original Domain Search option patch, an invalid option value
would cause the whole lease to be rejected. However, DHCP servers who
emit such an invalid value are more common than I thought. With this new
patch, just the option is rejected, not the entire lease.

PR: bin/163431
Submitted by: Fabian Keil <fk@fabiankeil.de> (earlier version)
Reviewed by: Fabian Keil <fk@fabiankeil.de>
Sponsored by: Yakaz (http://www.yakaz.com)

MFC r229001:
Adapt testsuite following change in Domain Search error handling

In this testsuite, warning() and error() have the same behaviour.

PR: bin/163431
Sponsored by: Yakaz (http://www.yakaz.com)

git-svn-id: svn://svn.freebsd.org/base/stable/8@230603 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f
sbin/dhclient/clparse.c
sbin/dhclient/dhclient-script
sbin/dhclient/dhclient.c
sbin/dhclient/dhcp-options.5
sbin/dhclient/dhcp.h
sbin/dhclient/options.c
sbin/dhclient/tables.c
tools/regression/sbin/Makefile
tools/regression/sbin/dhclient/Makefile [new file with mode: 0644]
tools/regression/sbin/dhclient/fake.c [new file with mode: 0644]
tools/regression/sbin/dhclient/option-domain-search.c [new file with mode: 0644]