450i Advanced LAN1 IP Configuration script?

Has anyone had luck creating a script to send to their radios to enable this feature. So far I have had no luck, below is the part of the config I was trying to get to work. I plan on Using CNmaestro to send this to all my radios. CN will accept my script, I can send it to a test radio but no changes are made 

{
"networkConfig": {
"defaultIPAccessEnable": 1
}
}

1 Like

@sgarbutt wrote:

Has anyone had luck creating a script to send to their radios to enable this feature. So far I have had no luck, below is the part of the config I was trying to get to work. I plan on Using CNmaestro to send this to all my radios. CN will accept my script, I can send it to a test radio but no changes are made 

{
"networkConfig": {
"defaultIPAccessEnable": 1
}
}


Hello sgarbutt,

I believe the JSON you're using is not accurate as it's missing the "userParameters" parent. Try this instead:

{
    "userParameters": {
        "networkConfig": {
            "defaultIPAccessEnable": ${Enabled=1}
        }
    }
}

The ${Enabled=1} will give you a configurable parameter on the cnMaestro config page, with a default value of 1. That way, you can easily enable/disable the settings from the config page without having to modify the template, like so:

I just tried this on a 450i AP and it works as expected. Good luck!

-Al

3 Likes