GeoIP Firewall Configuration on Debian and Ubuntu

()

In this Tutorial we show you how to deploy and use GeoIP with the kernel firewall of Debian 10 buster and Debian 11 bullseye or Ubuntu 20.04 LTS.

More Security with GeoIP Lockout

In addition, further considerations should be made whether the accessibility of websites and services from countries far away from local languages is at all appropriate. Furthermore, it could be considered that relations with distant regions, such as the South Pacific, might not be maintained. When tracking the sources of brute force and DDoS attacks, the sources are often found in the Far East and Russia.

A geolocation system is used to determine the location of systems. On the Internet, an IP address can be assigned to a country, a city or an organization in order to then determine the location.

Install the GeoIP Firewall

The installation of the required services and libraries for GeoIP firewall on Debian and Ubuntu is done as root with “su -” or “sudo su -“.

$ apt update && apt upgrade
$ apt -y install curl unzip perl iptables-dev xtables-addons-common libtext-csv-xs-perl libmoosex-types-netaddr-ip-perl pkg-config

  If you get abortE: Package iptables-dev has no installation candidatethen skip next MaxMind GeoLite2 and go to update.

The GeoIP database must be downloaded from the MaxMind website, with the following URL: https://www.maxmind.com. MaxMind is a Massachusetts-based digital mapping company that provides location data for IP addresses.

MaxMind requires you to register for the Free Account with a valid email. After signing in, go to My Account and Download Databases.

GeoIP Firewall database downloaded from Maxmind

Under GeoIP2 and GeoIP Legacy Databases – GeoLite2-Country-CSV Format with Download ZIP download the file.

GeoIP2 and GeoIP Legacy Databases

  If you want to perform the download using Permalink, you need a license key, which you can generate under “My Account – Manage License Keys”, the download did not work here at this time (401 Unauthorized).

The contents of the GeoLite2-Country-CSV_20220125.zip ZIP file

GeoLite2 country CSV_20220125.zip

Create a new directory on the host and change to it.

$ mkdir -p /usr/share/xt_geoip/
$ cd /usr/share/xt_geoip

Upload theCountry-CSV_20220125.zipfile to the server using ftp or scp, into the directory path/usr/share/xt_geoipand unzip it.

$ unzip GeoLite2-Country-CSV_20220125.zip
$ cd GeoLite2-Country-CSV_20220125
$ /usr/lib/xtables-addons/xt_geoip_build -D /usr/share/xt_geoip *.csv

The CSV data is converted using the MaxMind CSV database converter to binary for xt_geoip. The output appears similar to the following, here in abbreviated form.

729578 entries total
    0 IPv6 ranges for
   16 IPv4 ranges for
362309 IPv6 ranges for 0 0
365215 IPv4 ranges for 0 0
    0 IPv6 ranges for 1 0
   28 IPv4 ranges for 1 0
    0 IPv6 ranges for AD Andorra
    8 IPv4 ranges for AD Andorra
...

Now load the GeoIP firewall module xt_geoip into memory with subsequent testing.

$ modprobe xt_geoip
$ lsmod | grep ^xt_geoip

The output should be similar to this.

xt_geoip             16384  34

Using GeoIP firewall on Debian and Ubuntu

The GeoIP firewall integration on Debian and Ubuntu for iptable is now complete, commands can now be executed with the following syntax.

iptables -m geoip –src-cc country[,country] -dst-cc country[,country]

For example, traffic from Russia and China should be blocked.

$ iptables -A INPUT -m geoip --src-cc RU,CN -j DROP

Drop accesses that do NOT come from Germany.

$ iptables -A INPUT -m geoip ! --src-cc EN -j DROP

It can also block the outgoing traffic, here to India.

$ iptables -A OUTPUT -m geoip -dst-cc IN -j DROP

  Helpful iptables commands.

$ iptables -vnL
$ iptables -L INPUT --line-numbers -vn

The output might look something like the following.

