Crates.io | nperf |
lib.rs | nperf |
version | 0.3.0 |
source | src |
created_at | 2023-02-24 22:15:10.392654 |
updated_at | 2023-03-13 17:45:27.921812 |
description | A network performance measurement tool for TCP/UCP/QUIC/TLS protocols. Similar to iperf3 in usage. |
homepage | |
repository | https://github.com/ravi861/nperf-rs |
max_upload_size | |
id | 793966 |
size | 178,903 |
A portable network performance measurement tool for TCP/UDP/QUIC/TLS protocols. Similar to iperf3 in usage.
Supported on Linux and Windows. (macos coming soon)
QUIC protocol testing uses the quinn QUIC implementation. Future support for Quiche is WIP.
More options available via help.
# binds to [::]:8080 by default
cargo run -- -s
# connects to 127.0.0.1:8080 by default and test TCP streams
cargo run --
cargo run -- -c 127.0.0.1
# Test TSL performance
cargo run -- --tls
# Test UDP performance
cargo run -- -u
# Test QUIC performance
cargo run -- -q
# Test with parallel streams using -P, period to test with -t
cargo run -- -u -P 2 -t 30