I just got my second (third and fourth) diskless workstation today and I'm setting them up.

I'm using static ip's with dhcpd.  The first one still works fine, but the second just isn't picking up the dhcp for some reason.

Here's some config files for good measure (I'll try to leave out unimportant bits where I can).

*****
start files
*****
dhcpd.conf:
#ddns-update-style            none;

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

option subnet-mask           255.255.255.0;
option broadcast-address     100.100.100.255;
option routers               100.100.100.2;
option domain-name-servers   100.100.100.2;
option domain-name           "ltsp";          # <--Fix this domain name

option root-path             "100.100.100.2:/opt/ltsp/i386";

subnet 100.100.100.0 netmask 255.255.255.0 {
    use-host-decl-names      on;
    option log-servers       100.100.100.2;


##
## If you want to use static IP address for your workstations, then un-comment
## the following section and modify to suit your network.
## Then, duplicate this section for each workstation that needs a static
## IP address.
##
    host ws001 {                                   
        hardware ethernet    90:12:02:50:D7:51;        
        fixed-address        100.100.100.1;          
        filename             "lts/2.6.9-ltsp-3/pxelinux.0";
    }
    host ws002 {
        hardware ethernet    90:12:02:50:8B:69;
        fixed-address        100.100.100.6;
        filename             "lts/2.6.9-ltsp-3/pxelinux.0";
    }
    host ws003 {
        hardware ethernet    90:12:02:50:D7:51;
        fixed-address        100.100.100.112;
        filename             "lts/2.6.9-ltsp-3/pxelinux.0";
    }
    host ws004 {
        hardware ethernet    90:12:02:50:D7:51;
        fixed-address        100.100.100.113;
        filename             "lts/2.6.9-ltsp-3/pxelinux.0";
    }

Inetd.conf:
# <service_name> <sock_type> <proto> <flags> <user> <server_path> <args>
#<off>
tftp dgram udp wait root /usr/sbin/tcpd /usr/sbin/in.tftpd -s /tftpboot

#:STANDARD: These are standard services.
telnet        stream    tcp    nowait    telnetd.telnetd    /usr/sbin/tcpd    /usr/sbin/in.telnetd

lts.conf:
[ws001]
    SERVER           = 100.100.100.2
    XSERVER           = auto
    X_MOUSE_PROTOCOL   = "PS/2"
    X_MOUSE_DEVICE       = "/dev/psaux"
    X_MOUSE_RESOLUTION = 400
    X_MOUSE_BUTTONS    = 3
    USE_XFS           = N
    SCREEN_01       = telnet

[ws002]
    SERVER           = 100.100.100.2
    XSERVER           = auto
    X_MOUSE_PROTOCOL   = "PS/2"
    X_MOUSE_DEVICE     = "/dev/psaux"
        X_MOUSE_RESOLUTION = 400
        X_MOUSE_BUTTONS    = 3
        USE_XFS            = N
        SCREEN_01          = startx
    SCREEN_02       = telnet

[ws003]
        SERVER             = 100.100.100.2
        XSERVER            = auto
        X_MOUSE_PROTOCOL   = "PS/2"
        X_MOUSE_DEVICE     = "/dev/psaux"
        X_MOUSE_RESOLUTION = 400
        X_MOUSE_BUTTONS    = 3
        USE_XFS            = N
        SCREEN_01          = startx
        SCREEN_02          = telnet

ltsp.conf:

LTSP_DIR=/opt/ltsp
PKG_SOURCE=http://www.ltsp.org/ltsp-4.1/
HTTP_PROXY=none
FTP_PROXY=none
LTSP_ETH_INTERFACE=eth0

*****
end files
*****

Basically, I double cheched the mac address of the machine and it's good.  The cables are fine (I tested them to make sure that I was getting flow on all the wires).  It's just not pi cking up a dhcp service at all.  It bombs out there.  I've tried rebooting the machine and I've traied restarting both dhcp3-server and inetd.

Thoughts?
-- 

joe auerbach
systems administrator
pcb / rossman and co
614-523-4150
[EMAIL PROTECTED]




-------------------------------------------------------
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
_____________________________________________________________________
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