1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2024-10-28 15:39:46 +01:00
tldr/pages/linux/tracepath.md
K.B.Dharun Krishna bee46b42e6
pages.ta: standardize placeholders, update pages (#11478)
Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
2023-11-13 07:58:59 +05:30

688 B

tracepath

Trace the path to a network host discovering MTU along this path. More information: https://manned.org/tracepath.

  • A preferred way to trace the path to a host:

tracepath -p {{33434}} {{host}}

  • Specify the initial destination port, useful with non-standard firewall settings:

tracepath -p {{destination_port}} {{host}}

  • Print both hostnames and numerical IP addresses:

tracepath -b {{host}}

  • Specify a maximum TTL (number of hops):

tracepath -m {{max_hops}} {{host}}

  • Specify the initial packet length (defaults to 65535 for IPv4 and 128000 for IPv6):

tracepath -l {{packet_length}} {{host}}

  • Use only IPv6 addresses:

tracepath -6 {{host}}