Difference between revisions of "Troubleshoot TFTP"

From FOG Project
Jump to: navigation, search
(Created page with " == Testing TFTP == Create a file named test.txt with some content in /tftpboot path of the tftp server <pre>sudo echo "Is my TFTP service working?" > /tftpboot/test.txt</pr...")
 
Line 23: Line 23:
  
 
Control Panel -> Programs and Features -> Turn Windows Features on or off -> TFTP Client
 
Control Panel -> Programs and Features -> Turn Windows Features on or off -> TFTP Client
 +
 
[[File:TFTP Client in Windows.png]]
 
[[File:TFTP Client in Windows.png]]

Revision as of 12:51, 15 April 2015

Testing TFTP

Create a file named test.txt with some content in /tftpboot path of the tftp server

sudo echo "Is my TFTP service working?" > /tftpboot/test.txt

Try to get the file with Linux:

tftp x.x.x.x
tftp> get test.txt
//Sent 159 bytes in 0.0 seconds
tftp> quit
cat test.txt

Try to get the file with Windows:

tftp x.x.x.x get test.txt


Troubleshooting TFTP

To test from windows, TFTP Client must be installed and the Firewall must allow traffic through port 69.

Control Panel -> Programs and Features -> Turn Windows Features on or off -> TFTP Client

TFTP Client in Windows.png