iptables.yml 1.6 KB

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