The Meraki Community
Register or Sign in
cancel
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • About AutomationDude
AutomationDude

AutomationDude

Building a reputation

Member since Jan 20, 2021

‎12-25-2022
Groups
  • API Early Access Group

    API Early Access Group

    545
  • CLUS 2022 Meraki Lounge

    CLUS 2022 Meraki Lounge

    28
View All
Kudos from
User Count
BlakeRichardson
Kind of a big deal BlakeRichardson
4
cmr
Kind of a big deal cmr
8
KarstenI
Kind of a big deal KarstenI
2
rwiesmann
rwiesmann
3
AmyReyes
Community Manager AmyReyes
1
View All
Kudos given to
User Count
PhilipDAth
Kind of a big deal PhilipDAth
12
JasonM
Meraki Employee JasonM
1
RaphaelL
Kind of a big deal RaphaelL
1
rbnielsen
rbnielsen
4
NesAlba
NesAlba
1
View All

Community Record

138
Posts
121
Kudos
12
Solutions

Badges

ECMS1
Rising Star
Year 5 - Kudoser Award
5th Birthday
100 Posts
50 Posts View All
Latest Contributions by AutomationDude
  • Topics AutomationDude has Participated In
  • Latest Contributions by AutomationDude
  • « Previous
    • 1
    • 2
    • 3
    • 4
    • 5
  • Next »

Re: Meraki API course

by AutomationDude in Developers & APIs
‎09-24-2021 06:52 AM
2 Kudos
‎09-24-2021 06:52 AM
2 Kudos
I hear what you're saying @PhilipDAth, but the daily course material is shared by email so asking this data and permission is necessary! ... View more

Meraki API course

by AutomationDude in Developers & APIs
‎09-23-2021 06:03 AM
3 Kudos
‎09-23-2021 06:03 AM
3 Kudos
Hello friends,   I have created a free course to learn How to use the Meraki APIs.    We try to help engineers automate things on Meraki and after many conversations I saw there is quite a knowledge gap in this area. People want to start scripting but often have no idea where to begin, especially when they don't have a background in computer science. This course starts from the absolute basics and walks you through everything you need to know if you want to leverage the APIs.   At the end of the course we automate the provisioning of networks, but I'd love to hear what else you guys would like to accomplish with the APIs so I can make more tutorials 🙂 ... View more

Re: Packet loss and Latency API/Google Sheet

by AutomationDude in Developers & APIs
‎09-13-2021 06:57 AM
1 Kudo
‎09-13-2021 06:57 AM
1 Kudo
Not sure if this has latency and packet loss specifically but it seems to have most tools in regards to creating reports on Google Sheets. Definitely worth a look:   https://workspace.google.com/marketplace/app/meraki_tools/11340767263   ... View more

Re: Can't load organization's network after using actionBatch

by AutomationDude in Developers & APIs
‎09-13-2021 06:53 AM
‎09-13-2021 06:53 AM
Hey Enrico, this is a strange problem indeed..   The fact that you cannot view the manually created networks within your dashboard is weird and shouldn't have to do anything with the APIs. It's possible you didn't get any error on your function because you have entered some kind of infinite loop, which may explain why the Get call doesn't seem to work either.    You can try to wait this out but maybe a better strategy would be the disable and then re-enable API access on your org.   I still don't get why you can't see networks within your dashboard. Would reach out to support if the problem persists.  ... View more

Re: List of all statuses returned by API?

by AutomationDude in Developers & APIs
‎09-13-2021 06:41 AM
1 Kudo
‎09-13-2021 06:41 AM
1 Kudo
I hear you! Was messing about with the firmware update call and one of the firmware release types was "candidate", which I'm not really clear about.   They definitely need to tell us all the possible return values for a call and what they mean.   I believe for the device status call online and offline are the only two possibilites.    I was able to find this for you:    https://documentation.meraki.com/MX/Monitoring_and_Reporting/Appliance_Status/MX_Uplink_Settings   If you look at the Uplink Status section you should be able to find the possible states. I completely agree with you though! ... View more

Re: Splitting a Combined Network consequences?

