douge3830 2019-05-28 06:27
浏览 1186
已采纳

Golang检查TCP端口打开

I need to check if remote address has specific TCP ports open or not. I have chosen to use golang for this purpose. Here is my attempt so far:

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!
")
           }
        } else {
           fmt.Print(host + " " + port + " - " + string(msg))
        }
        conn.Close()
     }
   }
 }

This is working just fine for TCP port when application (such as SSH) returns first a string, I read it and print it with no time.

However, when the application above TCP is waiting for command from the client first (such as HTTP), there is a timeout (if err == io.EOF clause).

This timeout is quite long. I would need to know immediately if the port is open or not.

Is there a more suitable technique for this purpose ?

Many thanks!

  • 写回答

1条回答 默认 最新

  • duan19805 2019-05-28 07:11
    关注

    To check the port, you can check if the connection was successful. For example:

    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))
            }
        }
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 执行 virtuoso 命令后,界面没有,cadence 启动不起来
  • ¥50 comfyui下连接animatediff节点生成视频质量非常差的原因
  • ¥20 有关区间dp的问题求解
  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置
  • ¥15 有没有研究水声通信方面的帮我改俩matlab代码
  • ¥15 ubuntu子系统密码忘记
  • ¥15 保护模式-系统加载-段寄存器
  • ¥15 电脑桌面设定一个区域禁止鼠标操作
  • ¥15 求NPF226060磁芯的详细资料