Browse Source

Added options listed in

http://www.microsoft.com/whdc/winlogo/hwrequirements.mspx as required
for iSCSI boot.  Note that options 204-206 are listed in the document
but don't seem to be defined anywhere on the web.
tags/v0.9.3
Michael Brown 18 years ago
parent
commit
6a91a03409
1 changed files with 12 additions and 0 deletions
  1. 12
    0
      src/include/gpxe/dhcp.h

+ 12
- 0
src/include/gpxe/dhcp.h View File

113
 /** Vendor class identifier */
113
 /** Vendor class identifier */
114
 #define DHCP_VENDOR_CLASS_ID 60
114
 #define DHCP_VENDOR_CLASS_ID 60
115
 
115
 
116
+/** Client identifier */
117
+#define DHCP_CLIENT_ID 61
118
+
116
 /** TFTP server name
119
 /** TFTP server name
117
  *
120
  *
118
  * This option replaces the fixed "sname" field, when that field is
121
  * This option replaces the fixed "sname" field, when that field is
185
  */
188
  */
186
 #define DHCP_EB_PASSWORD DHCP_ENCAP_OPT ( DHCP_EB_ENCAP, 0xbf )
189
 #define DHCP_EB_PASSWORD DHCP_ENCAP_OPT ( DHCP_EB_ENCAP, 0xbf )
187
 
190
 
191
+/** iSCSI primary target IQN */
192
+#define DHCP_ISCSI_PRIMARY_TARGET_IQN 201
193
+
194
+/** iSCSI secondary target IQN */
195
+#define DHCP_ISCSI_SECONDARY_TARGET_IQN 202
196
+
197
+/** iSCSI initiator IQN */
198
+#define DHCP_ISCSI_INITIATOR_IQN 203
199
+
188
 /** Maximum normal DHCP option */
200
 /** Maximum normal DHCP option */
189
 #define DHCP_MAX_OPTION 254
201
 #define DHCP_MAX_OPTION 254
190
 
202
 

Loading…
Cancel
Save