1TRACEPATH(8) iputils TRACEPATH(8)
2
3
4
6 tracepath, tracepath6 - traces path to a network host discovering MTU
7 along this path
8
10 tracepath [-4] [-6] [-n] [-b] [-l pktlen] [-m max_hops] [-p port]
11 destination
12
13
15 It traces path to destination discovering MTU along this path. It uses
16 UDP port port or some random port. It is similar to traceroute, only
17 does not require superuser privileges and has no fancy options.
18
19 tracepath6 is good replacement for traceroute6 and classic example of
20 application of Linux error queues. The situation with IPv4 is worse,
21 because commercial IP routers do not return enough information in ICMP
22 error messages. Probably, it will change, when they will be updated.
23 For now it uses Van Jacobson's trick, sweeping a range of UDP ports to
24 maintain trace history.
25
27 -4
28 Use IPv4 only..
29
30 -6
31 Use IPv6 only..
32
33 -n
34 Print primarily IP addresses numerically.
35
36 -b
37 Print both of host names and IP addresses.
38
39 -l
40 Sets the initial packet length to pktlen instead of 65535 for
41 tracepath or 128000 for tracepath6.
42
43 -m
44 Set maximum hops (or maximum TTLs) to max_hops instead of 30.
45
46 -p
47 Sets the initial destination port to use.
48
50 root@mops:~ # tracepath6 3ffe:2400:0:109::2
51 1?: [LOCALHOST] pmtu 1500
52 1: dust.inr.ac.ru 0.411ms
53 2: dust.inr.ac.ru asymm 1 0.390ms pmtu 1480
54 2: 3ffe:2400:0:109::2 463.514ms reached
55 Resume: pmtu 1480 hops 2 back 2
56
57 The first column shows TTL of the probe, followed by colon. Usually
58 value of TTL is obtained from reply from network, but sometimes reply
59 does not contain necessary information and we have to guess it. In this
60 case the number is followed by ?.
61
62 The second column shows the network hop, which replied to the probe. It
63 is either address of router or word [LOCALHOST], if the probe was not
64 sent to the network.
65
66 The rest of line shows miscellaneous information about path to the
67 correspinding network hop. As rule it contains value of RTT.
68 Additionally, it can show Path MTU, when it changes. If the path is
69 asymmetric or the probe finishes before it reach prescribed hop,
70 difference between number of hops in forward and backward direction is
71 shown following keyword async. This information is not reliable. F.e.
72 the third line shows asymmetry of 1, it is because the first probe with
73 TTL of 2 was rejected at the first hop due to Path MTU Discovery.
74
75 The last line summarizes information about all the path to the
76 destination, it shows detected Path MTU, amount of hops to the
77 destination and our guess about amount of hops from the destination to
78 us, which can be different when the path is asymmetric.
79
81 traceroute(8), traceroute6(8), ping(8).
82
84 tracepath was written by Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>.
85
87 No security issues.
88
89 This lapidary deserves to be elaborated. tracepath is not a privileged
90 program, unlike traceroute, ping and other beasts of this kind.
91 tracepath may be executed by everyone who has some access to network,
92 enough to send UDP datagrams to investigated destination using given
93 port.
94
96 tracepath is part of iputils package.
97
98
99
100iputils s20180629 TRACEPATH(8)