Chain INPUT (policy DROP 259 packets, 13704 bytes)
num   pkts bytes target     prot opt in     out     source               destination
1    68011   14M f2b-apache-auth  tcp  --  *      *       0.0.0.0/0            0.0.0.0/0            multiport dports 80,443
2     155K   41M f2b-sshd   tcp  --  *      *       0.0.0.0/0            0.0.0.0/0            multiport dports 22
3     272K   12M ufw-reject-input  all  --  *      *       0.0.0.0/0            0.0.0.0/0
4       0     0 DROP       all  --  *      *       0.0.0.0/0            0.0.0.0/0            -m geoip --source-country RU,CN
5       0     0 DROP       all  --  *      *       0.0.0.0/0            0.0.0.0/0            -m geoip --source-country BY,CY

This example swipe row 5.

$ iptables -D INPUT 5

Query ISO Country Code of an IP address, first install geoip-bin package.

$ apt install geoip-bin

Example GeoIP query with geoiplookup.

$ geoiplookup 61.219.11.151
GeoIP Country Edition: TW, Taiwan

Example. iptables GeoIP firewall on Debian

An example with ISO codes for countries that are classified as obscure or as known suspicious havens and are explicitly blocked, the ISO codes of the DACH countries should be approved.

$ iptables -P INPUT DROP
$ iptables -A INPUT -m geoip --src-cc AT,CH,DE -j ACCEPT
$ iptables -N DROP_GEOIP
$ iptables -A DROP_GEOIP -m geoip --src-cc ID -j DROP
$ iptables -A DROP_GEOIP -m geoip --src-cc KP -j DROP
$ iptables -A DROP_GEOIP -m geoip --src-cc TJ -j DROP
$ iptables -A DROP_GEOIP -m geoip --src-cc TM -j DROP
$ iptables -A DROP_GEOIP -m geoip --src-cc TR -j DROP
$ iptables -A DROP_GEOIP -m geoip --src-cc UA -j DROP
$ iptables -A DROP_GEOIP -m geoip ! --src-cc AT,CH,DE -j DROP
$ iptables -A INPUT -j DROP_GEOIP

  The (!) argument inverts the passed values, which excludes ISO (AT,CH,DE) from jump to DROP.

Check the iptables INPUT chain with line-numbers, the output as follows for this example.

$ iptables -L INPUT --line-numbers -vn
Chain INPUT (policy DROP 0 packets, 0 bytes)
num   pkts bytes target     prot opt in     out     source               destination
1     273K   12M ufw-after-logging-input  all  --  *      *       0.0.0.0/0            0.0.0.0/0
2     273K   12M ufw-reject-input  all  --  *      *       0.0.0.0/0            0.0.0.0/0
3     273K   12M ufw-track-input  all  --  *      *       0.0.0.0/0            0.0.0.0/0
4       0     0 DROP       all  --  *      *       0.0.0.0/0            0.0.0.0/0            -m geoip --source-country RU,CN
5       0     0 DROP       all  --  *      *       0.0.0.0/0            0.0.0.0/0            -m geoip --source-country BY,CY
6       0     0 DROP       all  --  *      *       0.0.0.0/0            0.0.0.0/0            -m geoip --source-country HK,KP
7       0     0 DROP       all  --  *      *       0.0.0.0/0            0.0.0.0/0            -m geoip --source-country KG,KZ
8       0     0 DROP       all  --  *      *       0.0.0.0/0            0.0.0.0/0            -m geoip --source-country UA,VN
9       0     0 DROP       all  --  *      *       0.0.0.0/0            0.0.0.0/0            -m geoip --source-country MD,GE
10      0     0 DROP       all  --  *      *       0.0.0.0/0            0.0.0.0/0            -m geoip --source-country TW,TM
11    102  5329 DROP_GEOIP all  --  *      *       0.0.0.0/0            0.0.0.0/0
12     90  4827 DROP       all  --  *      *       0.0.0.0/0            0.0.0.0/0            -m geoip ! --source-country AT,CH,DE

