iptables.yml 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. ---
  2. - name: Ensure firewalld service is not enabled
  3. systemd:
  4. name: firewalld
  5. state: stopped
  6. enabled: no
  7. masked: yes
  8. register: task_result
  9. failed_when: task_result|failed and 'could not' not in task_result.msg|lower
  10. - name: Wait 10 seconds after disabling firewalld
  11. pause:
  12. seconds: 10
  13. when: task_result | changed
  14. - name: Install iptables packages
  15. package: name={{ item }} state=present
  16. with_items:
  17. - iptables
  18. - iptables-services
  19. when: not openshift.common.is_atomic | bool
  20. - name: Start and enable iptables service
  21. systemd:
  22. name: iptables
  23. state: started
  24. enabled: yes
  25. masked: no
  26. daemon_reload: 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. - name: Add iptables allow rules
  32. os_firewall_manage_iptables:
  33. name: "{{ item.service }}"
  34. action: add
  35. protocol: "{{ item.port.split('/')[1] }}"
  36. port: "{{ item.port.split('/')[0] }}"
  37. with_items: "{{ os_firewall_allow }}"
  38. - name: Remove iptables rules
  39. os_firewall_manage_iptables:
  40. name: "{{ item.service }}"
  41. action: remove
  42. protocol: "{{ item.port.split('/')[1] }}"
  43. port: "{{ item.port.split('/')[0] }}"
  44. with_items: "{{ os_firewall_deny }}"