iptables.yml 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. ---
  2. - name: Install iptables packages
  3. yum:
  4. name: "{{ item }}"
  5. state: present
  6. with_items:
  7. - iptables
  8. - iptables-services
  9. register: install_result
  10. - name: Check if firewalld is installed
  11. command: rpm -q firewalld
  12. register: pkg_check
  13. failed_when: pkg_check.rc > 1
  14. changed_when: no
  15. - name: Ensure firewalld service is not enabled
  16. service:
  17. name: firewalld
  18. state: stopped
  19. enabled: no
  20. when: pkg_check.rc == 0
  21. - name: Reload systemd units
  22. command: systemctl daemon-reload
  23. when: install_result | changed
  24. - name: Start and enable iptables service
  25. service:
  26. name: iptables
  27. state: started
  28. enabled: yes
  29. register: result
  30. - name: need to pause here, otherwise the iptables service starting can sometimes cause ssh to fail
  31. pause: seconds=10
  32. when: result | changed
  33. # TODO: submit PR upstream to add mask/unmask to service module
  34. - name: Mask firewalld service
  35. command: systemctl mask firewalld
  36. register: result
  37. changed_when: "'firewalld' in result.stdout"
  38. when: pkg_check.rc == 0
  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