Last active
December 28, 2021 10:29
-
-
Save luckylittle/7d8d61898e990dc19f8386738f7e9763 to your computer and use it in GitHub Desktop.
Command line options for iPerf3
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Iperf is a tool for network performance measurement and tuning. It is a cross-platform tool that can produce standardized | |
| performance measurements for any network. Iperf has client and server functionality, and can create data streams to measure | |
| the throughput between the two ends in one or both directions. | |
| [user@server-1 ~]$ iperf3 -s –p 5001 -V --logfile iperf3_server2_20210118.log | |
| 1) Linear | |
| [user@client-a ~]$ iperf3 -c –p 5001 –V --logfile iperf3_client-a_lin_20210118.log server-1 –u -4 –Z | |
| [user@client-b ~]$ iperf3 -c –p 5001 –V --logfile iperf3_client-b_lin_20210118.log server-1 –u -4 –Z | |
| 2) Parallel | |
| [user@client-a ~]$ iperf3 -c –p 5001 –V --logfile iperf3_client-a_par_20210118.log server-1 –u –P 5 -4 –Z | |
| [user@client-b ~]$ iperf3 -c –p 5001 –V --logfile iperf3_client-a_par_20210118.log server-1 –u –P 5 -4 –Z |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment