Do you have a firewall in between the LTSP clients and the server? Opening up TFTP in the firewall (or local IPTables config) doesn't seem to let PXE requests through. Opening up PXE also doesn't seem to. There's some high port requests early on that need to get through.
Drop your firewall and see if it works. Also check your hosts.allow and hosts.deny files to see if the IP range of your clients is allowed to connect to bootp and TFTP.
I figured this much out.
I'm definitely getting the tftp client pointed to the wrong spot. Rather than switching servers, it is trying to hit tftp from my dhcp server.
Here's my DHPC conf file. Maybe someone can see somethin gI cannot: I'll look into it more after an hour... (eat)
[EMAIL PROTECTED]:~ # cat /etc/dhcpd.conf
subnet 192.168.1.0 netmask 255.255.255.0
{
option subnet-mask 255.255.255.0;
option domain-name "home.tacocat.net";
option routers 192.168.1.1;
option domain-name-servers 192.168.1.1;
range dynamic-bootp 192.168.1.2 192.168.1.200;
default-lease-time 3600;
max-lease-time 7200;
option root-path "192.168.1.10:/opt/ltsp/i386";
}
host gremlin
{
hardware ethernet 00:40:63:c8:47:a7;
fixed-address 192.168.1.2;
}
host loki
{
hardware ethernet 00:0D:61:37:36:30;
fixed-address 192.168.1.10;
}
host unkown
{
hardware ethernet 00:40:63:c8:47:b0;
fixed-address 192.168.1.3;
}group {
use-host-decl-names on;
next-server 192.168.1.10;
option log-servers 192.168.1.1; host ws001 {
hardware ethernet 00:d0:59:39:a8:a1;
fixed-address 192.168.1.201;
filename "/lts/2.4.24-ltsp-1/pxelinux.0";
}
}r
------------------------------------------------------- SF.Net is sponsored by: Speed Start Your Linux Apps Now. Build and deploy apps & Web services for Linux with a free DVD software kit from IBM. Click Now! http://ads.osdn.com/?ad_id=1356&alloc_id=3438&op=click _____________________________________________________________________ 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
