How to Setup and Configure TFTP Server
Installing TFTP Client
The next step would be to install the TFTP Client on the remote or local system. To install the TFTP client, do the following:
- Go to the Start Menu and open up the Control Panel.
- Navigate to Programs and features and then on the left-hand side, click ‘Turn Windows features on or off’.
- Scroll down and locate TFTP Client. Check the box
- Click OK to install the client.
- Wait for it to complete.
- Press Windows Key + R to open Run.
- Type in ‘cmd’ to open up the command prompt.
- Before you transfer the files, make sure that the files that you want to send are in the Server Root Directory.
- Now, if you want to receive a file, you will have to use the GET parameter. In case you want to send a file, you will just have to use the PUT parameter. The command goes as follows:
Tftp -i [server IP address] [GET or PUT] [path of file]
- An example would be the following:
Tftp -i 192.168.10.8 put E:\hello.txt
If you want to receive a file, then the command will go as follows:
Tftp -i 192.168.10.8 get hello.txt
Remember that this has to be on the system which isn’t running the server.
Transferring Files using TFTP
Finally, after installing the TFTP client and forwarding UDP port 69, you are ready to transfer files remotely or locally. To do this, make sure the server is running and then follow the given instructions:
No comments:
Post a Comment