代码语言
.
CSharp
.
JS
Java
Asp.Net
C
MSSQL
PHP
Css
PLSQL
Python
Shell
EBS
ASP
Perl
ObjC
VB.Net
VBS
MYSQL
GO
Delphi
AS
DB2
Domino
Rails
ActionScript
Scala
代码分类
文件
系统
字符串
数据库
网络相关
图形/GUI
多媒体
算法
游戏
Jquery
Extjs
Android
HTML5
菜单
网页交互
WinForm
控件
企业应用
安全与加密
脚本/批处理
开放平台
其它
【
Python
】
自动备份交换机配置
作者:
彧福
/ 发布于
2015/5/11
/
782
#!/usr/bin/env python #coding:utf-8 """ Author: Edward.Zhou -- <edgeman_03@163.com> Purpose: 批量自动备份思科交换机配置文件 Created: 2015/5/8 """ import sys import os import telnetlib import time import threading import datetime #Use for loop to telnet into each routers and execute commands class Bakconf(threading.Thread): def __init__(self,host,username,password): threading.Thread.__init__(self) self.host=host self.username=username self.password=password def run(self): try: tn = telnetlib.Telnet(self.host,port=23,timeout=10) except: print "Can't connection %s"% self.host return tn.set_debuglevel(5) tn.write(self.username +b"\n") tn.write("en\n") tn.write(self.password + b"\n") tn.write("copy startup-config tftp:\n") tn.write(tftpser + b"\n") tn.write(b"\n") time.sleep(1) tn.write("exit\n") tn.close() def main(): username = "**********" password = "**********" global tftpser tftpser="192.168.103.71" for host in open(r'sw.txt').readlines(): dsthost = host.strip('\n') bakconf=Bakconf(dsthost, username, password) bakconf.start() #Backup switch config and tar time.sleep(1) dtime=datetime.datetime.now().strftime("%Y%m%d%H%M%S") os.popen('tar -cjf /backup/cisco/switch-'+dtime+'.tar.bz2 '+ '/tftproot') os.popen('rm -fr /tftproot/*') os.popen('find /backup/cisco/ -mtime +90 -exec rm {} \;') if __name__=="__main__": main() 2. [文件] cisco_deploy_backup1.py ~ 2KB 下载(0) ? 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 #!/usr/bin/env python #coding:utf-8 """ Author: Edward.Zhou -- <edgeman_03@163.com> Purpose: 批量自动备份思科交换机配置文件 Created: 2015/5/8 """ import sys import os import time import threading import datetime import ciscolib #Use for loop to telnet into each routers and execute commands class Bakconf(threading.Thread): def __init__(self,host,username,password,tftpserver): threading.Thread.__init__(self) self.host=host self.username=username self.password=password self.tftpserver=tftpserver def run(self): tn = ciscolib.Device(self.host, self.username, self.password) try: tn.connect(self.host) except ciscolib.AuthenticationError as e: print "Couldn't connect to %s:%s" % (self.host, e.value) except Exception as e: print "Couldn't connect to %s:%s" % (self.host, str(e)) tn.cmd("copy startup-config tftp:") tn.cmd(self.tftpserver) tn.cmd("\n") time.sleep(1) tn.cmd("exit") tn.disconnect() def main(): username = "**********" password = "**********" global tftpser tftpser="192.168.103.71" for host in open(r'sw.txt').readlines(): dsthost = host.strip('\n') bakconf=Bakconf(dsthost, username, password, tftpser) bakconf.start() #Backup switch config and tar time.sleep(1) dtime=datetime.datetime.now().strftime("%Y%m%d%H%M%S") os.popen('tar -cjf /backup/cisco/switch-'+dtime+'.tar.bz2 '+ '/tftproot') os.popen('rm -fr /tftproot/*') os.popen('find /backup/cisco/ -mtime +90 -exec rm {} \;') if __name__=="__main__": main() from multiprocessing import Process import telnetlib import time import datetime import os import sys def bakConf(host, username, password, tftpserver): try: tn = telnetlib.Telnet(host,port=23,timeout=10) except: print "Can't connection %s"% host return tn.set_debuglevel(5) tn.write(username +b"\n") tn.write("en\n") tn.write(password + b"\n") tn.write("copy startup-config tftp:\n") tn.write(tftpserver + b"\n") tn.write(b"\n") time.sleep(1) tn.write("exit\n") tn.close() def main(): username = "**********" password = "**********" global tftpser tftpser="192.168.103.71" for host in open(r'sw.txt').readlines(): dsthost = host.strip('\n') p = Process(target= bakConf, args= (dsthost, username, password, tftpser) ) p.start() p.join() #Backup switch config and tar time.sleep(1) dtime=datetime.datetime.now().strftime("%Y%m%d%H%M%S") os.popen('tar -cjf /backup/cisco/switch-'+dtime+'.tar.bz2 '+ '/tftproot') os.popen('rm -fr /tftproot/*') os.popen('find /backup/cisco/ -mtime +90 -exec rm {} \;') if __name__ == '__main__': main()
试试其它关键字
交换机配置
同语言下
.
比较两个图片的相似度
.
过urllib2获取带有中文参数的url内容
.
不下载获取远程图片的宽度和高度及文件大小
.
通过qrcode库生成二维码
.
通过httplib发送GET和POST请求
.
Django下解决小文件下载
.
遍历windows的所有窗口并输出窗口标题
.
根据窗口标题调用窗口
.
python 抓取搜狗指定公众号
.
pandas读取指定列
可能有用的
.
实现测量程序运行时间及cpu使用时间
.
C#实现的html内容截取
.
List 切割成几份 工具类
.
SQL查询 多列合并成一行用逗号隔开
.
一行一行读取txt的内容
.
C#动态修改文件夹名称(FSO实现,不移动文件)
.
c# 移动文件或文件夹
.
c#图片添加水印
.
Java PDF转换成图片并输出给前台展示
.
网站后台修改图片尺寸代码
彧福
贡献的其它代码
(
11
)
.
数字的加减乘除
.
获取json数据所有的节点路径
.
使用xlrd读取excel并返回json
.
NxN方块排序,可自动运行
.
双人贪吃蛇游戏
.
实现单链表
.
打电话
.
广播实例
.
统计多台linux的CPU使用率
.
wifi 掉线自动重连
Copyright © 2004 - 2024 dezai.cn. All Rights Reserved
站长博客
粤ICP备13059550号-3