2022-02-05 20:00:55 +01:00
|
|
|
---
|
|
|
|
- name: "Install ufw via apt"
|
2023-03-05 19:00:38 +01:00
|
|
|
ansible.builtin.apt:
|
2022-02-05 20:00:55 +01:00
|
|
|
update_cache: yes
|
|
|
|
state: present
|
|
|
|
name:
|
|
|
|
- ufw
|
|
|
|
|
|
|
|
- name: Reset ufw rules to default
|
|
|
|
community.general.ufw:
|
|
|
|
state: reset
|
|
|
|
|
2022-04-12 16:49:59 +02:00
|
|
|
- name: Enable ufw
|
|
|
|
community.general.ufw:
|
|
|
|
state: enabled
|
|
|
|
|
2022-02-05 20:00:55 +01:00
|
|
|
- name: Allow ssh via ufw
|
|
|
|
community.general.ufw:
|
|
|
|
rule: allow
|
|
|
|
port: ssh
|
2023-03-05 19:18:41 +01:00
|
|
|
src: 192.168.69.0/24
|
2022-04-16 19:55:29 +02:00
|
|
|
...
|