为了账号安全,请及时绑定邮箱和手机立即绑定

Python 备份cisco ios 设备 简例

标签:
Python

netmik库用来ssh,os库用来管理文件夹,datetime用于生成文件名
.

from netmiko import ConnectHandlerimport osimport datetime#define device typecisco = {    'device_type':'cisco_ios',    'ip':'',    'username':'admin',    'password':'ccie',    'secret':'ccie',}

.

#get ip address from a fileip_addr = open("G:\\PythonProject_netmiko\\ipList.txt")path ="G:\\PythonProject_netmiko\\"folder_v = os.listdir() #查看當前文件夾所有文件while True:    print("input your bak file folder name:")    folder_name = input()    if folder_name in folder_v:        print("there is a same name file already, please input again!")    else:        create_path = path + folder_name        os.mkdir(create_path)        print("Created folder:"+folder_name+" successfully!\n")        print("NOTE:the bakup file will be in: ",create_path)        breakfor ip in ip_addr:    cisco['ip'] = ip.strip('\n')    print('Connecting: '+ip.strip("\n")+"...")    net_connect = ConnectHandler(**cisco)    print("Connected successfully !")    net_connect.enable()    run_config = net_connect.send_command('show run')    save_name = ip.strip() + datetime.datetime.now().strftime("-%Y%m%d-%H_%M_%S")    print('Backing up: '+ip.strip("\n")+'...')    f = open(create_path +"\\"+save_name+".txt",'w')    f.write(run_config)    f.close()    print("Backed up successfully!")f = open(create_path +"\\0_IP-date-time.fileType",'w')#used to instructf.close()ip_addr.close()

.
For minding codes

print("\n\n\nBacked up all devices compeleted ! ")print("Please check the bakeup file in the follow folder: "+create_path)

.
Over~ Good luck to you !

点击查看更多内容
TA 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
  • 推荐
  • 评论
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消