tftp: add page (#9956)

* tftp: add page

* Elaborated on tftp client commands

* Change to the mode example
pull/19/head
Johan Degn 2023-03-23 04:37:38 +01:00 committed by GitHub
parent fe1a78519b
commit 986a888606
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 32 additions and 0 deletions

32
pages/linux/tftp.md Normal file
View File

@ -0,0 +1,32 @@
# tftp
> Trivial File Transfer Protocol client.
> More information: <https://manned.org/tftp.1>.
- Connect to a TFTP server specifying its IP address and port:
`tftp {{server_ip}} {{port}}`
- Connect to a TFTP server and execute a TFTP [c]ommand:
`tftp {{server_ip}} -c {{command}}`
- Connect to a TFTP server using IPv6 and force originating port to be in [R]ange:
`tftp {{server_ip}} -6 -R {{port}}:{{port}}`
- Set the transfer mode to binary or ascii through the tftp client:
`mode {{binary|ascii}}`
- Download file from a server through the tftp client:
`get {{file}}`
- Upload file to a server through the tftp client:
`put {{file}}`
- Exit the tftp client:
`quit`