python检测主机的连通性并记录到文件的实例
更新时间:2018年06月21日 10:18:42 作者:秋雪夜雨寒
今天小编就为大家分享一篇python检测主机的连通性并记录到文件的实例,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧
目录结构
ping_test/ ├── bin │ ├── ping.py │ ├── ping_run.sh.origin │ └── ping.sh ├── conf │ └── ip.lst ├── logs │ ├── 10.10.37.196_2017-06-28_ping.log │ └── 10.10.62.229_2017-06-28_ping.log └── README.md
代码
cat bin/ping.py
#!/usr/bin/env python
#-*- coding: utf-8
from subprocess import Popen, PIPE
import shlex
import time
import datetime
import sys, os
basedir = os.path.dirname( os.path.dirname( os.path.abspath(__file__) ) )
cnf = os.path.join( basedir, 'conf', 'ip.lst' )
# print cnf
while True:
today = datetime.datetime.strftime( datetime.datetime.now(), "%Y-%m-%d" )
with open(cnf) as f:
for host in f:
host = host.strip()
cmd = 'sh ping.sh %s' % host
args = shlex.split(cmd)
p = Popen(args, stdout=PIPE, stderr=PIPE)
stdout, stderr = p.communicate()
filename = host + '_%s_ping.log' % today
logfile = os.path.join(basedir, 'logs', filename)
# print logfile
if stdout:
with open(logfile, 'ab') as fd:
fd.write( stdout )
fd.flush()
elif stderr:
print('ping lost')
time.sleep(1)
cat ping.sh
#!/bin/bash
HOST=$1
ping -c 1 ${HOST} | grep 'bytes from' | awk '{print $0"\t" strftime("%T %F", systime())}'
以上这篇python检测主机的连通性并记录到文件的实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持脚本之家。
相关文章
Python协程操作之gevent(yield阻塞,greenlet),协程实现多任务(有规律的交替协作执行)用法详解
这篇文章主要介绍了Python协程操作之gevent(yield阻塞,greenlet),协程实现多任务(有规律的交替协作执行)用法,结合实例形式较为详细的分析了协程的功能、原理及gevent、greenlet实现协程,以及协程实现多任务相关操作技巧,需要的朋友可以参考下2019-10-10
python3 设置多进程名称并在ps命令中可见(Centos7 系统)
setproctitle 是一个 Python 模块,用于设置进程标题(process title),通过设置进程标题,可以让进程在系统级的进程管理工具中展示自定义的名称,方便用户查看和管理进程,本文介绍python3 设置多进程名称并在ps命令中可见,感兴趣的朋友一起看看吧2024-03-03


最新评论