>>40
ISC の DHCP 使ってPXEするのであれば、dhcpd.conf はこんな感じで
いけますけどね。

host xxx {
hardware ethernet 00:1b:fc:uu:vv:wwy;
fixed-address xxx;
allow booting;
option host-name "xxx.yyy.zzz";
class "pxeclients" {
match if substring(option vendor-class-identifier, 0, 9) = "PXEClient";
next-server 192.168.1.4;
filename "/boot/grub/pxegrub";
}
class "grubclients" {
match if substring(option vendor-class-identifier, 0, 10) = "GRUBClient";
next-server 192.168.1.4;
filename "/boot/grub/pxegrub /boot/grub/menu.lst";
}
}