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.
1 2 3 4 5 6 7 8 9 |
#!/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 |
Comments