May 5 2022
4:56 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
May 5 2022
4:56 AM
Local Internet Breakout - VPN Exclusion Rules
Is there an API call to get/set a networks VPN exclusion rules? I've been searching everywhere I can find, but I cannot seem to locate anything.
I was planning on deploying a longer list of subnets to many locations and it would be much easier if it could be automated.
3 Replies 3
Mar 8 2024
5:21 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Mar 8 2024
5:21 AM
Yes, these calls have been added.
GET https://api.meraki.com/api/v1/organizations/:organizationId/appliance/trafficShaping/vpnExclusions/byNetwork
and
PUT https://api.meraki.com/api/v1/networks/:networkId/appliance/trafficShaping/vpnExclusions
With this body:
{
"custom": [
{
"protocol": "<string>",
"destination": "<string>",
"port": "<string>"
},
{
"protocol": "<string>",
"destination": "<string>",
"port": "<string>"
}
],
"majorApplications": [
{
"id": "<string>",
"name": "<string>"
},
{
"id": "<string>",
"name": "<string>"
}
]
}
For some reason I cannot find this call at https://developer.cisco.com/meraki/api-v1/ , only in the postman collection.
Greetings,
Marvin
Apr 30 2024
7:23 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Apr 30 2024
7:23 AM
So there is no way to GET the vpnExclusions for a single network?
Jul 30 2024
4:33 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Jul 30 2024
4:33 PM
I am using this:
'organizations/{}/appliance/trafficShaping/vpnExclusions/byNetwork?networkIds[]=L_12345xx'

Get notified when there are additional replies to this discussion.