From 0437cee5f68e4b13bcdb228d894a014c9a7f9832 Mon Sep 17 00:00:00 2001 From: Max Isom Date: Tue, 10 Apr 2018 04:49:40 -0500 Subject: [PATCH] iperf: add page (#2059) --- pages/common/iperf.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 pages/common/iperf.md diff --git a/pages/common/iperf.md b/pages/common/iperf.md new file mode 100644 index 000000000..c2237a0ff --- /dev/null +++ b/pages/common/iperf.md @@ -0,0 +1,15 @@ +# iperf + +> Measure network bandwidth between computers. + +- Run on server: + +`iperf -s` + +- Run on client: + +`iperf -c {{server_address}}` + +- Run on client with 5 parallel threads: + +`iperf -c {{server_address}} -P {{5}}`