dongzhuange2625 2017-01-26 20:11
浏览 65
已采纳

遍历端口列表以连接Golang

Looking for a way to iterate through specific ports to check connectivity between hosts. For example

    conn, err := net.Dial("tcp", "golang.org:80")
if err != nil {
    // handle error

I am looking to make the input all be read from some type of file such as YAML or JSON, so it can pass in whether it is UDP or TCP port and go through the different port number specified in the file, return results of connection and terminate once it finishes checking the final port listed. I am new to GO and any help or suggestions would be greatly appreciated.

  • 写回答

1条回答 默认 最新

  • dpbvpgvrhwxen3222 2017-01-26 22:47
    关注

    You can use the os package to read from a file, and the json package to parse that into a data structure like a slice or map. Then iterate over that data structure to do the connectivity check.

    For example, if your file is named ports.json and looks like

    [
        {"port": 80, "protocol": "tcp"},
        {"port": 53, "protocol": "udp"}
    ]
    

    The code that you're looking for looks something like

    package main
    
    import (
        "encoding/json"
        "fmt"
        "net"
        "os"
    )
    
    type portDef struct {
        Port     int    `json:"port"`
        Protocol string `json:"protocol"`
    }
    
    func main() {
        host := "golang.org"
    
        file, err := os.Open("ports.json")
        if err != nil {
            panic(err)
        }
        defer file.Close()
    
        ports := []portDef{}
        err = json.NewDecoder(file).Decode(&ports)
        if err != nil {
            panic(err)
        }
    
        for _, p := range ports {
            _, err := net.Dial(p.Protocol, fmt.Sprint("%s:%d", host, p.Port))
            if err != nil {
                // handle error
            }
        }
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥20 使用Photon PUN2解决游戏得分同步的问题
  • ¥15 微带串馈天线阵列每个阵元宽度计算
  • ¥15 keil的map文件中Image component sizes各项意思
  • ¥30 BC260Y用MQTT向阿里云发布主题消息一直错误
  • ¥20 求个正点原子stm32f407开发版的贪吃蛇游戏
  • ¥15 划分vlan后,链路不通了?
  • ¥20 求各位懂行的人,注册表能不能看到usb使用得具体信息,干了什么,传输了什么数据
  • ¥15 Vue3 大型图片数据拖动排序
  • ¥15 Centos / PETGEM
  • ¥15 划分vlan后不通了