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

RouterGuy

Here to help

Member since Dec 22, 2020

‎06-14-2021

Eric S

Colorado

https://www.youtube.com/channel/UCgir-VrOw32K_XV34CAUKDw

I've been a network engineer/architect primarily focused on Cisco-based solutions for about 25 years (time flies!). As the technology landscape continues to evolve, I see more and more opportunities to marry my 'networking' expertise with software development, and I think it's a great way to keep learning new things while staying interested and excited about the core tech I've been dealing with for decades. You can reach me at nettechprojects@gmail.com

Kudos from
User Count
MakaraMEAS
MakaraMEAS
1
Ciaran_WB
Ciaran_WB
1
CFlood
CFlood
1
klausengelmann
klausengelmann
1
KRobert
KRobert
5
View All
Kudos given to
User Count
MeredithW
Community Manager MeredithW
2
DexterLaBora
Meraki Employee DexterLaBora
1
View All

Community Record

6
Posts
18
Kudos
0
Solutions

Badges

First 5 Posts
First 10 Kudos
Lift-Off View All
Latest Contributions by RouterGuy
  • Topics RouterGuy has Participated In
  • Latest Contributions by RouterGuy

Re: Switch Can't Get Link but MR74 Does

by RouterGuy in Switching
‎02-26-2021 11:54 AM
2 Kudos
‎02-26-2021 11:54 AM
2 Kudos
If your cabling is proven then it's a config issue on one side or the other. Is the MS running a vanilla config or is it a legacy unit?  The test MR isn't going to be carrying some of the cruft that a legacy switch might - STP config, port-security, trunk settings, etc. ... View more

The Meraki / C# Project

by RouterGuy in Meraki Projects Gallery
‎02-20-2021 05:34 PM
9 Kudos
‎02-20-2021 05:34 PM
9 Kudos
I wanted to learn more about the Meraki Location API, use it as an opportunity to also learn C#, and use C# to visualize the location data using openGL.  This was nights and weekends for the last few months, but time well spent.  While the "WiFi Radar" visualization stuff isn't very useful, this really got my mind thinking about other possibilities both with the Meraki API and some others. There is a short video covering the highlights here:   https://youtu.be/M4JWTMyxBFQ Hope you enjoy! ... View more
Labels:
  • Meraki API

NaN in JSON

