mirror of https://github.com/CrimsonTome/tldr.git
16 lines
217 B
Markdown
16 lines
217 B
Markdown
|
# 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}}`
|