migrating SSID config from one AP to another AP

shngrhm27
Conversationalist

migrating SSID config from one AP to another AP

I can use the API, & pull the SSID config from one AP.

 

In the 'radiusServers' section, I Get this:

        {
            "id"599541700393708262,
            "host""192.168.200.110",
            "port"1812
        }
 
When I try to Put this to another AP,
 
        {
            "id"599541700393708262,
            "host""192.168.200.110",
            "port"1812
            "secret""testradius"
        }
 
This message is displayed:

Bad request: There was a problem in the JSON you submitted
 
Is this possible with v1 of the API?
 
5 Replies 5
ww
Kind of a big deal
Kind of a big deal

can you try

 

{
  "radiusServers": [
            {
                "host""192.168.200.110",
                "port"1812,
                "secret" : "testradius"
            }
        ]
}
shngrhm27
Conversationalist

Yes, I tried without the id, & got the same error message.

KarstenI
Kind of a big deal
Kind of a big deal

The problem in your initial request was the missing comma after the port. Try fixing that.

I added the comma after the port, then I had to split the network, and Put this to the wireless network, & it worked perfectly.

Edgar-VO
Building a reputation

Get notified when there are additional replies to this discussion.