-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathatftp.1
111 lines (93 loc) · 3.1 KB
/
atftp.1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
.\" Hey, EMACS: -*- nroff -*-
.TH ATFTP 1 "December 27, 2000"
.\" Some roff macros, for reference:
.\" .nh disable hyphenation
.\" .hy enable hyphenation
.\" .ad l left justify
.\" .ad b justify to both left and right margins
.\" .nf disable filling
.\" .fi enable filling
.\" .br insert line break
.\" .sp <n> insert n+1 empty lines
.\" for manpage-specific macros, see man(7)
.SH NAME
atftp \- TFTP client (RFC1350).
.SH SYNOPSIS
.B atftp [options] [host [port]]
.SH DESCRIPTION
.B atftp
can be used interactively or in batch mode to retrieve files from TFTP
servers. When used interactively, a summary of the commands can be
printed by typing 'help'. This TFTP client support all basic features
from RFC1350, RFC2347, RFC2348 and RFC2349. It also support multicast
implementation of RFC2090 and mtftp as defined in the PXE
specification.
.SH OPTIONS
This program supports both the usual GNU command line syntax, with
long options starting with two dashes ('--') as well as short
options. Some options are usable in batch mode only, they have no meaning
when atftp is use interactively. A description of the options is
shown below.
.TP
.B \-g, \-\-get
Non interactive invocation only. Instruct atftp to fetch a file from a tftp server.
.TP
.B \-\-mget
Non interactive invocation only. Used to fetch a file from a mtftp capable
server.
.TP
.B \-p, \-\-put
Non interactive invocation only. Instruct atftp to send a file to a tftp server.
.TP
.B \-P, \-\-password
Give password to tftp server. This is a non-standard extension to the
atftp client necessary for Linksys routers and shouldn't be used elsewhere.
.TP
.B \-l, \-\-local-file
Non interactive invocation only. The client side (locat) file name to read or
write. Must be used in conjunction with \-\-get or \-\-put.
.TP
.B \-r, \-\-remote-file
Non interactive invocation only. The server side (remote) file name to get or
put. Must be used in conjunction with \-\-get or \-\-put.
.TP
.B \-\-tftp-timeout <value>
Number of seconds for timeout of the client. Default is 5 seconds.
.TP
.B \-\-option <"name value">
Set option "name" to "value". This command supports exactly the same
arguments as the interactive one. For example, use: --option "blksize 1428"
to configure block size.
.br
Possible Values are:
.br
--option "tsize enable"
--option "tsize disable"
--option "blksize 8"
--option "blksize 65464"
.TP
.B \-\-mtftp <"name value">
Set mtftp possible options. Accepts the same options as the interactive
mtftp command. For example, use:
--mtftp "client-port 76"
to configure client side port to use.
.TP
.B \-\-no\-source\-port\-checking
See atftpd's man page.
.TP
.B \-\-verbose
Instruct atftp to be verbose. It will print more information about
what's going on.
.TP
.B \-\-trace
This is useful for debugging purpose to display all packet going to
and from the network.
.TP
.B \-V, \-\-version
Print version.
.TP
.B \-h, \-\-help
Print a summary of command line arguments.
.SH AUTHOR
This manual page was written by Remi Lefebvre <[email protected]> and
Jean-Pierre Lefebvre <[email protected]>.