01-14-2025 09:28 AM
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.
01-14-2025 01:05 PM
01-14-2025 01:05 PM
I can't see any API for this either.
01-14-2025 01:05 PM
01-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
}
])
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide