NTP Template Help

Template for PMP450 access points to set the Time Zone and NTP server. Maestro accepts it, the ap’s accept it, yet it does not change the NTP server address… Need some assistance.

{
  "userParameters": {
    "systemTimeConfig": {
      "timeZone": 18
    }
  },
  "configFileParameters": {
    "apNetworkConfig": {
      "ntpServers": [
        "192.168.1.1"
      ]
    }
  },
  "cfgFileString": "Canopy configuration file",
  "cfgFileVersion": "1.0"
}

Hi @Kevin_Simms,

“apNetworkConfig” needs to be within “userParameters”.

Try this:

{
	"userParameters": {
		"systemTimeConfig": {
			"timeZone": 18
		},
		  "apNetworkConfig": {
			"ntpServers": [
				"192.168.1.1"
			]
		}
	}
}

“configFileParameters” is only used when importing a configuration directly on the PMP device without cnMaestro. It’s used for options that are part of the configuration update itself like “rebootIfRequired” and “setToDefaults”. “cfgFileString” and “cfgFileVersion” are also not requird for cnMaestro Templates.

3 Likes

That works! Thanks Jordan

1 Like