From 58af0a38c7e397a25f8df202a0719ac5c9dbc418 Mon Sep 17 00:00:00 2001 From: chub16 <34138504+chub16@users.noreply.github.com> Date: Mon, 19 Feb 2018 22:44:58 +0200 Subject: [PATCH] iperf3: add page (#1952) --- pages/common/iperf3.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 pages/common/iperf3.md diff --git a/pages/common/iperf3.md b/pages/common/iperf3.md new file mode 100644 index 000000000..70d88e15a --- /dev/null +++ b/pages/common/iperf3.md @@ -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`