1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-01 22:15:23 +02:00

iperf3: add page (#1952)

This commit is contained in:
chub16 2018-02-19 22:44:58 +02:00 committed by Owen Voke
parent b7e73303ad
commit 58af0a38c7

23
pages/common/iperf3.md Normal file
View file

@ -0,0 +1,23 @@
# iperf3
> Traffic generator for testing network bandwidth.
- 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`