Python语言 实现端口连通性检测
小标 2018-12-20 来源 : 阅读 1461 评论 0

摘要:本文主要向大家介绍了Python语言 实现端口连通性检测,通过具体的内容向大家展示,希望对大家学习Python语言有所帮助。

本文主要向大家介绍了Python语言 实现端口连通性检测,通过具体的内容向大家展示,希望对大家学习Python语言有所帮助。

# -*- coding: utf-8 -*-

#!/bin/env python

#AUTHOR:karl

#DATE:2018-1-19

#VERSION:V1.0

######################

import time

import os

import paramiko

import datetime

import sys

import MySQLdb

import threading 

#######################################

#首次插入数据是REG=0,更新数据REG为其他

#######################################

REG=1

private_key = paramiko.RSAKey.from_private_key_file('/home/appdeploy/.ssh/id_rsa')

def Data_mysql(info):

    try:

        string=info

        Pip=string.split(" ")[0]

        Sip=string.split(" ")[1]

        Dip=string.split(" ")[2]

        Port=string.split(" ")[3]

        Result=string.split(" ")[4].replace('\n','')

        con = MySQLdb.connect(host='localhost',user="root",passwd="******",db="zabbix",port=3306,charset="utf8")

        dt = datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S")

        cursor=con.cursor()

        valuse=(dt,Result,Pip,Sip,Dip,Port)

        if REG == 0:

            sql="""INSERT INTO Balant_telnet (create_time,telnet_result,telnet_physicalip,telnet_sourceip,telnet_desip,telnet_port) VALUES (%s,%s,%s,%s,%s,%s) """

            result=cursor.execute(sql,valuse)

        else:

            sql="""UPDATE Balant_telnet set create_time='%s',telnet_result=%s where telnet_physicalip='%s' and telnet_sourceip='%s' and telnet_desip='%s' and telnet_port='%s';""" %(valuse)

            result=cursor.execute(sql)

        cursor.close()

        con.commit()

        con.close()

    except MySQLdb.Error, e:

        print "Error %d: %s" % (e.args[0], e.args[1])

        sys.exit(1)

def check_port(value,content):

    ager={}

    ager[value]=content

    ssh=paramiko.SSHClient()

    try:

        ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())

        ssh.connect(value,port=22,username='appdeploy',pkey=private_key,timeout=5)

        cmd="sh /home/appdeploy/monitor.sh {value}".format(value=ager[ager.keys()[index]]) 

        stdin,stdout,stderr = ssh.exec_command(cmd)

        for file_d in stdout.readlines():  

            Data_mysql(file_d)

    except:

        result=cmd+','+'failed'+'\n'

    ssh.close()

###################################

# 对配置文件进行参数解析

###################################

def get_parameter():

    ager={}

    value=[]

    with open("monitor_config") as context:

        for line in context:

            while not "," in list(line):

                host=line.strip()[1:-1]

                value=[]

                break

            line=line.strip().split(",")

            value=value+line

            ager[str(host)]=value

    return ager

if __name__ == '__main__':

    threads=[]

    parm=get_parameter()

    files=range(len(parm.keys()))

    for index,content in parm.items():

        t = threading.Thread(target=check_port,args=(index,content))

        threads.append(t)

    for index in files:

        threads[index].start()

    for index in files:

        threads[index].join()


配置文件:

[10.117.194.23]

10.117.194.77,10.116.41.82,9920

10.117.194.77,10.116.47.12,1080

10.117.194.77,10.116.45.56,1081

[10.117.194.24]

10.117.194.78,10.116.41.82,9920

10.117.194.78,10.116.47.12,1080

10.117.194.78,10.116.45.56,1081

10.117.194.78,10.116.145.33,8001

【】里面的IP 是物理IP,下面分别对应着应用的源IP,目标IP和测试端口号


agent 直接用shell 实现.


数据库中效果 

在zabbix 中 加入对表中数据的监控。在zabbix 的mysql 模板中加入Balant 的监控项,也可以加入图像,我们最后的结果是要展示在grafana 上进行展示。为1就说明应用端口是正常运行。

本文由职坐标整理并发布,希望对同学们学习Python有所帮助,更多内容请关注职坐标编程语言Python频道!

本文由 @小标 发布于职坐标。未经许可,禁止转载。
喜欢 | 1 不喜欢 | 0
看完这篇文章有何感觉?已经有1人表态,100%的人喜欢 快给朋友分享吧~
评论(0)
后参与评论

您输入的评论内容中包含违禁敏感词

我知道了

助您圆梦职场 匹配合适岗位
验证码手机号,获得海同独家IT培训资料
选择就业方向:
人工智能物联网
大数据开发/分析
人工智能Python
Java全栈开发
WEB前端+H5

请输入正确的手机号码

请输入正确的验证码

获取验证码

您今天的短信下发次数太多了,明天再试试吧!

提交

我们会在第一时间安排职业规划师联系您!

您也可以联系我们的职业规划师咨询:

小职老师的微信号:z_zhizuobiao
小职老师的微信号:z_zhizuobiao

版权所有 职坐标-一站式IT培训就业服务领导者 沪ICP备13042190号-4
上海海同信息科技有限公司 Copyright ©2015 www.zhizuobiao.com,All Rights Reserved.
 沪公网安备 31011502005948号    

©2015 www.zhizuobiao.com All Rights Reserved

208小时内训课程