From 49014cc59722829b80dc2d2074a94429fe9acb62 Mon Sep 17 00:00:00 2001 From: TornaxO7 Date: Sun, 2 Feb 2025 17:39:29 +0100 Subject: [PATCH] trip: add page (#15574) --- pages/common/trip.md | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 pages/common/trip.md diff --git a/pages/common/trip.md b/pages/common/trip.md new file mode 100644 index 0000000000..979fff6bd0 --- /dev/null +++ b/pages/common/trip.md @@ -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: . + +- 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}}`