Backup/restore ZWave network information

Hi,
just seen that the ZMESerialUpdater is also able to backup and restore zwave.me devices such as Razberry2 and UZB1.

Download: https://z-wave.me/download/ZMESerialUpdater.tgz

Backup:
./ZMESerialUpdater serialapi_ripnvm -d /dev/ttyACM0 backup.bin

Restore:
./ZMESerialUpdater serialapi_restorenvm -d /dev/ttyACM0 backup.bin

Script which disables Z-Wave binding, takes a backup and starts binding again:

#!/bin/bash

destination='/backup/'
apiurl='http://localhost:8080/rest/things/zwave%3Aserial_zstick%3Azwave1'
prefix='ZWAVE'
retention='+13'

file=$prefix-$(date '+%Y%m%d_%H%M%S').bin
if [ -d $destination -a ! -f $destination$file ]; then
find $destination -maxdepth 1 -type f -name $prefix-*_*.bin -ctime $retention -delete
curl -sX PUT --header 'Content-Type: application/json' --header 'Accept: application/json' -d 'false' $apiurl'/enable' >/dev/null
port=$(curl -X GET --header 'Accept: application/json' $apiurl 2>/dev/null | jq -r '.configuration.port')
sleep 5
./ZMESerialUpdater serialapi_ripnvm -d $port $destination$file
curl -sX PUT --header 'Content-Type: application/json' --header 'Accept: application/json' -d 'true' $apiurl'/enable' > /dev/null
fi

Maybe it is a solution to make controller backups at your own for example with cron.

Can anybody say if there were also topology information backuped and restored?

5 Likes