• Linux系统测试端口连通性的方法


    Linux系统测试端口连通性的方法

    有四种常用方法:
    1. telnet 方法
    2. wget 方法
    3. ssh 方法
    4. curl 方法

    下面一一介绍。

    1. telnet
    用法: telnet ip port
    (1)连接不存在的端口  
    telnet 1.1.1.1 8
        Trying 1.1.1.1...
        telnet: connect to address 1.1.1.1: Connection timed out
    (2)连接存在的端口
    telnet 1.1.1.1 8000
        Trying 1.1.1.1...
        Connected to 1.1.1.1.
        Escape character is '^]'.
        Connection closed by foreign host.

    2. wget
    用法: wget ip:port
    (1)连接不存在的端口
     wget 1.1.1.1:8  
        --2017-01-24 11:38:34-- http://1.1.1.1:8/   Connecting to 1.1.1.1:8... 
        failed: Connection timed out. Retrying.


    (2)连接存在的端口
     wget 1.1.1.1:8000
        --2017-01-24 11:39:03--  http://1.1.1.1:8000/
        Connecting to 1.1.1.1:8000... connected.
        HTTP request sent, awaiting response... 200 OK

    3. ssh
    用法: ssh -v -p port username@ip
    -v 调试模式(会打印日志)
    -p 指定端口
    这里没有给出测试,留给读者自己测试。


    4. curl
    用法: curl ip:port
    (1)连接不存在的端口
        没有结果。
    (2)连接存在的端口
        curl  1.1.1.1:8000
        <!DOCTYPE html>
        <html>
            <head>xxx</head>
            <body>
                ......
            </body>
        </html>

    ————————————————
    版权声明:本文为CSDN博主「iw1210」的原创文章,遵循CC 4.0 by-sa版权协议,转载请附上原文出处链接及本声明。
    原文链接:https://blog.csdn.net/iw1210/article/details/78847363

  • 相关阅读:
    linq查询结果指定列的两种方式
    MVC HTML辅助类常用方法记录
    如何获取google地图、baidu百度地图的坐标
    js解析Json字符串的方法
    EF 官方API
    sqlserver 计算 百分比
    js 判断js函数、变量是否存在
    JS 去字符串空格 总结
    sql 转换日期格式 只保留月份和日期
    C# json object互转工具
  • 原文地址:https://www.cnblogs.com/cnqfz/p/11416264.html
Copyright © 2020-2023  润新知