Golang检查TCP端口打开

时间:2019-05-28 06:27:30

标签: go networking

我需要检查远程地址是否打开了特定的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子句)。

此超时时间很长。我需要立即知道端口是否打开。

是否有更适合此目的的技术?

非常感谢!

1 个答案:

答案 0 :(得分:2)

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

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))
        }
    }
}