<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
  <title></title>
</head>
<body bgcolor="#ffffff" text="#000000">
<div class="moz-text-flowed" style="font-size: 16px;" lang="x-western">HI,
<br>
<br>
I have been looking for a good resource to configure PXE in FC3 for a
while... I can not seem to get it to work... here is my setup:
<br>
<br>
<top of my dhcpd.conf>
<br>
ddns-update-style interim;
<br>
ddns-updates on;
<br>
allow bootp;
<br>
allow booting;
<br>
#filename "/tftpboot/X86PC/UNDI/BStrap";
<br>
class "pxeclients" {
<br>
  match if substring(option vendor-class-identifier, 0, 9) =
"PXEClient";
<br>
  next-server 10.0.0.100;
<br>
  filename "netboot.img"; <== the netboot.img is a DR DOS floppy
image using Power Quest.
<br>
<br>
</top of my dhcpd.conf>
<br>
<br>
and:
<br>
service tftp
<br>
{
<br>
       disable = no
<br>
       socket_type             = dgram
<br>
       protocol                = udp
<br>
       wait                    = yes
<br>
       user                    = root
<br>
       server                  = /usr/sbin/in.tftpd
<br>
       server_args             = /tftpboot
<br>
       per_source              = 11
<br>
       cps                     = 100 2
<br>
       flags                   = IPv4
<br>
}
<br>
<br>
that should be it... I have dell boxes capable of PXE; but i get errors
like tftp timeout and "client does not take options". Is there a step
by step guide for PXE on Linux?
<br>
<br>
<br>
</div>
</body>
</html>