Advertisement
adhioutlined

NETWORKNODE-IPTABLES_myLiberty_XSNEUTRON

Sep 23rd, 2016
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 2.03 KB | None | 0 0
  1. ==========================================
  2. NETWORK-NODE IPTABLES
  3. ==========================================
  4. # iptables -L
  5. Chain INPUT (policy ACCEPT)
  6. target     prot opt source               destination
  7. neutron-openvswi-INPUT  all  --  anywhere             anywhere
  8. ACCEPT     all  --  anywhere             anywhere             state RELATED,ESTABLISHED
  9. ACCEPT     icmp --  anywhere             anywhere
  10. ACCEPT     all  --  anywhere             anywhere
  11. ACCEPT     tcp  --  anywhere             anywhere             state NEW tcp dpt:4506
  12. ACCEPT     tcp  --  anywhere             anywhere             state NEW tcp dpt:4505
  13. ACCEPT     tcp  --  anywhere             anywhere             state NEW tcp dpt:ssh
  14.  
  15. Chain FORWARD (policy ACCEPT)
  16. target     prot opt source               destination
  17. neutron-filter-top  all  --  anywhere             anywhere
  18. neutron-openvswi-FORWARD  all  --  anywhere             anywhere
  19.  
  20. Chain OUTPUT (policy ACCEPT)
  21. target     prot opt source               destination
  22. neutron-filter-top  all  --  anywhere             anywhere
  23. neutron-openvswi-OUTPUT  all  --  anywhere             anywhere
  24.  
  25. Chain neutron-filter-top (2 references)
  26. target     prot opt source               destination
  27. neutron-openvswi-local  all  --  anywhere             anywhere
  28.  
  29. Chain neutron-openvswi-FORWARD (1 references)
  30. target     prot opt source               destination
  31.  
  32. Chain neutron-openvswi-INPUT (1 references)
  33. target     prot opt source               destination
  34.  
  35. Chain neutron-openvswi-OUTPUT (1 references)
  36. target     prot opt source               destination
  37.  
  38. Chain neutron-openvswi-local (1 references)
  39. target     prot opt source               destination
  40.  
  41. Chain neutron-openvswi-sg-chain (0 references)
  42. target     prot opt source               destination
  43. ACCEPT     all  --  anywhere             anywhere
  44.  
  45. Chain neutron-openvswi-sg-fallback (0 references)
  46. target     prot opt source               destination
  47. DROP       all  --  anywhere             anywhere             /* Default drop rule for unmatched traffic. */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement