欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

python 定时任务去检测服务器端口是否通的实例

程序员文章站 2022-06-14 12:14:46
如下所示: import socket import threading import time def testconn( host , port...

如下所示:

import socket
import threading
import time
 
def testconn( host , port ):
  sk = socket.socket(socket.af_inet, socket.sock_stream)
  sk.settimeout(1)
  try:
    sk.connect((host,port))
    return host+" server is "+str(port)+" connect"
  except exception:
    return host+" server is "+str(port)+" not connect!"
  sk.close()
 
class test(threading.thread):
  def __init__(self):
    pass
  def test(self):
    print testconn('172.31.32.3',22)
  def run(self):
    while true:
      #print time.strftime('%y-%m-%d %h:%m:%s')
      self.test()
      time.sleep(1)
a=test()
a.run()

以上这篇python 定时任务去检测服务器端口是否通的实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。