OpenWrtScripts/networkhammer.sh
2021-02-12 19:00:10 -08:00

10 lines
257 B
Bash
Executable file

#!/bin/sh
# Continuously hammer the network with continuous netperfrunner tests
# Initially created to put load on Wi-Fi for CeroWrt
#
echo "Hammering the network to gw.home.lan. Hit Ctl-C to cancel"
while true;
do
./netperfrunner.sh -H gw.home.lan
done