this my working configuration
the dhcp should point to tftp server.
this is my dhcpd.conf
deny unknown-clients;
not authoritative;
option subnet-mask 255.0.0.0;
allow bootp;
allow booting;
ddns-update-style ad-hoc;
subnet 10.0.0.0 netmask 255.0.0.0 {
#option routers;
option broadcast-address 10.255.255.255;
}
group hosts {
next-server 10.0.0.251;
filename "pxelinux.0";
host host1 {
hardware ethernet 00:11:22:33:44:5;
fixed-address 10.0.0.1;
}
}
dont forget to restart after change
the tftp should run on the same server as the dhcp.
the tftp directory /tftpboot should have 777 permissions