1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 02:44:54 +02:00
tldr/pages/common/iperf.md
2019-06-05 23:42:48 -03:00

16 lines
257 B
Markdown

# iperf
> Measure network bandwidth between computers.
> More information: <https://iperf.fr>.
- 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}}`