Jan 14 2025
9:28 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Jan 14 2025
9:28 AM
Configure SD-WAN Uplink Statistics target via API
Hi All,
I need to add a target to the SD-WAN Uplink Statistics on multiple networks, unfortunately I was not able to find an API to configure on all my networks via a script.
Just to be clear, I'm talking about this configuration:
I don't know if it's important but I'm planning to do it on the Chinese Dashboard as none of the network there have it configured (I will not configure 8.8.8.8).
Thanks a lot,
Gianluca
Solved! Go to solution.
1 Accepted Solution
Jan 14 2025
1:05 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 Replies 3
Jan 14 2025
1:05 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Jan 14 2025
1:05 PM
I can't see any API for this either.
Jan 14 2025
1:05 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Jan 15 2025
12:45 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Jan 15 2025
12:45 PM
Hello!
You need to use this:
To configure on all networks, make for loop in python.
network_id = [A, B, C]
for x in network_id:
response = dashboard.appliance.updateNetworkApplianceConnectivityMonitoringDestinations(
x,destinations = [
{
"ip": "8.8.8.8",
"description": "Google-1",
"default": False
}
])

Get notified when there are additional replies to this discussion.