Back to Blog

How to Manage Multiple Meraki Networks from One Dashboard

How to Manage Multiple Meraki Networks from One Dashboard

Managing a single Meraki network is straightforward. The cloud dashboard is intuitive, the configuration options are well-organised, and most tasks can be completed in a few clicks. But what happens when your organisation grows from one site to ten, fifty, or two hundred? Suddenly, the same dashboard that felt so simple becomes a management challenge. Configuration drift creeps in between sites. Firmware versions fall out of alignment. Security policies vary from location to location. Changes that should be consistent across the estate require hours of repetitive manual work.

This guide is for UK businesses operating multiple Meraki networks — whether that means a handful of branch offices, a national chain of retail stores, or a complex multi-tenanted estate. We cover the tools, strategies, and best practices for managing multiple networks efficiently, consistently, and at scale.

Understanding Meraki's Organisational Structure

Before diving into management techniques, it is important to understand how Meraki structures its hierarchy. At the top level, you have an organisation — this is the container for all of your Meraki infrastructure. Within an organisation, you create networks, each of which typically represents a physical site. Each network contains the Meraki devices at that site: MX security appliances, MS switches, MR access points, MV cameras, and so on.

You can have multiple organisations if needed — for example, a managed service provider might maintain a separate organisation for each client. Within a single organisation, all networks share a common administration panel, making it possible to manage them from a single login.

This hierarchical structure is powerful, but it also means that decisions about how you organise your networks have long-term implications. Getting the structure right from the outset saves significant time and effort as your deployment grows.

Configuration Templates: The Cornerstone of Scale

Configuration templates are the single most important feature for managing multiple Meraki networks. A template is a master configuration that can be bound to multiple networks simultaneously. When you change a setting in the template, the change automatically propagates to every bound network. This eliminates the need to configure each site individually and ensures consistency across your entire estate.

Templates can control virtually every aspect of your Meraki configuration: firewall rules, VLAN settings, SSID configurations, switch port profiles, traffic shaping policies, content filtering rules, and more. You can override specific settings at the network level when a site has unique requirements — for example, a different VLAN scheme for a site with legacy equipment — whilst keeping everything else standardised.

Without Templates

Manual per-site management
Every change must be repeated at each site
Configuration drift between locations over time
Hours of work for estate-wide policy changes
Higher risk of human error on repetitive tasks
Difficult to audit consistency across sites

With Templates

Centralised template-driven management
One change propagates to all bound networks
Guaranteed consistency across every location
Estate-wide changes completed in minutes
Reduced risk — fewer manual touchpoints
Easy compliance auditing via template review

Designing Your Template Strategy

The key decision is how many templates to create. In an ideal world, you would have a single template for your entire organisation. In practice, you may need multiple templates to accommodate different site types. A common approach for UK businesses is to create templates based on site function.

For example, a retail chain might have one template for standard stores (with a specific set of SSIDs, firewall rules, and content filtering policies), a second template for flagship stores (which might have additional SSIDs for digital signage and IoT devices), and a third for distribution centres (with different VLAN structures and security requirements). Each template encapsulates the standard configuration for that site type, and individual sites can override specific settings where necessary.

Keep your template count as low as possible. Every additional template is another configuration to maintain. If two site types differ by only one or two settings, it is usually better to use a single template with network-level overrides for those settings rather than creating a separate template.

Binding and Unbinding Networks

Binding a network to a template is a simple operation in the Meraki dashboard, but it should be done thoughtfully. When you bind an existing network to a template, the template's configuration overwrites the network's existing settings. This is a one-way operation — any custom configuration on the network that is not preserved as a local override will be lost.

We strongly recommend testing your template on a single network before binding it to your entire estate. Create a test network, bind it to the template, verify that everything works as expected, and only then proceed with a phased rollout across additional sites. This is especially important if you are retrospectively applying templates to networks that were previously managed individually.

Network Tags for Granular Management

Network tags are a lightweight but powerful mechanism for organising and managing groups of networks within a Meraki organisation. Tags are simple text labels that you assign to networks, and they can be used to filter the dashboard view, target API calls, and organise networks by any criteria you choose.

Common tagging strategies include tagging by region (london, midlands, scotland, wales), by site type (office, retail, warehouse, data-centre), by management status (production, staging, decommissioning), or by contract terms (fibre, broadband, leased-line). You can assign multiple tags to a single network, enabling multi-dimensional filtering.

