iptables.yml 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. ---
  2. - name: Install iptables packages
  3. action: "{{ ansible_pkg_mgr }} name={{ item }} state=present"
  4. with_items:
  5. - iptables
  6. - iptables-services
  7. register: install_result
  8. when: not is_atomic
  9. - name: Check if firewalld is installed
  10. command: rpm -q firewalld
  11. register: pkg_check
  12. failed_when: pkg_check.rc > 1
  13. changed_when: no
  14. - name: Ensure firewalld service is not enabled
  15. service:
  16. name: firewalld
  17. state: stopped
  18. enabled: no
  19. when: pkg_check.rc == 0
  20. - name: Reload systemd units
  21. command: systemctl daemon-reload
  22. when: install_result | changed
  23. - name: Start and enable iptables service
  24. service:
  25. name: iptables
  26. state: started
  27. enabled: yes
  28. register: result
  29. - name: need to pause here, otherwise the iptables service starting can sometimes cause ssh to fail
  30. pause: seconds=10
  31. when: result | changed
  32. # TODO: submit PR upstream to add mask/unmask to service module
  33. - name: Mask firewalld service
  34. command: systemctl mask firewalld
  35. register: result
  36. changed_when: "'firewalld' in result.stdout"
  37. when: pkg_check.rc == 0
  38. ignore_errors: yes
  39. - name: Add iptables allow rules
  40. os_firewall_manage_iptables:
  41. name: "{{ item.service }}"
  42. action: add
  43. protocol: "{{ item.port.split('/')[1] }}"
  44. port: "{{ item.port.split('/')[0] }}"
  45. with_items: os_firewall_allow
  46. when: os_firewall_allow is defined
  47. - name: Remove iptables rules
  48. os_firewall_manage_iptables:
  49. name: "{{ item.service }}"
  50. action: remove
  51. protocol: "{{ item.port.split('/')[1] }}"
  52. port: "{{ item.port.split('/')[0] }}"
  53. with_items: os_firewall_deny
  54. when: os_firewall_deny is defined