On Friday 12 August 2005 11:31, [EMAIL PROTECTED] 
wrote:
> Content-Type=message/rfc822
> Content-Description=embedded message
> Date: Thu, 11 Aug 2005 13:29:00 -0500
> To: [email protected]
> From: "Joe Baker" <[EMAIL PROTECTED]>
> Subject: [Ltsp-discuss] SuSE x86-64 DHCPd
>
> Has anybody succeded in getting ISC's DHCPd to run on a SuSE 9.3 64bit =20
> installation.  I tried it and got an "unknown error" with a bunch of hex =
> =20
> characters.  I've setup  ISC DHCP servers about 15 times, so this one has=
>  =20
> me stumped.
Hi

It just works. What are your errors?

eg# dhcpd.conf

# option definitions common to all supported networks...
option domain-name "home";
option domain-name-servers 192.168.5.254;

default-lease-time 600;
max-lease-time 7200;
ddns-update-style none;
ddns-updates off;
option option-128 code 128    = string;
option option-129 code 129    = text;



# If this DHCP server is the official DHCP server for the local
# network, the authoritative directive should be uncommented.
authoritative;

# Use this to send dhcp log messages to a different log file (you also
# have to hack syslog.conf to complete the redirection).
log-facility local7;

subnet 192.168.5.0 netmask 255.255.255.0 {
        option subnet-mask         255.255.255.0;
        option broadcast-address   192.168.5.255;
        option routers             192.168.5.254;
        filename                   "/install/pxelinux.0";
        range 192.168.5.5 192.168.5.9;
}

#------------------- MAC Addr -----------------------------------
#BB1        hardware ethernet          00:40:63:d3:0c:13;
#BB2        hardware ethernet          00:40:63:da:67:8d;
#shuttle    hardware ethernet          00:30:1b:b2:a5:7c;
#duron      hardware ethernet          00:00:b4:9d:d3:11;
#           hardware ethernet          00:00:00:00:00:00;

group {
    use-host-decl-names       on;

    host suse {
        hardware ethernet          00:40:63:da:67:8d;
        fixed-address              suse;
        filename                   "/install/pxelinux.0";
        }

    host stm1234 {
        hardware ethernet          00:40:63:da:67:8d;
        fixed-address              stm1234;
        ddns-hostname              stm1234;
        }

    host stm1235 {
        hardware ethernet          00:30:1b:b2:a5:7c;
        fixed-address              stm1235;
        ddns-hostname              stm1235;
        }

    host stm1236 {
        hardware ethernet          00:00:b4:9d:d3:11;
        fixed-address              stm1236;
        ddns-hostname              stm1236;
        }

    host twill {
        hardware ethernet          00:40:ca:c5:32:a0;
        fixed-address              twill;
        ddns-hostname              twill;
    }

    host angel {
        hardware ethernet          00:40:ca:c3:df:9e;
        fixed-address              angel;
        ddns-hostname              angel;
    }

    host owl {
        hardware ethernet          00:48:54:87:ca:aa;
        fixed-address              owl;
        ddns-hostname              owl;
    }

    host reggit {
        hardware ethernet          00:48:54:87:ca:5b;
        fixed-address              reggit;
        ddns-hostname              reggit;
        }

    host saunders {
        hardware ethernet          00:40:63:d3:13:36;
        fixed-address              saunders;
#        filename                   "/lts/2.6.9-ltsp-3/pxelinux.0";
        filename                   "/lts/2.4.26-ltsp-3/pxelinux.0";
        option log-servers         192.168.5.254;
        option root-path           "192.168.5.254:/opt/ltsp/i386";
    }
}




-------------------------------------------------------
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