summaryrefslogtreecommitdiffstats
path: root/contrib
diff options
context:
space:
mode:
authormurray <murray@FreeBSD.org>2002-04-01 08:09:50 +0000
committermurray <murray@FreeBSD.org>2002-04-01 08:09:50 +0000
commitf4cfa354ba07ca7cd849efb0cff903ac831f247a (patch)
tree7fc9dfdf9bdbd59c2dad5c81bb3208031b98e85f /contrib
parentdbb69413111b771fca60de30e9b27fddb11b759f (diff)
downloadFreeBSD-src-f4cfa354ba07ca7cd849efb0cff903ac831f247a.zip
FreeBSD-src-f4cfa354ba07ca7cd849efb0cff903ac831f247a.tar.gz
Resolve conflicts.
Diffstat (limited to 'contrib')
-rw-r--r--contrib/isc-dhcp/client/dhclient.conf.518
-rw-r--r--contrib/isc-dhcp/common/tables.c4
2 files changed, 19 insertions, 3 deletions
diff --git a/contrib/isc-dhcp/client/dhclient.conf.5 b/contrib/isc-dhcp/client/dhclient.conf.5
index 2fb5117..87844b0 100644
--- a/contrib/isc-dhcp/client/dhclient.conf.5
+++ b/contrib/isc-dhcp/client/dhclient.conf.5
@@ -250,6 +250,22 @@ The \fIfqdn.fqdn\fR option \fBMUST\fR be a fully-qualified domain
name. You \fBMUST\fR define a zone statement for the zone to be
updated. The \fIfqdn.encoded\fR option may need to be set to
\fIon\fR or \fIoff\fR, depending on the DHCP server you are using.
+.PP
+.I The
+.B no-client-updates
+.I statement
+.PP
+ \fBno-client-updates [ \fIflag\fR ] \fB;\fR
+.PP
+If you want to do DNS updates in the DHCP client
+script (see \fBdhclient-script(8)\fR) rather than having the
+DHCP client do the update directly (for example, if you want to
+use SIG(0) authentication, which is not supported directly by the
+DHCP client, you can instruct the client not to do the update using
+the \fBno-client-updates\fR statement. \fIFlag\fR should be \fBtrue\fR
+if you don't want the DHCP client to do the update, and \fBfalse\fR if
+you want the DHCP client to do the update. By default, the DHCP
+client will do the DNS update.
.SH OPTION MODIFIERS
In some cases, a client may receive option data from the server which
is not really appropriate for that client, or may not receive
@@ -591,7 +607,7 @@ interface "ep0" {
request subnet-mask, broadcast-address, time-offset, routers,
domain-name, domain-name-servers, host-name;
require subnet-mask, domain-name-servers;
- script "/sbin/dhclient-script";
+ script "CLIENTBINDIR/dhclient-script";
media "media 10baseT/UTP", "media 10base2/BNC";
}
diff --git a/contrib/isc-dhcp/common/tables.c b/contrib/isc-dhcp/common/tables.c
index e9852df..a90dc6d 100644
--- a/contrib/isc-dhcp/common/tables.c
+++ b/contrib/isc-dhcp/common/tables.c
@@ -43,7 +43,7 @@
#ifndef lint
static char copyright[] =
-"$Id: tables.c,v 1.51.2.4 2001/10/17 03:26:26 mellon Exp $ Copyright (c) 1995-2001 The Internet Software Consortium. All rights reserved.\n"
+"$Id: tables.c,v 1.51.2.5 2002/02/09 03:23:54 mellon Exp $ Copyright (c) 1995-2001 The Internet Software Consortium. All rights reserved.\n"
"$FreeBSD$\n";
#endif /* not lint */
@@ -1196,7 +1196,7 @@ void initialize_common_option_spaces()
nwip_universe.tag_size = 1;
nwip_universe.store_tag = putUChar;
nwip_universe.store_length = putUChar;
- fqdn_universe.enc_opt = &dhcp_options [DHO_NWIP_SUBOPTIONS];
+ nwip_universe.enc_opt = &dhcp_options [DHO_NWIP_SUBOPTIONS];
nwip_universe.index = universe_count++;
universes [nwip_universe.index] = &nwip_universe;
option_new_hash (&nwip_universe.hash, 1, MDL);
OpenPOWER on IntegriCloud