http://www.linuxquestions.org/questions/linux-networking-3/dhcpd-tftp-config-help-please-57870/
Here's my setup:
PXE Boot:
MotherBoard: Intel 815i
eth0: 3Com 35905b
PXE ver: 2.0
DHCP Server:
SuSE 7.3
192.168.202.100
TFTP Server:
Red Hat 9.0
192.168.200.57
/ect/dhcpd.conf:
option netbios-name-servers 192.168.200.31;
option time-servers timserv.testnet.mydomain.com;
option domain-name-servers 192.168.200.31;
option domain-name "testnet.mydomain.com";
option broadcast-address 192.168.202.255;
option subnet-mask 255.255.255.0;
option routers 192.168.202.5;
ddns-update-style none;
allow booting;
allow bootp;
subnet 192.168.202.0 netmask 255.255.255.0 {
}
group {
host stg20 {
ddns-updates off;
hardware ethernet 00:01:02:23:31:EB;
next-server 192.168.200.57;
filename "pxelinux.0";
fixed-address 192.168.202.120;
}
}
/etc/xinit.d/tftp
service tftp
{
socket_type = dgram
protocol = udp
wait = yes
user = root
server = /usr/sbin/in.tftpd
server_args = -v -l -s /tftpboot
disable = no
per_source = 11
cps = 100 2
flags = IPv4
}
TAG dhcpd
