|
本帖最后由 zhaohj 于 2015-11-19 11:44 编辑
Configuring the DHCP server
A chain
You must configure your DHCP server to check for a UEFI HTTP Boot client, and to provide the string HTTPClient as the vendor class identifier, and an HTTP URI as the boot filename. If you are using ISC dhcpd then you need to edit /etc/dhcpd.conf to contain
if option client-architecture = encode-int ( 16, 16 ) {
option vendor-class-identifier "HTTPClient";
filename "http://my.web.server/ipxe.efi";
} else {
filename "http://my.web.server/script.ipxe";
}
where my.web.server is the DNS name (or IP address) of your web server.
==========================
参见:http://ipxe.org/appnote/uefihttp
问老大,这段话在ms的dhcp中怎么设置?
|
|