Community Record
186
Posts
269
Kudos
19
Solutions
Badges
Nov 28 2024
12:42 AM
I have always found the packet capture a bit flakey, sometimes just not showing any packets at all and then you refresh/come back 5 minutes later and it works!
... View more
Nov 27 2024
1:25 AM
APIs for Local and Split DNS Service This feature allows administrators to determine which DNS requests are answered by which DNS servers. I have raised a Meraki support ticket, but wanted to reach out to the community anyway to see if anyone had used this API / new feature yet. The first issue I had is when trying to add multiple nameserver addresses, it threw an error saying: "More than one address is in addresses" import requests
url = "https://api.meraki.com/api/v1/organizations/ORG_ID/appliance/dns/split/profiles"
payload = '''{
"name": "8x8 DNS Profile",
"hostnames": [ "*.8x8.com", "*.packet8.net" ],
"nameservers": { "addresses": [ "8.28.0.9", "192.84.18.11" ] }
}'''
headers = {
"Authorization": "Bearer API_TOKEN",
"Content-Type": "application/json",
"Accept": "application/json"
}
response = requests.request('POST', url, headers=headers, data = payload)
print(response.text.encode('utf8')) When I added a profile with only one nameserver I was not convinced it was actually redirecting traffic to the specified nameserver, because a packet capture on the Internet port showed the DNS query going to the clients DNS server, which is set to Proxy to upstream DNS rather than the one added in the DNS profile via the API...
... View more
Nov 26 2024
12:25 AM
Can you post in a code block please, makes it easier to read. Also have you tried the Meraki Python library? Might be easier, if you are able to install and use it.
... View more
Nov 25 2024
7:00 AM
5 Kudos
You need to raise a support ticket and ask them to set Forceauthn to False. Solved: AnyConnect SSO to Entra (Azure AD) - The Meraki Community
... View more
Nov 20 2024
5:52 AM
We have noticed something similar across a dozen or so MX67 devices - CPU will remain constantly > 80% even during low/no traffic periods (ie. overnight). Running a mixture of 18.211.2/3/4 Meraki support have said: "Following an investigation of backend logs, we have confirmed that the MXs are being affected by an unexpected behaviour which causes the device to run at 100% CPU usage when one of the LAN ports is converted to WAN2, IDP/IDS is enabled, and a WAN change is made. The behaviour was already raised to our development team who are actively investigating and looking to produce a fix as soon as possible. Unfortunately, there is no ETA for when the fix is going to become available, at this moment in time. The workaround to reduce the CPU usage is to either restart the MX or disable IDP/IPS for around 5 minutes and re-enable it." We are in the process of scheduling reboots for these devices to see if it fixes it.
... View more
Nov 20 2024
1:41 AM
5 Kudos
Try turning off the mac randomisation feature on the Apple device and see if that allows your static IP to stay fixed.
... View more
Nov 20 2024
1:21 AM
3 Kudos
Perfectly acceptable design as others have mentioned. One thing to bear in mind is the number of tunnels a particular MX model can handle, as if you're running full AutoVPN mesh over 2 WANs then you will be scaling to a lot of tunnels. MX Sizing Guide & Principles - Cisco Meraki Documentation
... View more
Nov 19 2024
12:53 AM
Primary and Secondary IPsec VPN Tunnels @Hannah-C There are multiple instances on this article where it says a feature or setting will be available "once version 19 hits GA": Health check status is currently logged in the event log. An event type category is not yet available for health check logs, a category will be available before 19.x goes GA. Tunnel monitoring probes are sourced from 192.0.2.3/32 by default for both primary and secondary tunnels. The Probe IP cannot be configured via Dashboard at this time. The ability to customize your probe IP via Dashboard will be available when the 19.x firmware becomes GA. When does Meraki consider v19 GA, I would have thought it being in the Stable release candidate channel as GA, because it is no longer beta? Unless the wording should be changed to read "When 19.x firmware is promoted to the Stable channel"..
... View more
Nov 13 2024
6:06 AM
Can you clarify what you mean by: "the SD-WAN metrics to the new vMX in Azure are not showing up in the dashboard" ?
... View more
Nov 13 2024
4:08 AM
Looks like this is also in the MX 18.211.4 changelog
... View more
Nov 6 2024
12:38 AM
Yes - if for whatever reason it doesn't work then you can ring Meraki support for help.
... View more
Nov 5 2024
8:48 AM
2 Kudos
Read the link I posted - you can move some of the licenses between the Orgs. EG. 20 out of your 50.
... View more
Nov 5 2024
8:25 AM
2 Kudos
You should be able to self-service license transfer between Orgs. How to do a License Transfer in Cotermination - Cisco Meraki Documentation
... View more
Nov 5 2024
6:37 AM
If you have an existing org you want to split into two, read this: Organization Split Overview and FAQ - Cisco Meraki Documentation
... View more
Nov 5 2024
5:54 AM
3 Kudos
Are they all standalone appliance networks? Configuration sync does not work for the combined network type (eg. you have switches / APs / other Meraki devices in the same network).
... View more
Nov 5 2024
4:14 AM
Perhaps you have an indentation error as your code works for me, only thing I changed was the curly braces {} to square ones [] when you are doing the writer.writerow within the devices for loop. import csv
import meraki
import requests
# Replace with your Meraki API Key
API_KEY = 'dontlookatmykey'
# Replace with your organization ID
ORG_ID = 'xxxx'
# Initialize the Meraki dashboard API client
dashboard = meraki.DashboardAPI(API_KEY, output_log=False, suppress_logging=True)
# Fetch a list of all networks in the organization
networks = dashboard.organizations.getOrganizationNetworks(ORG_ID)
# Prepare CSV output
with open('merakiNetworksAndSwitches.csv', mode='w', newline='') as file:
writer = csv.writer(file)
writer.writerow(['NetworkID','NetworkName', 'DeviceName', 'Serial', 'Model', 'MAC','IP'])
# Iterate through networks
for network in networks:
NetworkID = network['id']
NetworkName = network['name']
# Get devices in each network
devices = dashboard.networks.getNetworkDevices(NetworkID)
for device in devices:
DeviceName = device.get('name', 'N/A')
Serial = device.get('serial')
Model = device.get('model', 'N/A')
MAC = device.get('mac', 'N/A')
IP = device.get("lanIp", 'N/A')
writer.writerow([
NetworkID,
NetworkName,
DeviceName,
Serial,
Model,
MAC,
IP
])
print(f"Network And Switches Data Saved To merakiNetworksAndSwitches.csv")
... View more
Nov 1 2024
12:35 AM
4 Kudos
Security and SD-WAN (MX,Z) Features Directory - Cisco Meraki Documentation API for Local/Split DNS Service* Gives administrators the power to control which DNS requests are answered by which servers. Sounds like it may be just that! Lacking any other documentation at this time. They have also updated that entry to be 'API for..', it used to just say 'Local/Split DNS Service' so sounds like it will only be configurable in the API and not the GUI??
... View more
Oct 22 2024
5:32 AM
This mirrors the update I received this morning: Apologies for the inconvenience and the time it is taking to resolve this. Our development team is actively working on this issue. I will share any updates via the case as soon as they become available.
... View more
Oct 21 2024
8:46 AM
2 Kudos
Security and SD-WAN (MX,Z) Features Directory - Cisco Meraki Documentation There is also now public documentation on the new features in the beta release, this info was lacking until recently.
... View more
Oct 15 2024
12:06 AM
3 Kudos
Switches and APs: Yes (Device Uptime - Cisco Meraki Documentation) Firewalls: No
... View more
Oct 14 2024
3:59 AM
Are you testing using the MX appliance ping tool or actually a device in the VLAN pinging across to the other VLAN? The MX appliance ping test tool will not be blocked by the layer 3 outbound firewall policies.
... View more
Oct 8 2024
7:42 AM
8 Kudos
According to another thread (Re: Cisco Meraki MX and Z Series Teleworker Gateway AnyConnect VPN Denial o... - The Meraki Community) a firmware release for these models is coming...
... View more
Sep 30 2024
7:52 AM
Just checked a few different Orgs and they are all showing data for me, would try raising a support ticket.
... View more
Sep 9 2024
5:14 AM
I would not consider this stable firmware as it does not appear under the 'Stable' release tab on the dashboard. We have also had tickets raised where Meraki support engineers refer to this as not being the stable version.
... View more
My Accepted Solutions
Subject | Views | Posted |
---|---|---|
462 | 3 weeks ago | |
737 | Feb 27 2025 6:39 AM | |
660 | Feb 21 2025 1:27 AM | |
443 | Jan 14 2025 2:06 AM | |
804 | Jan 6 2025 12:32 AM | |
540 | Nov 25 2024 7:00 AM | |
2069 | Nov 5 2024 8:25 AM | |
506 | Nov 5 2024 5:54 AM | |
1370 | Nov 5 2024 4:14 AM | |
1713 | Sep 6 2024 2:22 AM |
My Top Kudoed Posts
Subject | Kudos | Views |
---|---|---|
8 | 632 | |
8 | 1944 | |
7 | 737 | |
7 | 1240 | |
6 | 795 |