On Thu, Jul 20, 2006 at 08:45:49AM -0400, Jim McQuillan wrote:
> Alfred,
> 
> I'm pretty sure you should be choosing '2) PXE'.

Jim is correct.

> I'm thinking that the conditional logic in the dhcpd.conf file might not
> be working properly for you,

Oh, my, yes.  I spent 10 minutes trying to sort it out, and
yikeslagramma, it's a bit mixed up.  To be blunt, I'm kinda surprised it
works at all.

Here's a simplified one.  Try it, and let me know if it works for you.

Scott

ddns-update-style             none;
get-lease-hostnames           false;

if substring (option vendor-class-identifier, 0, 9) = "AAPLBSDPC" {
     filename      "yaboot";
     option vendor-class-identifier "AAPLBSDPC";
} elsif substring (option vendor-class-identifier, 0, 9) = "PXEClient" {
     filename "/lts/2.6.16.1-ltsp-2/pxelinux.0";
} else {
     filename "/lts/vmlinuz-2.6.16.1-ltsp-2";
}

subnet 192.168.1.0 netmask 255.255.255.0 {
    authoritative;
    use-host-decl-names on;
    option root-path "192.168.1.254:/opt/ltsp/i386";
    option domain-name-servers 192.168.0.1;
    option domain-name "ltsp.com";
    option broadcast-address 192.168.1.255;
    option subnet-mask 255.255.255.0;
    option routers 192.168.1.254;
    range 192.168.1.60 192.168.1.99;

    host ws100 {
        hardware ethernet     00:50:04:1a:36:3f;
        fixed-address         192.168.1.100;
    }

    host ws001 {
        hardware ethernet     00:30:65:4a:1e:54;
        fixed-address         192.168.1.61;
        filename              "yaboot";
        option vendor-class-identifier "AAPLBSDPC";
    }

    host ws099 {
        hardware ethernet     00:d0:b7:9b:0d:7a;
        fixed-address         192.168.1.99;
    }
}


-- 
Scott L. Balneaves | "Looking beyond the embers of bridges glowing behind us
Systems Department |  To a glimpse of how green it was on the other side..."
Legal Aid Manitoba |    -- Pink Floyd "High Hopes"

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_____________________________________________________________________
Ltsp-discuss mailing list.   To un-subscribe, or change prefs, goto:
      https://lists.sourceforge.net/lists/listinfo/ltsp-discuss
For additional LTSP help,   try #ltsp channel on irc.freenode.net

Reply via email to