Glam Prestige Journal

Bright entertainment trends with youth appeal.

When I'm sending a file through TFTP remotely, it shows an error like

tftp> put MYMIBTable.txt /home/amsys/Desktop/
Error code 1: File not found

What is the problem? What is the solution?

2 Answers

Try this. Add -c flag to server_args in your tftp xinet.d config.

Change

server_args = -l -s /tftpboot

To

server_args = -c -s /tftpboot

And make sure that user = nobody

1

I tried the reverse also, using a 'get' from the other machine as the client.

It turned out the filename I was using was too long.

When I shortened it everything was fine.

The filename I was using was 34 characters long and I changed it to 19. I did not test for the maximum length, possibly 32 characters.

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy