You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: source/getting-started/z-wave.markdown
+5Lines changed: 5 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -118,6 +118,11 @@ Uncomment the line:
118
118
119
119
You can replace these values with your own 16 byte network key. For more information on this process see the [OpenZwave](https://github.com/OpenZWave/open-zwave) wiki article [Adding Security Devices to OZW](https://github.com/OpenZWave/open-zwave/wiki/Adding-Security-Devices-to-OZW)
120
120
121
+
An easy script to generate a random key:
122
+
```bash
123
+
cat /dev/urandom | tr -dc '0-9A-F'| fold -w 32 | head -n 1 | sed -e 's/\(..\)/0x\1, /g'
0 commit comments