This application utilizes the Meraki API to efficiently manage and update Cisco Meraki network SSID PSKs across multiple networks simultaneously. It employs Typer, offering an intuitive command-line interface for various options and functionalities. Specifically, it targets networks tagged with specific identifiers, allowing selective updates to wireless SSIDs, including password changes. It includes the ability to list organizations, networks, and SSIDs, as well as update SSID PSKs for a specific SSID within a single network. It provides the capability to update PSKs for MR and MX wireless networks through separate API calls. Additionally, it provides the option to set up Webex notifications for script executions, allowing for real-time updates on the script's progress and results. This capability is vital for maintaining secure and efficient network operations, particularly in environments requiring frequent updates to wireless access credentials.
- Mark Orszycki
- Meraki API
- Typer
- Meraki MR Wireless
- Meraki MX Wireless
In order to use the Meraki API, you need to enable the API for your organization first. After enabling API access, you can generate an API key. Follow these instructions to enable API access and generate an API key:
- Login to the Meraki dashboard
- In the left-hand menu, navigate to
Organization > Settings > Dashboard API access
- Click on
Enable access to the Cisco Meraki Dashboard API
- Go to
My Profile > API access
- Under API access, click on
Generate API key
- Save the API key in a safe place. The API key will only be shown once for security purposes, so it is very important to take note of the key then. In case you lose the key, then you have to revoke the key and a generate a new key. Moreover, there is a limit of only two API keys per profile.
For more information on how to generate an API key, please click here. Note: You can add your account as Full Organization Admin to your organizations by following the instructions here.
Create a Webex Chatbot from here and save the bot token somewhere safe. Retrieve your Webex Personal Access Token, so the bot can add you to the Webex Room it creates: here.
- Clone this repository with
git clone https://github.com/gve-sw/gve_devnet_meraki_update_wireless_psk
. To find the repository name, click the greenCode
button above the repository files. Then, the dropdown menu will show the https domain name. - Retrieve your Meraki API key.
- (Optional) If using Webex for notification, retrieve your Webex Bot Token and Webex PAT.
- Set up a Python virtual environment. Make sure Python 3 is installed in your environment, and if not, you may download Python here. Once Python 3 is installed in your environment, you can activate the virtual environment with the instructions found here.
- Install the requirements with
pip install -r requirements.txt
- Proceed to 'Usage' section.
Simply run the script. You will be prompted to enter the necessary environment variables to proceed. I encourage the use of the --help flag:
python main.py --help
python main.py update_psk-tagged-networks --help
To update the PSKs for networks tagged with specific identifiers, use the following command:
python main.py update_psk-tagged-networks
Note: This targets SSID number 3 accross all networks in the Meraki Organization. You can change this by using the --psk_number flag.
To list all Meraki organizations accessible with your API key, use the following command:
python main.py list-orgs
To list all networks within a specified Meraki organization, you will need the organization ID:
python main.py list-networks <organization_id>"
To list all SSIDs for a given network, you will need the network ID and specify the network type (mrw for wireless, mxw for appliance):
python main.py list_ssids <network_id> <mrw | mx>
This command allows you to update the PSK for a specific SSID by its name or number within a single network. If both name and number are provided, the update defaults to using the SSID number.
python main.py update_ssid_psk<network_id><ssid_name>" --psk "<new_psk>"
For setup that includes Webex notifications, use:
python main.py run-with-webex \
--psk <YOUR_PSK> \
--meraki_api_key <YOUR_API_KEY> \
--webex_bot_token <YOUR_BOT_TOKEN> \
--webex_pat <YOUR_PAT> \
--room_name <YOUR_ROOM_NAME>
For future script executions, use: python main.py run-with-webex
Provided under Cisco Sample Code License, for details see LICENSE
Our code of conduct is available here
See our contributing guidelines here
Please note: This script is meant for demo purposes only. All tools/ scripts in this repo are released for use "AS IS" without any warranties of any kind, including, but not limited to their installation, use, or performance. Any use of these scripts and tools is at your own risk. There is no guarantee that they have been through thorough testing in a comparable environment and we are not responsible for any damage or data loss incurred with their use. You are responsible for reviewing and testing any scripts you run thoroughly before use in any non-testing environment.