OpenWrtScripts/networkhammer.sh
baguswahyu 79d0dc5321
Update networkhammer.sh
fix issue 
root@OpenWrt:~# sh networkhammer.sh 
Hammering the network to gw.home.lan. Hit Ctl-C to cancel
networkhammer.sh: line 7: True: not found
2020-05-17 18:58:28 +08: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