This project presents an advanced solution for automating Cisco Meraki Wi-Fi networks, specifically designed to facilitate seamless sea-to-dock roaming with dynamic VLAN management. It leverages the power of the Meraki Dashboard API to provide real-time network configuration adjustments based on device connectivity, ensuring optimal network performance and user experience in maritime environments.
- Mark Orszycki
- Meraki MS
- Merak MR
- Meraki API
- Python
- FastAPI
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.
- Clone this repository with
git clone https://github.com/gve-sw/gve_devnet_meraki_seamless_sea_ssid.git
. - Update .env with the following variables:
CSV_FILE = '/data/boats.csv' MERAKI_BASE_URL=https://api.meraki.com/api/v1/ MERAKI_API_KEY=YOUR_MERAKI_API_KEY MERAKI_NETWORK_ID=YOUR_MERAKI_NETWORK_ID APP_NAME='Meraki Seamless Sea SSID' UVICORN_LOG_LEVEL=warning MY_PSK=YOUR_PSK MERAKI_SSID_NAME=YOUR_SSID_NAME
- Retrieving your Meraki Network ID: This project includes a setup.py script to assist in obtaining your Meraki Network ID. The script uses functions from meraki_funcs to interact with the Meraki API and save your network ID to the .env file. To get your Network_ID, navigate to src/meraki_seamless_sea_ssid and run:
python3 setup.py
Follow the prompts to select your organization and network. The script will automatically update your .env file with the MERAKI_NETWORK_ID.
- Run ngrok http 8000 to expose your local server.
- Create a Webhook in the Meraki dashboard (Network-wide > Alerts > Webhooks).
- Set the URL to your ngrok URL (ngrok_url/webhook).
- Configure alert settings to use the webhook for relevant events.
Input data for appropriately for each boat in boats.csv:
To run locally the program, use the command:
uvicorn app:app --reload
To run locally the program & silence logs:
uvicorn app:app --log-level warning
To run with Docker:
docker-compose up
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.