- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
How to access APIs and logs ?
- I am looking for Firewall details on the Cisco Meraki website, Event Log, Firewall API but I could not locate them anywhere. Could someone confirm if Meraki Firewall capture Firewall logs? If yes, then is there any web API using which we can fetch these details, also it would be nice if anyone can guide us on how to setup this API
- Also is it necessary to create a free account to access this information if available?
Solved! Go to solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
The getNetworkEvents call can get you L7 blocks and content/security blocks for a specified network. Note that L3 firewall hits aren't available from this call.
There are a lot of event types, you probably will want to fetch only those of interest, you can get the list of possible event types using the getNetworkEventsEventTypes call, then choose the ones you want to use to filter results from the getNetworkEvents call, fwiw I use these filters...
productType="appliance", includedEventTypes = ["nbar_block", "cf_block", "sf_url_block", "sf_binary_block"]
There is also getNetworkApplianceSecurityEvents which gets some other classes of events, I suggest run it for a while to see what you get that you want to include.
For L3 firewall events, you can get them via syslog... https://documentation.meraki.com/General_Administration/Monitoring_and_Reporting/Syslog_Event_Types_...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Yes, you need to create a Dashboard Account.
You can find more information on Meraki’s APIs on their dedicated API documentation website.
https://developer.cisco.com/meraki/api/
Please, if this post was useful, leave your kudos and mark it as solved.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi , I have already created account on Meraki Dashboard (free trial) but still not able to access the APIs and logs related to the Firewall .I am working on the Integration part , So it will be really helpful for me .Kindly Please help me.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
The getNetworkEvents call can get you L7 blocks and content/security blocks for a specified network. Note that L3 firewall hits aren't available from this call.
There are a lot of event types, you probably will want to fetch only those of interest, you can get the list of possible event types using the getNetworkEventsEventTypes call, then choose the ones you want to use to filter results from the getNetworkEvents call, fwiw I use these filters...
productType="appliance", includedEventTypes = ["nbar_block", "cf_block", "sf_url_block", "sf_binary_block"]
There is also getNetworkApplianceSecurityEvents which gets some other classes of events, I suggest run it for a while to see what you get that you want to include.
For L3 firewall events, you can get them via syslog... https://documentation.meraki.com/General_Administration/Monitoring_and_Reporting/Syslog_Event_Types_...
