checkconnection/restartmodem.sh

24 lines
261 B
Bash
Raw Normal View History

2023-08-22 18:45:53 +02:00
#!/bin/bash
#
## Restarting Interface in case of faulture
#
#
## Variables
#
interface="LTE"
#
## Main
#
# Restart Modem
ifdown $interface
sleep 5
ifup $interface
# Log the time
echo "Interface $interface restarted at $(date)" >> /var/log/restartmodem.sh