1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-07 08:06:07 +02:00
tldr/pages/common/iperf3.md

24 lines
396 B
Markdown
Raw Normal View History

2018-02-19 22:44:58 +02:00
# iperf3
> Traffic generator for testing network bandwidth.
- Run iperf3 as a server:
`iperf3 -s`
- Run an iperf3 server on a specific port:
2018-10-28 13:04:04 -04:00
`iperf3 -s -p {{port}}`
2018-02-19 22:44:58 +02:00
- Start bandwidth test:
2018-10-28 13:04:04 -04:00
`iperf3 -c {{server}}`
2018-02-19 22:44:58 +02:00
- Run iperf3 in multiple parallel streams:
2018-10-28 13:04:04 -04:00
`iperf3 -c {{server}} -P {{streams}}`
2018-02-19 22:44:58 +02:00
- Reverse direction of the test. Server sends data to the client:
2018-10-28 13:04:04 -04:00
`iperf3 -c {{server}} -R`