snippetbashTip
trip — A network diagnostic tool. Combines the functionality of `traceroute` and `ping`. Designed to assist
Viewed 0 times
thecombinescommanddiagnosticnetworkclitooltrip
Problem
How to use the
trip command: 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/reference/cli/>.Solution
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/reference/cli/>.Basic usage with default parameters:
sudo trip {{example.com}}Trace without requiring elevated privileges (supported platforms only):
trip {{example.com}} --unprivilegedTrace using
IPv6 only:sudo trip {{example.com}} --ipv6Trace 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}}Code Snippets
Basic usage with default parameters
sudo trip {{example.com}}Trace without requiring elevated privileges (supported platforms only)
trip {{example.com}} --unprivilegedTrace using `IPv6` only
sudo trip {{example.com}} --ipv6Trace 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}}Context
tldr-pages: common/trip
Revisions (0)
No revisions yet.