tldr/pages/linux/tcptraceroute.md

29 lines
712 B
Markdown
Raw Normal View History

2020-02-20 15:56:59 +00:00
# tcptraceroute
> A traceroute implementation using TCP packets.
> More information: <https://github.com/mct/tcptraceroute>.
- Trace the route to a host:
`tcptraceroute {{host}}`
- Specify the destination port and packet length in bytes:
`tcptraceroute {{host}} {{destination_port}} {{packet_length}}`
- Specify the local source port and source address:
`tcptraceroute {{host}} -p {{source_port}} -s {{source_address}}`
2020-03-28 21:04:01 +00:00
- Set the first and maximum TTL:
2020-02-20 15:56:59 +00:00
`tcptraceroute {{host}} -f {{first_ttl}} -m {{max_ttl}}`
2020-02-20 15:56:59 +00:00
2020-03-28 21:04:01 +00:00
- Specify the wait time and number of queries per hop:
2020-02-20 15:56:59 +00:00
`tcptraceroute {{host}} -w {{wait_time}} -q {{number_of_queries}}`
- Specify the interface:
`tcptraceroute {{host}} -i {{interface}}`