码迷,mamicode.com
首页 > 微信 > 详细

Python写一个网络监控小程序

时间:2019-06-28 21:12:44      阅读:193      评论:0      收藏:0      [点我收藏+]

标签:pre   with open   nod   监控   监控端口   etl   出现   coding   local   

原理是监控端口的形式,持续进行telnet判断,若端口无法连接说明网络出现异常,则进行打印到本地文件

# -*- coding: utf-8 -*
import telnetlib,time,os

Path = os.getcwd()
file_name = ‘ping_log.txt‘
ping_log_path = os.path.join(Path,file_name)

if not os.path.exists(ping_log_path):
    os.mknod(file_name)

while True:
    try:
        tn=telnetlib.Telnet(‘192.168.2.128‘,80)
    except Exception as e:
        with open(ping_log_path,‘a‘,encoding=‘utf-8‘) as f:
            f.write(time.strftime("%b %d %Y %H:%M:%S", time.localtime()) + ‘网络异常\n‘)
    else:
        continue

    time.sleep(1)

Python写一个网络监控小程序

标签:pre   with open   nod   监控   监控端口   etl   出现   coding   local   

原文地址:https://blog.51cto.com/swiki/2415135

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!