>> $ chkconfig --list tftp > >linux:/home/gregor # chkconfig --list tftp >tftp 0:off 1:off 2:off 3:off 4:off 5:off >6:off
You will not see tftp on a chkconfig because it does not have its own startup script. Instead it's started from inetd or xinetd, depending on which you have installed. >So why isn't it launched? It IS in inetd.conf, so should be started >automatically... Some debugging tips, use in forward, reverse or random order as you like: Check that you have inetd installed and running: rpm -q inetd ps ax | grep inetd Then check that it's enabled in /etc/inetd.conf: grep tftpd /etc/inetd.conf Check that tftp is listening on the port: netstat -au | grep tftp Check that you have allowed the client to in /etc/hosts.allow: Check that you don't have the firewall blocking tftp: iptables -L Check it with a manual tftp: $ tftp tftp> connect <ip of server> tftp> get lts/vmlinuz-2.4.19-ltsp-1 ------------------------------------------------------- This sf.net email is sponsored by: With Great Power, Comes Great Responsibility Learn to use your power at OSDN's High Performance Computing Channel http://hpc.devchannel.org/ _____________________________________________________________________ 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
