netmaster_iptables.yml 1.2 KB

1234567891011121314151617181920212223242526272829303132
  1. ---
  2. - name: Netmaster IPtables | Add internal rules
  3. iptables:
  4. action: insert
  5. chain: INPUT
  6. # Parsed from the contiv_netmaster_internal list, this will be tcp or udp.
  7. protocol: "{{ item[0].split('/')[1] }}"
  8. match: "{{ item[0].split('/')[1] }}"
  9. # Parsed from the contiv_netmaster_internal list, this will be a port number.
  10. destination_port: "{{ item[0].split('/')[0] }}"
  11. # This is an IP address from a node in the cluster.
  12. source: "{{ item[1] }}"
  13. jump: ACCEPT
  14. comment: contiv
  15. with_nested:
  16. - "{{ contiv_netmaster_internal }}"
  17. - "{{ groups.oo_nodes_to_config|difference(hostvars[inventory_hostname]['ansible_' + contiv_netmaster_interface].ipv4.address)|list }}"
  18. notify: Save iptables rules
  19. - name: Netmaster IPtables | Add external rules
  20. iptables:
  21. action: insert
  22. chain: INPUT
  23. # Parsed from the contiv_netmaster_external list, this will be tcp or udp.
  24. protocol: "{{ item.split('/')[1] }}"
  25. match: "{{ item.split('/')[1] }}"
  26. # Parsed from the contiv_netmaster_external list, this will be a port number.
  27. destination_port: "{{ item.split('/')[0] }}"
  28. jump: ACCEPT
  29. comment: contiv
  30. with_items: "{{ contiv_netmaster_external }}"
  31. notify: Save iptables rules