Guest Network Password

Scook
Conversationalist

Guest Network Password

Is there a way to change the password to the Guest WIfi for 24 networks without having to go into each network and change it one by one.  Looking for an automated way to change all at one time.

 
 
 
 
 
4 Replies 4
RaphaelL
Kind of a big deal
Kind of a big deal

Via the API or if the config is 100% identical you might be able to use templates. Those are the only 2 options. 

rhbirkelund
Kind of a big deal

Using the API you can use this,

#! /usr/bin/env python3

import meraki

def main():
    dashboard = meraki.DashboardAPI(
        suppress_logging=True
    )

    OrgId = str(input("Organization ID: "))
    SsidName = str(input("Target SSID: "))
    NewPsk = str(input("New Psk: "))
    
    Networks = dashboard.organizations.getOrganizationNetworks(OrgId)

    Targets = {}
    for network in Networks:
        Ssids = dashboard.wireless.getNetworkWirelessSsids(network['id'])
        for Ssid in Ssids:
            if Ssid['name'] == SsidName:
                Targets.append({
                    'name': network['name'],
                    'networkId': network['id'],
                    'SsidNumber': Ssid['number']
                })

    # Update PSK
    for target in Targets:
        print("Updating",network['name'])
        response = dashboard.wireless.updateNetworkWirelessSsid(
            target['networkId'], target['SsidNumber'],
            psk=NewPsk
        )
    print("Done")

if __name__ == "__main__":
    main()
LinkedIn ::: https://blog.rhbirkelund.dk/

Like what you see? - Give a Kudo ## Did it answer your question? - Mark it as a Solution 🙂

All code examples are provided as is. Responsibility for Code execution lies solely your own.
van604
Building a reputation

thanks for the code for the API, saving a lot of work doing it this way.

 

Brash
Kind of a big deal
Kind of a big deal

Assuming you don't have every network templated, the API is definitely the way to do it.

With that said, you might be better off looking at an integration such as SplashAccess, Cloudi-Fi or Cloud4Wi (to name a few) to manage that kind of thing automatically.

Get notified when there are additional replies to this discussion.
Welcome to the Meraki Community!
To start contributing, simply sign in with your Cisco account. If you don't yet have a Cisco account, you can sign up.
Labels