Select Page
This entry has been published on 2015-12-30 and may be out of date.

Last Updated on 2015-12-30.

Quite simple script to reboot every Snom VoIP phone in your LAN.

Tested with Ubuntu 12.04.5 LTS and snom 720 devices.

Please adjust the IP address and range to fit your local environment properties; e.g. set it like your DHCP range.

#!/bin/bash
#dxsdata.com, 12.2015

for i in $(seq 100 254);
    do
            echo $i
            wget --delete-after --timeout 1 --quiet -t 1 http://192.168.3.$i/advanced_update.htm?reboot=Reboot
            sleep 0.5
    done