mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-23 03:55:25 +02:00
trip: add page (#15574)
This commit is contained in:
parent
e327ea4a9d
commit
49014cc597
1 changed files with 30 additions and 0 deletions
30
pages/common/trip.md
Normal file
30
pages/common/trip.md
Normal file
|
@ -0,0 +1,30 @@
|
|||
# trip
|
||||
|
||||
> A network diagnostic tool.
|
||||
> Combines the functionality of `traceroute` and `ping`.
|
||||
> Designed to assist with the analysis of networking issues.
|
||||
> More information: <https://trippy.rs/>.
|
||||
|
||||
- Basic usage with default parameters:
|
||||
|
||||
`sudo trip {{example.com}}`
|
||||
|
||||
- Trace without requiring elevated privileges (supported platforms only):
|
||||
|
||||
`trip {{example.com}} --unprivileged`
|
||||
|
||||
- Trace using `IPv6` only:
|
||||
|
||||
`sudo trip {{example.com}} --ipv6`
|
||||
|
||||
- Trace using the `udp` protocol:
|
||||
|
||||
`sudo trip {{example.com}} --protocol {{udp}}`
|
||||
|
||||
- Use custom destination port `443` for `tcp` tracing:
|
||||
|
||||
`sudo trip {{example.com}} --protocol {{tcp}} --target-port {{443}}`
|
||||
|
||||
- Use custom source port `5000` for `udp` tracing:
|
||||
|
||||
`sudo trip {{example.com}} --protocol {{udp}} --source-port {{5000}}`
|
Loading…
Add table
Reference in a new issue