checkconnection/restartmodem.sh
2023-08-22 20:14:01 +02:00

23 lines
259 B
Bash

#!/bin/sh
#
## 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