[key-manager] remove default master key (#5998)

When initializing, we should use randomly generated network parameters
instead of default ones, to eliminate the possibility of unintentional
use of default credentials.
This commit is contained in:
Moandor
2020-12-30 11:25:48 -08:00
committed by GitHub
parent 263084baef
commit 069e26b51e
13 changed files with 87 additions and 124 deletions
+9
View File
@@ -175,4 +175,13 @@ proc get_rloc16 {} {
return $rval
}
proc setup_default_network {} {
send "channel 11\n"
expect "Done"
send "panid 0xface\n"
expect "Done"
send "masterkey 00112233445566778899aabbccddeeff\n"
expect "Done"
}
set timeout 10