-
-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# trip | ||
|
||
> A network diagnostic tool | ||
> Combines the functionality of traceroute and ping and is designed to assist with the analysis of networking issues. | ||
> More information: <https://trippy.rs/>. | ||
- Basic usage with default parameters: | ||
|
||
`sudo trip example.com` | ||
|
||
- 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` |