Hi, all!

I have a server running RedHat7.2 and ltsp v3.0. I boot the card EEPRO100
using PXE to load Etherboot, and have Etherboot load the kernel and start
it. This procces occurs sucessufuly. However, when I boot muy client, it
seems the server. Instead of mounting the filesystems by nsf
(/etc/exports), it mounts all the filesystems of server. It too assumes
the network configuration of server (ip,hostname,netmask and so on.) My
version of dhcp is 3.0. and the file /etc/dhcpd.conf is following.

Thanks in advence,

Marcia Marra.


File /etc/dhcpd.conf

# Sample configuration file for ISCD
not authoritative;
ddns-update-style             none;

subnet 192.168.0.0 netmask 255.255.255.0
{
        option broadcast-address      192.168.0.255;
        option domain-name            "domain.com";
        default-lease-time            21600;
        max-lease-time                21600;
        option netbios-dd-server    192.168.0.25;
        option netbios-name-servers 192.168.0.25;
        option netbios-node-type    8;
        option subnet-mask          255.255.255.0;
        option routers                192.168.0.254;
        option log-servers            192.168.0.25;
        option root-path              "192.168.0.25:/opt/ltsp/i386";
        use-host-decl-names           on;

host ws001 {
        hardware ethernet     00:E0:06:E8:00:84;
        fixed-address         192.168.0.1;
        if substring (option vendor-class-identifier, 0, 9) = "PXEClient" {
            filename "/lts/eb-5.0.2-eepro100.pxe";
        } else if substring (option vendor-class-identifier, 0, 9) =
"Etherboot" {
            filename "/lts/vmlinuz-2.4.9-ltsp-5";
            option vendor-encapsulated-options 3c:09:45:74:68:65:72:62:6f:6f:74:ff;
        }
    }


    host ws002 {
        hardware ethernet     00:D0:09:30:6A:1C;
        fixed-address         192.168.0.2;
        if substring (option vendor-class-identifier, 0, 9) = "PXEClient"
{
            filename "/lts/eb-5.0.2-eepro100.pxe";
        } else if substring (option vendor-class-identifier, 0, 9) =
"Etherboot" {
            filename "/lts/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