by RouterGuy in Developers & APIs
‎12-31-2020 02:18 PM
2 Kudos
‎12-31-2020 02:18 PM
2 Kudos
For wifi observer responses the fields lat, lng, x and y are typed as floats (decimals), but they are returning NaN in certain cases. NaN isn’t valid JSON (https://tools.ietf.org/html/rfc8259 sec 6) and should probably be changed to null.  Not a big deal but obviously causes an exception which has to be handled if you’ve typed the field to float in the class you deserialize into.    Thanks ... View more
Labels:
  • Labels:
  • Scanning API

Re: Client Count History - working?

by RouterGuy in Developers & APIs
‎12-23-2020 11:06 AM
3 Kudos
‎12-23-2020 11:06 AM
3 Kudos
After spending an inordinate amount of time troubleshooting in Postman, the only way I am able to get these calls to succeed is by including both timespan and autoResolution.  The rest of the parameters seem to be optional, but without these two the returned data is always incomplete.   BTW the same holds true for dataRateHistory.     https://api.meraki.com/api/v1/networks/N_647955396387955998/wireless/dataRateHistory?timespan=3600&autoResolution=true&deviceSerial=Q2PD-VYZ9-SGKM [ { "startTs": "2020-12-23T18:00:00Z", "endTs": "2020-12-23T18:05:00Z", "averageKbps": 71670, "downloadKbps": 169932, "uploadKbps": 43779 }, { "startTs": "2020-12-23T18:05:00Z", "endTs": "2020-12-23T18:10:00Z", "averageKbps": 69428, "downloadKbps": 246332, "uploadKbps": 36540 }, etc, etc ] https://api.meraki.com/api/v1/networks/N_647955396387955998/wireless/dataRateHistory?timespan=3600&deviceSerial=Q2PD-VYZ9-SGKM [] https://api.meraki.com/api/v1/networks/N_647955396387955998/wireless/dataRateHistory?ssid=0 [ { "startTs": "2020-12-16T00:00:00Z", "endTs": "2020-12-17T00:00:00Z", "averageKbps": null, "downloadKbps": null, "uploadKbps": null }, { "startTs": "2020-12-17T00:00:00Z", "endTs": "2020-12-18T00:00:00Z", "averageKbps": null, "downloadKbps": null, "uploadKbps": null }, etc, etc ] https://api.meraki.com/api/v1/networks/N_647955396387955998/wireless/dataRateHistory?autoResolution=true [ { "startTs": "2020-12-16T19:00:00Z", "endTs": "2020-12-16T20:00:00Z", "averageKbps": null, "downloadKbps": null, "uploadKbps": null }, { "startTs": "2020-12-16T20:00:00Z", "endTs": "2020-12-16T21:00:00Z", "averageKbps": null, "downloadKbps": null, "uploadKbps": null }, etc, etc ]     ... View more

Re: Client Count History - working?

by RouterGuy in Developers & APIs
‎12-23-2020 07:14 AM
1 Kudo
‎12-23-2020 07:14 AM
1 Kudo
Thanks for replying.  Any chance you could share the GET string so I could see if it's a syntax issue?  I've had a couple other episodes with the API documentation where things took some massaging beyond the documented format in order to get it to work...   Thanks again ... View more

Client Count History - working?

by RouterGuy in Developers & APIs
‎12-22-2020 04:47 PM
1 Kudo
‎12-22-2020 04:47 PM
1 Kudo
I'm trying to get client count data off a few APs via   https://documenter.getpostman.com/view/897512/SzYXYfmJ#968195f1-9664-4eb1-b384-935e0c6533d1    Seems like I am getting nothing but null client counts no matter how I prep the query.  I updated my network to the latest MR27.x code (prior to which the API returned a warning about needing to update).   Does this call work?  If so what does null mean/indicate?  Thanks        https://api.meraki.com/api/v1/networks/N_647955396387955998/wireless/clientCountHistory?deviceSerial=Q2PD-5CJ8-AAQL&timespan=3600 [ { "startTs": "2020-12-22T00:00:00Z", "endTs": "2020-12-23T00:00:00Z", "clientCount": null } ] https://api.meraki.com/api/v1/networks/N_647955396387955998/wireless/clientCountHistory [ { "startTs": "2020-12-16T00:00:00Z", "endTs": "2020-12-17T00:00:00Z", "clientCount": null }, { "startTs": "2020-12-17T00:00:00Z", "endTs": "2020-12-18T00:00:00Z", "clientCount": null }, { "startTs": "2020-12-18T00:00:00Z", "endTs": "2020-12-19T00:00:00Z", "clientCount": null }, { "startTs": "2020-12-19T00:00:00Z", "endTs": "2020-12-20T00:00:00Z", "clientCount": null }, { "startTs": "2020-12-20T00:00:00Z", "endTs": "2020-12-21T00:00:00Z", "clientCount": null }, { "startTs": "2020-12-21T00:00:00Z", "endTs": "2020-12-22T00:00:00Z", "clientCount": null }, { "startTs": "2020-12-22T00:00:00Z", "endTs": "2020-12-23T00:00:00Z", "clientCount": null } ]       ... View more
Labels:
  • Labels:
  • Dashboard API
Kudos from
User Count
MakaraMEAS
MakaraMEAS
1
Ciaran_WB
Ciaran_WB
1
CFlood
CFlood
1
klausengelmann
klausengelmann
1
KRobert
KRobert
5
View All
Kudos given to
User Count
MeredithW
Community Manager MeredithW
2
DexterLaBora
Meraki Employee DexterLaBora
1
View All
My Top Kudoed Posts
Subject Kudos Views

The Meraki / C# Project

Meraki Projects Gallery
9 1143

Re: Client Count History - working?

Developers & APIs
3 1729

Re: Switch Can't Get Link but MR74 Does

Switching
2 1439

NaN in JSON

Developers & APIs
2 1114

Re: Client Count History - working?

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