iptables.yml 784 B

1234567891011121314151617
  1. ---
  2. - name: IPtables | Get iptables rules
  3. command: iptables -L --wait
  4. register: iptablesrules
  5. always_run: yes
  6. - name: Allow traffic from overlay to underlay
  7. command: /sbin/iptables --wait -I FORWARD 1 -s {{ hostvars[groups.oo_first_master.0].openshift.master.sdn_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 {{ hostvars[groups.oo_first_master.0].openshift.master.sdn_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