by AutomationDude in Switching
‎09-13-2021 01:43 AM
‎09-13-2021 01:43 AM
What is the reason for using templates here? Wouldn't you just be able to accomplish this if you didn't use templates.. ... View more

Re: Retrieving NetworkID from multiple organizations

by AutomationDude in Developers & APIs
‎09-07-2021 09:18 AM
‎09-07-2021 09:18 AM
Hi Kenneth, below is some code I wrote for getting all information about each network within a single org and putting that in a csv.    dashboard = meraki.DashboardAPI(key) orgs = dashboard.organizations.getOrganizations()       org_id = 'xxx' response = dashboard.organizations.getOrganizationNetworks(org_id)   # You should create a loop around this to cycle through every org (You'll need to read in the next org_id each time). You can do response.extend() to keep adding the info to the response variable. Then you can write all that info to a csv with the code below:   with open('networks.csv', 'w') as new_file: csv_writer = csv.DictWriter(new_file, response[0].keys()) csv_writer.writeheader() csv_writer.writerows(response)   Hope this helps, I'm sorry it isn't exactly what you were looking for. Why do you need all those network IDs anyway? ... View more

Re: 🎁 🍰 🎈 Happy 4th Birthday, Meraki Community! 🎈 🍰 🎁

by AutomationDude in Community Announcements
‎09-02-2021 04:00 AM
1 Kudo
‎09-02-2021 04:00 AM
1 Kudo
Congrats to everybody who is a part of this community ... View more

Re: Spreadsheet Containing DHCP Configurations

by AutomationDude in Security / SD-WAN
‎08-05-2021 05:51 AM
‎08-05-2021 05:51 AM
Hello,   I don't think there is a way to do this natively within Meraki, but you can write a python script with the API call shared above to get and then write that information to a CSV file. Hope this helps! ... View more

Re: How many administrator accounts we can create on a Meraki Organization?

by AutomationDude in Dashboard & Administration
‎08-05-2021 05:49 AM
1 Kudo
‎08-05-2021 05:49 AM
1 Kudo
Hi Nathan,   I wouldn't worry about this as I'm sure you won't be able to cross the limit if there is one, and even if there is I would guess you can call Meraki support to disable it for you.    How many admins do you intend to have? ... View more

Re: Getting wireless channel utilization

by AutomationDude in Developers & APIs
‎07-13-2021 03:27 AM
‎07-13-2021 03:27 AM
Hello there,   Perhaps this could also be helpful:   https://developer.cisco.com/meraki/api-v1/#!get-network-network-health-channel-utilization   I don't know exactly what your use case is or if this would even work, but if there was a way to get the clients on each device I wonder if some kind of script could be written to relate all the information from these API calls and get you the info you are looking for. It's just an idea, I'll leave you to think more deeply about it. Good luck! ... View more

Re: We Have 2500+ networks - API call only sends back 1000 ? Yet its only 1...

by AutomationDude in Developers & APIs
‎07-09-2021 08:05 AM
3 Kudos
‎07-09-2021 08:05 AM
3 Kudos
Hi Aidan,   Don't worry, this is normal expected behaviour from the API as there is a limit of 1000 for entries returned. This has been discussed a few times on the community before so here are some links for you to gain a better understanding and find a solution:   https://community.meraki.com/t5/Developers-APIs/Limited-search/m-p/102863 https://community.meraki.com/t5/Developers-APIs/How-can-I-specify-a-time-range-using-GET-networks-networkId/m-p/60615 https://community.meraki.com/t5/Developers-APIs/Retrieving-more-than-2-pages-of-1000-clients-from-GET-networks/m-p/61495   Essentially, you will need to make a 2nd and 3rd API call and define a new starting point in order to obtain all of the networks. Hope this helps!   ... View more

Re: Firmware upgrade schedule

by AutomationDude in Developers & APIs
‎07-08-2021 04:21 AM
‎07-08-2021 04:21 AM
Haven't personally used this API endpoint but after taking a look at it i'm going to have to say no.   There doesn't seem to be a way to cancel this specific field within Meraki as you are trying so I do not think the API would be able to comprehend what you are trying to do. I'm assuming if you make the API call with the field empty it will just do nothing, so from my understanding, the answer to your question is no.  ... View more

