You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Passing --interface will force the packets through the specified
interface instead of the default one.
Signed-off-by: Andrea Barberio <[email protected]>
@@ -51,23 +52,25 @@ R"(Written by Andrea Barberio - https://insomniac.slackware.it
51
52
[--broken-nat]
52
53
[--use-srcport]
53
54
[--no-dns]
55
+
[--interface=ifname]
54
56
[--output-file=file_name]
55
57
[--help]
56
58
[--version]
57
59
58
60
Options:
59
-
-h --help this help
60
-
-v --version print the version of Dublin Traceroute
61
-
-s SRC_PORT --sport=SRC_PORT the source port to send packets from (default: )" << DublinTraceroute::default_srcport << R"()
62
-
-d DST_PORT --dport=DST_PORT the base destination port to send packets to (default: )" << DublinTraceroute::default_dstport << R"()
63
-
-n NPATHS --npaths=NPATHS the number of paths to probe (default: )" << static_cast<int>(DublinTraceroute::default_npaths) << R"()
64
-
-t MIN_TTL --min-ttl=MIN_TTL the minimum TTL to probe (default: )" << static_cast<int>(DublinTraceroute::default_min_ttl) << R"()
65
-
-T MAX_TTL --max-ttl=MAX_TTL the maximum TTL to probe. Must be greater or equal than the minimum TTL (default: )" << static_cast<int>(DublinTraceroute::default_max_ttl) << R"()
66
-
-D DELAY --delay=DELAY the inter-packet delay in milliseconds (default: )" << DublinTraceroute::default_delay << R"()
67
-
-b --broken-nat the network has a broken NAT configuration (e.g. no payload fixup). Try this if you see fewer hops than expected
68
-
-i --use-srcport generate paths using source port instead of destination port
69
-
-N --no-dns do not attempt to do reverse DNS lookup of the hops
70
-
-o --output-file the output file name (default: )" << DEFAULT_OUTPUT_FILE << R"()
61
+
-h, --help this help
62
+
-v, --version print the version of Dublin Traceroute
63
+
-s, --sport=SRC_PORT the source port to send packets from (default: )" << DublinTraceroute::default_srcport << R"()
64
+
-d, --dport=DST_PORT the base destination port to send packets to (default: )" << DublinTraceroute::default_dstport << R"()
65
+
-n, --npaths=NPATHS the number of paths to probe (default: )" << static_cast<int>(DublinTraceroute::default_npaths) << R"()
66
+
-t, --min-ttl=MIN_TTL the minimum TTL to probe (default: )" << static_cast<int>(DublinTraceroute::default_min_ttl) << R"()
67
+
-T, --max-ttl=MAX_TTL the maximum TTL to probe. Must be greater or equal than the minimum TTL (default: )" << static_cast<int>(DublinTraceroute::default_max_ttl) << R"()
68
+
-D, --delay=DELAY the inter-packet delay in milliseconds (default: )" << DublinTraceroute::default_delay << R"()
69
+
-b, --broken-nat the network has a broken NAT configuration (e.g. no payload fixup). Try this if you see fewer hops than expected
70
+
-i, --use-srcport generate paths using source port instead of destination port
71
+
-N, --no-dns do not attempt to do reverse DNS lookup of the hops
72
+
-I, --interface=INTERFACE force packets through the specified interface. If not specified, the default interface for the target will be used
73
+
-o, --output-file=OUTFILE the output file name (default: )" << DEFAULT_OUTPUT_FILE << R"()
71
74
72
75
73
76
See documentation at https://dublin-traceroute.net
0 commit comments