Skip to content

Instantly share code, notes, and snippets.

@luciopaiva
Created February 17, 2020 19:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save luciopaiva/dff0ad560e9c98dea4551497601b2437 to your computer and use it in GitHub Desktop.
Save luciopaiva/dff0ad560e9c98dea4551497601b2437 to your computer and use it in GitHub Desktop.
Network perf test with iperf3

Network perf test with iperf3

iperf: https://github.com/esnet/iperf

Installation

In case sudo yum install iperf3 doesn't work:

git clone https://github.com/esnet/iperf.git
cd iperf
git checktout 3.2-STABLE
./configure
make
sudo make install
sudo ldconfig

Running it

Server side:

iperf3 -s -p 3050 -f M

Client side, sending:

iperf3 -c IP_ADDRESS -p 3050 -f M

Client side, receiving:

iperf3 -c IP_ADDRESS -p 3050 -f M -R
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment