1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2024-10-31 06:18:17 +01:00
tldr/pages/common/iperf.md
2018-04-10 10:49:40 +01:00

217 B

iperf

Measure network bandwidth between computers.

  • Run on server:

iperf -s

  • Run on client:

iperf -c {{server_address}}

  • Run on client with 5 parallel threads:

iperf -c {{server_address}} -P {{5}}