1
0
mirror of https://pagure.io/firewalld-blacklist.git synced 2025-05-16 07:50:46 -07:00

Initial commit.

This commit is contained in:
Richard Shaw 2020-06-16 09:36:14 -05:00
parent 622bfcabb0
commit 6e93756cae
5 changed files with 79 additions and 0 deletions

3
blacklist-by-country Normal file
View File

@ -0,0 +1,3 @@
# Which countries should be blocked?
# Use the two letter designation separated by a space.
countries=""

0
blacklist-by-ip Normal file
View File

52
firewalld-blacklist Executable file
View File

@ -0,0 +1,52 @@
#!/bin/bash
# Based on the below article
# https://www.linode.com/community/questions/11143/top-tip-firewalld-and-ipset-country-blacklist
# Source the blacklisted countries from the configuration file
. /etc/blacklist-by-country
# Create a temporary working directory
ipdeny_tmp_dir=$(mktemp -d -t blacklist-XXXXXXXXXX)
pushd $ipdeny_tmp_dir
# Download the latest network adresses by country file
curl -LO http://www.ipdeny.com/ipblocks/data/countries/all-zones.tar.gz
tar xf all-zones.tar.gz
# For updates, remove the ipset blacklist and recreate
if firewall-cmd -q --zone=drop --query-source=ipset:blacklist; then
firewall-cmd -q --permanent --delete-ipset=blacklist
fi
# Create the ipset blacklist which accepts both IP addresses and networks
firewall-cmd -q --permanent --new-ipset=blacklist --type=hash:net \
--option=family=inet --option=hashsize=4096 --option=maxelem=200000 \
--set-description="An ipset list of networks or ips to be dropped."
# Add the address ranges by country per ipdeny.com to the blacklist
for country in $countries; do
firewall-cmd -q --permanent --ipset=blacklist \
--add-entries-from-file=./$country.zone && \
echo "Added $country to blacklist ipset."
done
# Block individual IPs if the configuration file exists and is not empty
if [ -s "/etc/blacklist-by-ip" ]; then
echo "Adding IPs blacklists."
firewall-cmd -q --permanent --ipset=blacklist \
--add-entries-from-file=/etc/blacklist-by-ip && \
echo "Added IPs to blacklist ipset."
fi
# Add the blacklist ipset to the drop zone if not already setup
if firewall-cmd -q --zone=drop --query-source=ipset:blacklist; then
echo "Blacklist already in firewalld drop zone."
else
echo "Adding ipset blacklist to firewalld drop zone."
firewall-cmd --permanent --zone=drop --add-source=ipset:blacklist
fi
firewall-cmd -q --reload
popd
rm -rf $ipdeny_tmp_dir

View File

@ -0,0 +1,7 @@
[Unit]
Description=Oneshot service to update country blacklists
After=network-online.target
[Service]
Type=oneshot
ExecStart=/usr/local/sbin/firewalld-blacklist

17
firewalld-blacklist.timer Normal file
View File

@ -0,0 +1,17 @@
[Unit]
Description=Timer for Country Blacklist Updates
After=firewalld.service
Requires=firewalld.service
[Timer]
# See http://www.freedesktop.org/software/systemd/man/systemd.time.html for
# methods of specifying the frequency, some examples below are:
# daily → *-*-* 00:00:00
# monthly → *-*-01 00:00:00
# weekly → Mon *-*-* 00:00:00
# By default, run about midnight:
OnCalendar=monthly
Persistent=yes
[Install]
WantedBy=timers.target