1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-01 21:35:24 +02:00
tldr/pages/common/iperf.md

17 lines
257 B
Markdown
Raw Normal View History

2018-04-10 04:49:40 -05:00
# iperf
> Measure network bandwidth between computers.
2019-06-05 09:05:50 +01:00
> More information: <https://iperf.fr>.
2018-04-10 04:49:40 -05:00
- 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}}`