douyun8674 2017-01-16 05:47
浏览 279
已采纳

在Golang中获取公共IP

How do we get public IP in golang? Method req.Header.Get("X-Forwarded-For") returns array of IPs. How do we identify which one is public and which on internal? Is there any other method to fetch public(external) IP?

  • 写回答

2条回答 默认 最新

  • dousaoxiancy199896 2017-01-16 06:26
    关注

    The following IP blocks are reserved for private IP addresses.

    Class        Starting IPAddress    Ending IP Address    # of Hosts
    A            10.0.0.0              10.255.255.255       16,777,216
    B            172.16.0.0            172.31.255.255       1,048,576
    C            192.168.0.0           192.168.255.255      65,536
    Link-local-u 169.254.0.0           169.254.255.255      65,536
    Link-local-m 224.0.0.0             224.0.0.255          256
    Local        127.0.0.0             127.255.255.255      16777216
    

    You may write a function that checks for if the ip comes under these

    Here is an attempt to do the same,the code below is not handling ipv6 please add if needed

    func IsPublicIP(IP net.IP) bool {
        if IP.IsLoopback() || IP.IsLinkLocalMulticast() || IP.IsLinkLocalUnicast() {
            return false
        }
        if ip4 := IP.To4(); ip4 != nil {
            switch {
            case ip4[0] == 10:
                return false
            case ip4[0] == 172 && ip4[1] >= 16 && ip4[1] <= 31:
                return false
            case ip4[0] == 192 && ip4[1] == 168:
                return false
            default:
                return true
            }
        }
        return false
    }
    

    Here is play link

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 metadata提取的PDF元数据,如何转换为一个Excel
  • ¥15 关于arduino编程toCharArray()函数的使用
  • ¥100 vc++混合CEF采用CLR方式编译报错
  • ¥15 coze 的插件输入飞书多维表格 app_token 后一直显示错误,如何解决?
  • ¥15 vite+vue3+plyr播放本地public文件夹下视频无法加载
  • ¥15 c#逐行读取txt文本,但是每一行里面数据之间空格数量不同
  • ¥50 如何openEuler 22.03上安装配置drbd
  • ¥20 ING91680C BLE5.3 芯片怎么实现串口收发数据
  • ¥15 无线连接树莓派,无法执行update,如何解决?(相关搜索:软件下载)
  • ¥15 Windows11, backspace, enter, space键失灵