Python写一个网络监控小程序

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python写一个网络监控小程序相关的知识,希望对你有一定的参考价值。

原理是监控端口的形式,持续进行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写一个网络监控小程序的主要内容,如果未能解决你的问题,请参考以下文章

用python第三方库写一个小程序

写一个python的服务监控程序

程序员深夜用Python跑神经网络,只为用中二动作关掉台灯!

Python网络爬虫入门,带你领略Python爬虫的乐趣!

python 网络编程的一些基础小知识

python速成第二篇(小爬虫+文件操作+socket网络通信小例子+oop编程)