LinuxCommandLibrary

iperf3

iperf3

TLDR

Run iperf3 as a server

$ iperf3 -s
copy


Run an iperf3 server on a specific port
$ iperf3 -s -p [port]
copy


Start bandwidth test
$ iperf3 -c [server]
copy


Run iperf3 in multiple parallel streams
$ iperf3 -c [server] -P [streams]
copy


Reverse direction of the test. Server sends data to the client
$ iperf3 -c [server] -R
copy

Copied to clipboard