iptables-persistent

Reactivate the iptables chains after a restart, to do this iptables-persistent is installed.

$ apt install iptables-persistent

Confirm with yes to back up the iptables during installation.

Install iptables-persistent

The iptables chains can be backed up with iptables-save to restore them at a later time.

$ iptables-save > /etc/iptables/rules.v4
$ ip6tables-save > /etc/iptables/rules.v6

Recovery with iptables-restore

$ iptables-restore < /etc/iptables/rules.v4
$ ip6tables-restore < /etc/iptables/rules.v6

The next related post might also be helpful, see in How to use iptables and configuring.

Update

later it was discovered that the iptables-dev library is no longer available on debian 11 and has been replaced by libxtables-dev.

Expect from xt_geoip_build is now the DBIP format as input, Maxmind is thrown out. Probably because the new “build script” xt_geoip_build requires the CSV file download from db-ip.com, instead from MaxMind.

Run the commands bellow to install libxtables-dev, continous with download the Country Lite Database in the DBIP format from db-ip.com, then unzip the GZ and convert the CSV using the xt_geoip_build script.

$ apt install libxtables-dev
$ mkdir -p /usr/share/xt_geoip/
$ cd /tmp
$ wget -O dbip-country-lite.csv.gz "https://download.db-ip.com/free/dbip-country-lite-$(date +'%Y-%m').csv.gz"
$ gunzip dbip-country-lite.csv.gz
$ chmod 755 /usr/lib/xtables-addons/xt_geoip_build
$ /usr/lib/xtables-addons/xt_geoip_build -D /usr/share/xt_geoip *.csv

Conclusion

This tutorial will show you how to deploy and configure GeoIP with Debian and Ubuntu kernel firewall. Using GeoIP Lockout brings more security. It is shown how you will install and apply the necessary services and libraries. For GeoIP firewall on Debian and Ubuntu based operating systems.

How useful was this post?

Click on a star to rate it!

Average rating / 5. Vote count:

No votes so far! Be the first to rate this post.

We are sorry that this post was not useful for you!

Let us improve this post!

Tell us how we can improve this post?

