I'm running Debian stable (Woody), and am trying to install LTSP 4.0. Everything is working, except the DHCP server. I get the following error in /var/log/syslog:

------
 No subnet declaration for eth0 (10.0.0.1).
 ** Ignoring requests on eth0.  If this is not what
    you want, please write a subnet declaration
    in your dhcpd.conf file for the network segment
    to which interface eth0 is attached. **

 Not configured to listen on any interfaces!
------

This is my /etc/dhcpd.conf:

-----
ddns-update-style            none;

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

option subnet-mask           255.255.255.0;
option broadcast-address     10.0.0.255;
option routers               10.0.0.1;
option domain-name-servers   10.0.0.1;
option domain-name           "home.traas.org";

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

option option-128 code 128 = string;
option option-129 code 129 = text;

subnet 10.0.0.0 netmask 255.255.255.0 {
    use-host-decl-names      on;
    option log-servers       10.0.0.1;
    subnet 10.0.0.0 netmask 255.255.255.0 {
        range dynamic-bootp 10.0.0.100 10.0.0.250;
    }
}
-----

A simple glance at ifconfig tells me that eth0 is correctly running on 10.0.0.1, and the netmask is also correct. Uplink to the net is on eth1, which is, in fact, working.

The setup I'm going for is to have the clients on 10.0.0.0/24, and not have to do messy things like specify thier MAC addresses; I just want to be able to dynamically add/delete clients at will.

Anyone have any idea on this? Never really messed with DHCP before.

Also, will this work with PXE? I have a VIA EPIA board with onboard LAN, and I have confirmed it boots on an LTSP LAN.

--
"Science without religion is lame, religion without science is blind."
        --Albert Einstein


------------------------------------------------------- This SF.Net email is sponsored by OSTG. Have you noticed the changes on Linux.com, ITManagersJournal and NewsForge in the past few weeks? Now, one more big change to announce. We are now OSTG- Open Source Technology Group. Come see the changes on the new OSTG site. www.ostg.com _____________________________________________________________________ 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