From 6ccf3b96998f067378467ce1083d916f7bcc87df Mon Sep 17 00:00:00 2001 From: Michele Cereda Date: Mon, 18 Apr 2022 00:07:04 +0200 Subject: [PATCH] Added iperf notes to the knowledge base --- knowledge base/iperf.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 knowledge base/iperf.md diff --git a/knowledge base/iperf.md b/knowledge base/iperf.md new file mode 100644 index 0000000..ed22910 --- /dev/null +++ b/knowledge base/iperf.md @@ -0,0 +1,17 @@ +# Iperf + +```shell +# on the server +iperf3 -s +iperf3 -s -p 7575 + +# on the client +iperf3 -c iperf.server.ip +iperf3 -c iperf.server.ip -p 7575 +``` + +## Further readings + +- [How to use iPerf3 to test network bandwidth] + +[how to use iperf3 to test network bandwidth]: https://www.techtarget.com/searchnetworking/tip/How-to-use-iPerf-to-measure-throughput