#!/bin/bash # Script Name: fritzbox-restart.v1.sh # Beschreibung: startet die Fritzbox neu # Dieses Bash-Script nutzt das Protokoll TR-064 # Skript funktioniert für alle Fritzboxen ab FritzOS 6.0 # Aufruf: ping -c 1 1.1.1.1 >/dev/null || (for i in {1..3}; do ping -c 1 1.1.1.1 >/dev/null && exit; sleep 30; done; /home/scripts/network/fritzbox-reboot-v1.0.sh) # Aufruf 2 bash ./fritzbox-reboot.v1.sh # Autor: Patrick Asmus # Web: https://www.media-techport.de # Git-Reposit.: - # Version: 1.0.1 # Datum: 16.07.2023 # Modifikation: Header angepasst ##################################################### # Variablen IPS="192.168.178.1" FRITZ_USER="FritzBenutzer" FRITZ_PW="FritzPasswort" # Ausführung location="/upnp/control/deviceconfig" uri="urn:dslforum-org:service:DeviceConfig:1" action='Reboot' for IP in ${IPS}; do curl -k -m 5 --anyauth -u "$FRITZ_USER:$FRITZ_PW" http://$IP:49000$location -H 'Content-Type: text/xml; charset="utf-8"' -H "SoapAction:$uri#$action" -d "" -s > /dev/null done