Blame
4ca149 | Steven Anderson | 2024-12-17 19:40:35 | 1 | # iperf3 |
2 | ||||
3 | Perform network throughput tests. |
|||
4 | ||||
5 | * [iperf3 manpage](https://linux.die.net/man/1/iperf) |
|||
6 | ||||
7 | #### set up a server |
|||
8 | iperf3 -s -p 30001 |
|||
9 | ||||
10 | #### connect with client |
|||
11 | iperf3 -c <host> -p 30001 |