Script help

Hey,

I'm trying to blast out: cnMaestroURL, cambium ID, and onboarding key. My script says valid with the validator that I use.

{
"userParameters": {},
"cnMaestroConfig": {
"cnMaestroUrl": "cloud.cambiumnetworks.com",
"cnMaestroEnable": 1,
"camID": "ID",
"camOnboardKey": "Password"
},


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

Can anyone give me some insight as to why its not working? it says that it imports. But doesnt replace the current IP for our On-Premise or anything else that I can tell. Any help would be appriecated!


Jason

Try placing the configuration parameters inside "userParameters".

{
	"userParameters": {
		"cnMaestroConfig": {
			"cnMaestroUrl": "cloud.cambiumnetworks.com",
			"cnMaestroEnable": 1,
			"camID": "ID",
			"camOnboardKey": "Password"
		}
	},
	"cfgFileString": "Canopy configuration file",
	"cfgFileVersion": "1.0"
}
2 Likes