- 지멘스-액센추어, 제조업 혁신 위한 공동 그룹 출범··· "전문가 7,000명 고용"
- Potential Nvidia chip shortage looms as Chinese customers rush to beat US sales ban
- These tech markets are taking the brunt of the new US tariffs - what that means for you
- JALを救ったSAKURAプロジェクト:50年ぶりの改革と復活の全貌
- IBM Cloud speeds AI workloads with Intel Gaudi 3 accelerators
N9K Remote Python
original Link # https://github.com/datacenter/nexus9000 # Copyright (C) 2013 Cisco Systems Inc. # All rights reserved import sys sys.path.append(“./cisco”) sys.path.append(“./utils”) from nxapi_utils import NXAPITransport from cisco.interface import Interface ################### # NXAPI init block ################### target_url = “http://10.30.14.8/ins” username = “admin” password = “admin” NXAPITransport.init(target_url=target_url, username=username, password=password) ################### ################### # cli/clip/clid are changed a bit, but largely the same ################### print NXAPITransport.cli(“show version“) NXAPITransport.clip(“show interface brief“) NXAPITransport.clic(“conf t ;interface eth4/1 ;no shut“) print NXAPITransport.clid(“show version“) ################### #…
Read More