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

25 lines
557 B
Markdown
Raw Normal View History

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