python检测远程服务器tcp端口的代码

python检测远程服务器tcp端口的代码,第1张

概述python检测远程服务器tcp端口代码

下面是内存溢出 jb51.cc 通过网络收集整理的代码片段。

内存溢出小编现在分享给大家,也给大家做个参考。

#!/usr/bin/env python #Coding:utf-8 #filename:tcp.py    ''' author: gavingeng date:   2011-12-14 09:35:59  ''' import socket import sys    norMAL=0 ERROR=1 TIMEOUT=5    def Ping(ip,port,timeout=TIMEOUT):     try:         cs=socket.socket(socket.AF_INET,socket.soCK_STREAM)         address=(str(ip),int(port))         status = cs.connect_ex((address))         cs.settimeout(timeout)         #this status is returnback from tcpserver         if status != norMAL :             print ERROR         else:             print norMAL         except Exception,e:         print ERROR         print "error:%s" %e         return ERROR            return norMAL    if __name__=='__main__':     if len(sys.argv) < 3 :         print ur'请按照如下格式使用: ./tcp.py www.shareJs.com 80'         sys.exit(1)            ip = sys.argv[1]     port = sys.argv[2]     try:         timeout = sys.argv[3]     except IndexError,e:         timeout=TIMEOUT     Ping(ip,timeout)  

以上是内存溢出(jb51.cc)为你收集整理的全部代码内容,希望文章能够帮你解决所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

总结

以上是内存溢出为你收集整理的python检测远程服务器tcp端口的代码全部内容,希望文章能够帮你解决python检测远程服务器tcp端口的代码所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1199041.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-04
下一篇 2022-06-04

发表评论

登录后才能评论

评论列表(0条)

保存