Hello,
You can achieve your desired automatic pinging to other network devices only using user scripts. But it is not true that they can be only run one time on startup. You can rerun your script using crontab functionality:
- Log in to the router using SSH client;
- Use command crontab -e;
- Add additional line to crontab, for example: ***** /root/test.sh
In this example script named test.sh that is in the root directory will run every single minute.
Crontab syntax explanation:
# ┌───────────── minute (0 - 59)
# │ ┌───────────── hour (0 - 23)
# │ │ ┌───────────── day of the month (1 - 31)
# │ │ │ ┌───────────── month (1 - 12)
# │ │ │ │ ┌───────────── day of the week (0 - 6) (Sunday to Saturday;
# │ │ │ │ │ 7 is also Sunday on some systems)
# │ │ │ │ │
# │ │ │ │ │
# * * * * * <command to execute>