From 43bae0c9a7a4d93c7fbf687e0be49c70d1170423 Mon Sep 17 00:00:00 2001 From: ghostpirate Date: Fri, 26 May 2023 18:50:05 -0300 Subject: [PATCH] Add 'usr-bin-iperfd' --- usr-bin-iperfd | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 usr-bin-iperfd diff --git a/usr-bin-iperfd b/usr-bin-iperfd new file mode 100644 index 0000000..71d7d46 --- /dev/null +++ b/usr-bin-iperfd @@ -0,0 +1,9 @@ +#!/bin/sh +# (C) 2019 - 2023 Fernao Vellozo +# This is free software under the terms of GPLv3 + +# the command below will start iperf3 in server mode, running in background as a daemon and listening on ipv4 port 5005/tcp +# log file is optional, and other parameters may be added, such as -V for verbose and -d for debug +# firewall must be adjusted accordingly, otherwise no client will reach it here + +/usr/bin/iperf3 -s -D -B 0.0.0.0 -p 5005 --logfile /var/log/iperf3-server.log \ No newline at end of file