Turn off iptables for now
This commit is contained in:
parent
6bc13c8d4c
commit
76c0938619
2 changed files with 8 additions and 1 deletions
|
@ -4,6 +4,13 @@
|
||||||
name: iptables-persistent
|
name: iptables-persistent
|
||||||
state: present
|
state: present
|
||||||
|
|
||||||
|
# TURN IT OFF
|
||||||
|
- name: Turn iptables off for now
|
||||||
|
service:
|
||||||
|
name: iptables
|
||||||
|
state: stopped
|
||||||
|
enabled: no
|
||||||
|
|
||||||
- name: Allow all loopback traffic
|
- name: Allow all loopback traffic
|
||||||
iptables:
|
iptables:
|
||||||
chain: INPUT
|
chain: INPUT
|
||||||
|
|
|
@ -29,7 +29,7 @@
|
||||||
filter = sshd
|
filter = sshd
|
||||||
# notify: Restart fail2ban
|
# notify: Restart fail2ban
|
||||||
|
|
||||||
- name: Start fail2ban on boot
|
- name: Turn fail2ban off for now
|
||||||
service:
|
service:
|
||||||
name: fail2ban
|
name: fail2ban
|
||||||
enabled: false
|
enabled: false
|
||||||
|
|
Loading…
Reference in a new issue