homelab/roles/base/tasks/firewall.yml

47 lines
1.1 KiB
YAML
Raw Normal View History

2022-05-27 20:29:27 +00:00
- name: Install the Uncomplicated Firewall
2023-04-28 08:25:32 +00:00
ansible.builtin.apt:
2022-05-27 20:29:27 +00:00
name: ufw
state: present
2022-05-28 06:31:41 +00:00
- name: Install Fail2ban
2023-04-28 08:25:32 +00:00
ansible.builtin.apt:
2022-05-28 06:31:41 +00:00
name: fail2ban
state: present
2022-05-27 20:29:27 +00:00
- name: Deny incoming traffic by default
2023-04-28 08:25:32 +00:00
community.general.ufw:
2022-05-27 20:29:27 +00:00
default: deny
direction: incoming
- name: Allow outgoing traffic by default
2023-04-28 08:25:32 +00:00
community.general.ufw:
2022-05-27 20:29:27 +00:00
default: allow
direction: outgoing
- name: Allow OpenSSH with rate limiting
2023-04-28 08:25:32 +00:00
community.general.ufw:
2022-05-27 20:29:27 +00:00
name: ssh
rule: limit
- name: Remove Fail2ban defaults-debian.conf
2023-04-28 08:25:32 +00:00
ansible.builtin.file:
path: /etc/fail2ban/jail.d/defaults-debian.conf
state: absent
- name: Install OpenSSH's Fail2ban jail
2023-04-28 08:25:32 +00:00
ansible.builtin.template:
src: fail2ban-ssh.conf.j2
dest: /etc/fail2ban/jail.d/sshd.conf
notify: restart_fail2ban
2022-06-29 03:43:58 +00:00
- name: Install Fail2ban IP allow list
2023-04-28 08:25:32 +00:00
ansible.builtin.template:
2022-06-29 03:43:58 +00:00
src: fail2ban-allowlist.conf.j2
dest: /etc/fail2ban/jail.d/allowlist.conf
when: fail2ban_ignoreip is defined
notify: restart_fail2ban
2022-05-27 20:29:27 +00:00
- name: Enable firewall
2023-04-28 08:25:32 +00:00
community.general.ufw:
2022-05-27 20:29:27 +00:00
state: enabled