82186fd
diff -up dhcp-4.0.0/client/clparse.c.dho dhcp-4.0.0/client/clparse.c
82186fd
--- dhcp-4.0.0/client/clparse.c.dho	2007-12-29 06:32:16.000000000 -1000
82186fd
+++ dhcp-4.0.0/client/clparse.c	2007-12-29 06:35:41.000000000 -1000
82186fd
@@ -37,7 +37,7 @@
82186fd
 
82186fd
 struct client_config top_level_config;
82186fd
 
82186fd
-#define NUM_DEFAULT_REQUESTED_OPTS	9
82186fd
+#define NUM_DEFAULT_REQUESTED_OPTS	12
82186fd
 struct option *default_requested_options[NUM_DEFAULT_REQUESTED_OPTS + 1];
82186fd
 
82186fd
 static void parse_client_default_duid(struct parse *cfile);
82186fd
@@ -107,6 +107,21 @@ isc_result_t read_client_conf ()
82186fd
 	option_code_hash_lookup(&default_requested_options[8],
82186fd
 				dhcpv6_universe.code_hash, &code, 0, MDL);
82186fd
 
82186fd
+	/* 10 */
82186fd
+	code = DHO_NIS_DOMAIN;
82186fd
+	option_code_hash_lookup(&default_requested_options[9],
82186fd
+				dhcp_universe.code_hash, &code, 0, MDL);
82186fd
+
82186fd
+	/* 11 */
82186fd
+	code = DHO_NIS_SERVERS;
82186fd
+	option_code_hash_lookup(&default_requested_options[10],
82186fd
+				dhcp_universe.code_hash, &code, 0, MDL);
82186fd
+
82186fd
+	/* 12 */
82186fd
+	code = DHO_NTP_SERVERS;
82186fd
+	option_code_hash_lookup(&default_requested_options[11],
82186fd
+				dhcp_universe.code_hash, &code, 0, MDL);
82186fd
+
82186fd
 	for (code = 0 ; code < NUM_DEFAULT_REQUESTED_OPTS ; code++) {
82186fd
 		if (default_requested_options[code] == NULL)
82186fd
 			log_fatal("Unable to find option definition for "