Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

Python backs up H3C switch configuration through paramiko module

2025-04-05 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Network Security >

Share

Shulou(Shulou.com)06/01 Report--

1. Process ideas before backing up the configuration First save switch running config to starup config switch batch backup switch configuration via tftp backup configuration file (save switch IP through excel file) nameipSUZ-SW-10110.X.X.1SUZ-SW-10210.X.X.2SUZ-SW-10310.X.X.3SUZ-SW-10410.X.X.42.python code import xlrdimport paramikoimport timedef ssh_SW (name,ip): now = time.strftime ("% Y%m%d" Time.localtime (time.time ()) trans = paramiko.Transport ((ip, 22)) trans.connect (username='admin', password='passwd') ssh = paramiko.SSHClient () ssh._transport = trans stdin, stdout, stderr = ssh.exec_command ('save') print (stdout.read () decode () stdin, stdout Stderr = ssh.exec_command ('tftp 10.x.x.100 put startup.cfg' + name +'-'+ now + '.cfg') print (stdout.read () .decode ()) trans.close () def main (): workbook = xlrd.open_workbook ('. / sw.xlsx') sheet = workbook.sheet_by_name ('Sheet1') count = sheet.nrows for i in range (count-1): I = I + 1 rows = sheet.row_values (I) name = rows [0] ip = rows [1] ssh_SW (name Ip) if _ _ name__== "_ _ main__": main () 3. The script is simple and needs to be improved.

For more information on paramiko, please see the link below.

Https://blog.csdn.net/appke846/article/details/80514024

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Network Security

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report