]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - contrib/traceroute/traceroute.8
MFC r368207,368607:
[FreeBSD/stable/10.git] / contrib / traceroute / traceroute.8
1 .\" Copyright (c) 1989, 1995, 1996, 1997, 1999, 2000
2 .\"     The Regents of the University of California.  All rights reserved.
3 .\"
4 .\" Redistribution and use in source and binary forms are permitted
5 .\" provided that the above copyright notice and this paragraph are
6 .\" duplicated in all such forms and that any documentation,
7 .\" advertising materials, and other materials related to such
8 .\" distribution and use acknowledge that the software was developed
9 .\" by the University of California, Berkeley.  The name of the
10 .\" University may not be used to endorse or promote products derived
11 .\" from this software without specific prior written permission.
12 .\" THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
13 .\" IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
14 .\" WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
15 .\"
16 .\"     $Id: traceroute.8,v 1.19 2000/09/21 08:44:19 leres Exp $
17 .\"     $FreeBSD$
18 .\"
19 .Dd May 31, 2015
20 .Dt TRACEROUTE 8
21 .Os
22 .Sh NAME
23 .Nm traceroute
24 .Nd "print the route packets take to network host"
25 .Sh SYNOPSIS
26 .Nm
27 .Bk -words
28 .Op Fl adDeFISnrvx
29 .Op Fl f Ar first_ttl
30 .Op Fl g Ar gateway
31 .Op Fl M Ar first_ttl
32 .Op Fl m Ar max_ttl
33 .Op Fl P Ar proto
34 .Op Fl p Ar port
35 .Op Fl q Ar nqueries
36 .Op Fl s Ar src_addr
37 .Op Fl t Ar tos
38 .Op Fl w Ar waittime
39 .Op Fl A Ar as_server
40 .Op Fl z Ar pausemsecs
41 .Ar host
42 .Op Ar packetlen
43 .Ek
44 .Sh DESCRIPTION
45 The Internet is a large and complex aggregation of
46 network hardware, connected together by gateways.
47 Tracking the route one's packets follow (or finding the miscreant
48 gateway that's discarding your packets) can be difficult.
49 .Nm
50 utilizes the IP protocol `time to live' field and attempts to elicit an
51 ICMP TIME_EXCEEDED response from each gateway along the path to some
52 host.
53 .Pp
54 The only mandatory parameter is the destination host name or IP number.
55 The default probe datagram length is 40 bytes, but this may be increased
56 by specifying a packet length (in bytes) after the destination host
57 name.
58 .Pp
59 Other options are:
60 .Bl -tag -width Ds
61 .It Fl a
62 Turn on AS# lookups for each hop encountered.
63 .It Fl A Ar as_server
64 Turn  on  AS#  lookups  and  use the given server instead of the
65 default.
66 .It Fl e
67 Firewall evasion mode.
68 Use fixed destination ports for UDP, UDP-Lite, TCP and SCTP probes.
69 The destination port does NOT increment with each packet sent.
70 .It Fl f Ar first_ttl
71 Set the initial time-to-live used in the first outgoing probe packet.
72 .It Fl F
73 Set the "don't fragment" bit.
74 .It Fl d
75 Enable socket level debugging.
76 .It Fl D
77 When an ICMP response to our probe datagram is received,
78 print the differences between the transmitted packet and
79 the packet quoted by the ICMP response.
80 A key showing the location of fields within the transmitted packet is printed,
81 followed by the original packet in hex,
82 followed by the quoted packet in hex.
83 Bytes that are unchanged in the quoted packet are shown as underscores.
84 Note,
85 the IP checksum and the TTL of the quoted packet are not expected to match.
86 By default, only one probe per hop is sent with this option.
87 .It Fl g Ar gateway
88 Specify a loose source route gateway (8 maximum).
89 .It Fl i Ar iface
90 Specify a network interface to obtain the source IP address for
91 outgoing probe packets. This is normally only useful on a multi-homed
92 host. (See the
93 .Fl s
94 flag for another way to do this.)
95 .It Fl I
96 Use ICMP ECHO instead of UDP datagrams.  (A synonym for "-P icmp").
97 .It Fl M Ar first_ttl
98 Set the initial time-to-live value used in outgoing probe packets.
99 The default is 1, i.e., start with the first hop.
100 .It Fl m Ar max_ttl
101 Set the max time-to-live (max number of hops) used in outgoing probe
102 packets.  The default is the value of the
103 .Va net.inet.ip.ttl
104 .Xr sysctl 8
105 (the same default used for TCP
106 connections).
107 .It Fl n
108 Print hop addresses numerically rather than symbolically and numerically
109 (saves a nameserver address-to-name lookup for each gateway found on the
110 path).
111 .It Fl P Ar proto
112 Send packets of specified IP protocol. The currently supported protocols
113 are: UDP, UDP-Lite, TCP, SCTP, GRE and ICMP. Other protocols may also be
114 specified (either by name or by number), though
115 .Nm
116 does not implement any special knowledge of their packet formats. This
117 option is useful for determining which router along a path may be
118 blocking packets based on IP protocol number. But see BUGS below.
119 .It Fl p Ar port
120 Protocol specific. For UDP, UDP-Lite, TCP and SCTP, sets
121 the base
122 .Ar port
123 number used in probes (default is 33434).
124 Traceroute hopes that nothing is listening on UDP ports (or UDP-Lite ports
125 if used by
126 .Nm
127 and supported by the peer)
128 .Em base + 1
129 to
130 .Em base + nhops * nprobes
131 at the destination host (so an ICMP PORT_UNREACHABLE message will
132 be returned to terminate the route tracing).  If something is
133 listening on a port in the default range, this option can be used
134 to pick an unused port range.
135 .It Fl q Ar nqueries
136 Set the number of probes per hop (default is 3,
137 unless
138 .Fl D
139 is specified,
140 when it is 1).
141 .It Fl r
142 Bypass the normal routing tables and send directly to a host on an attached
143 network.
144 If the host is not on a directly-attached network,
145 an error is returned.
146 This option can be used to ping a local host through an interface
147 that has no route through it (e.g., after the interface was dropped by
148 .Xr routed 8 .
149 .It Fl s Ar src_addr
150 Use the following IP address (which usually is given as an IP number, not
151 a hostname) as the source address in outgoing probe packets.  On
152 multi-homed hosts (those with more than one IP
153 address), this option can be used to
154 force the source address to be something other than the IP address
155 of the interface the probe packet is sent on.  If the IP address
156 is not one of this machine's interface addresses, an error is
157 returned and nothing is sent. (See the
158 .Fl i
159 flag for another way to do this.)
160 .It Fl S
161 Print a summary of how many probes were not answered for each hop.
162 .It Fl t Ar tos
163 Set the
164 .Em type-of-service
165 in probe packets to the following value (default zero).  The value must be
166 a decimal integer in the range 0 to 255.  This option can be used to
167 see if different types-of-service result in different paths.  (If you
168 are not running 4.4bsd, this may be academic since the normal network
169 services like telnet and ftp don't let you control the TOS).
170 Not all values of TOS are legal or
171 meaningful \- see the IP spec for definitions.  Useful values are
172 probably
173 .Fl t Ar 16
174 (low delay) and
175 .Fl t Ar 8
176 (high throughput).
177 .It Fl v
178 Verbose output.  Received ICMP packets other than
179 .Dv TIME_EXCEEDED
180 and
181 .Dv UNREACHABLE Ns s
182 are listed.
183 .It Fl w Ar waittime
184 Set the time (in seconds) to wait for a response to a probe (default 5
185 sec.).
186 .It Fl x
187 Toggle ip checksums. Normally, this prevents traceroute from calculating
188 ip checksums. In some cases, the operating system can overwrite parts of
189 the outgoing packet but not recalculate the checksum (so in some cases
190 the default is to not calculate checksums and using
191 .Fl x
192 causes them to be calculated). Note that checksums are usually required
193 for the last hop when using ICMP ECHO probes
194 .Pq Fl I .
195 So they are always calculated when using ICMP.
196 .It Fl z Ar pausemsecs
197 Set the time (in milliseconds) to pause between probes (default 0).
198 Some systems such as Solaris and routers such as Ciscos rate limit
199 icmp messages. A good value to use with this this is 500 (e.g. 1/2 second).
200 .El
201 .Pp
202 This program attempts to trace the route an IP packet would follow to some
203 internet host by launching UDP probe
204 packets with a small ttl (time to live) then listening for an
205 ICMP "time exceeded" reply from a gateway.  We start our probes
206 with a ttl of one and increase by one until we get an ICMP "port
207 unreachable" (which means we got to "host") or hit a max (which
208 defaults to the amount of hops specified by the
209 .Va net.inet.ip.ttl
210 .Xr sysctl 8
211 and can be changed with the
212 .Fl m
213 flag).  Three
214 probes (change with
215 .Fl q
216 flag) are sent at each ttl setting and a
217 line is printed showing the ttl, address of the gateway and
218 round trip time of each probe.  If the probe answers come from
219 different gateways, the address of each responding system will
220 be printed.  If there is no response within a 5 sec. timeout
221 interval (changed with the
222 .Fl w
223 flag), a "*" is printed for that
224 probe.
225 .Pp
226 We don't want the destination
227 host to process the UDP probe packets so the destination port is set to an
228 unlikely value (if some clod on the destination is using that
229 value, it can be changed with the
230 .Fl p
231 flag).
232 .Pp
233 A sample use and output might be:
234 .Bd -literal -offset 4n
235 % traceroute nis.nsf.net.
236 traceroute to nis.nsf.net (35.1.1.48), 64 hops max, 38 byte packet
237  1  helios.ee.lbl.gov (128.3.112.1)  19 ms  19 ms  0 ms
238  2  lilac-dmc.Berkeley.EDU (128.32.216.1)  39 ms  39 ms  19 ms
239  3  lilac-dmc.Berkeley.EDU (128.32.216.1)  39 ms  39 ms  19 ms
240  4  ccngw-ner-cc.Berkeley.EDU (128.32.136.23)  39 ms  40 ms  39 ms
241  5  ccn-nerif22.Berkeley.EDU (128.32.168.22)  39 ms  39 ms  39 ms
242  6  128.32.197.4 (128.32.197.4)  40 ms  59 ms  59 ms
243  7  131.119.2.5 (131.119.2.5)  59 ms  59 ms  59 ms
244  8  129.140.70.13 (129.140.70.13)  99 ms  99 ms  80 ms
245  9  129.140.71.6 (129.140.71.6)  139 ms  239 ms  319 ms
246 10  129.140.81.7 (129.140.81.7)  220 ms  199 ms  199 ms
247 11  nic.merit.edu (35.1.1.48)  239 ms  239 ms  239 ms
248 .Ed
249 .Pp
250 Note that lines 2 & 3 are the same.  This is due to a buggy
251 kernel on the 2nd hop system \- lilac-dmc.Berkeley.EDU \- that forwards
252 packets with a zero ttl (a bug in the distributed version
253 of 4.3BSD).  Note that you have to guess what path
254 the packets are taking cross-country since the NSFNet (129.140)
255 doesn't supply address-to-name translations for its NSSes.
256 .Pp
257 A more interesting example is:
258 .Bd -literal -offset 4n
259 % traceroute allspice.lcs.mit.edu.
260 traceroute to allspice.lcs.mit.edu (18.26.0.115), 64 hops max
261  1  helios.ee.lbl.gov (128.3.112.1)  0 ms  0 ms  0 ms
262  2  lilac-dmc.Berkeley.EDU (128.32.216.1)  19 ms  19 ms  19 ms
263  3  lilac-dmc.Berkeley.EDU (128.32.216.1)  39 ms  19 ms  19 ms
264  4  ccngw-ner-cc.Berkeley.EDU (128.32.136.23)  19 ms  39 ms  39 ms
265  5  ccn-nerif22.Berkeley.EDU (128.32.168.22)  20 ms  39 ms  39 ms
266  6  128.32.197.4 (128.32.197.4)  59 ms  119 ms  39 ms
267  7  131.119.2.5 (131.119.2.5)  59 ms  59 ms  39 ms
268  8  129.140.70.13 (129.140.70.13)  80 ms  79 ms  99 ms
269  9  129.140.71.6 (129.140.71.6)  139 ms  139 ms  159 ms
270 10  129.140.81.7 (129.140.81.7)  199 ms  180 ms  300 ms
271 11  129.140.72.17 (129.140.72.17)  300 ms  239 ms  239 ms
272 12  * * *
273 13  128.121.54.72 (128.121.54.72)  259 ms  499 ms  279 ms
274 14  * * *
275 15  * * *
276 16  * * *
277 17  * * *
278 18  ALLSPICE.LCS.MIT.EDU (18.26.0.115)  339 ms  279 ms  279 ms
279 .Ed
280 .Pp
281 Note that the gateways 12, 14, 15, 16 & 17 hops away
282 either don't send ICMP "time exceeded" messages or send them
283 with a ttl too small to reach us.  14 \- 17 are running the
284 MIT C Gateway code that doesn't send "time exceeded"s.  God
285 only knows what's going on with 12.
286 .Pp
287 The silent gateway 12 in the above may be the result of a bug in
288 the 4.[23]BSD network code (and its derivatives):  4.x (x <= 3)
289 sends an unreachable message using whatever ttl remains in the
290 original datagram.  Since, for gateways, the remaining ttl is
291 zero, the ICMP "time exceeded" is guaranteed to not make it back
292 to us.  The behavior of this bug is slightly more interesting
293 when it appears on the destination system:
294 .Bd -literal -offset 4n
295  1  helios.ee.lbl.gov (128.3.112.1)  0 ms  0 ms  0 ms
296  2  lilac-dmc.Berkeley.EDU (128.32.216.1)  39 ms  19 ms  39 ms
297  3  lilac-dmc.Berkeley.EDU (128.32.216.1)  19 ms  39 ms  19 ms
298  4  ccngw-ner-cc.Berkeley.EDU (128.32.136.23)  39 ms  40 ms  19 ms
299  5  ccn-nerif35.Berkeley.EDU (128.32.168.35)  39 ms  39 ms  39 ms
300  6  csgw.Berkeley.EDU (128.32.133.254)  39 ms  59 ms  39 ms
301  7  * * *
302  8  * * *
303  9  * * *
304 10  * * *
305 11  * * *
306 12  * * *
307 13  rip.Berkeley.EDU (128.32.131.22)  59 ms !  39 ms !  39 ms !
308 .Ed
309 .Pp
310 Notice that there are 12 "gateways" (13 is the final
311 destination) and exactly the last half of them are "missing".
312 What's really happening is that rip (a Sun-3 running Sun OS3.5)
313 is using the ttl from our arriving datagram as the ttl in its
314 ICMP reply.  So, the reply will time out on the return path
315 (with no notice sent to anyone since ICMP's aren't sent for
316 ICMP's) until we probe with a ttl that's at least twice the path
317 length.  I.e., rip is really only 7 hops away.  A reply that
318 returns with a ttl of 1 is a clue this problem exists.
319 Traceroute prints a "!" after the time if the ttl is <= 1.
320 Since vendors ship a lot of obsolete
321 .Pf ( Tn DEC Ns \'s
322 Ultrix, Sun 3.x) or
323 non-standard
324 .Pq Tn HP-UX
325 software, expect to see this problem
326 frequently and/or take care picking the target host of your
327 probes.
328 .Pp
329 Other possible annotations after the time are:
330 .Bl -hang -offset indent -width 12n
331 .It Sy !H
332 Host unreachable.
333 .It Sy !N
334 Network unreachable.
335 .It Sy !P
336 Protocol unreachable.
337 .It Sy !S
338 Source route failed.
339 .It Sy !F\-<pmtu>
340 Fragmentation needed.
341 The RFC1191 Path MTU Discovery value is displayed.
342 .It Sy !U
343 Destination network unknown.
344 .It Sy !W
345 Destination host unknown.
346 .It Sy !I
347 Source host is isolated.
348 .It Sy !A
349 Communication with destination network administratively prohibited.
350 .It Sy !Z
351 Communication with destination host administratively prohibited.
352 .It Sy !Q
353 For this ToS the destination network is unreachable.
354 .It Sy !T
355 For this ToS the destination host is unreachable.
356 .It Sy !X
357 Communication administratively prohibited.
358 .It Sy !V
359 Host precedence violation.
360 .It Sy !C
361 Precedence cutoff in effect.
362 .It Sy !<num>
363 ICMP unreachable code <num>.
364 .El
365 .Pp
366 These are defined by RFC1812 (which supersedes RFC1716).
367 If almost all the probes result in some kind of unreachable,
368 .Nm
369 will give up and exit.
370 .Pp
371 This program is intended for use in network testing, measurement
372 and management.
373 It should be used primarily for manual fault isolation.
374 Because of the load it could impose on the network, it is unwise to use
375 .Nm
376 during normal operations or from automated scripts.
377 .Sh SEE ALSO
378 .Xr netstat 1 ,
379 .Xr ping 8 ,
380 .Xr ping6 8 ,
381 .Xr traceroute6 8 .
382 .Sh AUTHORS
383 Implemented by Van Jacobson from a suggestion by Steve Deering.  Debugged
384 by a cast of thousands with particularly cogent suggestions or fixes from
385 C. Philip Wood, Tim Seaver and Ken Adelman.
386 .Sh BUGS
387 When using protocols other than UDP, functionality is reduced.
388 In particular, the last packet will often appear to be lost, because
389 even though it reaches the destination host, there's no way to know
390 that because no ICMP message is sent back.
391 In the TCP case,
392 .Nm
393 should listen for a RST from the destination host (or an intermediate
394 router that's filtering packets), but this is not implemented yet.
395 .Pp
396 The AS number capability reports information that may sometimes be
397 inaccurate due to discrepancies between the contents of the
398 routing database server and the current state of the Internet.