tldr/pages/common/iperf3.md

25 lines
436 B
Markdown
Raw Normal View History

2018-02-19 20:44:58 +00:00
# iperf3
> Traffic generator for testing network bandwidth.
2019-06-05 09:05:51 +01:00
> More information: <https://iperf.fr>.
2018-02-19 20:44:58 +00:00
- Run iperf3 as a server:
`iperf3 -s`
- Run an iperf3 server on a specific port:
2018-10-28 17:04:04 +00:00
`iperf3 -s -p {{port}}`
2018-02-19 20:44:58 +00:00
- Start bandwidth test:
2018-10-28 17:04:04 +00:00
`iperf3 -c {{server}}`
2018-02-19 20:44:58 +00:00
- Run iperf3 in multiple parallel streams:
2018-10-28 17:04:04 +00:00
`iperf3 -c {{server}} -P {{streams}}`
2018-02-19 20:44:58 +00:00
- Reverse direction of the test. Server sends data to the client:
2018-10-28 17:04:04 +00:00
`iperf3 -c {{server}} -R`