Community Record
59
Posts
73
Kudos
2
Solutions
Badges
Jan 20 2025
3:50 PM
Hi Shlomoi, A combined Network is a mix of All of your Meraki equipment networks, MX, MS, MR, MV, MT and SM. Based on the image you provided I am assuming you are creating the SM network for the first time and in that case you will want to select the Network Drop down next to Combine hardware to EMM. Please let me know if that helps or if you are in fact attempting to split your SM network away from an existing network as that requires a number of different steps.
... View more
Jan 16 2025
8:55 AM
5 Kudos
UPDATE: This contest is now closed. Thank you to everyone who shared their goals for the new year with us! Congratulations to our 3 randomly selected winners: @Pond @Brian21 and @Viewmax!!! 🎉
... View more
Jan 14 2025
4:06 PM
This survey is now closed. Thank you for your participation!
... View more
Jan 13 2025
6:09 AM
1 Kudo
Sorry, I did not do something like this via API. I think the API is a good thing for doing the same job a lot of times. but of course, if setting up the API requests is more time consuming than doing it manually, it is better to do it manually.
... View more
Jan 8 2025
6:55 AM
2 Kudos
import meraki
dashboard = meraki.DashboardAPI("")
organization_id = ''
print("orgID")
all_networks = dashboard.organizations.getOrganizationNetworks(organization_id, total_pages='All')
for a in all_networks:
#print(a['name'])
network_alerts = dashboard.networks.getNetworkHealthAlerts(a['id'])
count = 0
for n in network_alerts:
print(n)
if n['type'] == "Uplink IP address in conflict with another device":
print(n)
with open("C:\\data\\logs\\networkswithissues.txt", "a") as f:
f.write(str(n))
count += 1
print(f"{count} networks.") You can also do it with the Meraki Python module. This filters just for IP conflicts. This ultimately uses the same endpoint that @LearningIsFun shared, so may not work long-term.
... View more
Jan 7 2025
3:29 AM
1 Kudo
I guess EA means Entra Application? But having an application for each org is kinda clunky and not user friendly. To my knowledge, it is only possible to give one role per user. So this role needs to be present in all orgs the user should have access to. This role can have different permissions in different orgs. BUT it seems completly impossible to "build" user permissions based on different roles. For each permission-org requirement, you need to create a new role. This could get complex if you have a lot of orgs and users. The reply url that needs to be configured points to a specific org. In order to work, the role needs to be defined in this org or the access would be denied. But if the user shouldn't have rights in this org you ether need to have a dummy org, containing all roles, or create a dummy network and give permission to it. This feels not like a clean solution.
... View more
Dec 18 2024
3:26 AM
I FOUND THE GNOME! https://community.meraki.com/t5/Smart-Cameras/rename-camera/td-p/254157
... View more
Dec 16 2024
10:04 AM
I'm not sure I'd use that for any customer-facing or externally-facing hold music stuff as Cisco probably has some sort of legal hold on that music. At minimum, if it was created in-house, I think they would have copyright. 😬 Same situation as if you had recorded the theme music off The Last Jedi and used it for your hold music.
... View more
Dec 11 2024
9:14 PM
3 Kudos
https://documentation.meraki.com/CiscoPlusSecureConnect
... View more
Nov 27 2024
11:58 AM
For beginners, there is a Getting Started with Cisco Meraki webinar scheduled for Thursday 12/12 at 9:00am PST.
... View more
Nov 25 2024
4:39 AM
congratulations all Top shots .. we done @PaulF
... View more
Nov 20 2024
10:06 PM
Thank you for response, can you tell me how to solved this issue conection or reset alert issu on conection client ?
... View more
Nov 20 2024
9:19 PM
The red marking displayed in this image represents the connectivity status (UTC). When the connectivity status is red, it indicates that the device is unable to establish a connection with the Meraki cloud.
... View more
Nov 20 2024
11:36 AM
1 Kudo
https://docs.umbrella.com/deployment-umbrella/docs/set-up-a-block-page-bypass-user If a block page bypass user logs in to the dashboard, they are informed that they do not have login access. A block page bypass user can click View my Account Settings to view and modify their account information.
... View more
Nov 19 2024
8:35 AM
1 Kudo
That's great news! I wish I could say that I worked some magic and fixed it.... but I didn't do anything. Magic! 🪄
... View more
Nov 19 2024
6:33 AM
We set up a webhook into Teams to notify of the VPN tunnel going down and immediately had to shut it off as we were getting constantly pinged. I'm glad they're on top of it enough that they CAN show us the second-by-second up and down, but being able to tune that up and say "only notify if down for x number of seconds" would be VERY helpful.
... View more
Nov 19 2024
2:53 AM
3 Kudos
Dear All, We managed to find out what is the problem. We have an existing network and we would like to shut that down and migrate all end users to Meraki. If the old router still advertises the IPs (user subnets) it won’t work over the new Meraki network too at the same time. This logical caveat will cause routing problems for the Meraki network and the end users won’t get internet connection. Therefore it’s essential to power off the old devices fist and disconnect from DHL network, only after that enable the VLAN given by DHL for the Meraki network, and then migrate the end users to the Meraki. Make sure that the VLAN is not enabled and not in use for more networks at the same time. In our case the routing problem was because we didn't do the cutover properly. I hope this is a lessons learn for others too. If you need any further information about the problem, you can turn to me, I am happy to share my experience in more details. I would like to thank you All who was trying to help me, I really appreciate. Kind regards, Anita
... View more
Nov 15 2024
8:34 AM
1 Kudo
Seems like the "solution" to me! Marking as such. (but feel free to un-mark if it doesn't seem adequately solution-y :-))
... View more
Nov 15 2024
7:01 AM
3 Kudos
We're rolling out a bunch of the Wifi 6 APs, so not likely to bump up to Wifi 7 anytime soon. We tend to run about 2-3 years behind the newest standard as we don't need fast speeds. I do worry about the constant build toward faster and faster speeds. Most of our apps are built to work at sub 15 Mbps speeds for our rural locations on satellite internet or other low-speed connections.
... View more
If you go to the performance tab of each AP, there is a graph showing number of clients connected as below:
... View more
Oct 30 2024
7:24 AM
It sounds like the ask is for prospective Guest WiFi users to be able to request Internet access using a method similar to https://documentation.meraki.com/MR/Encryption_and_Authentication/Sponsored_Guest but using Slack as the conduit, rather than email. This isn't possible natively, right now (in fact, this is the first time I've heard this ask). I guess it might be possible to do something via the API and some back-end tooling. The best bet would probably be to talk to an Ecosystem partner - someone like SpashAccess around this.
... View more
Oct 29 2024
7:32 AM
MXxxW existis because not all MXs are / need to be / can be locked away in the bowels of a building. The best use case I came across for these was for a customer who hired out large meeting rooms / small offices for relatively short periods and wanted to stand up a secure 'office in a box' at very short notice - simply by sticking the MX on the desk. Getting coverage from there was not a problem, with the built-in antennas. For me this comes back to good practise for WiFi ; survey what's needed on a site-by-site basis. It's then about using the right tool (or right set of tools) for the right job. I should probably have caveated my own initial comment too; 'in most cases' probably reflects the larger businesses I cover. In SMB 'most cases' might well best suit an appliance with built-in Wi-Fi.
... View more
Oct 28 2024
8:31 AM
I don't recommend leaving an open session to your Vision Portal running unsupervised overnight. If you don't have anyone monitoring overnight, then a better and more secure solution would be to have them log in when they first come in, as it sounds like the portal runs without issue during the workday (8 hours).
... View more
My Accepted Solutions
Subject | Views | Posted |
---|---|---|
720 | Nov 20 2024 11:36 AM | |
971 | Oct 14 2024 10:45 AM |
My Top Kudoed Posts
Subject | Kudos | Views |
---|---|---|
13 | 2830 | |
9 | 5448 | |
6 | 6377 | |
6 | 4554 | |
4 | 747 |