c72a792
diff -up dhcp-4.2.5b1/common/dhcp-options.5.rfc5970 dhcp-4.2.5b1/common/dhcp-options.5
c72a792
--- dhcp-4.2.5b1/common/dhcp-options.5.rfc5970	2012-12-17 13:43:44.000000000 +0100
c72a792
+++ dhcp-4.2.5b1/common/dhcp-options.5	2012-12-17 13:45:18.777638579 +0100
c72a792
@@ -1771,7 +1771,48 @@ The \fBlq-relay-data\fR option is used i
3e44d20
 The \fBlq-client-link\fR option is used internally by for lease query.
3e44d20
 .RE
3e44d20
 .PP
3e44d20
+
3e44d20
+.B option
3e44d20
+.B dhcp6.bootfile-url
3e44d20
+.I string 
3e44d20
+.B ;
3e44d20
+.RS 0.25i
3e44d20
+.PP
3e44d20
+The server sends this option to inform the client about a URL to a
3e44d20
+boot file.  Used primarily for UEFI network booting, it contains an RFC3986
3e44d20
+compliant URI which the client may use to boot an operating system.  This option
3e44d20
+is defined in RFC5970
c72a792
 .RE
3e44d20
+.PP
3e44d20
+
3e44d20
+.B option
3e44d20
+.B dhcp6.arch-type
3e44d20
+.I arch-id \fR[\fB,\fR arch-id\fR...] 
3e44d20
+.B ;
3e44d20
+.RS 0.25i
3e44d20
+.PP
3e44d20
+A client will send this option to a server so that the server may make decisions
3e44d20
+on what options and addresses to offer the requesting client.  The option
3e44d20
+consists of a list of 16 bit unsigned values that represent the architecture of
3e44d20
+the requesting client.  These values corespond to the values available to the
3e44d20
+dhcpv4 option architecture-type, as defined in RFC4578, section 2.1.
3e44d20
+This option is defined in RFC5970
c72a792
+ .RE
3e44d20
+.PP
3e44d20
+
3e44d20
+.B option
3e44d20
+.B dhcp6.net-id
3e44d20
+.I uint8 uint8 uint8 
3e44d20
+.B ;
3e44d20
+.RS 0.25i
3e44d20
+.PP
3e44d20
+A client will send this option to a server to inform it about the clients level
3e44d20
+of UNDI support.  The option consists of 3 octets (a type, major and minor
3e44d20
+value).  Specific meanings of these values are doumented in section 2.2 of
3e44d20
+RFC4578.
3e44d20
+This option is defined in RFC5970
3e44d20
+.RE
3e44d20
+.PP
3e44d20
 .SH DEFINING NEW OPTIONS
3e44d20
 The Internet Systems Consortium DHCP client and server provide the
c72a792
 capability to define new options.  Each DHCP option has a name, a
c72a792
diff -up dhcp-4.2.5b1/common/tables.c.rfc5970 dhcp-4.2.5b1/common/tables.c
c72a792
--- dhcp-4.2.5b1/common/tables.c.rfc5970	2012-12-17 13:43:44.204939024 +0100
c72a792
+++ dhcp-4.2.5b1/common/tables.c	2012-12-17 13:43:44.286937948 +0100
c72a792
@@ -463,6 +463,18 @@ static struct option dhcpv6_options[] =
3e44d20
 	{ "lq-relay-data", "6X",		&dhcpv6_universe, 47, 1 },
3e44d20
 	{ "lq-client-link", "6A",		&dhcpv6_universe, 48, 1 },
3e44d20
 
3e44d20
+			/* RFC5970 OPTIONS */
3e44d20
+
3e44d20
+	{ "bootfile-url", "t",			&dhcpv6_universe, 59, 1},
3e44d20
+#if 0
3e44d20
+	/* Can't implement this until arrays of strings with length "StA"
3e44d20
+	 * are implemented
3e44d20
+	 */
3e44d20
+	{ "bootfile-param", "StA",		&dhcpv6_universe, 60, 1},
3e44d20
+#endif
3e44d20
+	{ "arch-type", "Sa",			&dhcpv6_universe, 61, 1},
3e44d20
+	{ "net-id", "BBB",			&dhcpv6_universe, 62, 1},
3e44d20
+
3e44d20
 	{ NULL, NULL, NULL, 0, 0 }
3e44d20
 };
3e44d20
 
c72a792
diff -up dhcp-4.2.5b1/includes/dhcp6.h.rfc5970 dhcp-4.2.5b1/includes/dhcp6.h
c72a792
--- dhcp-4.2.5b1/includes/dhcp6.h.rfc5970	2012-12-04 20:45:42.000000000 +0100
c72a792
+++ dhcp-4.2.5b1/includes/dhcp6.h	2012-12-17 13:43:44.286937948 +0100
3e44d20
@@ -75,6 +75,11 @@
3e44d20
 #define D6O_CLT_TIME				46 /* RFC5007 */
3e44d20
 #define D6O_LQ_RELAY_DATA			47 /* RFC5007 */
3e44d20
 #define D6O_LQ_CLIENT_LINK			48 /* RFC5007 */
3e44d20
+/* 49-58 Not yet assigned */
3e44d20
+#define D60_BOOT_URL				59 /* RFC5970 */
3e44d20
+#define D60_BOOT_PARAMS				60 /* RFC5970 */
3e44d20
+#define D60_CLIENT_ARCH				61 /* RFC5970 */
3e44d20
+#define D60_CLIENT_NII				62 /* RFC5970 */
3e44d20
 
3e44d20
 /* 
3e44d20
  * Status Codes, from RFC 3315 section 24.4, and RFC 3633, 5007.