ps aux | grep dhcpd
was giving me three lines, the middle one containing '- vi dhcpd.conf' which I assume was the problem.
According to the LTSP doc, if the workstation gets a valid reply from the DHCP server it gives a response containing
Me: 192.168.0.1, Server: 192.168.0.254, Gateway 192.168.0.254suggesting these are three key ingredients. They seem to be lacking in my
/etc/dhcpd.conf (below). I really don't care if IP is statically or dynamically
allocated (my ISP uses static) ... as long as it works. I've tried both options
without success. DHCPD starts at boot - can anything be fixed in the config below ?
Adam Bogacki, [EMAIL PROTECTED]
default-lease-time 21600; max-lease-time 21600;
option subnet-mask 255.255.255.0;
option broadcast-address 203.79.110.255;
option routers 203.79.110.81;
option domain-name-servers 203.79.110.81;
option domain-name "paradise.net.nz"; # <--Fix this domain name
option root-path "203.79.110.81:/opt/ltsp/i386";
subnet 192.168.0.0 netmask 255.255.255.0 { range dynamic-bootp 192.168.0.1 192.168.0.253; }
subnet 203.79.110.0 netmask 255.255.255.192 { use-host-decl-names on; option log-servers 203.79.110.81;
##
## If you want to use static IP address for your workstations, then un-comment
"/etc/dhcpd.conf" 58L, 2000C 1,1 Top
## the following section and modify to suit your network.
## Then, duplicate this section for each workstation that needs a static
## IP address.
##
host ws001 { <----- Fix this hostname
hardware ethernet 00:0B:2B:03:D2:57; <-- Fix this MAC addr
fixed-address 192.168.0.2; <-- Fix this IP addr
filename "/lts/vmlinuz-2.4.26-ltsp-1";
# }
##
# If you want to use a dynamic pool of addresses, then un-comment the following
# lines and modify to match your network.
#
# subnet 192.168.0.0 netmask 255.255.255.192 {
# range dynamic-bootp 192.168.0.1 192.168.0.253;
# }
##
}
------------------------------------------------------- This SF.Net email is sponsored by: InterSystems CACHE FREE OODBMS DOWNLOAD - A multidimensional database that combines robust object and relational technologies, making it a perfect match for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8 _____________________________________________________________________ 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
