Hello everybody!
Does anyone know if there is any quick way (into a "Network\Wireless\SSIDs\Configuration Overview") to return an SSID profile to its factory "Unconfigured" settings?
no, but you could disable that SSID & recreate a new SSID which would be default settings
@LS-MERAKI-CR wrote:Hello everybody!
Does anyone know if there is any quick way (into a "Network\Wireless\SSIDs\Configuration Overview") to return an SSID profile to its factory "Unconfigured" settings?
Yes, what a pity, that was what I was afraid of. Neither way, we will have to wait for a next console version that includes the "reset" button.
Thank you anyway!
Is possible? Can I delete an specific SSID?
I do not think you can "delete" the SSID. You can disable it or rename it.
Yes, that was what I assumed, it is not possible to delete.
I need to reset all the values of an SSID from a single command. No disable neither rename.
There's no one button/click to achieve resetting an SSID back to defaults. My recommendation would be to just disable the SSID and then create/enable a new SSID, this would effectively have the "default" settings already pre-populated.
Thanks for your suggestion!!
There is also a quick way to do this programmatically via the Dashboard API.
Go to Help > API Docs in Dashboard and look at the SSIDs section and see the "Update the attributes of an SSID" section.
Or in Python for example, you could update (or wipe) all 16 SSIDs in a few seconds by running a single for loop that might resemble something like this:
for x in range(0,15,1):
updatessid(apikey, networkid, x, name+str(x), enabled, authmode, encryptionmode, psk, suppressprint=False)
where x is your ssidnum.
If you've got Python installed do a "from meraki import meraki" and then "help (meraki.updatessid)" to get the syntax.