Tags become especially valuable when combined with the Meraki API. For example, you could write a script that retrieves all networks tagged "retail" and generates a report of their firmware versions, uplink statuses, and client counts. This kind of automated reporting is essential when managing dozens or hundreds of sites.

Pro Tip

Establish a tagging convention before you start deploying networks and document it in your operations runbook. Inconsistent tagging — where one team uses "London" and another uses "london" or "LDN" — undermines the value of the system. Tags are case-sensitive in the Meraki API, so standardise on lowercase with hyphens for consistency.

The Meraki API: Automation at Scale

For organisations managing more than about twenty networks, the Meraki dashboard API becomes indispensable. The API provides programmatic access to virtually every function available in the web dashboard, enabling automation that would be impossible through manual clicks.

Common API Use Cases

Bulk configuration changes are the most common API use case. Need to add a new SSID to fifty networks that are not template-bound? The API can do it in seconds. Need to update a firewall rule across all MX appliances? A short Python script handles it. Need to generate a compliance report showing the firmware version, uplink status, and security policy of every device across your estate? The API delivers the data in structured JSON format, ready for analysis.

Device provisioning is another powerful use case. When deploying a new site, you can use the API to create the network, claim devices by serial number, bind the network to a template, apply tags, and configure any site-specific overrides — all without touching the web dashboard. For organisations that regularly open new locations — retail chains, hospitality groups, healthcare providers — this reduces provisioning time from hours to minutes.

Monitoring and alerting can also be enhanced through the API. Whilst the Meraki dashboard provides built-in alerting, the API allows you to build custom monitoring workflows tailored to your organisation's specific needs. For example, you could create a script that checks the uplink status of every MX appliance every five minutes and sends a Slack message to your NOC if any site loses connectivity.

API Rate Limits and Best Practices

The Meraki API enforces rate limits to prevent abuse. As of 2026, the standard rate limit is ten requests per second per organisation. For large estates, this means you need to be thoughtful about how you structure your API calls. Use batch endpoints where available, implement retry logic with exponential backoff, and cache results where appropriate.

For UK businesses without in-house development capability, several third-party tools and platforms can help you leverage the Meraki API without writing code. Tools like Meraki's own Action Batches feature, PowerShell modules, and platforms like Ansible and Terraform provide abstraction layers that simplify API interaction.

Firmware Management Across Sites

Keeping firmware consistent across multiple networks is one of the most common challenges in large Meraki deployments. Different firmware versions can mean different feature sets, different bug fixes, and different security patches. In regulated environments, running inconsistent firmware can be a compliance issue.

Meraki offers several firmware management options. You can pin all networks to a specific firmware version, ensuring consistency. You can allow Meraki to manage firmware updates automatically, with the option to schedule updates during maintenance windows. Or you can manage firmware manually, choosing when and where to deploy updates.

For most UK businesses, we recommend a staged approach. Designate one or two non-critical sites as your "canary" sites and allow them to receive firmware updates first. Monitor these sites for a week or two to ensure stability. Once you are satisfied, roll the update out to the rest of your estate. This approach balances the need for timely security patches with the risk of a firmware issue affecting your entire network simultaneously.

Role-Based Access Control

As your organisation grows, so does the number of people who need access to the Meraki dashboard. The receptionist at your Birmingham office does not need the same access as your network architect in London. Meraki's role-based access control (RBAC) allows you to define granular permissions for each administrator.

At the organisation level, you can assign full administrators (who can manage everything), read-only administrators (who can view but not change configurations), and a range of intermediate roles. At the network level, you can restrict administrators to specific networks — for example, giving a local IT contact access only to their site's network.

For managed service providers and IT departments managing networks on behalf of business units, RBAC is essential. It ensures that delegated administrators can perform their duties without accidentally — or deliberately — affecting networks outside their remit.

Multi-Organisation Management

Some organisations require multiple Meraki organisations rather than a single one. This is common for managed service providers (MSPs) who manage networks for multiple clients, for large enterprises with distinct business units that require complete separation, and for organisations that have acquired other companies and inherited their Meraki deployments.

