Hello everyone,
I have already opened a case to the support but I want to know if anybody else is facing the same issue.
Since last Friday approximately our provisioning scripts (provisioning of networks and SSIDs) keep failing. More precisely they fail when we call the API to create an SSID with WPA-EAP encryption. We get a 400 Bad Request from Meraki with the error message : 'encryptionMode' must be one of: 'wep' or 'wpa'.
It used to work perfectly until last Friday and nothing has changed on our side, so I strongly suspect an issue with the API endpoint itself. Has anyone else noticed the same thing recently ?
Below is the payload of the request, I obfuscated info related to our RADIUS servers:
{
"name": "Lab O&I - Redwood",
"enabled": true,
"splashPage": "None",
"ssidAdminAccessible": false,
"authMode": "8021x-radius",
"encryptionMode": "wpa-eap",
"wpaEncryptionMode": "WPA2 only",
"radiusServers": [
{
"host": "x.x.x.x",
"port": 1812,
"secret":"xxx"
}
],
"radiusAccountingEnabled": true,
"radiusAccountingServers": [
{
"host": "x.x.x.x",
"port": 1813,
"secret":"xxx"
}
],
"radiusCoaEnabled": false,
"radiusAttributeForGroupPolicies": "Filter-Id",
"radiusFailoverPolicy": null,
"radiusLoadBalancingPolicy": null,
"ipAssignmentMode": "Bridge mode",
"useVlanTagging": true,
"defaultVlanId": 900,
"radiusOverride": true,
"minBitrate": 11,
"bandSelection": "Dual band operation with Band Steering",
"perClientBandwidthLimitUp": 0,
"perClientBandwidthLimitDown": 0,
"lanIsolationEnabled": false
}