Hi Glenn,
I think your problem is the line:
'subnet 192.168.1.20 netmask 255.255.255.0 {'
 
192.168.1.20 is not a valid subnet.
 
I think what you are trying to do is:
shared-network WORKSTATIONS{
    subnet 192.168.1.0 netmask 255.255.255.0 {
        range 192.168.1.20 192.168.1.25;
        }
    }
 
This specifies a range of .20 through .25
cheers,
rob

----- Original Message ----- 
From: "Glenn Morse" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Saturday, April 13, 2002 2:45 PM
Subject: [Ltsp-discuss] DHCP not working...


> I am trying to get LTSP to work on my Mandrake 8.2 box...I installed all
> of the base packages w/o any issues, after first installing the DHCP
> server and TFTP server from the Mandrake CD's. I pretty much let the
> LTSP scripts configure everything, except as necessary for my network
> configuration. That is odd in and of itself: I have a Linksys LNE100-TX
> running happily on this machine as eth0 on 192.158.1.5, and tried to
> install a D-Link DFE-530TX as eth1. Well, HardDrake hung the machine the
> first time it booted, then it "installed" it, but it is unconfigured,
> and when I look at it under HardDrake (gui), it just tells me that
> HardDrake couldn't configure it, and politely asks me to email them and
> tell them so. Well, I am not doing anything that bandwidth-intensive on
> my network, so I decided to just run everything over eth0. I have no
> other DHCP servers running on this network segment, and only a few
> machines. I tried to configure everything correctly, but when I tried to
> start the DHCP daemon, it dies with the messages listed below. I have
> posted the messages and my dhcpd.conf file. As mentioned, my box is
> running at 192.168.1.5, my router is 192.168.1.1, and I want the DHCP
> range to start at 192.168.1.20. Please, any suggestions? I have been
> playing with this all morning, to no avail!
> 
> Thanks,
> Glenn M
> 
> Error:
> /etc/dhcpd.conf line 22: subnet 192.168.1.20: bad subnet number/mask
> combination.
>     subnet 192.168.1.20 netmask 255.255.255.0
>                                             ^
> /etc/dhcpd.conf line 24: empty shared-network decl
> }
> ^
> Configuration file errors encountered -- exiting
> 
> Dhcpd.conf:
> ddns-update-style             ad-hoc;
> default-lease-time            21600;
> max-lease-time                21600;
> 
> option subnet-mask            255.255.255.0;
> option broadcast-address      192.168.1.255;
> option routers                192.168.1.5;
> option domain-name-servers    192.168.1.5;
> option domain-name            "yourdomain.com";
> option root-path              "192.168.1.5:/opt/ltsp/i386";
> option option-128 code 128 = string;
> #    echo option option-129 code 129 = text
> option option-129 code 129 = text;
> 
> shared-network WORKSTATIONS {
>     subnet 192.168.1.20 netmask 255.255.255.0 {
>     }
> }
> 
> 
> _____________________________________________________________________
> 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


_____________________________________________________________________
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