|
本帖最后由 快雪时晴 于 2013-6-29 00:27 编辑
527104427 发表于 2013-6-29 00:03
似乎是这样的:
通过TFTDP32设置grldr(ipxe改名)为引导,客户端通过ipxe内置菜单下载grub.exe和0P ...
原来是这样在ipxe模块中嵌入脚本的
http://ipxe.org/howto/chainloading
Breaking the loop with an embedded script
Another way to break the infinite loop is to build iPXE with an embedded script that directs iPXE to boot from a fixed URL. For example, if you create the script file demo.ipxe containing:
#!ipxe
dhcp
chain http://boot.ipxe.org/demo/boot.php
and then build your own version of iPXE with this script embedded:
make bin/undionly.kpxe EMBED=demo.ipxe
then the chainloaded iPXE will always boot from http://boot.ipxe.org/demo/boot.php regardless of the DHCP server configuration.
不知道在Windows平台下如何make |
|