1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 06:44:56 +02:00
tldr/pages/common/iperf3.md
2019-06-05 23:42:48 -03:00

24 lines
436 B
Markdown

# iperf3
> Traffic generator for testing network bandwidth.
> More information: <https://iperf.fr>.
- Run iperf3 as a server:
`iperf3 -s`
- Run an iperf3 server on a specific port:
`iperf3 -s -p {{port}}`
- Start bandwidth test:
`iperf3 -c {{server}}`
- Run iperf3 in multiple parallel streams:
`iperf3 -c {{server}} -P {{streams}}`
- Reverse direction of the test. Server sends data to the client:
`iperf3 -c {{server}} -R`