If you've edited the script to just run ping BBC - Homepage and then run that script every minute then you will end up with mutiple pings running as the Unix variant of ping carries on until you interrupt it. So each ping will send 65 bytes of data and each minute a new execution of the script will be spawned.
It's also sort of clear from your post that if you use ping -c 5 where it would only send 5 pings before exiting than that's not enough. What you need to try is sending larger data as per my post above or find out how many copies of ping you need running in order to keep the modem running as you want.
It's also sort of clear from your post that if you use ping -c 5 where it would only send 5 pings before exiting than that's not enough. What you need to try is sending larger data as per my post above or find out how many copies of ping you need running in order to keep the modem running as you want.


Comment