A network diagnostic tool, inspired by mtr.
In development & untested.
Feature status and high level roadmap:
UDP
(✅)DSCP
IP header (#38)UDP
/TCP
(#43)AS
lookup (#34)DNS
lookup (✅)DNS
resolver (#37)JSON
report mode (✅)CSV
report mode (✅)shell
cargo install trippy
shell
docker run -it fujiapple/trippy www.bitwizard.nl
Trippy uses a raw socket which require elevated privileges. Enabling the required privilege can be achieved in several ways, including:
1: Run as root
user via sudo
:
shell
sudo trip www.bitwizard.nl
2: chown
trip
as the root
user and set the setuid
bit:
shell
sudo chown root $(which trip) && sudo chmod +s $(which trip)
3: [Linux only] Set the CAP_NET_RAW
capability:
shell
sudo setcap CAP_NET_RAW+p $(which trip)
Trippy is a capability aware application and will add CAP_NET_RAW
to the effective set if it is present in the allowed
set. Note that trippy will drop all capabilities after creating the raw socket.
Basic usage with default parameters:
shell
trip www.bitwizard.nl
Trace using the udp
protocol:
shell
trip www.bitwizard.nl -p udp
Trace with a minimum round time of 250ms
and a grace period of 50ms
:
shell
trip www.bitwizard.nl -i 250ms -g 50ms
Trace with a custom first and maximum time-to-live
:
shell
trip www.bitwizard.nl --first-ttl 2 --max-ttl 10
Generate a json
tracing report with 10 rounds of data:
shell
trip www.bitwizard.nl -m json -c 5
```shell
USAGE:
trip [OPTIONS]
ARGS:
OPTIONS:
-a, --tui-address-mode
-c, --report-cycles <REPORT_CYCLES>
The number of report cycles to run [default: 10]
--first-ttl <FIRST_TTL>
The TTL to start from [default: 1]
-g, --grace-duration <GRACE_DURATION>
The period of time to wait for additional ICMP responses after the target
has responded [default: 100ms]
-h, --help
Print help information
-i, --min-round-duration <MIN_ROUND_DURATION>
The minimum duration of every round [default: 1s]
-I, --max-round-duration <MAX_ROUND_DURATION>
The maximum duration of every round [default: 1s]
-m, --mode <MODE>
Output mode [default: tui] [possible values: tui, stream, table, csv, json]
--min-sequence <MIN_SEQUENCE>
The minimum sequence number [default: 33000]
-p, --protocol <PROTOCOL>
Tracing protocol [default: icmp] [possible values: icmp, udp, tcp]
--packet-size <PACKET_SIZE>
The size of IP packet to send (IP header + ICMP header + payload) [default: 84]
--payload-pattern <PAYLOAD_PATTERN>
The repeating pattern in the payload of the ICMP packet [default: 0]
--read-timeout <READ_TIMEOUT>
The socket read timeout [default: 10ms]
--source-port <SOURCE_PORT>
The source port (UDP only)
-t, --max-ttl <MAX_TTL>
The maximum number of hops [default: 64]
--tui-max-addresses-per-hop <TUI_MAX_ADDRESSES_PER_HOP>
The maximum number of addresses to show per hop
--tui-preserve-screen
Preserve the screen on exit
--tui-refresh-rate <TUI_REFRESH_RATE>
The TUI refresh rate [default: 100ms]
-U, --max-inflight <MAX_INFLIGHT>
The maximum number of in-flight ICMP echo requests [default: 24]
-V, --version
Print version information
```
Trippy is made possible by tui-rs , crossterm & pnet as well as several common foundational Rust libraries. It also draws heavily from mtr.
Press h
in the Tui to display te keyboard controls.
This project is distributed under the terms of the Apache License (Version 2.0).
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in time by you, as defined in the Apache-2.0 license, shall be licensed as above, without any additional terms or conditions.
See LICENSE for details.
Copyright 2022 Trippy Contributors