2015-05-28 11:32:57 +02:00
|
|
|
---
|
|
|
|
- name: Install the needed iptables packages
|
|
|
|
apt: pkg={{ item }} state=installed
|
|
|
|
with_items:
|
|
|
|
- iptables
|
|
|
|
- iptables-persistent
|
2016-01-22 17:09:57 +01:00
|
|
|
tags: iptables
|
2015-05-28 11:32:57 +02:00
|
|
|
|
2016-01-22 17:09:57 +01:00
|
|
|
- name: Create the /etc/iptables directory when needed
|
|
|
|
file: dest=/etc/iptables state=directory owner=root group=root mode=0755
|
|
|
|
when: is_ubuntu_between_10_04_and_11_04_and_is_debian_6
|
|
|
|
tags: iptables
|
|
|
|
|
2015-05-28 11:32:57 +02:00
|
|
|
- name: Install the IPv4 rules with a different name. Needed by Ubuntu < 12.04
|
|
|
|
template: src=iptables-{{ item }}.j2 dest=/etc/iptables/rules owner=root group=root mode=0640
|
|
|
|
with_items:
|
|
|
|
- rules.v4
|
|
|
|
when: is_ubuntu_between_10_04_and_11_04_and_is_debian_6
|
2015-06-14 23:39:13 +02:00
|
|
|
notify: Start the iptables service on Ubuntu < 12.04
|
2016-01-22 17:09:57 +01:00
|
|
|
tags: [ 'iptables', 'iptables_rules' ]
|
2015-05-28 11:32:57 +02:00
|
|
|
|
2015-09-03 02:36:22 +02:00
|
|
|
- name: Install the IPv4 and IPv6 iptables rules. The IPv6 ones are not used. On precise
|
2015-05-28 11:32:57 +02:00
|
|
|
template: src=iptables-{{ item }}.j2 dest=/etc/iptables/{{ item }} owner=root group=root mode=0640
|
|
|
|
with_items:
|
|
|
|
- rules.v4
|
|
|
|
- rules.v6
|
2015-09-03 02:36:22 +02:00
|
|
|
when: is_precise
|
|
|
|
notify: Start the iptables service
|
2016-01-22 17:09:57 +01:00
|
|
|
tags: [ 'iptables', 'iptables_rules' ]
|
2015-09-03 02:36:22 +02:00
|
|
|
|
|
|
|
- name: Install the IPv4 and IPv6 iptables rules. The IPv6 ones are not used. On trusty
|
|
|
|
template: src=iptables-{{ item }}.j2 dest=/etc/iptables/{{ item }} owner=root group=root mode=0640
|
|
|
|
with_items:
|
|
|
|
- rules.v4
|
|
|
|
- rules.v6
|
|
|
|
when: is_trusty
|
2016-07-12 16:29:52 +02:00
|
|
|
register: install_iptables_rules
|
2016-01-22 17:09:57 +01:00
|
|
|
tags: [ 'iptables', 'iptables_rules' ]
|
2015-09-03 02:36:22 +02:00
|
|
|
|
|
|
|
- name: Install the IPv4 and IPv6 iptables rules. The IPv6 ones are not used. On debian 7
|
|
|
|
template: src=iptables-{{ item }}.j2 dest=/etc/iptables/{{ item }} owner=root group=root mode=0640
|
|
|
|
with_items:
|
|
|
|
- rules.v4
|
|
|
|
- rules.v6
|
|
|
|
when: is_debian7
|
2016-07-12 16:29:52 +02:00
|
|
|
register: install_iptables_rules
|
2016-01-22 17:09:57 +01:00
|
|
|
tags: [ 'iptables', 'iptables_rules' ]
|
2015-06-14 23:39:13 +02:00
|
|
|
|
|
|
|
- name: Install the IPv4 and IPv6 iptables rules. The IPv6 ones are not used. On debian 8
|
|
|
|
template: src=iptables-{{ item }}.j2 dest=/etc/iptables/{{ item }} owner=root group=root mode=0640
|
|
|
|
with_items:
|
|
|
|
- rules.v4
|
|
|
|
- rules.v6
|
|
|
|
when: is_debian8
|
2016-07-12 16:29:52 +02:00
|
|
|
register: install_netfilter_rules
|
2016-01-22 17:09:57 +01:00
|
|
|
tags: [ 'iptables', 'iptables_rules' ]
|
2015-05-28 11:32:57 +02:00
|
|
|
|
2016-07-12 16:29:52 +02:00
|
|
|
- name: Start the iptables service immediately after the new rules have been installed. This can have an impact on other tasks
|
|
|
|
service: name=iptables-persistent state=restarted enabled=yes
|
|
|
|
notify: Restart fail2ban
|
|
|
|
when: ( install_iptables_rules | changed )
|
|
|
|
tags: [ 'iptables', 'iptables_rules' ]
|
|
|
|
|
|
|
|
- name: Start the netfilter service immediately after the new rules have been installed. This can have an impact on other tasks
|
|
|
|
service: name=netfilter-persistent state=restarted enabled=yes
|
|
|
|
notify: Restart fail2ban
|
|
|
|
when: ( install_netfilter_rules | changed )
|
|
|
|
tags: [ 'iptables', 'iptables_rules' ]
|