Skip to content
Notifications
Clear all

Switched from SonicWall to Meraki MX - 6 month comparison

3 Posts
3 Users
0 Reactions
1 Views
(@data_diver_43)
Reputable Member
Joined: 2 months ago
Posts: 119
Topic starter   [#9478]

Hey everyone, been lurking here for a bit while I've been getting my feet wet in network security at my new job. I was tasked with helping evaluate our firewall setup, and we actually made the switch from a SonicWall TZ series to a Meraki MX about six months ago. I thought I'd share my notes from a data/operations perspective, since a lot of this came down to logging and visibility for our compliance reports.

The biggest immediate difference for me was in the dashboard and logging. With SonicWall, I spent a lot of time building custom SQL queries to pull logs from our syslog server to get the data I needed for, say, application usage by department. The interface felt a bit clunky for quick analysis. With Meraki, the built-in dashboards are super visual and gave me immediate high-level views. For deeper dives, their APIs are more straightforward for me to pull data directly into Python for analysis.

That said, I do miss some granularity from SonicWall. For example, creating very specific traffic rules felt more configurable there. In Meraki, things are more template-driven. Also, the cost model is a big shift—ongoing subscription vs. upfront capex. Our CFO loves the predictable billing, but I know that's a hot topic.

From a pure analytics workflow standpoint, here’s a simple example of how my data pull changed. Instead of a complex SQL join on SonicWall log tables, I now often use a Python script with the Meraki SDK:

```python
import meraki
dashboard = meraki.DashboardAPI(api_key)
orgs = dashboard.organizations.getOrganizations()
# Then I can pull network client data easily for my Power BI reports
```

Has anyone else made a similar switch? I'm particularly curious if others found good workarounds for the more granular policy controls in Meraki, or if you've built custom dashboards that blend Meraki data with other sources. The visualization part is great, but sometimes I feel like I'm trading control for convenience.



   
Quote
(@cloud_migrate_tom)
Estimable Member
Joined: 4 months ago
Posts: 87
 

I'm Tom K., I help manage infrastructure for a mid-sized logistics company of about 300 users. I've been through this exact same transition, moving a pair of SonicWall NSa 2700s to Meraki MX appliances about two years ago, so your notes really hit home.

Based on my hands-on migration and ongoing management, here's a detailed comparison:

1. **Cost Model and TCO:** The financial shift is the biggest shock. With SonicWall, our last unit was a ~$10k capex hit plus ~$3k/year for security services. Our Meraki MX100s were about $6k upfront *but* require a ~$4k/year subscription for each device just to function. Over 5 years, Meraki was easily 2x the total cost. The CFO liked the predictable annual OpEx, but accounting had to adjust.

2. **Granular Control vs. Operational Simplicity:** For complex, port-based rules or deep application-level policies, SonicWall gave me more fine-grained knobs. In Meraki, creating a policy is faster but more template-driven. I had to adjust how I thought about some rules; for example, creating a rule to block a specific sub-feature within an application (like Facebook Chat but not the whole site) was simpler on SonicWall.

3. **Logging and Visibility:** You nailed it. SonicWall logging was powerful but felt like a database admin job. I spent hours in SQL. Meraki's dashboard gave me immediate, visual answers to "who's using the most bandwidth?" or "what's the top application?" For custom reporting, I found Meraki's API more reliable for pulling event logs directly into our SIEM, saving me about half a day per month on compliance reports.

4. **Deployment and Vendor Support:** The physical swap was easy, but the configuration philosophy shift took about 3 weeks of planning. Meraki support, in my experience, is more responsive for basic issues but has a "our way or the highway" approach on complex configs. SonicWall support was slower but their engineers would sometimes help craft very specific custom rules.

I'd recommend Meraki MX if your top priorities are visibility for non-network folks and reducing day-to-day management overhead. I'd stick with SonicWall if you have complex, custom firewall policies that are critical to your business or if the long-term subscription cost is a deal-breaker. To make the call clean, tell us your team's size and how many custom application-level rules you're migrating.


One step at a time


   
ReplyQuote
(@coffeegoblin)
Estimable Member
Joined: 1 week ago
Posts: 82
 

Ah, the predictable annual OpEx that the CFO loves. Until the renewal quote arrives and it's 20% higher than last year because you added a single VLAN last quarter.

You mentioned the template driven policies. That's the whole game, isn't it? They sell you on simplicity, but that simplicity is just a fancy cage. Need to do something slightly outside their happy path, like that Facebook Chat example? Good luck. You're not configuring a firewall anymore, you're filling out a form and hoping the backend interprets it correctly.

And wait until you try to leave. The bricks stop working without the subscription. Your 2x TCO calculation is optimistic if you ever need to migrate off their platform. The real cost includes your future exit ransom.


Buyer beware.


   
ReplyQuote