cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
1204
Views
0
Helpful
1
Replies

Automated reports

BlakeRichardson
Meraki Community All-Star
Meraki Community All-Star

I know what I want isn't available via the dashboard but I had hoped that there is something available on the Meraki Marketplace that someone can recommend.

What I need is to have a weekly automated report that lists devices connected to our guest network. ( Using Meraki splash page)

If anyone can suggest a 3rd party solution that would be great.

If you found this post helpful, please give it Kudos. If my answer solves your problem, please click Accept as Solution so others can benefit from it.
1 Reply 1

Philip D'Ath
Meraki Community All-Star
Meraki Community All-Star

Not quite what you are looking for - but Splash Access is a guest portal system, and it has a lot of integrations. I'm guessing it might have some kind of system to send a report weekly.

https://www.splashaccess.com/

Otherwise, if you are keen to use the API ... you basically want this:

for client in dashboard.networks.getNetworkClients(net['id'],total_pages='all',timespan=7*86400,vlan=2):
   print(f"\"{client['description']}\" with IP \"{client['ip']}\" made by \"{client['manufacturer']}\" ")

It retrieves all clients in the last 7 days. There are lots of filters. This example extracts out all the clients on VLAN2.