mirror of
https://github.com/tldr-pages/tldr.git
synced 2026-08-28 20:11:19 +08:00
c440b502e9
* Update iperf3.md * Update iperf3.md * Update pages/common/iperf3.md Co-authored-by: Ivan Baluta <ivanbaluta.dev@gmail.com> --------- Co-authored-by: Ivan Baluta <ivanbaluta.dev@gmail.com>
684 B
684 B
iperf3
Traffic generator for testing network bandwidth. More information: https://iperf.fr/iperf-doc.php.
- Run iperf3 as a server:
iperf3 {{[-s|--server]}}
- Run an iperf3 server on a specific port:
iperf3 {{[-s|--server]}} {{[-p|--port]}} {{port}}
- Start bandwidth test:
iperf3 {{[-c|--client]}} {{server_ip}}
- Run iperf3 in multiple parallel streams:
iperf3 {{[-c|--client]}} {{server_ip}} {{[-P|--parallel]}} {{streams}}
- Run the test in reverse direction (server sends data to client):
iperf3 {{[-c|--client]}} {{server_ip}} {{[-R|--reverse]}}
- Set the duration of the test:
iperf3 {{[-c|--client]}} {{server_ip}} {{[-t|--time]}} {{seconds}}