Cisco, in all their wisdom, has apparently decided to do away with the AirProvision app, a tool which ran on a smart phone and allowed you to set the regulatory domain for a universal AP by using the phones GPS-derived location status while connecting to an AP. This article describes how to do that same function without having access to the app.
First, credit where credit is due. I shamelessly stole this info from here. These instructions really saved me.
You should have alredy pre-configured:
Now it starts to be a bit tricky. You need to send HTTP POST request as follows:
URL: https://1.2.3.4/set_universal_ap_reg_domain.shtml Params: configMode=1&location=DE®Domain5=-E®Domain24=-E Basic authentication data: User:Secret1234
For the network stuff I work mostly in Linux, so it is easy as invoking the CURL command:
curl -v -X POST "https://1.2.3.4/set_universal_ap_reg_domain.shtml?configMode=1&location=DE®Domain5=-E®Domain24=-E" -u "User:Secret1234"
PS: in our case I am using "DE" as a country which I am going the prime the AP for. Feel free to use any country you like: US/DE/FR/SE/e.t.c. Pay attention to the regDomain param value: it is -E for Europe. You probably have to adapt it for your region as well.
PPS: Starting from now you can open the following link: https://htmlpreview.github.io/?https://github.com/vbeskrovny/Cisco-Universal-AP/blob/master/prime.html on your smartphone, then connect to the SSID, fill in the data and click "Prime it" button... - still testing. Not sure if it works.
Cheers ;)
No questions yet.