mmdblookup Author: chenryn Available: 8.24+ Purpose MaxMindDB is the new file format for storing information about IP addresses in a highly optimized, flexible database format. GeoIP2 Databases are available in the MaxMind DB format. ...
origin: org.kohsuke/geoip LookupService.getLocation(...) public Location getLocation(String str) { if (dnsService == 0) { InetAddress addr; try { addr = InetAddress.getByName(str); } catch (UnknownHostException e) { return null; } return getLocation(addr); } else { String str2 = get...
包路径:com.maxmind.geoip.LookupService类名称:LookupService方法名:getID LookupService.getID介绍 暂无 代码示例 代码示例来源:origin: i2p/i2p.i2p public int getID(String ipAddress) { InetAddress addr; try { addr = InetAddress.getByName(ipAddress); } catch (UnknownHostException e) { return 0; }...
Fast, lightweight MaxMind GeoIP lookup server written in Rust rustgeolocationgeoip2geoipmaxmind-geoipmmdbmaxminddb UpdatedMay 12, 2024 Rust InteractionDesignFoundation/laravel-geoip Star10 🌎 Determine the geographical location of website visitors based on their IP addresses. ...
Customize content and comply with regulations using in-depth IP address data. Prevent fraud and chargebacks, manage cyber risk, and flag proxy users.
GeoLite2-Country.mmdb 库只带有 country 相关数据样本输出 代码语言:javascript 复制 $ mmdblookup--file./GeoLite2-Country.mmdb--ip223.6.6.6{"continent":{"code":"AS"<utf8_string>"geoname_id":6255147<uint32>"names":{"de":"Asien"<utf8_string>"en":"Asia"<utf8_string>"es":"Asia"<ut...
描述: 首先安装 libmaxminddb 库,其提供了一个用于读取MaxMind DB文件的C库,包括来自MaxMind的GeoIP2数据库。这是一种自定义二进制格式,旨在促进 IP 地址的快速查找,同时允许在与地址关联的数据类型方面具有极大的灵活性。 项目地址:https://github.com/maxmind/libmaxminddb ...
Nginx + GeoIP2 可以拿到请求 IP 的国家和城市信息然后进行各种个性化 Nginx 配置 可以将请求 IP 的地理位置通过 php-fpm 传递 php 程序 定时更新 MaxMind 免费数据库(GeoLite2-Country.mmdb + GeoLite2-City.mmdb)完成完美闭环 maxmind 公司 2002 年成立至今,靠谱 ...
GeoLite2-Country.mmdb 与 GeoLite2-Country.mmdb 对比。 # - 国家 ./GeoLite2-Country.mmdb 库# 如果此时我只想获取 country 的名称可以这样。$ mmdblookup --file ./GeoLite2-Country.mmdb --ip223.6.6.6country names zh-CN"中...
GeoLite2-Country.mmdb 与 GeoLite2-Country.mmdb 对比。# - 国家 ./GeoLite2-Country.mmdb 库 # 如果此时我只想获取 country 的名称可以这样。 $ mmdblookup --file ./GeoLite2-Country.mmdb --ip 223.6.6.6 country names zh-CN "中国" <utf8_string> # 当然如果你想获取国家的 iso_code 也是...