File tree 2 files changed +17
-1
lines changed
2 files changed +17
-1
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,8 @@ traces path to a network host discovering MTU along this path</refpurpose>
15
15
<refsynopsisdiv>
16
16
<cmdsynopsis>
17
17
<command>tracepath</command>
18
+ <arg choice="opt">-4</arg>
19
+ <arg choice="opt">-6</arg>
18
20
<arg choice="opt">-n</arg>
19
21
<arg choice="opt">-b</arg>
20
22
<arg choice="opt">-l <replaceable/pktlen/</arg>
@@ -46,6 +48,20 @@ of UDP ports to maintain trace history.
46
48
<refsect1><title>OPTIONS</title>
47
49
<variablelist>
48
50
51
+ <varlistentry>
52
+ <term><option>-4</option></term>
53
+ <listitem><para>
54
+ Use IPv4 only.
55
+ </para></listitem>
56
+ </varlistentry>
57
+
58
+ <varlistentry>
59
+ <term><option>-6</option></term>
60
+ <listitem><para>
61
+ Use IPv6 only.
62
+ </para></listitem>
63
+ </varlistentry>
64
+
49
65
<varlistentry>
50
66
<term><option>-n</option></term>
51
67
<listitem><para>
Original file line number Diff line number Diff line change @@ -366,7 +366,7 @@ static void usage(void) __attribute((noreturn));
366
366
367
367
static void usage (void )
368
368
{
369
- fprintf (stderr , "Usage: tracepath [-n] [-b] [-l <len>] [-p port] <destination>\n" );
369
+ fprintf (stderr , "Usage: tracepath [-4] [-6] [- n] [-b] [-l <len>] [-p port] <destination>\n" );
370
370
exit (-1 );
371
371
}
372
372
You can’t perform that action at this time.
0 commit comments