netplugin_iptables.yml 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. ---
  2. - name: Netplugin IPtables | Get iptables rules
  3. command: iptables -L --wait
  4. register: iptablesrules
  5. always_run: yes
  6. - name: Netplugin IPtables | Enable iptables at boot
  7. service:
  8. name: iptables
  9. enabled: yes
  10. state: started
  11. - name: Netplugin IPtables | Open Netmaster with iptables
  12. command: /sbin/iptables -I INPUT 1 -p tcp --dport {{ item }} -j ACCEPT -m comment --comment "contiv"
  13. with_items:
  14. - "{{ netmaster_port }}"
  15. - "{{ contiv_rpc_port1 }}"
  16. - "{{ contiv_rpc_port2 }}"
  17. - "{{ contiv_rpc_port3 }}"
  18. - "{{ contiv_etcd_port }}"
  19. - "{{ kube_master_api_port }}"
  20. when: iptablesrules.stdout.find("contiv") == -1
  21. notify: Save iptables rules
  22. - name: Netplugin IPtables | Open vxlan port with iptables
  23. command: /sbin/iptables -I INPUT 1 -p udp --dport 8472 -j ACCEPT -m comment --comment "netplugin vxlan 8472"
  24. when: iptablesrules.stdout.find("netplugin vxlan 8472") == -1
  25. notify: Save iptables rules
  26. - name: Netplugin IPtables | Open vxlan port with iptables
  27. command: /sbin/iptables -I INPUT 1 -p udp --dport 4789 -j ACCEPT -m comment --comment "netplugin vxlan 4789"
  28. when: iptablesrules.stdout.find("netplugin vxlan 4789") == -1
  29. notify: Save iptables rules
  30. - name: Netplugin IPtables | Allow from contivh0
  31. command: /sbin/iptables -I FORWARD 1 -i contivh0 -j ACCEPT -m comment --comment "contivh0 FORWARD input"
  32. when: iptablesrules.stdout.find("contivh0 FORWARD input") == -1
  33. notify: Save iptables rules
  34. - name: Netplugin IPtables | Allow to contivh0
  35. command: /sbin/iptables -I FORWARD 1 -o contivh0 -j ACCEPT -m comment --comment "contivh0 FORWARD output"
  36. when: iptablesrules.stdout.find("contivh0 FORWARD output") == -1
  37. notify: Save iptables rules
  38. - name: Netplugin IPtables | Allow from contivh1
  39. command: /sbin/iptables -I FORWARD 1 -i contivh1 -j ACCEPT -m comment --comment "contivh1 FORWARD input"
  40. when: iptablesrules.stdout.find("contivh1 FORWARD input") == -1
  41. notify: Save iptables rules
  42. - name: Netplugin IPtables | Allow to contivh1
  43. command: /sbin/iptables -I FORWARD 1 -o contivh1 -j ACCEPT -m comment --comment "contivh1 FORWARD output"
  44. when: iptablesrules.stdout.find("contivh1 FORWARD output") == -1
  45. notify: Save iptables rules
  46. - name: Netplugin IPtables | Allow dns
  47. command: /sbin/iptables -I INPUT 1 -p udp --dport 53 -j ACCEPT -m comment --comment "contiv dns"
  48. when: iptablesrules.stdout.find("contiv dns") == -1
  49. notify: Save iptables rules