Hi Ilunga,
Although you do have an option root path specified, surf6 does not know
about it because the option is specified in the group declaration....which
surf6 is not member of.
Try this instead:

not authoritative;
ddns-update-style       none;

default-lease-time            21600;
max-lease-time                21600;

option subnet-mask            255.255.255.0;
option broadcast-address      192.168.1.255;
option domain-name            "my domain";
option root-path              "192.168.1.2:/opt/ltsp/i386";

option routers 192.168.1.99;
option domain-name-servers 192.168.1.2;
shared-network terminaux {
 subnet 192.168.1.0 netmask 255.255.255.0 {
  }
 }
group {

    use-host-decl-names       on;

    host surf6 {
        hardware ethernet  00:20:ED:20:D7:BA;
        fixed-address   192.168.1.56;
        if substring (option vendor-class-identifier, 0, 9) = "PXEClient" {
            filename "eb-5.0.5-rtl8139.lzpxe";
        }
        else if substring (option vendor-class-identifier , 0, 9) =
"Etherboot" {
            filename "vmlinuz-2.4.9-ltsp-5";
            option vendor-encapsulated-options
3c:09:45:74:68:65:72:62:6f:6f:74:ff;
        }
    }
}

Notice how most of the options are made global and surf6 is made part of the
group declaration

Hope this helps,
rob

> My dhcpd.conf
>
> not authoritative;
> ddns-update-style       none;
>
> shared-network terminaux {
>                           subnet 192.168.1.0 netmask 255.255.255.0 {
>                           }                                       }
>
> group   {default-lease-time 21600;
>          max-lease-time 21600;
>          use-host-decl-names on;
>          option domain-name "my domain";
>          option subnet-mask      255.255.255.0;
>          option broadcast-address 192.168.1.255;
>          option domain-name-servers 192.168.1.2;
>          option routers 192.168.1.99;
>          option root-path "192.168.1.2:/opt/ltsp/i386";
> }
>
>         host surf6 {
>                         hardware ethernet  00:20:ED:20:D7:BA;
>                         fixed-address   192.168.1.56;
>                         if substring (option vendor-class-identifier, 0,
9) =
> "PXEClient" {
>                         filename "eb-5.0.5-rtl8139.lzpxe";
>                  }
>                         else if substring (option vendor-class-identifier
,
> 0, 9) = "Etherboot" {
>                         filename "vmlinuz-2.4.9-ltsp-5";
>                         option vendor-encapsulated-options
> 3c:09:45:74:68:65:72:62:6f:6f:74:ff;}
>                }
>


_____________________________________________________________________
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.openprojects.net

Reply via email to