mirror of
https://github.com/richb-hanover/OpenWrtScripts.git
synced 2026-03-30 10:44:32 +02:00
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
10 lines
257 B
Bash
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
|