iptables.yml 1.0 KB

1234567891011121314151617181920212223
  1. ---
  2. - name: IPtables | Get iptables rules
  3. command: iptables -L --wait
  4. register: iptablesrules
  5. check_mode: no
  6. - name: Allow traffic from overlay to underlay
  7. command: /sbin/iptables --wait -I FORWARD 1 -s {{ openshift_cluster_network_cidr }} -j ACCEPT -m comment --comment "nuage-overlay-underlay"
  8. when: "'nuage-overlay-underlay' not in iptablesrules.stdout"
  9. notify:
  10. - save iptable rules
  11. - name: Allow traffic from underlay to overlay
  12. command: /sbin/iptables --wait -I FORWARD 1 -d {{ openshift_cluster_network_cidr }} -j ACCEPT -m comment --comment "nuage-underlay-overlay"
  13. when: "'nuage-underlay-overlay' not in iptablesrules.stdout"
  14. notify:
  15. - save iptable rules
  16. - name: Allow docker daemon traffic from underlay to overlay
  17. command: /sbin/iptables -t nat -A POSTROUTING ! -s {{ openshift_cluster_network_cidr }} -o svc-pat-tap -j MASQUERADE -m comment --comment "nuage-docker-underlay-overlay"
  18. when: "'nuage-docker-underlay-overlay' not in iptablesrules.stdout"
  19. notify:
  20. - save iptable rules