Comments on: Monitoring Speedtest on LAN using iPerf3 on Zabbix Agent https://geekistheway.com/2023/01/03/monitoring-speedtest-on-lan-using-iperf3-on-zabbix-agent/ Trying to learn just a bit! Mon, 30 Dec 2024 18:11:30 +0000 hourly 1 https://wordpress.org/?v=7.0 By: Iván Fernańdez https://geekistheway.com/2023/01/03/monitoring-speedtest-on-lan-using-iperf3-on-zabbix-agent/#comment-2302 Tue, 24 Sep 2024 14:25:55 +0000 https://geekistheway2252.live-website.com/?p=2135#comment-2302 my bad. I hadnt realized the “-R” in the download variable.

]]>
By: Iván Fernańdez https://geekistheway.com/2023/01/03/monitoring-speedtest-on-lan-using-iperf3-on-zabbix-agent/#comment-2301 Tue, 24 Sep 2024 13:57:39 +0000 https://geekistheway2252.live-website.com/?p=2135#comment-2301 There is a bug in the
https://git.cdp.li/polcape/zabbix/-/blob/master/zabbix-speedtest-lan/speedtest-lan.sh
file, lines 34 and 35 reference the same result, even though they are saved for “upload” and “download” speeds.
I believe “download” should grep “receiver”, not “sender”
[…]

else
download=$(iperf3 -f m -c “$1″ -R | grep sender | awk -F ” ” ‘{print $7}’)
upload=$(iperf3 -f m -c “$1″ | grep sender | awk -F ” ” ‘{print $7}’)

]]>