Difference between revisions of "Tftp timeout...."
(→Debian) |
|||
Line 1: | Line 1: | ||
− | If you get this issue, do the following: | + | If you get this issue its usually due to a firewall issue, do the following: |
− | + | =Disable firwall= | |
== Fedora 9 == | == Fedora 9 == | ||
Line 68: | Line 68: | ||
Received XXXX bytes in X.X seconds.... | Received XXXX bytes in X.X seconds.... | ||
</pre> | </pre> | ||
+ | |||
+ | |||
+ | =What if the firewall is disabled and I'm still getting tftp time out= | ||
+ | *Restart the TFTP service. |
Revision as of 18:30, 8 July 2014
If you get this issue its usually due to a firewall issue, do the following:
Contents
Disable firwall
Fedora 9
service iptables stop service ip6tables stop chkconfig iptables off chkconfig ip6tables off
Fedora 16
Add /bin/bash to /etc/shells as the vsftpd yum install does not do it correctly causing tftp timeout message
Ubuntu
sudo ufw disable
Debian
iptables -F iptables -X iptables -t nat -F iptables -t nat -X iptables -t mangle -F iptables -t mangle -X iptables -P INPUT ACCEPT iptables -P OUTPUT ACCEPT iptables -P FORWARD ACCEPT
Other Troubleshooting
0.32 and below
- From your FOG server test out tftp
tftp -v X.X.X.X -c get pxelinux.0
- From a Windows PC run at the cmd prompt: (Windows TFTP Service must be Installed first)
tftp x.x.x.x get pxelinux.0
0.33 and 1.x.x
- From your FOG server test out tftp
tftp -v X.X.X.X -c get undionly.kpxe
- From a Windows PC run at the cmd prompt: (Windows TFTP Service must be Installed first)
tftp x.x.x.x get undionly.kpxe
Expected Results
- If tftp & xinetd are running your should get:
Received XXXX bytes in X.X seconds....
What if the firewall is disabled and I'm still getting tftp time out
- Restart the TFTP service.