summaryrefslogtreecommitdiffstats
path: root/docs/labs/lab05-device-management/set_mgmt_ip.py
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2023-05-11 09:04:53 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2023-05-13 09:34:21 +0000
commit47553c43d71b7b1144f912ab9679f5b60e858fa2 (patch)
tree08378beaeeea8f9bb2686d3037c7b6f5062bb948 /docs/labs/lab05-device-management/set_mgmt_ip.py
parentInitial commit. (diff)
downloadcvprac-upstream/1.3.1+dfsg.tar.xz
cvprac-upstream/1.3.1+dfsg.zip
Adding upstream version 1.3.1+dfsg.upstream/1.3.1+dfsg
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'docs/labs/lab05-device-management/set_mgmt_ip.py')
-rw-r--r--docs/labs/lab05-device-management/set_mgmt_ip.py34
1 files changed, 34 insertions, 0 deletions
diff --git a/docs/labs/lab05-device-management/set_mgmt_ip.py b/docs/labs/lab05-device-management/set_mgmt_ip.py
new file mode 100644
index 0000000..f0c33f1
--- /dev/null
+++ b/docs/labs/lab05-device-management/set_mgmt_ip.py
@@ -0,0 +1,34 @@
+# Copyright (c) 2021 Arista Networks, Inc.
+# Use of this source code is governed by the Apache License 2.0
+# that can be found in the COPYING file.
+
+from cvprac.cvp_client import CvpClient
+import ssl
+ssl._create_default_https_context = ssl._create_unverified_context
+import requests.packages.urllib3
+requests.packages.urllib3.disable_warnings()
+
+# Create connection to CloudVision
+clnt = CvpClient()
+clnt.connect(['cvp1'],'username', 'password')
+
+
+data = {"data":[{"info":"Device IP Address Changed",
+ "infoPreview":"<b> Device IP Address Changed to 10.83.13.214</b>",
+ "action":"associate",
+ "nodeType":"ipaddress",
+ "nodeId":"",
+ "toId":"50:08:00:a7:ca:c3", # MAC of the device
+ "fromId":"",
+ "nodeName":"",
+ "fromName":"",
+ "toName":"tp-avd-leaf1", # hostname
+ "toIdType":"netelement",
+ "nodeIpAddress":"10.83.13.219", # the temporary management IP Address
+ "nodeTargetIpAddress":"10.83.13.214" # the final management IP address
+ }
+ ]
+ }
+clnt.api._add_temp_action(data)
+
+clnt.api._save_topology_v2([])