全部博文(921)
发布时间:2013-08-17 07:09:03
参考http://blog.csdn.net/csapr1987/article/details/7633239简单模式from hashlib import md5 def md5_file(name): m = md5() a_file = open(name, 'rb') #需要使用二进制格式读取文件内容.........【阅读全文】
发布时间:2013-08-16 23:37:27
#!/usr/bin/env pythonimport paramikoimport timeip_list=('ip1','ip2')log_file=open('mpwdok.log','w+')log_file1=open('mpwderr.log','w+')for ip in ip_list: try: &nbs.........【阅读全文】
发布时间:2013-08-16 23:09:16
What I've tried:invoke_shell() then channel.send su then send the password resulted in not being rootinvoke_shell() then channel.exec_command resulted in Channel Closed error_transport.open_session() then channel.exec_command resulted in not being in rootinvoke_shell() .........【阅读全文】
发布时间:2013-08-16 15:29:17
最近在学习python,自己在写一个自动化运维平台,所以接触到了这个模块,有2种方法;一种是直接用密码来登录的,具体代码如下:ssh = paramiko.SSHClient()ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())ssh.connect(hostname, port, username, password)stdi.........【阅读全文】
发布时间:2013-08-16 11:43:51
因为python脚本可以直接用文本工具打开修改,所以没有设置参数。使用的时候直接修改掉main中的连接下载参数即可。 修改一下,可以用来备份网站上的图片,数据库什么的。#!/usr/bin/python#coding=gbk''' ftp自动下载、自动上传脚本,可以递归目录.........【阅读全文】