Skip to content

An Varnish module that enables the site or server admin to identify and obtain the geolocation information of their websites visitors based on IP address.

License

MIT, MIT licenses found

Licenses found

MIT
LICENSE
MIT
LICENSE.TXT

ip2location/IP2Location-Varnish

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

33 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

IP2Location Varnish Module

Author: IP2Location
Date: 2020-11-17
Version: 1.0.4
Manual section: 3

An Varnish module that enables the website or server admins to find the country, region, city, latitude, longitude, zip code, time zone, ISP, domain name, connection type, area code, weather, mobile network, elevation, usage type by IP address. The module reads the geo location information from IP2Location BIN data file.

This module currently only support Varnish version 6.5 and above.

Required IP2Location C Library to work.

Installation

Before install and use this module, you have to install:

  • IP2Location C Library. You can get IP2Location C Library from https://github.com/chrislim2888/IP2Location-C-Library

  • varnish-dev and docutils-common packages. Install the require packages using following command:

    apt-get install -y varnish-dev docutils-common autoconf libtool make
  • And of course, the Varnish.

Then, clone this repo into your local, and run following commands to install:

./autogen.sh
./configure
make
make install

Usage

  1. Import the IP2Location VMod in default.vcl.

    import ip2location;
    
  2. Initialize and load the database you downloaded from IP2Location like this:

    sub vcl_init {
    	ip2location.init_db("/usr/share/ip2location/DB1.BIN", "IP2LOCATION_FILE_IO");
    }

Custom Headers

To use custom headers in the backed, add the following context.

sub vcl_recv {
    set req.http.X-Country-Code = ip2location.country_short(client.ip);
	set req.http.X-Region = ip2location.region(client.ip);
}

Block Countries

To block visitors from some countries to access your website, you may use the example below.

sub vcl_recv {
    set req.http.X-Country-Code = ip2location.country_short(client.ip);
    
    if (req.http.X-Country-Code ~ "(CN|RU)" ) {
    	return (synth(403, "Forbidden"));
    }
}

Functions

The table below listed down the functionality of available functions. For more information on returned data from IP2Location BIN database file, visit here: https://www.ip2location.com/database/db24-ip-country-region-city-latitude-longitude-zipcode-timezone-isp-domain-netspeed-areacode-weather-mobile-elevation-usagetype

init_db

Initialize and load database. The first argument indicates the path of the database, and the second argument indicates the mode used to open the database. Modes available are: IP2LOCATION_FILE_IO, IP2LOCATION_CACHE_MEMORY and IP2LOCATION_SHARED_MEMORY.

Example

ip2location.init_db("PATH_TO_IP2LOCATION_BIN_DATABASE", "IP2LOCATION_FILE_IO");

country_short

Returns two-letter country code based on ISO 3166.

Example

set req.http.X-Country-Code = ip2location.country_short(client.ip);

country_long

Returns country name based on ISO 3166.

Example

set req.http.X-Country-Name = ip2location.country_long(client.ip);

region

Returns region or state name.

Example

set req.http.X-Region = ip2location.region(client.ip);

city

Returns city name.

Example

set req.http.X-City = ip2location.city(client.ip);

isp

Returns Internet Service Provider or company's name of the IP Address.

Example

set req.http.X-ISP = ip2location.isp(client.ip);

latitude

Returns latitude of the IP Address.

Example

set req.http.X-Latitude = ip2location.latitude(client.ip);

longitude

Returns longitude of the IP Address.

Example

set req.http.X-Longitude = ip2location.longitude(client.ip);

domain

Returns Internet domain name associated with IP address range.

Example

set req.http.X-Domain = ip2location.domain(client.ip);

zipcode

Returns ZIP/Postal code.

Example

set req.http.X-Zipcode = ip2location.zipcode(client.ip);

timezone

Returns UTC time zone (with DST supported).

Example

set req.http.X-Timezone = ip2location.timezone(client.ip);

netspeed

Returns Internet connection type.

Example

set req.http.X-Netspeed = ip2location.netspeed(client.ip);

iddcode

Returns IDD prefix.

Example

set req.http.X-Iddcode = ip2location.iddcode(client.ip);

areacode

Returns Area Code of the IP Address.

Example

set req.http.X-Areacode = ip2location.areacode(client.ip);

weatherstationcode

Returns code to identify the nearest weather observation station

Example

set req.http.X-Weatherstationcode = ip2location.weatherstationcode(client.ip);

weatherstationname

Returns name of the nearest weather observation st#### Example

Example

set req.http.X-Weatherstationname = ip2location.weatherstationname(client.ip);

mcc

Returns Mobile Country #### ExampleMCC).

Example

set req.http.X-MCC = ip2location.mcc(client.ip);

mnc

Returns Mobile Ne#### Exampleode (MNC).

Example

set req.http.X-MNC = ip2location.mnc(client.ip);

mobilebrand

Returns Commercial brand associated wi#### Examplemobile carrier.

Example

set req.http.X-Mobilebrand = ip2location.mobilebrand(client.ip);

elevation

Return elevation in meters (m).

Example

set req.http.X-Elevation = ip2location.elevation(client.ip);

usagetype

Returns Usage type classification of ISP or company.

Example

set req.http.X-Usagetype = ip2location.usagetype(client.ip);

FAQ

  1. "Where can I get the database to use?"

Answer: You can get free IP2Location LITE databases from https://lite.ip2location.com, or purchase an IP2Location commercial database from https://www.ip2location.com/database/ip2location.

  1. "I can't install the module. Please help me."

Answer: Once again, before you install the package, please make sure that you have installed autoconf, libtool and make packages first. Those packages are necessary to compile and install this module.

  1. "Why am I getting an error message said that Package varnishapi was not found?"

Answer: In order to use Varnish vmod, you have to install varnishapi package before hand. Please refer to the Installation section first before install this module.

Support

Email: support@ip2location.com. URL: https://www.ip2location.com

About

An Varnish module that enables the site or server admin to identify and obtain the geolocation information of their websites visitors based on IP address.

Topics

Resources

License

MIT, MIT licenses found

Licenses found

MIT
LICENSE
MIT
LICENSE.TXT

Stars

Watchers

Forks

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •