15.2. 配置 DHCP 服务器

如果网络上没有 DHCP 服务器,那么就配置一个。详情请参阅第25章 。请确定配置文件中包含以下内容,因此支持 PXE 引导的系统会启用它:

allow booting;
allow bootp;
class "pxeclients" {
   match if substring(option vendor-class-identifier, 0, 9) = "PXEClient";
   next-server <server-ip>;
   filename "linux-install/pxelinux.0";
}

next-server 选项后面的 IP 地址应该是 tftp 服务器的 IP 地址。