Advertisement
UnaClocker

iptables -L

May 8th, 2015
352
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.42 KB | None | 0 0
  1. Chain INPUT (policy ACCEPT)
  2. target prot opt source destination
  3. delegate_input all -- anywhere anywhere
  4.  
  5. Chain FORWARD (policy DROP)
  6. target prot opt source destination
  7. delegate_forward all -- anywhere anywhere
  8.  
  9. Chain OUTPUT (policy ACCEPT)
  10. target prot opt source destination
  11. delegate_output all -- anywhere anywhere
  12.  
  13. Chain delegate_forward (1 references)
  14. target prot opt source destination
  15. forwarding_rule all -- anywhere anywhere /* user chain for forwarding */
  16. ACCEPT all -- anywhere anywhere ctstate RELATED,ESTABLISHED
  17. zone_lan_forward all -- anywhere anywhere
  18. zone_wan_forward all -- anywhere anywhere
  19. reject all -- anywhere anywhere
  20.  
  21. Chain delegate_input (1 references)
  22. target prot opt source destination
  23. ACCEPT all -- anywhere anywhere
  24. input_rule all -- anywhere anywhere /* user chain for input */
  25. ACCEPT all -- anywhere anywhere ctstate RELATED,ESTABLISHED
  26. syn_flood tcp -- anywhere anywhere tcp flags:FIN,SYN,RST,ACK/SYN
  27. zone_lan_input all -- anywhere anywhere
  28. zone_wan_input all -- anywhere anywhere
  29.  
  30. Chain delegate_output (1 references)
  31. target prot opt source destination
  32. ACCEPT all -- anywhere anywhere
  33. output_rule all -- anywhere anywhere /* user chain for output */
  34. ACCEPT all -- anywhere anywhere ctstate RELATED,ESTABLISHED
  35. zone_lan_output all -- anywhere anywhere
  36. zone_wan_output all -- anywhere anywhere
  37.  
  38. Chain forwarding_lan_rule (1 references)
  39. target prot opt source destination
  40.  
  41. Chain forwarding_rule (1 references)
  42. target prot opt source destination
  43.  
  44. Chain forwarding_wan_rule (1 references)
  45. target prot opt source destination
  46.  
  47. Chain input_lan_rule (1 references)
  48. target prot opt source destination
  49.  
  50. Chain input_rule (1 references)
  51. target prot opt source destination
  52.  
  53. Chain input_wan_rule (1 references)
  54. target prot opt source destination
  55.  
  56. Chain output_lan_rule (1 references)
  57. target prot opt source destination
  58.  
  59. Chain output_rule (1 references)
  60. target prot opt source destination
  61.  
  62. Chain output_wan_rule (1 references)
  63. target prot opt source destination
  64.  
  65. Chain reject (2 references)
  66. target prot opt source destination
  67. REJECT tcp -- anywhere anywhere reject-with tcp-reset
  68. REJECT all -- anywhere anywhere reject-with icmp-port-unreachable
  69.  
  70. Chain syn_flood (1 references)
  71. target prot opt source destination
  72. RETURN tcp -- anywhere anywhere tcp flags:FIN,SYN,RST,ACK/SYN limit: avg 25/sec burst 50
  73. DROP all -- anywhere anywhere
  74.  
  75. Chain zone_lan_dest_ACCEPT (1 references)
  76. target prot opt source destination
  77. ACCEPT all -- anywhere anywhere
  78.  
  79. Chain zone_lan_forward (1 references)
  80. target prot opt source destination
  81. forwarding_lan_rule all -- anywhere anywhere /* user chain for forwarding */
  82. zone_wan_dest_ACCEPT all -- anywhere anywhere /* forwarding lan -> wan */
  83. ACCEPT all -- anywhere anywhere ctstate DNAT /* Accept port forwards */
  84. zone_lan_src_ACCEPT all -- anywhere anywhere
  85.  
  86. Chain zone_lan_input (1 references)
  87. target prot opt source destination
  88. input_lan_rule all -- anywhere anywhere /* user chain for input */
  89. ACCEPT all -- anywhere anywhere ctstate DNAT /* Accept port redirections */
  90. zone_lan_src_ACCEPT all -- anywhere anywhere
  91.  
  92. Chain zone_lan_output (1 references)
  93. target prot opt source destination
  94. output_lan_rule all -- anywhere anywhere /* user chain for output */
  95. zone_lan_dest_ACCEPT all -- anywhere anywhere
  96.  
  97. Chain zone_lan_src_ACCEPT (2 references)
  98. target prot opt source destination
  99. ACCEPT all -- anywhere anywhere
  100.  
  101. Chain zone_wan_dest_ACCEPT (2 references)
  102. target prot opt source destination
  103. ACCEPT all -- anywhere anywhere
  104.  
  105. Chain zone_wan_forward (1 references)
  106. target prot opt source destination
  107. forwarding_wan_rule all -- anywhere anywhere /* user chain for forwarding */
  108. ACCEPT all -- anywhere anywhere ctstate DNAT /* Accept port forwards */
  109. zone_wan_src_REJECT all -- anywhere anywhere
  110.  
  111. Chain zone_wan_input (1 references)
  112. target prot opt source destination
  113. input_wan_rule all -- anywhere anywhere /* user chain for input */
  114. ACCEPT udp -- anywhere anywhere udp dpt:bootpc /* Allow-DHCP-Renew */
  115. ACCEPT icmp -- anywhere anywhere icmp echo-request /* Allow-Ping */
  116. ACCEPT all -- anywhere anywhere ctstate DNAT /* Accept port redirections */
  117. zone_wan_src_REJECT all -- anywhere anywhere
  118.  
  119. Chain zone_wan_output (1 references)
  120. target prot opt source destination
  121. output_wan_rule all -- anywhere anywhere /* user chain for output */
  122. zone_wan_dest_ACCEPT all -- anywhere anywhere
  123.  
  124. Chain zone_wan_src_REJECT (2 references)
  125. target prot opt source destination
  126. reject all -- anywhere anywhere
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement