I've just redone one of my servers (K12LTSP 5EL).  I have two NIC load balancing on bond0.  I'm only using one NIC and have changed the appropriate files for this (see wiki).<br><br>I've setup the dhcp server and it's running and handing out IP addresses to the non ltsp clients.  Thin clients can't boot.  Some just time out.  Some give the error in the subject line.<br>
<br>Below is my dhcpd-k12ltsp.conf file content.  I'm not sure what I'm missing but it must be relatively simple...<br clear="all"><br>-- <br>Mel Wade<br>"The real problem is not whether machines think but whether men do." - BF Skinner<br>
<a href="http://www.melwade.com">http://www.melwade.com</a><br><br><br># Sample configuration file for ISCD dhcpd<br>#<br># Don't forget to set run_dhcpd=1 in /etc/init.d/dhcpd<br># once you adjusted this file and copied it to /etc/dhcpd.conf.<br>
#<br><br>default-lease-time            21600;<br>max-lease-time                21600;<br>ddns-update-style none;<br>allow booting;<br>allow bootp;<br><br>option subnet-mask            <a href="http://255.255.255.0">255.255.255.0</a>;<br>
option broadcast-address      <a href="http://10.0.9.255">10.0.9.255</a>;<br>option routers                <a href="http://10.0.9.1">10.0.9.1</a>;<br>option domain-name-servers    <a href="http://10.0.4.10">10.0.4.10</a>;<br>
next-server                   <a href="http://10.0.9.254">10.0.9.254</a>;<br>option domain-name            "<a href="http://ucastudent.net">ucastudent.net</a>";<br>option root-path              "10.0.9.254:/opt/ltsp/i386";<br>
option option-128 code 128 = string;<br>option option-129 code 129 = text;<br>option option-221 code 221 = text;<br><br>shared-network WORKSTATIONS {<br>  subnet <a href="http://10.0.9.0">10.0.9.0</a> netmask <a href="http://255.255.255.0">255.255.255.0</a> {<br>
     range dynamic-bootp <a href="http://10.0.9.100">10.0.9.100</a> <a href="http://10.0.9.253">10.0.9.253</a>;<br>     use-host-decl-names       on;<br>     option log-servers        <a href="http://10.0.9.254">10.0.9.254</a>;<br>
<br>     # trick from Peter Rundle <<a href="mailto:peter.rundle@au.interpath.net">peter.rundle@au.interpath.net</a>><br>     # newer Macs<br>     if substring (option vendor-class-identifier, 0, 9) = "AAPLBSDPC"<br>
     {<br>        filename      "yaboot";<br>        option vendor-class-identifier "AAPLBSDPC";<br>     } <br>     # really old iMacs<br>     elsif substring (option option-221, 0, 5) = "Apple"<br>
     {<br>        filename      "yaboot";<br>        option vendor-class-identifier "AAPLBSDPC";<br>     } <br>     # Intel PXE<br>     elsif substring (option vendor-class-identifier, 0, 9) = "PXEClient" <br>
     {<br>        # NOTE: kernels are specified in /tftpboot/lts/pxe/pxelinux.cfg/<br>        filename      "/lts/pxe/pxelinux.0";<br>     } <br>     # default to an i386 BOOTP image<br>     else <br>     {<br>        filename      "/lts/vmlinuz.ltsp";<br>
     }<br><br>     if substring (option vendor-class-identifier, 20, 3) = "ppc" {<br>        option root-path "10.0.9.254:/opt/ltsp/ppc";<br>     } else {<br>        option root-path "10.0.9.254:/opt/ltsp/i386"; <br>
     }<br>  }<br>}<br><br># example configurations for specifying specific kernels to specific clients<br>group    {<br>    use-host-decl-names       on;<br>    option log-servers        <a href="http://10.0.9.254">10.0.9.254</a>;<br>
<br>    host boysdorm001 {<br>        hardware ethernet     00:E0:06:E8:00:84;<br>        fixed-address         <a href="http://10.0.9.1">10.0.9.1</a>;<br>        filename              "/lts/vmlinuz.ltsp";<br>        option option-128 e4:45:74:68:00:00;<br>
        option option-129 "NIC=3c509";<br>    }<br>    host boysdorm002 {<br>        hardware ethernet     00:D0:09:30:6A:1C;<br>        fixed-address         <a href="http://10.0.9.2">10.0.9.2</a>;<br>        filename              "/lts/vmlinuz.ltsp";<br>
        option option-128 e4:45:74:68:00:00;<br>        option option-129 "NIC=ne";<br>    }<br>    host boysdorm003 {<br>        hardware ethernet     00:D0:09:30:28:B2;<br>        fixed-address         <a href="http://10.0.9.3">10.0.9.3</a>;<br>
        # kernels are specified in /tftpboot/lts/boot/pxe/pxelinux.cfg/<br>        filename              "/lts/boot/pxe/pxelinux.0";<br>    }<br><br># Apple Specific Settings<br>#    host boysdorm007 {<br>#       hardware ethernet     00:30:65:69:23:60;<br>
#       fixed-address         <a href="http://10.0.9.4">10.0.9.4</a>;<br>#       option root-path      "10.0.9.254:/opt/ltsp/ppc";<br>#       filename              "yaboot";<br>#       option vendor-class-identifier "AAPLBSDPC";<br>
#    }<br>}<br><br>