https://github.com/v2ray/geoip
https://github.com/v2ray/geoip
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/v2ray/geoip
- Owner: v2ray
- License: mit
- Created: 2018-11-09T09:34:56.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2025-05-08T02:39:22.000Z (about 1 year ago)
- Last Synced: 2025-06-02T13:12:16.763Z (about 1 year ago)
- Language: Go
- Size: 3.58 MB
- Stars: 181
- Watchers: 9
- Forks: 41
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Move To https://github.com/v2fly/geoip
***
# GeoIP List for V2Ray
Automatically weekly release of geoip.dat for V2Ray.
This product includes GeoLite2 data created by MaxMind, available from [MaxMind](http://www.maxmind.com/).
## Download links
- **geoip.dat**:[https://github.com/v2ray/geoip/raw/release/geoip.dat](https://github.com/v2ray/geoip/raw/release/geoip.dat)
- **geoip.dat.sha256sum**:[https://github.com/v2ray/geoip/raw/release/geoip.dat.sha256sum](https://github.com/v2ray/geoip/raw/release/geoip.dat.sha256sum)
## Usage example
```json
"routing": {
"rules": [
{
"type": "field",
"outboundTag": "Direct",
"ip": [
"223.5.5.5/32",
"119.29.29.29/32",
"180.76.76.76/32",
"114.114.114.114/32",
"geoip:cn",
"geoip:private"
]
},
{
"type": "field",
"outboundTag": "Proxy-1",
"ip": [
"1.1.1.1/32",
"1.0.0.1/32",
"8.8.8.8/32",
"8.8.4.4/32"
]
},
{
"type": "field",
"outboundTag": "Proxy-2",
"ip": [
"geoip:us",
"geoip:ca"
]
},
{
"type": "field",
"outboundTag": "Proxy-3",
"ip": [
"geoip:hk",
"geoip:tw",
"geoip:jp",
"geoip:sg"
]
}
]
}
```