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 ksumann
ksumann

ksumann

Conversationalist

Member since Jan 17, 2023

3 hours ago
Kudos from
User Count
PhilipDAth
Kind of a big deal PhilipDAth
4
View All
Kudos given to
User Count
rbnielsen
rbnielsen
1
View All

Community Record

4
Posts
4
Kudos
0
Solutions

Badges

Lift-Off View All
Latest Contributions by ksumann
  • Topics ksumann has Participated In
  • Latest Contributions by ksumann

Re: Org/Network ID on Dashboard

by ksumann in Dashboard & Administration
Friday
2 Kudos
Friday
2 Kudos
Would be nice to see the network_id in the Dashboard. Meanwhile, you can see it in the source code of the page. Search for Mkiconf.locale_id = "123"; Mkiconf.ng_id = "123";   Some Networks have both, some only one of them. If you have locale_id then your network id is "L_123", and if you have ng_id, your network id is "N_123". If you have both, you can use both.   ... View more

Re: Get Firmware End of Support

by ksumann in Developers & APIs
3 weeks ago
2 Kudos
3 weeks ago
2 Kudos
OK, quick and dirty. I couldn't find anything in the API which is sad. BUT. Its in the source code of the web dashboard. So go to 1. Organization > Firmware upgrades 2. Get the source code and search for "var versions" 3. Copy the whole large line to your editor 4. Wait for the editor to crash and restart it. 5. Assuming python, do a bit of format for "true", "false", "null" 6. Make a dictionary of firmware and end of support date   from datetime import datetime EosDates = {} for version in versions: if version['endOfSupportDate'] != None: firmware_name = version['networkType'] + "-" + str(version['major']) + "-" + str(version['minor']) if version['patch'] != 0: firmware_name = firmware_name + "-" + str(version['patch']) date_time_obj = datetime.fromisoformat(version['endOfSupportDate'].replace('Z', '')) date_german = date_time_obj.strftime("%d.%m.%Y") EosDates[firmware_name] = date_german print (EosDates) ... View more

Re: MT Devices API showing firmware': 'Not running configured version'

by ksumann in Sensors
3 weeks ago
3 weeks ago
I have the same issue with an appliance running mx 16.16(?). The version is shown in the dashboard, but as "Not running configured version" using the api call dashboard . devices . getDevices or dashboard.organization.getOrganizationDevices ... View more

Get Firmware End of Support

by ksumann in Developers & APIs
3 weeks ago
3 weeks ago
Hello,   In the meraki dashboard organization > Firmware upgrades you can see sometimes a warning with an end of support date. But using the dashboard api https://developer.cisco.com/meraki/api-v1/#!get-network-firmware-upgrades doesn't return a warning state or the end of support date.   any ideas? I need to get all devices with a warning state in multiple organizations. ... View more
Kudos from
User Count
PhilipDAth
Kind of a big deal PhilipDAth
4
View All
Kudos given to
User Count
rbnielsen
rbnielsen
1
View All
My Top Kudoed Posts
Subject Kudos Views

Re: Org/Network ID on Dashboard

Dashboard & Administration
2 53

Re: Get Firmware End of Support

Developers & APIs
2 87
View All
Powered by Khoros
custom.footer.
  • Community Guidelines
  • Cisco Privacy
  • Khoros Privacy
  • Privacy Settings
  • Terms of Use
© 2023 Meraki