为了账号安全,请及时绑定邮箱和手机立即绑定

golang 检查 tcp 端口打开

golang 检查 tcp 端口打开

Go
POPMUISE 2023-06-19 17:09:38
我需要检查远程地址是否打开了特定的 TCP 端口。为此,我选择使用 golang。到目前为止,这是我的尝试:func raw_connect(host string, ports []string) {  for _, port := range ports {     timeout := time.Second     conn, err := net.DialTimeout("tcp", host + ":" + port, timeout)     if err != nil {        _, err_msg := err.Error()[0], err.Error()[5:]        fmt.Println(err_msg)     } else {        msg, _, err := bufio.NewReader(conn).ReadLine()        if err != nil {           if err == io.EOF {              fmt.Print(host + " " + port + " - Open!\n")           }        } else {           fmt.Print(host + " " + port + " - " + string(msg))        }        conn.Close()     }   } }当应用程序(例如 SSH)首先返回一个字符串时,这对于 TCP 端口工作得很好,我读取它并立即打印它。但是,当 TCP 以上的应用程序首先等待来自客户端的命令(例如 HTTP)时,就会出现超时 (if err == io.EOF子句)。这个超时时间很长。我需要立即知道端口是否打开。是否有更适合此目的的技术?
查看完整描述

2 回答

?
桃花长相依

TA贡献1860条经验 获得超8个赞

要检查端口,您可以检查连接是否成功。例如:


func raw_connect(host string, ports []string) {

    for _, port := range ports {

        timeout := time.Second

        conn, err := net.DialTimeout("tcp", net.JoinHostPort(host, port), timeout)

        if err != nil {

            fmt.Println("Connecting error:", err)

        }

        if conn != nil {

            defer conn.Close()

            fmt.Println("Opened", net.JoinHostPort(host, port))

        }

    }

}


查看完整回答
反对 回复 2023-06-19
?
30秒到达战场

TA贡献1828条经验 获得超6个赞

检查多个端口示例


func tcpGather(ip string, ports []string) map[string]string {

    // check emqx 1883, 8083 port


    results := make(map[string]string)

    for _, port := range ports {

        address := net.JoinHostPort(ip, port)

        // 3 second timeout

        conn, err := net.DialTimeout("tcp", address, 3*time.Second)

        if err != nil {

            results[port] = "failed"

            // todo log handler

        } else {

            if conn != nil {

                results[port] = "success"

                _ = conn.Close()

            } else {

                results[port] = "failed"

            }

        }

    }

    return results

}


查看完整回答
反对 回复 2023-06-19
  • 2 回答
  • 0 关注
  • 198 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信