Json is not working in SMs with Authentication Key enabled

Hi experts,

I have created a json to run in CnMaestro to change the password and channeL bandwidth scan that works correctly in the SMs that are connected to APs without authentication key enabled but if I run it to SMs where is this enabled it takes not effect.

The Json File is:

{
"userParameters": {

"smRadioConfig": {
"bandwidthScanList": [
200, 300
]
},
"authenticationConfig": {
"whispWebUserAccessMode": 2,
"allowRejectThenLocal": 1,
"authenticationKey": "",
"accounts": [{
"userName": "admin",
"level": 3,
"readOnly": false,
"passwordEncrypted": "4e1547f0e06d337fdd3ef6759ae45897"
},
{
"userName": "root",
"level": 3,
"password": "${password=XXXXX}",
"readOnly": false
}
],
"authKeyOption": 0
}

},
"cfgFileString": "Canopy configuration file",
"cfgFileVersion": "1.0"
}

The SMs are running in 16.0.1 software version.

Any idea?

Thanks

Have you tried removing any fields in that JSON file that you don't care to configure? If all you want to configure is passwords and scan list, does this work?

{
  "userParameters": {
    "smRadioConfig": {
      "bandwidthScanList": [
        200,
        300
      ]
    },
    "authenticationConfig": {
      "whispWebUserAccessMode": 2,
      "accounts": [
        {
          "userName": "admin",
          "level": 3,
          "readOnly": false,
          "passwordEncrypted": "4e1547f0e06d337fdd3ef6759ae45897"
        },
        {
          "userName": "root",
          "level": 3,
          "password": "${password=XXXXX}",
          "readOnly": false
        }
      ]
    }
  },
  "cfgFileString": "Canopy configuration file",
  "cfgFileVersion": "1.0"
}
1 Like

It works!!! Thank you very much!

Regards.

1 Like

Glad to help!