Hi, I am trying to set up LTSP and boot one of my computers as a thin
client, however after setting up dhcpd.conf and booting the thin client
(using PXE), I get the error in the logs filess<br>
<br>
DHCPDISCOVER from 00:07:e9:d2:6b:3a via eth0: network WORKSTATIONS: no free leases<br>
<br>
This is my currrent conf file<br>
<br>
# Sample configuration file for ISCD dhcpd<br>
#<br>
# Make changes to this file and copy it to /etc/dhcpd.conf<br>
#<br>
ddns-update-style none;<br>
default-lease-time 21000;<br>
max-lease-time 21000;<br>
<br>
option subnet-mask <a href="http://1.1.1.1">1.1.1.1</a>;<br>
option broadcast-address <a href="http://192.168.0.255">192.168.0.255</a>;<br>
option routers <a href="http://192.168.0.100">192.168.0.100</a>;<br>
option domain-name-servers <a href="http://192.168.0.100">192.168.0.100</a>;<br>
option domain-name "<a href="http://mydomain.com">mydomain.com</a>";<br>
option root-path "192.168.0.100:/opt/ltsp/i386";<br>
<br>
option option-128 code 128 = string;<br>
option option-129 code 129 = text;<br>
<br>
shared-network WORKSTATIONS {<br>
subnet <a href="http://1.1.1.1">1.1.1.1</a> netmask <a href="http://1.1.1.1">1.1.1.1</a> {<br>
<br>
}<br>
}<br>
<br>
group{<br>
use-host-decl-names on;<br>
option log-servers <a href="http://192.168.0.100">192.168.0.100</a>;<br>
<br>
host ws001 {<br>
hardware ethernet 00:07:e9:d2:6b:3a;<br>
fixed-address <a href="http://192.168.0.1">192.168.0.1</a>;<br>
filename
"/lts/vmlinuz-2.4.22-ltsp-1";<br>
}<br>
<br>
<br>
}<br>
<br>
Thanks,<br>
<br>
Jon<br>