Re: Cannot create network through Meraki Python API

by AutomationDude in Developers & APIs
‎07-06-2021 03:01 AM
3 Kudos
‎07-06-2021 03:01 AM
3 Kudos
Hello hcoq,   Nice method you got there!   I believe you're running into an error here because the call is dashboard.organizations instead of dashboard.networks (Naturally because we are creating this network at the org level).   Here's a link to the API endpoint:   https://developer.cisco.com/meraki/api-v1/#!create-organization-network   I may be getting ahead of myself here, but you may run into further errors because you seem to be inputting net_type and tags as strings but the expected input for this is a list. You can use the split() method to turn a string to a list.   Hope this helps, everything else looks great!   ... View more

Re: co-term licensing type installed

by AutomationDude in Developers & APIs
‎05-20-2021 01:24 AM
‎05-20-2021 01:24 AM
I will add a 3rd layer of agreement here. The API call only works for per device licensing. How annoying is that considering the amount of partners that find license management frustrating and could be aided by the ability to obtain all their coterm licenses.  ... View more

Re: Hotspot vs Splash Pages

by AutomationDude in Wireless LAN
‎05-18-2021 08:49 AM
‎05-18-2021 08:49 AM
Hello!   These are not the same things. if you could clarify what you're trying to do then we would be able to answer your question a lot better!   The hotspot functionality is for service providers to streamline the process of bringing client devices onto the network. Check out this link to understand Passpoint   The Splash page functionality is for controlling the authentication method to your WiFi. A splash page is what the user sees when they try to enter your network (You typically see this in hotels and airports)   Hope this helps! Feel free to elaborate on what you're trying to achieve and we might be able to help you more 🙂 ... View more

Re: Cloning Organization with API V0 versus V1

by AutomationDude in Developers & APIs
‎05-11-2021 08:14 AM
‎05-11-2021 08:14 AM
Sorry to be the bearer of bad news Kenneth but I do not believe there is an easy fix. Scripting is the only way.   Good thing being that once you write the script you'll basically have created the org template 🙂 ... View more

Re: Meraki Networks IaC provisioning options

by AutomationDude in Developers & APIs
‎04-28-2021 09:17 AM
1 Kudo
‎04-28-2021 09:17 AM
1 Kudo
Hey @GiovanniA,    My company does this regularly and we have a platform built out where you can do this! Here's a link that explains further: https://www.boundlessdigital.com/network-management/meraki-automation/provisioning/   Looking forward to hearing from you 🙂     ... View more

Re: Introduction

by AutomationDude in Introduce Yourself!
‎04-22-2021 05:39 AM
1 Kudo
‎04-22-2021 05:39 AM
1 Kudo
Hey Alain,   Welcome to the community. I work at a French company too and recently took the ECMS1. Plan to take the ECMS2 soon as well!   Feel free to send me a message if you want to discuss anything 🙂 ... View more

Re: Its a beautiful day in the neighborhood...

by AutomationDude in Introduce Yourself!
‎04-13-2021 03:02 AM
‎04-13-2021 03:02 AM
Welcome aboard mate 🙂   Better late than never, with your breadth of expertise I'm sure you'll be a pro in no time  ... View more

Re: Enable API access endpoint

by AutomationDude in Developers & APIs
‎04-08-2021 02:44 AM
2 Kudos
‎04-08-2021 02:44 AM
2 Kudos
I understand your problem, but you are unfortunately in a paradox  😔   You're trying to tell your orgs to do something with the APIs, but how could this ever be possible when the APIs aren't enabled?    Now it would be theoretically awesome if there was one such API touchpoint that acted as kind of gate for the other touchpoints, but the security risk would be too immense for this to ever happen and it also probably wouldn't make sense 😄   I'm afraid you'll have to do this one thing the old school way! ... View more

Re: Recognizing March's Members of the Month

by AutomationDude in Community Announcements
‎04-08-2021 01:40 AM
1 Kudo
‎04-08-2021 01:40 AM
1 Kudo
Thank you everyone, next step is making it to the top 4! 😈 ... View more

