2015-08-23 11:06:25 +02:00
|
|
|
---
|
2021-07-28 13:18:41 +02:00
|
|
|
# Ubuntu 20.04 will use nftables directly, with no firewalld.
|
|
|
|
# Ubuntu 18.04 will use firewalld with the nftables backend.
|
|
|
|
# Ubuntu 16.04 will use firewalld with the iptables backend.
|
2015-08-23 11:06:25 +02:00
|
|
|
|
2018-04-26 15:58:35 +02:00
|
|
|
- block:
|
2019-10-26 16:36:07 +02:00
|
|
|
- name: Set Ubuntu firewall packages
|
2021-07-28 13:18:41 +02:00
|
|
|
when: ansible_distribution_version is version('20.04', '<')
|
2019-10-26 16:36:07 +02:00
|
|
|
set_fact:
|
|
|
|
ubuntu_firewall_packages:
|
|
|
|
- firewalld
|
|
|
|
- tidy
|
|
|
|
- fail2ban
|
|
|
|
- python3-systemd # for fail2ban systemd backend
|
|
|
|
|
2021-07-28 13:18:41 +02:00
|
|
|
- name: Set Ubuntu firewall packages
|
|
|
|
when: ansible_distribution_version is version('20.04', '>=')
|
|
|
|
set_fact:
|
|
|
|
ubuntu_firewall_packages:
|
|
|
|
- fail2ban
|
|
|
|
- libnet-ip-perl # for aggregate-cidr-addresses.pl
|
|
|
|
- nftables
|
|
|
|
- python3-systemd
|
2021-07-29 09:24:32 +02:00
|
|
|
- curl # for nftables update scripts
|
2021-07-28 13:18:41 +02:00
|
|
|
|
|
|
|
- name: Install firewall packages
|
2021-07-28 13:46:58 +02:00
|
|
|
apt: pkg={{ ubuntu_firewall_packages }} state=present cache_valid_time=3600
|
2018-04-26 15:58:35 +02:00
|
|
|
|
2020-04-25 12:54:50 +02:00
|
|
|
- name: Remove ufw
|
|
|
|
when: ansible_distribution_version is version('16.04', '>=')
|
|
|
|
apt: pkg=ufw state=absent
|
|
|
|
|
2021-07-28 13:18:41 +02:00
|
|
|
- name: Copy nftables.conf
|
|
|
|
when: ansible_distribution_version is version('20.04', '>=')
|
|
|
|
template: src=nftables.conf.j2 dest=/etc/nftables.conf owner=root mode=0644
|
2020-04-25 13:21:17 +02:00
|
|
|
notify:
|
2021-08-01 13:23:00 +02:00
|
|
|
- restart nftables
|
2021-07-28 13:18:41 +02:00
|
|
|
|
|
|
|
- name: Create /etc/nftables extra config directory
|
|
|
|
when: ansible_distribution_version is version('20.04', '>=')
|
|
|
|
file: path=/etc/nftables state=directory owner=root mode=0755
|
|
|
|
|
|
|
|
- name: Copy extra nftables configuration files
|
|
|
|
when: ansible_distribution_version is version('20.04', '>=')
|
|
|
|
copy: src={{ item }} dest=/etc/nftables/{{ item }} owner=root group=root mode=0644 force=no
|
|
|
|
loop:
|
|
|
|
- spamhaus-ipv4.nft
|
|
|
|
- spamhaus-ipv6.nft
|
2021-07-29 09:16:00 +02:00
|
|
|
- abusech-ipv4.nft
|
2021-07-31 20:46:50 +02:00
|
|
|
- abuseipdb-ipv4.nft
|
|
|
|
- abuseipdb-ipv6.nft
|
2021-07-28 13:18:41 +02:00
|
|
|
notify:
|
2021-08-01 13:23:00 +02:00
|
|
|
- restart nftables
|
2020-04-25 13:21:17 +02:00
|
|
|
|
2018-04-26 15:58:35 +02:00
|
|
|
- name: Copy firewalld public zone file
|
2021-07-28 13:18:41 +02:00
|
|
|
when: ansible_distribution_version is version('18.04', '<=')
|
2018-04-26 15:58:35 +02:00
|
|
|
template: src=public.xml.j2 dest=/etc/firewalld/zones/public.xml owner=root mode=0600
|
2015-08-23 11:06:25 +02:00
|
|
|
|
2018-04-26 15:58:35 +02:00
|
|
|
- name: Format public.xml firewalld zone file
|
2021-07-28 13:18:41 +02:00
|
|
|
when: ansible_distribution_version is version('18.04', '<=')
|
2018-04-26 15:58:35 +02:00
|
|
|
command: tidy -xml -iq -m -w 0 /etc/firewalld/zones/public.xml
|
|
|
|
notify:
|
2019-10-05 11:29:30 +02:00
|
|
|
- restart firewalld
|
2019-10-05 11:28:30 +02:00
|
|
|
|
2021-07-28 13:18:41 +02:00
|
|
|
- name: Copy firewalld ipsets of abusive IPs
|
|
|
|
when: ansible_distribution_version is version('18.04', '<=')
|
2019-10-05 11:28:30 +02:00
|
|
|
copy: src={{ item }} dest=/etc/firewalld/ipsets/{{ item }} owner=root group=root mode=0600
|
|
|
|
loop:
|
|
|
|
- abusers-ipv4.xml
|
|
|
|
- abusers-ipv6.xml
|
2021-07-21 08:34:51 +02:00
|
|
|
- spamhaus-ipv4.xml
|
|
|
|
- spamhaus-ipv6.xml
|
|
|
|
notify:
|
|
|
|
- restart firewalld
|
|
|
|
|
2021-07-28 13:18:41 +02:00
|
|
|
- name: Copy Spamhaus firewalld update script
|
|
|
|
when: ansible_distribution_version is version('18.04', '<=')
|
2021-07-21 08:34:51 +02:00
|
|
|
copy: src=update-spamhaus-lists.sh dest=/usr/local/bin/update-spamhaus-lists.sh mode=0755 owner=root group=root
|
|
|
|
|
2021-07-28 13:18:41 +02:00
|
|
|
- name: Copy Spamhaus firewalld systemd units
|
|
|
|
when: ansible_distribution_version is version('18.04', '<=')
|
2021-07-21 08:34:51 +02:00
|
|
|
copy: src={{ item }} dest=/etc/systemd/system/{{ item }} mode=0644 owner=root group=root
|
|
|
|
loop:
|
|
|
|
- update-spamhaus-lists.service
|
|
|
|
- update-spamhaus-lists.timer
|
2021-07-28 13:18:41 +02:00
|
|
|
register: spamhaus_firewalld_systemd_units
|
|
|
|
|
2021-07-29 09:16:00 +02:00
|
|
|
- name: Copy nftables update scripts
|
2021-07-28 13:18:41 +02:00
|
|
|
when: ansible_distribution_version is version('20.04', '>=')
|
|
|
|
copy: src={{ item }} dest=/usr/local/bin/{{ item }} mode=0755 owner=root group=root
|
|
|
|
loop:
|
|
|
|
- update-spamhaus-nftables.sh
|
|
|
|
- aggregate-cidr-addresses.pl
|
2021-07-29 09:16:00 +02:00
|
|
|
- update-abusech-nftables.sh
|
2021-07-28 13:18:41 +02:00
|
|
|
|
2021-07-29 09:16:00 +02:00
|
|
|
- name: Copy nftables systemd units
|
2021-07-28 13:18:41 +02:00
|
|
|
when: ansible_distribution_version is version('20.04', '>=')
|
|
|
|
copy: src={{ item }} dest=/etc/systemd/system/{{ item }} mode=0644 owner=root group=root
|
|
|
|
loop:
|
|
|
|
- update-spamhaus-nftables.service
|
|
|
|
- update-spamhaus-nftables.timer
|
2021-07-29 09:16:00 +02:00
|
|
|
- update-abusech-nftables.service
|
|
|
|
- update-abusech-nftables.timer
|
|
|
|
register: nftables_systemd_units
|
2021-07-21 08:34:51 +02:00
|
|
|
|
|
|
|
# need to reload to pick up service/timer/environment changes
|
|
|
|
- name: Reload systemd daemon
|
|
|
|
systemd: daemon_reload=yes
|
2021-07-28 13:18:41 +02:00
|
|
|
when: spamhaus_firewalld_systemd_units is changed or
|
2021-07-29 09:16:00 +02:00
|
|
|
nftables_systemd_units is changed
|
2021-07-21 08:34:51 +02:00
|
|
|
|
2021-07-28 13:18:41 +02:00
|
|
|
- name: Start and enable Spamhaus firewalld update timer
|
|
|
|
when: ansible_distribution_version is version('18.04', '<=')
|
2021-07-21 08:34:51 +02:00
|
|
|
systemd: name=update-spamhaus-lists.timer state=started enabled=yes
|
2019-10-05 11:28:30 +02:00
|
|
|
notify:
|
2019-10-05 11:29:30 +02:00
|
|
|
- restart firewalld
|
2019-10-26 16:36:07 +02:00
|
|
|
|
2021-07-29 09:16:00 +02:00
|
|
|
- name: Start and enable nftables update timers
|
2021-07-28 13:18:41 +02:00
|
|
|
when: ansible_distribution_version is version('20.04', '>=')
|
2021-07-29 09:16:00 +02:00
|
|
|
systemd: name={{ item }} state=started enabled=yes
|
|
|
|
loop:
|
|
|
|
- update-spamhaus-nftables.timer
|
|
|
|
- update-abusech-nftables.timer
|
2021-07-28 13:18:41 +02:00
|
|
|
|
2021-07-29 09:05:15 +02:00
|
|
|
- name: Start and enable nftables
|
|
|
|
when: ansible_distribution_version is version('20.04', '>=')
|
|
|
|
systemd: name=nftables state=started enabled=yes
|
|
|
|
|
2019-10-26 16:36:07 +02:00
|
|
|
- include_tasks: fail2ban.yml
|
2020-03-09 14:20:51 +01:00
|
|
|
when: ansible_distribution_version is version('16.04', '>=')
|
2018-04-25 17:58:31 +02:00
|
|
|
tags: firewall
|
2018-04-25 17:55:22 +02:00
|
|
|
|
|
|
|
# vim: set sw=2 ts=2:
|