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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
|
'\" t
.TH "TRACEPATH" "8" "" "iputils 20240117" "iputils"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------
.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.\" http://bugs.debian.org/507673
.\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html
.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.ie \n(.g .ds Aq \(aq
.el .ds Aq '
.\" -----------------------------------------------------------------
.\" * set default formatting
.\" -----------------------------------------------------------------
.\" disable hyphenation
.nh
.\" disable justification (adjust text to left margin only)
.ad l
.\" -----------------------------------------------------------------
.\" * MAIN CONTENT STARTS HERE *
.\" -----------------------------------------------------------------
.SH "NAME"
tracepath \- traces path to a network host discovering MTU along this path
.SH "SYNOPSIS"
.HP \w'\fBtracepath\fR\ 'u
\fBtracepath\fR [\fB\-4\fR] [\fB\-6\fR] [\fB\-n\fR] [\fB\-b\fR] [\fB\-l\ \fR\fB\fIpktlen\fR\fR] [\fB\-m\ \fR\fB\fImax_hops\fR\fR] [\fB\-p\ \fR\fB\fIport\fR\fR] [\fB\-V\fR] {destination}
.SH "DESCRIPTION"
.PP
It traces the network path to
\fIdestination\fR
discovering MTU along this path\&. It uses UDP port
\fIport\fR
or some random port\&. It is similar to
\fBtraceroute\fR\&. However, it does not require superuser privileges and has no fancy options\&.
.PP
\fBtracepath \-6\fR
is a good replacement for
\fBtraceroute6\fR
and classic example of application of Linux error queues\&. The situation with IPv4 is worse, because commercial IP routers do not return enough information in ICMP error messages\&. Probably, it will change, when they are updated\&. For now it uses Van Jacobson\*(Aqs trick, sweeping a range of UDP ports to maintain trace history\&.
.SH "OPTIONS"
.PP
\fB\-4\fR
.RS 4
Use IPv4 only\&.
.RE
.PP
\fB\-6\fR
.RS 4
Use IPv6 only\&.
.RE
.PP
\fB\-n\fR
.RS 4
Print primarily IP addresses numerically\&.
.RE
.PP
\fB\-b\fR
.RS 4
Print both: Host names and IP addresses\&.
.RE
.PP
\fB\-l\fR
.RS 4
Sets the initial packet length to
\fIpktlen\fR
instead of 65535 for
\fBIPv4\fR
or 128000 for
\fBIPv6\fR\&.
.RE
.PP
\fB\-m\fR
.RS 4
Set maximum hops (or maximum TTLs) to
\fImax_hops\fR
instead of 30\&.
.RE
.PP
\fB\-p\fR
.RS 4
Sets the initial destination port to use\&.
.RE
.PP
\fB\-V\fR
.RS 4
Print version and exit\&.
.RE
.SH "OUTPUT"
.sp
.if n \{\
.RS 4
.\}
.nf
root@mops:~ # tracepath \-6 3ffe:2400:0:109::2
1?: [LOCALHOST] pmtu 1500
1: dust\&.inr\&.ac\&.ru 0\&.411ms
2: dust\&.inr\&.ac\&.ru asymm 1 0\&.390ms pmtu 1480
2: 3ffe:2400:0:109::2 463\&.514ms reached
Resume: pmtu 1480 hops 2 back 2
.fi
.if n \{\
.RE
.\}
.PP
The first column shows the TTL of the probe, followed by colon\&. Usually the value of TTL is obtained from the reply from the network, but sometimes it does not contain the necessary information and we have to guess it\&. In this case the number is followed by ?\&.
.PP
The second column shows the network hop which replied to the probe\&. It is either the address of the router or the word [LOCALHOST], if the probe was not sent to the network\&.
.PP
The rest of the line shows miscellaneous information about the path to the corresponding network hop\&. It contains the value of RTT, and additionally it can show Path MTU when it changes\&. If the path is asymmetric or the probe finishes before it reaches the prescribed hop, the number of hops in return direction is shown next to the keyword "asymm"\&. This information is not reliable, e\&.g\&. the third line shows asymmetry of 1\&. This is because the first probe with TTL of 2 was rejected at the first hop due to Path MTU Discovery\&.
.PP
The last line summarizes information about all the paths to the destination\&. It shows detected Path MTU, amount of hops to the destination and our guess about the number of hops from the destination to us, which can be different when the path is asymmetric\&.
.SH "HANDLING ERRORS"
.PP
In case of errors
\fBtracepath\fR
prints short error code\&.
.TS
allbox tab(:);
lB lB lB.
T{
Output
T}:T{
Code
T}:T{
Meaning
T}
.T&
lB lB lB
lB lB lB
lB lB lB
lB lB lB
lB lB lB
lB lB lB
lB lB lB
lB lB lB.
T{
!A
T}:T{
EACCES
T}:T{
Communication administratively prohibited
T}
T{
!H
T}:T{
EHOSTUNREACH
T}:T{
Destination host unreachable
T}
T{
!N
T}:T{
ENETUNREACH
T}:T{
Destination network unreachable
T}
T{
!P
T}:T{
EPROTO
T}:T{
Destination protocol unreachable
T}
T{
pmtu N
T}:T{
EMSGSIZE
T}:T{
Message too long
T}
T{
reached
T}:T{
ECONNREFUSED
T}:T{
Connection refused
T}
T{
\ \&
T}:T{
ETIMEDOUT
T}:T{
Connection timed out
T}
T{
NET ERROR N
T}:T{
\ \&
T}:T{
Any other error
T}
.TE
.sp 1
.SH "SEE ALSO"
.PP
\fBtraceroute\fR(8),
\fBtraceroute6\fR(8),
\fBping\fR(8)\&.
.SH "AUTHOR"
.PP
\fBtracepath\fR
was written by Alexey Kuznetsov <kuznet@ms2\&.inr\&.ac\&.ru>\&.
.SH "SECURITY"
.PP
No security issues\&.
.PP
This lapidary deserves to be elaborated\&.
\fBtracepath\fR
is not a privileged program, unlike
\fBtraceroute\fR,
\fBping\fR
and other beasts of their kind\&.
\fBtracepath\fR
may be executed by everyone who has enough access to the network to send UDP datagrams to the desired destination using the given port\&.
.SH "AVAILABILITY"
.PP
\fBtracepath\fR
is part of
\fIiputils\fR
package\&.
|