Re: Meraki Sponsored Guest Access - Auth not working (it lets everyone in w...

by AutomationDude in Wireless LAN
‎04-01-2021 08:38 AM
2 Kudos
‎04-01-2021 08:38 AM
2 Kudos
Hey Freddy, did you check out this article?   https://documentation.meraki.com/MR/Encryption_and_Authentication/Sponsored_Guest   Goes into detail about the sponsored access.   Also check out this post as it might be helpful:    https://community.meraki.com/t5/Wireless-LAN/Sponsored-Guest-returning-users-auth-problem/td-p/56013   If it isn't a returning user problem then it would make sense to open a support ticket       ... View more

Re: Postman Networking Objects

by AutomationDude in Security / SD-WAN
‎04-01-2021 07:20 AM
‎04-01-2021 07:20 AM
Prob a syntax error ... would be pretty hard to debug without running the actual code. I can't seem to spot what's wrong with what you've shared though ... View more

Re: Episode 47: IT Trends in 2021

by AutomationDude in Meraki Unboxed Podcast
‎04-01-2021 03:51 AM
2 Kudos
‎04-01-2021 03:51 AM
2 Kudos
Hey Simon,   I have been a fan of your podcast ever since I started working with Meraki and its been enormously helpful by enabling me to understand everything about the Meraki ecosystem. Your podcast was one of the things that inspired me to start a room on clubhouse called the The Future of Networking, and so this episode was particularly interesting as it deals with the same field! I would love for you to listen in this coming Wednesday https://www.joinclubhouse.com/event/mW6Jqwda   It would really be a pleasure of mine to host you some time in the future!  😁 ... View more
  • « Previous
    • 1
    • 2
    • 3
    • 4
    • 5
  • Next »
Kudos from
User Count
BlakeRichardson
Kind of a big deal BlakeRichardson
4
cmr
Kind of a big deal cmr
8
KarstenI
Kind of a big deal KarstenI
2
rwiesmann
rwiesmann
3
AmyReyes
Community Manager AmyReyes
1
View All
Kudos given to
User Count
PhilipDAth
Kind of a big deal PhilipDAth
12
JasonM
Meraki Employee JasonM
1
RaphaelL
Kind of a big deal RaphaelL
1
rbnielsen
rbnielsen
4
NesAlba
NesAlba
1
View All
My Accepted Solutions
Subject Views Posted

Re: Is there a way to add firewall rules with API?

Developers & APIs
280 ‎10-04-2022 03:50 AM

Re: Python Script for All Networks

Developers & APIs
1052 ‎06-14-2022 10:08 AM

Re: MR License to expire soon. What happens?

Wireless LAN
432 ‎06-07-2022 02:18 AM

Re: Automate updating SSID

Developers & APIs
407 ‎05-31-2022 10:31 AM

Re: Querying API endpoint by networkID and OrganizationID

Security / SD-WAN
374 ‎02-21-2022 05:53 AM

Re: Curious if there is a backup prior to running switch and AP firmware up...

Switching
842 ‎01-25-2022 07:20 AM

Re: List of all statuses returned by API?

Developers & APIs
1017 ‎09-13-2021 06:41 AM

Re: We Have 2500+ networks - API call only sends back 1000 ? Yet its only 1...

Developers & APIs
734 ‎07-09-2021 08:05 AM

Re: Cannot create network through Meraki Python API

Developers & APIs
736 ‎07-06-2021 03:01 AM

Re: Hotspot vs Splash Pages

Wireless LAN
867 ‎05-18-2021 08:49 AM
View All
My Top Kudoed Posts
Subject Kudos Views

Re: The Annual Community Points Contest is HERE!

Community Announcements
14 7840

Re: 🎁 🍰 🎈 Happy 5th Birthday, Meraki Community! 🎈 🍰 🎁

Community Announcements
11 1973

New Licensing Dashboard

Dashboard & Administration
9 594

Re: Todd Nightingale has left the building

Off the Stack
7 440

Re: MR License to expire soon. What happens?

Wireless LAN
5 432
View All
Powered by Khoros
custom.footer.
  • Community Guidelines
  • Cisco Privacy
  • Khoros Privacy
  • Privacy Settings
  • Terms of Use
© 2023 Meraki