Community Record
186
Posts
269
Kudos
19
Solutions
Badges
Jan 14 2025
12:05 PM
👏 👏 👏 MX 18.211.5 👏 👏 👏
... View more
Jan 14 2025
2:06 AM
3 Kudos
Using this endpoint returns the expiration date for the Org: Get Organization Licenses Overview - Meraki Dashboard API v1 - Cisco Meraki Developer Hub
... View more
Jan 6 2025
11:50 AM
2 Kudos
Good to know. Thanks for letting everyone know.
... View more
Jan 6 2025
12:34 AM
2 Kudos
To provide an update, after troubleshooting with support they were seeing the first request go to the desired nameserver, but not subsequent subdomain queries. After they checked internally this is apparently intended behaviour and the wildcard examples in the API documentation is just extremely misleading.
... View more
Dec 20 2024
8:49 AM
2 Kudos
NONAT has to be turned on first in Organization > Early Access. Docs are here: https://documentation.meraki.com/MX/Networks_and_Routing/NAT_Exceptions-No_NAT_on_MX_Security_Appliances And I was wrong, BGP route exchange is available on NONAT routed mode - but only on firmware 18.207 or above: https://documentation.meraki.com/MX/Networks_and_Routing/Border_Gateway_Protocol_(BGP)
... View more
Dec 19 2024
12:15 PM
Well, it appears these switches are not supported out of the box according to Meraki documentation. We just received them this week with this IOS version preinstalled, so unless I reflash them to an IOS version several revisions behind (17.12), we will be unsupported. Of course, we've already deployed over 20 of these in production. What a bummer.
... View more
Dec 18 2024
12:07 PM
I have done this where either an event is in just part of a building, or you want to retrict public access to reception areas etc. Simply assign a tag to those APs and set the SSID to only be enabled on APs with tag X.
... 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 18 2024
12:58 AM
2 Kudos
Definitely do it this way otherwise you need to faff around and disable WAN 2 on the Spare, strip out WAN 2 credentials from the Primary, reboot, turn around and touch your toes, hop on one leg 3 times and then it will let you add in the VIP on WAN 1 again. 🤣
... View more
Dec 18 2024
12:56 AM
I can see it now, thank you!
... View more
Dec 9 2024
12:35 AM
1 Kudo
Thank you @Caleb-Engle! 😀
... View more
Dec 5 2024
2:27 PM
2 Kudos
CONGRATS to everyone participating. Meraki is winning. 💚
... View more
Dec 5 2024
1:56 PM
2 Kudos
Let's start off the with obvious this is a great add and I am thankful to see the additional information. That being said I feel like with the additional information we are able to see this could be combined with the current summary page and this would save admins the time of clicking back and forth. New Tile Device Summary Combine the following categories into one Block CPU Memory Power - Make smaller Power Mode - Make smaller AP Reboot - Merge with Historical Connectivity Historical Connectivity - Tweak this bar to combine the alerts with AP Reboots, but use the same colors Radius and VLAN Status - Make smaller Uplink Traffic Radio Summary Utilization on current channel Add Client count on each radio Current Client Keep the same Historical Device Data Keep the same These are just my thoughts. @RaphaelL - Thanks for posting about this release I missed it.
... View more
Dec 1 2024
5:46 PM
Hi, As regards the following item: In rare cases, MX67C, MX68CW, and Z3C appliances may fail to enter into a "Ready" state despite being able to register to a cellular network and obtain an IP address for the modem. Seems it may also need to include Z4C's as well, as seems to have been allocated IPv4 and IPv6 addresses, but not showing as Ready: Seems to be up, but not really 100% sure.
... View more
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 26 2024
5:58 AM
I also Tried this, same thing. import requests
import json
# Define your API key and base URL
api_key = 'YOUR_API_KEY'
base_url = 'https://api.meraki.com/api/v1'
org_id = 'YOUR_VERIFIED_ORG_ID'
email_to_add = 'user@company.com'
sms_number_to_add = '+15555555555'
http_server_id = 'aHR0cHM6Ly93d3cuZXhhbXBsZS5jb20vd2ViaG9va3M='
# Define the headers
headers = {
'X-Cisco-Meraki-API-Key': api_key,
'Content-Type': 'application/json'
}
# Define the alert condition for WAN appliance offline
alert_settings = {
"defaultDestinations": {
"emails": [email_to_add],
"smsNumbers": [sms_number_to_add],
"allAdmins": False,
"snmp": False,
"httpServerIds": [http_server_id]
},
"alerts": [
{
"type": "applianceConnectivity",
"enabled": True,
"alertDestinations": {
"emails": [email_to_add],
"smsNumbers": [sms_number_to_add],
"allAdmins": False,
"snmp": False,
"httpServerIds": [http_server_id]
},
"alertCondition": {
"timeout": 30
}
}
]
}
# Fetch all networks in the organization
networks_response = requests.get(f'{base_url}/organizations/{org_id}/networks', headers=headers)
networks = networks_response.json()
# Loop through each network and update alert settings
for network in networks:
network_id = network['id']
alert_settings_endpoint = f'{base_url}/networks/{network_id}/alerts/settings'
# Fetch current alert settings for the network
current_settings_response = requests.get(alert_settings_endpoint, headers=headers)
current_settings = current_settings_response.json()
# Update with new alert settings
current_settings["defaultDestinations"] = alert_settings["defaultDestinations"]
# Ensure appliance connectivity alert is set correctly
appliance_alert_exists = False
for alert in current_settings["alerts"]:
if alert["type"] == "applianceConnectivity":
alert["enabled"] = True
alert["alertDestinations"] = alert_settings["alerts"][0]["alertDestinations"]
alert["alertCondition"]["timeout"] = alert_settings["alerts"][0]["alertCondition"]["timeout"]
appliance_alert_exists = True
break
if not appliance_alert_exists:
current_settings["alerts"].append(alert_settings["alerts"][0])
# Update the alert settings
update_response = requests.put(alert_settings_endpoint, headers=headers, data=json.dumps(current_settings))
if update_response.status_code == 200:
print(f'Successfully updated alerts for network {network["name"]}')
else:
print(f'Failed to update alerts for network {network["name"]}')
print(f'Status Code: {update_response.status_code}')
print(f'Response Text: {update_response.text}')
print(f'Request Data: {json.dumps(current_settings, indent=2)}')
print("Completed updating alerts for all networks.")
... View more
Nov 25 2024
7:38 AM
1 Kudo
That was it! Thanks, Jimmy.
... View more
Nov 22 2024
11:41 AM
2 Kudos
@CloudStrife we decided to leave as-is (orange) since it seems that folks have gotten used to it.
... View more
Nov 21 2024
8:04 AM
UPDATE I've been asked by Support to upgrade to MX 18.211.4 so they can take a look at the MX backend.
... View more
Nov 20 2024
11:31 AM
You can turn off mac randomisation for just the SSID you are having the issue with. https://eyenetworks.no/en/mac-randomization/
... View more
Nov 20 2024
4:43 AM
You've all been very helpful, thank you very much.
... View more
Nov 19 2024
1:36 AM
1 Kudo
Hi @jimmyt234, GA (General Availability) means stable, not stable release candidate. HTH.
... View more
Nov 13 2024
11:05 PM
1 Kudo
just checked...i can see the peering...after 12 hours maybe.....Meraki seems to be a little slow...
... View more
Nov 6 2024
12:58 AM
Thanks for the tip...
... View more
My Accepted Solutions
Subject | Views | Posted |
---|---|---|
473 | 4 weeks ago | |
761 | Feb 27 2025 6:39 AM | |
670 | Feb 21 2025 1:27 AM | |
446 | Jan 14 2025 2:06 AM | |
817 | Jan 6 2025 12:32 AM | |
543 | Nov 25 2024 7:00 AM | |
2075 | Nov 5 2024 8:25 AM | |
509 | Nov 5 2024 5:54 AM | |
1373 | Nov 5 2024 4:14 AM | |
1724 | Sep 6 2024 2:22 AM |
My Top Kudoed Posts
Subject | Kudos | Views |
---|---|---|
8 | 637 | |
8 | 1975 | |
7 | 761 | |
7 | 1252 | |
6 | 797 |