We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba852da commit bc1dff8Copy full SHA for bc1dff8
scripts/install_iperf2.bash
@@ -0,0 +1,13 @@
1
+#!/usr/bin/bash
2
+
3
+wget https://sourceforge.net/projects/iperf2/files/iperf-2.2.0.tar.gz/download
4
+mv ./download ./iperf-2.2.0.tar.gz
5
6
+tar zxf ./iperf-2.2.0.tar.gz
7
+cd iperf-2.2.0 || exit
8
9
+# git clone https://git.code.sf.net/p/iperf2/code iperf2-code
10
+# cd iperf2-code || exit
11
+./configure
12
+make
13
+echo "sudo make install"
scripts/start_iperf_client.bash
@@ -1,3 +1,4 @@
#!/usr/bin/bash
+echo /usr/local/bin/iperf -c 172.16.40.130 --interval 1 --time 30 -e -w 4M --tcp-write-prefetch 128K
/usr/local/bin/iperf -c 172.16.40.130 --interval 1 --time 30 -e -w 4M --tcp-write-prefetch 128K
0 commit comments