1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 04:02:09 +02:00
tldr/pages/common/traceroute.md
Marek Küthe abf00dc56e
traceroute: update page (#10491)
* traceroute: Use long options, use real argument, two more examples

* traceroute: add unit to --wait argument
2023-07-14 09:09:26 +05:30

32 lines
664 B
Markdown

# traceroute
> Print the route packets trace to network host.
> More information: <https://manned.org/traceroute>.
- Traceroute to a host:
`traceroute {{example.com}}`
- Disable IP address and host name mapping:
`traceroute -n {{example.com}}`
- Specify wait time in seconds for response:
`traceroute --wait={{0.5}} {{example.com}}`
- Specify number of queries per hop:
`traceroute --queries={{5}} {{example.com}}`
- Specify size in bytes of probing packet:
`traceroute {{example.com}} {{42}}`
- Determine the MTU to the destination:
`traceroute --mtu {{example.com}}`
- Use ICMP instead of UDP for tracerouting:
`traceroute --icmp {{example.com}}`