OSDN Git Service

Import translated manuals from JM CVS Repository.
[linuxjm/jm.git] / manual / netkit / original / man1 / tftp.1
1 .\" Copyright (c) 1990 The Regents of the University of California.
2 .\" All rights reserved.
3 .\"
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
6 .\" are met:
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\"    notice, this list of conditions and the following disclaimer.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\"    notice, this list of conditions and the following disclaimer in the
11 .\"    documentation and/or other materials provided with the distribution.
12 .\" 3. All advertising materials mentioning features or use of this software
13 .\"    must display the following acknowledgement:
14 .\"     This product includes software developed by the University of
15 .\"     California, Berkeley and its contributors.
16 .\" 4. Neither the name of the University nor the names of its contributors
17 .\"    may be used to endorse or promote products derived from this software
18 .\"    without specific prior written permission.
19 .\"
20 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 .\" SUCH DAMAGE.
31 .\"
32 .\"     from: @(#)tftp.1        5.4 (Berkeley) 4/22/91
33 .\"     $Id: tftp.1,v 1.11 2000/07/30 23:57:10 dholland Exp $
34 .\"
35 .Dd August 15, 1999
36 .Dt TFTP 1
37 .Os "Linux NetKit (0.17)"
38 .Sh NAME
39 .Nm tftp
40 .Nd trivial file transfer program
41 .Sh SYNOPSIS
42 .Nm tftp
43 .Op Ar host
44 .Sh DESCRIPTION
45 .Nm Tftp
46 is the user interface to the Internet
47 .Tn TFTP
48 (Trivial File Transfer Protocol),
49 which allows users to transfer files to and from a remote machine.
50 The remote
51 .Ar host
52 may be specified on the command line, in which case
53 .Nm tftp
54 uses
55 .Ar host
56 as the default host for future transfers (see the
57 .Cm connect
58 command below).
59 .Sh COMMANDS
60 Once
61 .Nm tftp
62 is running, it issues the prompt
63 .LI tftp>
64 and recognizes the following commands:
65 .Pp
66 .Bl -tag -width verbose -compact
67 .It Cm \&? Ar command-name ...
68 Print help information.
69 .Pp
70 .It Cm ascii
71 Shorthand for "mode ascii"
72 .Pp
73 .It Cm binary
74 Shorthand for "mode binary"
75 .Pp
76 .It Cm connect Ar host-name Op Ar port
77 Set the
78 .Ar host
79 (and optionally
80 .Ar port )
81 for transfers.
82 Note that the
83 .Tn TFTP
84 protocol, unlike the
85 .Tn FTP
86 protocol,
87 does not maintain connections betweeen transfers; thus, the
88 .Cm connect
89 command does not actually create a connection,
90 but merely remembers what host is to be used for transfers.
91 You do not have to use the 
92 .Cm connect
93 command; the remote host can be specified as part of the
94 .Cm get
95 or
96 .Cm put
97 commands.
98 .Pp
99 .It Cm get Ar filename
100 .It Cm get Ar remotename localname
101 .It Cm get Ar file1 file2 ...  fileN
102 Get a file or set of files from the specified
103 .Ar sources .
104 .Ar Source
105 can be in one of two forms:
106 a filename on the remote host, if the host has already been specified,
107 or a string of the form
108 .Ar hosts:filename
109 to specify both a host and filename at the same time.
110 If the latter form is used,
111 the last hostname specified becomes the default for future transfers.
112 .Pp
113 .It Cm mode Ar transfer-mode
114 Set the mode for transfers; 
115 .Ar transfer-mode
116 may be one of
117 .Em ascii
118 or
119 .Em binary .
120 The default is
121 .Em ascii .
122 .Pp
123 .It Cm put Ar file
124 .It Cm put Ar localfile remotefile
125 .It Cm put Ar file1 file2 ... fileN remote-directory
126 Put a file or set of files to the specified
127 remote file or directory.
128 The destination
129 can be in one of two forms:
130 a filename on the remote host, if the host has already been specified,
131 or a string of the form
132 .Ar hosts:filename
133 to specify both a host and filename at the same time.
134 If the latter form is used,
135 the hostname specified becomes the default for future transfers.
136 If the remote-directory form is used, the remote host is
137 assumed to be a
138 .Tn UNIX
139 machine.
140 .Pp
141 .It Cm quit
142 Exit
143 .Nm tftp .
144 An end of file also exits.
145 .Pp
146 .It Cm rexmt Ar retransmission-timeout
147 Set the per-packet retransmission timeout, in seconds.
148 .Pp
149 .It Cm status
150 Show current status.
151 .Pp
152 .It Cm timeout Ar total-transmission-timeout
153 Set the total transmission timeout, in seconds.
154 .Pp
155 .It Cm trace
156 Toggle packet tracing.
157 .Pp
158 .It Cm verbose
159 Toggle verbose mode.
160 .El
161 .Sh BUGS
162 .Pp
163 Because there is no user-login or validation within
164 the
165 .Tn TFTP
166 protocol, the remote site will probably have some
167 sort of file-access restrictions in place.  The
168 exact methods are specific to each site and therefore
169 difficult to document here.
170 .Sh HISTORY
171 The
172 .Nm
173 command appeared in
174 .Bx 4.3 .