Compare commits

..

1 commit

3 changed files with 12 additions and 10 deletions

View file

@ -7,7 +7,7 @@ hardening_sshd_tcp_forward: false
hardening_sshd_legal_banner: false
hardening_sshd_permissions_set_sticky_bit: true
hardening_sysctl_vm_swappiness: 0
hardening_sysctl_vm_swappiness: 15
hardening_sysctl_disable_ipv6: false
hardening_modprobe_disable_list:

View file

@ -1 +0,0 @@
kernel.core_pattern=|/bin/false

View file

@ -84,15 +84,18 @@
- name: Configure iptables
when:
- 'zoreide_enabled is true'
- "zoreide_enabled is true"
- "ansible_facts.services['iptables.service'] is defined"
ansible.builtin.iptables:
chain: INPUT
protocol: udp
destination_port: "{{ zoreide_ha_port }}"
ctstate: NEW
jump: ACCEPT
comment: Zoreide HA Port
block:
- name: Allow related and established connections
ansible.builtin.iptables:
chain: INPUT
protocol: udp
destination_port: "{{ zoreide_ha_port }}"
ctstate: NEW
syn: match
jump: ACCEPT
comment: Zoreide HA Port
- name: Save rules with iptables-persistent v6
ansible.builtin.shell: iptables-save > /etc/iptables/rules.v4