Advertisement
Mayur_Pipaliya

Untitled

Dec 9th, 2012
398
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. TFTP client command-line syntax:
  2.  
  3. TFTP.exe [-i] [-b blocksize] [-v] [-t timeout] [-s] host [GET | PUT] source [destination]
  4.  
  5. -i Specifies binary image transfer mode (also called octet). In binary image mode the file is moved literally, byte by byte. Use this mode when transferring binary files.
  6. -b Blocksize used during the transfer (512 bytes by default). Can take on a value between 8 and 65464 bytes.
  7. -v Show detail information during transfer (verbose mode).
  8. -t Timeout value in seconds (10 seconds by default). Can take on a value between 1 and 255 seconds.
  9. -s Do not use tsize option (which is enabled by default).
  10. host Specifies the local or remote host.
  11. GET Transfers the file destination on the remote host to the file source on the local host.
  12. PUT Transfers the file source on the local host to the file destination on the remote host.
  13. source Specifies the file to transfer.
  14. destination Specifies where to transfer the file.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement