Penguin
Annotated edit history of tftp(1) version 2, including all changes. View license author blame.
Rev Author # Line
1 perry 1 ----
2 __NAME__
3
4
5 tftp - trivial file transfer program
6 __SYNOPSIS__
7
8
9 tftp [[host]
10 __DESCRIPTION__
11
12
13 Tftp is the user interface to the Internet
14 TFTP (Trivial File Transfer Protocol), which
15 allows users to transfer files to and from a remote machine.
16 The remote host may be specified on the command line, in
17 which case tftp uses host as the default host for future
18 transfers (see the connect command below).
19 __COMMANDS__
20
21
22 Once tftp is running, it issues the prompt and recognizes
23 the following commands:
24 ? command-name ...
25
26
27 Print help information.asciiShorthand for TFTP protocol, unlike the FTP proto-col, does not maintain connections betweeen trans-fers; thus, the connect command does not actuallycreate a connection, but merely remembers what hostis to be used for transfers. You do not have to usethe connect command; the remote host can be speci-fied as part of the get or put commands.get filenameget remotename localnameget file1 file2 ... fileNGet a file or set of files from the specifiedsources. Source can be in one of two forms: a file-name on the remote host, if the host has alreadybeen specified, or a string of the formhosts:filename to specify both a host and filenameat the same time. If the latter form is used, thelast hostname specified becomes the default forfuture transfers.mode transfer-modeSet the mode for transfers; transfer-mode may be oneof ''ascii'' or ''binary''. The default is ''ascii''.put fileput localfile remotefileput file1 file2 ... fileN remote-directoryPut a file or set of files to the specified remotefile or directory. The destination can be in one oftwo forms: a filename on the remote host, if thehost has already been specified, or a string of theform hosts:filename to specify both a host and file-name at the same time. If the latter form is used,the hostname specified becomes the default forfuture transfers. If the remote-directory form isused, the remote host is assumed to be a UNIXmachine.quitExit tftp. An end of file also exits.rexmt retransmission-timeoutSet the per-packet retransmission timeout, in sec-onds.statusShow current status.timeout total-transmission-timeoutSet the total transmission timeout, in seconds.traceToggle packet tracing.verboseToggle verbose mode.__BUGS__
28
29
30 Because there is no user-login or validation within the
31 TFTP protocol, the remote site will probably
32 have some sort of file-access restrictions in place. The
33 exact methods are specific to each site and therefore
34 difficult to document here.
35 __HISTORY__
36
37
38 The tftp command appeared in 4.3 BSD
39 .
40
41
2 perry 42 Linux !NetKit (0.17) August 15, 1999 1
1 perry 43 ----
This page is a man page (or other imported legacy content). We are unable to automatically determine the license status of this page.