17 thoughts on “GeoIP Firewall Configuration on Debian and Ubuntu”

  1. Did anyone install xt_geoip on ubuntu jammy? I would like to have a how to on that.

  2. This will APPEND the rule to the end of INPUT which may not work in all configurations:
    iptables -A INPUT -m geoip ! –src-cc US -j DROP

    This will INSERT the rule to the beginning of INPUT which is what I had to do on my systems:
    iptables -I INPUT -m geoip ! –src-cc US -j DROP

  3. This line is wrong:
    “Drop accesses that do not come from Germany”

    It should be:
    iptables -A INPUT -m geoip ! –src-cc DE -j DROP

    Also, drop accesses that do not come from the United States:
    iptables -A INPUT -m geoip ! –src-cc US -j DROP

    Thanks for the article!

  4. Not sure if xtables stopped using MaxMind or what, but now it expects “dbip-country-lite.csv” which is from DB-IP.com. You can find the CSV file under their site in the “IP to Country Lite” area. Download the CSV, use gunzip to uncompress, rename the CSV file to “dbip-country-lite.csv”, and the above commands should work.

  5. when trying this on deb11, restarting netfilter-persistent gives this error:

    Warning: Extension geoip is not supported, missing kernel module?

    1. Did you ever find a solution to this? After pages and pages of Google result, your post is the only one that relates to my issue…

  6. Thank you for your post and your instructions.

    Unfortunatly the iptables-dev won’t install (has no installation candidate). I also get a error on the modprobe with xt_geoip.

    modprobe: FATAL: Module xt_geoip not found in directory /lib/modules/5.10.0-21-cloud-amd64

    The modprobe error might be a result from not getting the iptables-dev installed?

    Any updates on this problems?

    Thanks for your help.

    1. on debian 11 iptables-dev has been replaced by libxtables-dev, for debian 11 proceed as follows.
      apt install libxtables-dev
      cd /tmp
      wget -O dbip-country-lite.csv.gz “https://download.db-ip.com/free/dbip-country-lite-$(date +’%Y-%m’).csv.gz”
      gunzip dbip-country-lite.csv.gz
      /usr/lib/xtables-addons/xt_geoip_build -D /usr/share/xt_geoip *.csv

  7. This could help getting /usr/local/libexec/xtables-addons/xt_geoip_build_maxmind
    instead using xt_geoip_build
    .
    works on bullseye 11
    .
    ################################################################################
    # xt_geoip_build_maxmind
    # coems with git clone https://git.code.sf.net/p/xtables-addons/xtables-addons xtables-addons-xtables-addons
    ################################################################################

    modprobe xt_geoip
    lsmod | grep ^xt_geoip
    iptables -A INPUT -m geoip ! –src-cc DE -j DROP

    #example iptables -vnL -> iptables -L –line-number
    #example This example swipe row 5.
    #example $ iptables -D INPUT 1 && apt update && apt upgrade -y

    apt install -y geoip-bin
    geoiplookup 61.219.11.151

    apt install -y iptables-persistent

    #save
    #$ iptables-save > /etc/iptables/rules.v4
    #$ ip6tables-save > /etc/iptables/rules.v6
    #Recovery with iptables-restore.
    #
    #$ iptables-restore < /etc/iptables/rules.v4
    #$ ip6tables-restore daddr, sizeof(fl.daddr));
    fl.fl6_sport = newudp->source;
    fl.fl6_dport = newudp->dest;
    +#if LINUX_VERSION_CODE >= KERNEL_VERSION(5, 10, 0) # error != 0) {
    dst_release(dst);
    ################################################################################

    make
    make install
    cd /usr/share/xt_geoip
    apt install -y unzip
    cp ~mathaase/GeoLite2-Country-CSV_20230120.zip .
    cp …GeoLite2-Country-CSV_20230120.zip .
    unzip GeoLite2-Country-CSV_20230120.zip
    mv GeoLite2-Country-CSV_20230120/*.csv .
    /usr/local/libexec/xtables-addons/xt_geoip_build_maxmind -D /usr/share/xt_geoip *.csv

  8. Hi, following the tutorial I could not install GeoIP

    Raspberry Pi 4 – RaspiOS bullseye arm64

    The iptables-dev is not available package is replaced with:
    libxtables-dev:armhf libip6tc-dev:armhf libip4tc-dev:armhf libxtables-dev libip6tc-dev libip4tc-dev

    /usr/lib/xtables-addons/xt_geoip_build -D /usr/share/xt_geoip *.csv
    bash: /usr/lib/xtables-addons/xt_geoip_build: No such file or directory

    xt_geoip_build the correct path is: /usr/libexec/xtables-addons/xt_geoip_build

    Running: /usr/libexec/xtables-addons/xt_geoip_build -D /usr/share/xt_geoip *.csv
    Cannot open dbip-country-lite.csv: No such file or directory

    Any help is appreciated.

    1. Note. RaspiOS and Debian for the Rasp Pi seem the same at first glance, but differ in a number of details – practical, technical and in terms of philosophy.

      1. The problem is Xtables-addons_3.22 are not supported by RasPiOS kernel 5.15.61-v8
        Wait for a new version.

    2. before start
      /usr/libexec/xtables-addons/xt_geoip_build
      start first
      /usr/libexec/xtables-addons/xt_geoip_dl

    3. Hi – to fix “Cannot open dbip-country-lite.csv” you need to tell xt_geoip_build where the .csv files is with a -i argument. Otherwise it will default to wanting dbip-country-lite.csv.

Leave a Reply

Your email address will not be published. Required fields are marked *