Heads Up :
The post you are writing will appear in a public forum. Please ensure all content is appropriate for public consumption. Review the employee guidelines for the community here.
Hi All,I'm trying to get all devices in an organization via a Python script and know there is a limit of 1000 devices per page. The problem is i have 8000 devices so i need to use header links to grabs the next pages. Being banging my head against th...
Hi,I'm working on a Python script to change ip ranges of MX's that are bound to a template.def setmxipaddresses(p_apikey, p_shardurl, p_nwid, p_vlid):
try:
print (p_apikey, p_shardurl, p_nwid, p_vlid)
r = requests.put('https://%s...
Hi,working on a script for Meraki to count all wireless clients in a organization and there capabilities. But the code run randomly in to the API limit which is 5 per second. As a test is added allot of sleep timer to slow down the code but even that...
Hello RaresPauna,As mentioned in the chat here is a Python class i created to help with the Meraki API ratelimit.import sys, requests, os, json
import pandas as pd
from requests_futures.sessions import FuturesSession
from requests.adapters import HTT...
Solved it!i can now get 8000 devices in a single organization using the following Function:def getNetworksDevices(p_orgid):
results = []
try:
r = requests.get('https://api.meraki.com/api/v1/organizations/%s/devices' % (p_orgid),heade...
We use certificate based authentication to only allow domain laptop on our network. Most importantly, the EAP protocol is capable of carrying only one Authentication at a given time. It can be either User or Computer and never both. That is Protocol ...
Got it to work now and i can change ip addresses on templates! Thank all for your help:The issue was that i tried to changed it to a complete different ip range then configured on the template:/24 from 172.16.0.0/8when i do change it but in the given...