Skip to content

Commit

Permalink
Add iperf3 v3.16 statically compiled
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexisDucastel committed Jan 21, 2024
1 parent 604734c commit a60db28
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
Binary file added bin/iperf3-3.16-linux-amd64
Binary file not shown.
15 changes: 15 additions & 0 deletions compile-iperf3.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@

IPERF_VERSION=3.16

# Install iperf3
apt update && apt install wget build-essential -y

wget https://downloads.es.net/pub/iperf/iperf-${IPERF_VERSION}.tar.gz
tar -xvf iperf-${IPERF_VERSION}.tar.gz
cd iperf-${IPERF_VERSION}
./configure --enable-static-bin --disable-shared
make
make install
ldconfig

echo /usr/local/bin/iperf3

0 comments on commit a60db28

Please sign in to comment.