OpenWrtScripts/networkhammer.sh
2015-04-11 20:49:42 -04:00

10 lines
257 B
Bash

#!/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