Update cheatsheets

This commit is contained in:
ivuorinen
2024-02-21 11:19:49 +00:00
parent 4e88a1b42f
commit 3d653cc7e6
4803 changed files with 127002 additions and 0 deletions

37
linux/tftp Normal file
View File

@@ -0,0 +1,37 @@
---
syntax: markdown
tags: [tldr, linux]
source: https://github.com/tldr-pages/tldr.git
---
# 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`