Managing multiple organisations introduces additional complexity. You need separate logins for each organisation (unless you use Meraki's MSP portal), templates cannot span organisations, and API calls must be directed to each organisation individually. If you are an MSP, Meraki's managed service provider portal provides a unified view across all client organisations, with single sign-on and cross-organisation reporting.

For enterprises, the decision between a single organisation with many networks and multiple organisations depends on your security and administrative requirements. A single organisation is simpler to manage but means all administrators share the same trust boundary. Multiple organisations provide complete isolation but require more administrative overhead.

Monitoring at Scale

Monitoring a single network is easy — you can simply glance at the dashboard. Monitoring fifty or more networks requires a more structured approach.

The Meraki dashboard's Organisation Overview page provides a high-level summary of all networks in your organisation, including device counts, online status, and alerts. This is your starting point for daily operational checks. The Summary Report feature generates periodic reports covering device inventory, client usage, firmware status, and security events across all networks.

For more sophisticated monitoring, integrate Meraki with your existing monitoring platform. Meraki supports SNMP for device-level monitoring, syslog for event logging, webhooks for real-time alerting, and the API for custom data extraction. Most UK businesses use a combination of these to feed data into platforms like Splunk, Grafana, or ServiceNow for centralised visibility.

Dashboard efficiency with templates95%
Configuration consistency across sites98%
Deployment speed with API automation90%
Firmware compliance across estate92%

Change Management and Documentation

In a multi-network environment, undocumented changes are a recipe for disaster. A firewall rule change that seems innocuous at the template level could break a critical application at a site you had forgotten about. Rigorous change management is essential.

Meraki's built-in change log records every configuration change, including who made it and when. This is invaluable for troubleshooting and auditing, but it is not a substitute for a proper change management process. We recommend the following practices for UK businesses managing multiple Meraki networks.

First, document every planned change before making it, including the business justification, the technical details, the affected networks, and the rollback plan. Second, test changes on a non-critical network before applying them to the estate. Third, implement changes during defined maintenance windows, with monitoring in place to detect issues. Fourth, review the Meraki change log regularly to identify unauthorised or unexpected changes.

For organisations subject to ITIL-aligned processes or ISO 27001 certification, integrating the Meraki change log with your IT service management platform provides an audit trail that satisfies compliance requirements.

Scaling Your Support Model

As the number of networks grows, your support model must scale with it. A single network engineer can comfortably manage ten or twenty Meraki networks manually. Beyond that, you need automation, delegation, or external support.

Automation — through templates, the API, and third-party tools — reduces the manual workload per network. Delegation — through RBAC and local IT contacts — distributes routine tasks. External support — from a Meraki partner — provides specialist expertise for complex changes, troubleshooting, and strategic planning.

Many UK businesses adopt a tiered support model. Local IT contacts handle day-to-day tasks like adding new devices and resetting passwords. A central network team manages templates, firmware, and security policies. A Meraki partner provides escalation support, architecture design, and project delivery for new site deployments.

Planning for Growth

If your organisation is growing — opening new sites, acquiring businesses, or expanding internationally — plan your Meraki structure for where you are going, not where you are today. A template strategy that works for ten sites may not scale to a hundred. A tagging convention that is adequate for one region may need restructuring when you expand to another.

Invest in your organisational structure early. Define naming conventions for networks, establish tagging standards, create templates for each site type, and document your API scripts. This upfront investment pays dividends as your estate grows, reducing the risk of configuration sprawl and management overhead.

Consider also your licensing strategy. Meraki licences are co-terminous within a network, meaning all devices in a network share the same licence expiry date. When planning new deployments, align licence terms across your estate to simplify renewals and avoid the administrative burden of managing dozens of different expiry dates.

Conclusion

Managing multiple Meraki networks is a fundamentally different challenge from managing one. It requires a shift from manual, ad-hoc management to structured, template-driven, and API-enabled operations. The tools are all there within the Meraki platform — configuration templates, network tags, the dashboard API, role-based access control, and comprehensive logging. The challenge is adopting the disciplines and processes that make these tools effective.

For UK businesses with growing Meraki estates, the investment in proper multi-network management pays for itself many times over. Consistent configurations mean fewer outages. Automated provisioning means faster site deployments. Centralised monitoring means earlier detection of issues. And comprehensive documentation means smoother audits and handovers.

Need Help Managing Your Meraki Estate?

Whether you are deploying your tenth site or your two hundredth, our Meraki-certified engineers can help you build a management framework that scales. From template design to API automation, we provide the expertise you need to run a multi-site Meraki network efficiently and reliably.

Talk to Our Meraki Team
Tags:Cloud NetworkingCisco MerakiNetwork Management
CloudSwitched
CloudSwitched

Centrally located in London, Shoreditch, we offer a range of IT services and solutions to small/medium sized companies.