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

Charlotte

Here to help

Member since Sep 5, 2017

‎03-23-2022
Kudos from
User Count
RodHoward
RodHoward
1
Jason-907
Jason-907
1
View All
Kudos given to
User Count
gdrapp
gdrapp
2
Jason-907
Jason-907
1
Nash
Nash
1
PhilipDAth
Kind of a big deal PhilipDAth
1
bly
bly
1
View All

Community Record

10
Posts
2
Kudos
0
Solutions

Badges

CMNA
1st Birthday
First 5 Posts
Lift-Off View All
Latest Contributions by Charlotte
  • Topics Charlotte has Participated In
  • Latest Contributions by Charlotte

Re: Local ID configurations for Non Meraki VPN peers

by Charlotte in Developers & APIs
‎03-23-2022 02:53 PM
‎03-23-2022 02:53 PM
I'm not sure what the MX would use but previously we have just manually entered the Local ID after creating the VPN via the API. I would also be interested if there is a standard value that Meraki uses or if the VPN tunnel just wouldn't be established until the Local ID is entered manually. ... View more

Re: Update Organization Appliance Vpn Third Party VPN Peers Limitations

by Charlotte in Developers & APIs
‎03-23-2022 02:40 PM
‎03-23-2022 02:40 PM
I just realised that the option to use IKEv2 (and the extra presets) and configure the Local ID is in BETA so that is probably why the API doesn't have it yet. It may just be my version though.     Would be great if it is on the roadmap still though. ... View more

Update Organization Appliance Vpn Third Party VPN Peers Limitations

by Charlotte in Developers & APIs
‎03-22-2022 10:58 PM
1 Kudo
‎03-22-2022 10:58 PM
1 Kudo
Hi,   I am wanting to configure Third Party VPN peers via the API but there are a few options that are not able to be configured via the API.   the IPSEC Policy Preset via the API does not include Zscaler or Umbrella and I am not able to configure a Local ID.   Is this on the roadmap to be added to the API? ... View more

Re: v1 API doesn't support localId for non-Merki VPN peers

by Charlotte in Developers & APIs
‎07-21-2021 05:36 PM
‎07-21-2021 05:36 PM
Hey @gdrapp , I'm having the same issue except I'm trying to add them in bulk via the APIs and will now need to add the Local ID manually for 360 VPNs. I think the only solution is to ask for them to add the feature via the 'Give your feedback' button and hope that they add it in the next round of updates. ... View more

Re: DHCP Reservations on Network with No VLANs

by Charlotte in Developers & APIs
‎02-10-2020 03:11 PM
1 Kudo
‎02-10-2020 03:11 PM
1 Kudo
The '/networks/{networkId}/appliancePorts' only works if VLANs are enabled. But it doesn't have DHCP information, just says what VLANs are on the MX ports. ... View more

Getting 'LAN Config' via API when VLANs are disabled

by Charlotte in Developers & APIs
‎02-04-2020 03:48 PM
‎02-04-2020 03:48 PM
Hello,   Is there an API endpoint to get the 'LAN Config' when VLANs are disabled?   The /networks/{networkId}/vlans endpoint does not work as VLANs are not enabled and I cannot see another endpoint that can get these settings.     ... View more
Labels:
  • Labels:
  • Dashboard API

Re: get_network_clients in usage what is the unit of sent and recv

by Charlotte in Developers & APIs
‎11-10-2019 04:51 PM
‎11-10-2019 04:51 PM
It doesn't specify in that API Endpoint but in "Get Network Client Usage History" it says usage data is in kilobytes. I would say it would be the same for this endpoint.   https://developer.cisco.com/meraki/api/#/python/api-endpoints/clients/get-network-client-usage-history   ... View more

Re: Bug with create organisation network API? Only works when a copy_from_n...

by Charlotte in Developers & APIs
‎11-10-2019 04:36 PM
‎11-10-2019 04:36 PM
Okay so I've done some more testing and there is something the API endpoint doesn't like about passing null (None) through as a value.   I removed the "copyFromNetworkId from the model all together and it worked and this is the data that was sent through to the endpoint. {"disableMyMerakiCom": false, "disableRemoteStatusPage": false, "name": "Example Network 5", "tags": "", "timeZone": "Australia/Brisbane", "type": "appliance switch wireless"}   I added it back in and this is the data sent to the endpoint which failed. {"copyFromNetworkId": null, "disableMyMerakiCom": false, "disableRemoteStatusPage": false, "name": "Example Network 7", "tags": "", "timeZone": "Australia/Brisbane", "type": "appliance switch wireless"}   And the reason the value is null is because the model sets all the values to None when it creates the class. So I guess the solution is to just not use the model. Is there anyone who knows anything more about how the models work and what I should be doing to get around this? ... View more

Re: Bug with create organisation network API? Only works when a copy_from_n...

by Charlotte in Developers & APIs
‎11-10-2019 03:30 PM
‎11-10-2019 03:30 PM
Thanks for the reply, I might have to look into the sdk and see what API endpoint it is using. The model defaults the field to None when you don't enter a value which I assume should work but I will try some other options. ... View more

Bug with create organisation network API? Only works when a copy_from_netwo...

by Charlotte in Developers & APIs
‎11-05-2019 09:19 PM
‎11-05-2019 09:19 PM
I am having issues creating a new network when I don't include a "copy_from_network_id". I am using the following code that I got from the Meraki developer site and it works when I specify the "copy_from_network_id" and it doesn't when I don't specify it.    collect = {} organization_id = 'my_org_id' collect['organization_id'] = organization_id create_organization_network = CreateOrganizationNetworkModel() create_organization_network.name = 'Long Island Office2' create_organization_network.mtype = 'appliance switch wireless' create_organization_network.tags = ' tag1 tag2 ' create_organization_network.time_zone = 'America/Los_Angeles' #create_organization_network.copy_from_network_id = 'network_id_to_copy' create_organization_network.disable_my_meraki_com = False create_organization_network.disable_remote_status_page = False collect['create_organization_network'] = create_organization_network result = meraki.networks.create_organization_network(collect)   I also had issues when I didn't specify the "disable_remote_status_page" field even though it says that is optional and the model defaults it to None. ... View more
Labels:
  • Labels:
  • Code Sample
  • Dashboard API
Kudos from
User Count
RodHoward
RodHoward
1
Jason-907
Jason-907
1
View All
Kudos given to
User Count
gdrapp
gdrapp
2
Jason-907
Jason-907
1
Nash
Nash
1
PhilipDAth
Kind of a big deal PhilipDAth
1
bly
bly
1
View All
My Top Kudoed Posts
Subject Kudos Views

Update Organization Appliance Vpn Third Party VPN Peers Limitations

Developers & APIs
1 586

Re: DHCP Reservations on Network with No VLANs

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