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