【Python】Python 2 测试网络连通性脚本

文章目录

    • 前言
    • [1. 命令行传参](#1. 命令行传参)
    • [2. 代码](#2. 代码)

前言

最近在只有python2的服务器上部署服务,不能用三方类库,这里出于好奇心学习下python。这里简单做个脚本,实现了检验网络连通性的功能(类似于curl)。

1. 命令行传参

使用命令行的目的是可以一次性检验多个url的连通性,比如上线前对接多个三方接口可以用上。

bash 复制代码
python test_socket.py -u "{'https://www.baidu.com':'120.232.145.144','ws://localhost:8080/ws':'127.0.0.1','wss://hello/ws':''}" 

参数解释

json 复制代码
{
	'https://www.baidu.com':'120.232.145.144', // 期待域名解析为120.232.145.144 否则报错
	'ws://localhost:8080/ws':'127.0.0.1',  // 期待域名解析为127.0.0.1 否则报错
	'wss://hello/ws':''  // 无期望域名解析的ip,保证连通性即可
}

2. 代码

python 复制代码
# -*- coding: utf-8 -*-

# coding:utf-8
import sys
import getopt
import socket
import urlparse
import re


def get_hostname(input_url):
    if len(input_url) == 0:
        return 'url为空'
    hostname = urlparse.urlparse(input_url).hostname
    if hostname is None:
        return '域名解析为空'
    try:
        return socket.gethostbyname(hostname)
    except socket.error:
        return '域名解析异常'


def get_port(input_url):
    if len(input_url) == 0:
        return 'url为空'
    # url 上读端口号
    input_port = urlparse.urlparse(input_url).port
    if input_port:
        return input_port
    # url 上读不到端口号用协议类型区分
    scheme = urlparse.urlparse(input_url).scheme
    if scheme == 'https' or scheme == 'wss':
        return 443
    if scheme == 'http' or 'ws':
        return 80


def check_connect(input_ip, input_port):
    # 设置超时时间为3秒钟
    socket.setdefaulttimeout(3)
    s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
    try:
        s.connect((input_ip, input_port))
        return '可联通'
    except socket.timeout:
        return '无法联通, 超时'
    except Exception as e:
        return '无法联通, 异常:' + str(e)
    finally:
        s.close()


# 从命令行中读取参数
opts, argv = getopt.getopt(sys.argv[1:], 'u:')
ops = dict(opts)
url_ip_dict = eval(ops.get('-u'))

# 循环参数内容进行连通性检测
print "-"*150
printTemplate = "%-60s %-20s %-20s %-50s"
print printTemplate % ('url', 'ip', 'port', 'result')
print "-"*150
for input_url, input_ip in url_ip_dict.iteritems():
    # 域名解析
    actual_ip = get_hostname(input_url)
    # 未能解析出ip为异常
    if not re.match(r'\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}', input_ip):
        print printTemplate % (input_url, '\\', '\\', actual_ip)
        continue

    # 解析出ip, 且入参存在ip 则校验是否是解析出来的ip
    if input_ip:
        if actual_ip != input_ip:
            print printTemplate % (input_url, input_ip, '\\', '未能联通, 实际解析的ip为' + actual_ip)
            continue

    port = get_port(input_url)
    # 连通性测试
    result = check_connect(actual_ip, port)
    print printTemplate % (input_url, actual_ip, port, result)
相关推荐
F_D_Z2 分钟前
【解决办法】网络训练报错AttributeError: module ‘jax.core‘ has no attribute ‘Shape‘.
开发语言·python·jax
前端伪大叔15 分钟前
第29篇:99% 的量化新手死在挂单上:Freqtrade 隐藏技能揭秘
后端·python·github
xuchaoxin137515 分钟前
cdn节点代理的副作用@fail2ban对接cdn封锁恶意请求ip@fail2ban封锁ip有效性问题
运维·网络·cdn·cloudflare
西幻凌云20 分钟前
了解计算机网络的“物理根基”——物理层与数据链路层
网络·网络协议·计算机网络·数据链路层·物理层
韩曙亮1 小时前
【人工智能】AI 人工智能 技术 学习路径分析 ① ( Python语言 -> 微积分 / 概率论 / 线性代数 -> 机器学习 )
人工智能·python·学习·数学·机器学习·ai·微积分
喵叔哟2 小时前
6.配置管理详解
后端·python·flask
曾经的三心草2 小时前
基于正倒排索引的Java文档搜索引擎3-实现Index类-实现搜索模块-实现DocSearcher类
java·python·搜索引擎
MOMO陌染2 小时前
Python 饼图入门:3 行代码展示数据占比
后端·python
vvoennvv3 小时前
【Python TensorFlow】 TCN-GRU时间序列卷积门控循环神经网络时序预测算法(附代码)
python·rnn·神经网络·机器学习·gru·tensorflow·tcn
白狐_7983 小时前
网络基础核心问题深度解析:从IP/MAC到IPv6与路由配置
网络·tcp/ip·macos