xref: /freebsd/usr.bin/tftp/tftp.1 (revision 3157ba21)
1.\" Copyright (c) 1990, 1993, 1994
2.\"	The Regents of the University of California.  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.\"     @(#)tftp.1	8.2 (Berkeley) 4/18/94
33.\" $FreeBSD$
34.\"
35.Dd October 1, 2003
36.Dt TFTP 1
37.Os
38.Sh NAME
39.Nm tftp
40.Nd trivial file transfer program
41.Sh SYNOPSIS
42.Nm
43.Op Ar host Op Ar port
44.Sh DESCRIPTION
45The
46.Nm
47utility is the user interface to the Internet
48.Tn TFTP
49(Trivial File Transfer Protocol),
50which allows users to transfer files to and from a remote machine.
51The remote
52.Ar host
53may be specified on the command line, in which case
54.Nm
55uses
56.Ar host
57as the default host for future transfers (see the
58.Cm connect
59command below).
60.Sh COMMANDS
61Once
62.Nm
63is running, it issues the prompt
64.Dq Li tftp>
65and recognizes the following commands:
66.Pp
67.Bl -tag -width verbose -compact
68.It Cm \&? Ar command-name ...
69Print help information.
70.Pp
71.It Cm ascii
72Shorthand for "mode ascii"
73.Pp
74.It Cm binary
75Shorthand for "mode binary"
76.Pp
77.It Cm connect Ar host Op Ar port
78Set the
79.Ar host
80(and optionally
81.Ar port )
82for transfers.
83Note that the
84.Tn TFTP
85protocol, unlike the
86.Tn FTP
87protocol,
88does not maintain connections between transfers; thus, the
89.Cm connect
90command does not actually create a connection,
91but merely remembers what host is to be used for transfers.
92You do not have to use the
93.Cm connect
94command; the remote host can be specified as part of the
95.Cm get
96or
97.Cm put
98commands.
99.Pp
100.It Cm get Oo Ar host : Oc Ns Ar file Op Ar localname
101.It Cm get Xo
102.Oo Ar host1 : Oc Ns Ar file1
103.Oo Ar host2 : Oc Ns Ar file2 ...
104.Oo Ar hostN : Oc Ns Ar fileN
105.Xc
106Get one or more files from the remote host.
107When using the
108.Ar host
109argument, the
110.Ar host
111will be used as default host for future transfers.
112If
113.Ar localname
114is specified, the file is stored locally as
115.Ar localname ,
116otherwise the original filename is used.
117Note that it is not possible to download two files at a time, only
118one, three, or more than three files, at a time.
119.Pp
120To specify an IPv6 numeric address for a host, wrap it using square
121brackets like
122.Dq Li [3ffe:2900:e00c:ffee::1234] : Ns Ar file
123to disambiguate the
124colons used in the IPv6 address from the colon separating the host and
125the filename.
126.Pp
127.It Cm mode Ar transfer-mode
128Set the mode for transfers;
129.Ar transfer-mode
130may be one of
131.Em ascii
132or
133.Em binary .
134The default is
135.Em ascii .
136.Pp
137.It Cm put Ar file Op Oo Ar host : Oc Ns Ar remotename
138.It Cm put Ar file1 file2 ... fileN Op Oo Ar host : Oc Ns Ar remote-directory
139Put a file or set of files to the remote host.
140When
141.Ar remotename
142is specified, the file is stored remotely as
143.Ar remotename ,
144otherwise the original filename is used.
145If the
146.Ar remote-directory
147argument is used, the remote host is assumed to be a
148.Ux
149machine.
150To specify an IPv6 numeric address for a
151.Ar host ,
152see the example under the
153.Cm get
154command.
155.Pp
156.It Cm quit
157Exit
158.Nm .
159An end of file also exits.
160.Pp
161.It Cm rexmt Ar retransmission-timeout
162Set the per-packet retransmission timeout, in seconds.
163.Pp
164.It Cm status
165Show current status.
166.Pp
167.It Cm timeout Ar total-transmission-timeout
168Set the total transmission timeout, in seconds.
169.Pp
170.It Cm trace
171Toggle packet tracing.
172.Pp
173.It Cm verbose
174Toggle verbose mode.
175.El
176.Sh HISTORY
177The
178.Nm
179command appeared in
180.Bx 4.3 .
181.Sh BUGS
182Because there is no user-login or validation within
183the
184.Tn TFTP
185protocol, the remote site will probably have some
186sort of file-access restrictions in place.
187The
188exact methods are specific to each site and therefore
189difficult to document here.
190.Pp
191Files larger than 33488896 octets (65535 blocks) cannot be transferred
192without client and server supporting blocksize negotiation (RFC1783).
193