Advertisement
Guest User

filter iptables Oracle

a guest
Feb 12th, 2021
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.44 KB | None | 0 0
  1. sudo iptables -L -n -v
  2. Chain INPUT (policy ACCEPT 0 packets, 0 bytes)
  3. pkts bytes target prot opt in out source destination
  4. 6 393 ACCEPT tcp -- * * 0.0.0.0/0 0.0.0.0/0 tcp dpt:80
  5. 83708 118M ACCEPT all -- * * 0.0.0.0/0 0.0.0.0/0 ctstate RELATED,ESTABLISHED
  6. 3266 310K ACCEPT all -- lo * 0.0.0.0/0 0.0.0.0/0
  7. 721 35961 INPUT_direct all -- * * 0.0.0.0/0 0.0.0.0/0
  8. 0 0 ACCEPT tcp -- ens3 * 0.0.0.0/0 0.0.0.0/0 tcp dpt:80 state NEW,ESTABLISHED
  9. 0 0 ACCEPT tcp -- ens3 * 0.0.0.0/0 0.0.0.0/0 tcp dpt:80 state NEW,ESTABLISHED
  10. 721 35961 INPUT_ZONES_SOURCE all -- * * 0.0.0.0/0 0.0.0.0/0
  11. 0 0 ACCEPT tcp -- * * 0.0.0.0/0 0.0.0.0/0 state NEW tcp dpt:80
  12. 721 35961 INPUT_ZONES all -- * * 0.0.0.0/0 0.0.0.0/0
  13. 449 20645 DROP all -- * * 0.0.0.0/0 0.0.0.0/0 ctstate INVALID
  14. 0 0 REJECT all -- * * 0.0.0.0/0 0.0.0.0/0 reject-with icmp-host-prohibited
  15.  
  16. Chain FORWARD (policy ACCEPT 0 packets, 0 bytes)
  17. pkts bytes target prot opt in out source destination
  18. 0 0 ACCEPT all -- * * 0.0.0.0/0 0.0.0.0/0 ctstate RELATED,ESTABLISHED
  19. 0 0 ACCEPT all -- lo * 0.0.0.0/0 0.0.0.0/0
  20. 0 0 FORWARD_direct all -- * * 0.0.0.0/0 0.0.0.0/0
  21. 0 0 FORWARD_IN_ZONES_SOURCE all -- * * 0.0.0.0/0 0.0.0.0/0
  22. 0 0 FORWARD_IN_ZONES all -- * * 0.0.0.0/0 0.0.0.0/0
  23. 0 0 FORWARD_OUT_ZONES_SOURCE all -- * * 0.0.0.0/0 0.0.0.0/0
  24. 0 0 FORWARD_OUT_ZONES all -- * * 0.0.0.0/0 0.0.0.0/0
  25. 0 0 DROP all -- * * 0.0.0.0/0 0.0.0.0/0 ctstate INVALID
  26. 0 0 REJECT all -- * * 0.0.0.0/0 0.0.0.0/0 reject-with icmp-host-prohibited
  27.  
  28. Chain OUTPUT (policy ACCEPT 418 packets, 372K bytes)
  29. pkts bytes target prot opt in out source destination
  30. 73760 63M OUTPUT_direct all -- * * 0.0.0.0/0 0.0.0.0/0
  31. 4 11470 ACCEPT tcp -- * * 0.0.0.0/0 0.0.0.0/0 tcp spt:80
  32.  
  33. Chain FORWARD_IN_ZONES (1 references)
  34. pkts bytes target prot opt in out source destination
  35. 0 0 FWDI_public all -- + * 0.0.0.0/0 0.0.0.0/0 [goto]
  36.  
  37. Chain FORWARD_IN_ZONES_SOURCE (1 references)
  38. pkts bytes target prot opt in out source destination
  39.  
  40. Chain FORWARD_OUT_ZONES (1 references)
  41. pkts bytes target prot opt in out source destination
  42. 0 0 FWDO_public all -- * + 0.0.0.0/0 0.0.0.0/0 [goto]
  43.  
  44. Chain FORWARD_OUT_ZONES_SOURCE (1 references)
  45. pkts bytes target prot opt in out source destination
  46.  
  47. Chain FORWARD_direct (1 references)
  48. pkts bytes target prot opt in out source destination
  49.  
  50. Chain FWDI_public (1 references)
  51. pkts bytes target prot opt in out source destination
  52. 0 0 FWDI_public_log all -- * * 0.0.0.0/0 0.0.0.0/0
  53. 0 0 FWDI_public_deny all -- * * 0.0.0.0/0 0.0.0.0/0
  54. 0 0 FWDI_public_allow all -- * * 0.0.0.0/0 0.0.0.0/0
  55. 0 0 ACCEPT icmp -- * * 0.0.0.0/0 0.0.0.0/0
  56.  
  57. Chain FWDI_public_allow (1 references)
  58. pkts bytes target prot opt in out source destination
  59.  
  60. Chain FWDI_public_deny (1 references)
  61. pkts bytes target prot opt in out source destination
  62.  
  63. Chain FWDI_public_log (1 references)
  64. pkts bytes target prot opt in out source destination
  65.  
  66. Chain FWDO_public (1 references)
  67. pkts bytes target prot opt in out source destination
  68. 0 0 FWDO_public_log all -- * * 0.0.0.0/0 0.0.0.0/0
  69. 0 0 FWDO_public_deny all -- * * 0.0.0.0/0 0.0.0.0/0
  70. 0 0 FWDO_public_allow all -- * * 0.0.0.0/0 0.0.0.0/0
  71.  
  72. Chain FWDO_public_allow (1 references)
  73. pkts bytes target prot opt in out source destination
  74.  
  75. Chain FWDO_public_deny (1 references)
  76. pkts bytes target prot opt in out source destination
  77.  
  78. Chain FWDO_public_log (1 references)
  79. pkts bytes target prot opt in out source destination
  80.  
  81. Chain INPUT_ZONES (1 references)
  82. pkts bytes target prot opt in out source destination
  83. 721 35961 IN_public all -- + * 0.0.0.0/0 0.0.0.0/0 [goto]
  84.  
  85. Chain INPUT_ZONES_SOURCE (1 references)
  86. pkts bytes target prot opt in out source destination
  87.  
  88. Chain INPUT_direct (1 references)
  89. pkts bytes target prot opt in out source destination
  90.  
  91. Chain IN_public (1 references)
  92. pkts bytes target prot opt in out source destination
  93. 721 35961 IN_public_log all -- * * 0.0.0.0/0 0.0.0.0/0
  94. 721 35961 IN_public_deny all -- * * 0.0.0.0/0 0.0.0.0/0
  95. 721 35961 IN_public_allow all -- * * 0.0.0.0/0 0.0.0.0/0
  96. 0 0 ACCEPT icmp -- * * 0.0.0.0/0 0.0.0.0/0
  97.  
  98. Chain IN_public_allow (1 references)
  99. pkts bytes target prot opt in out source destination
  100. 272 15316 ACCEPT tcp -- * * 0.0.0.0/0 0.0.0.0/0 tcp dpt:22 ctstate NEW
  101. 0 0 ACCEPT tcp -- * * 0.0.0.0/0 0.0.0.0/0 tcp dpt:80 ctstate NEW
  102.  
  103. Chain IN_public_deny (1 references)
  104. pkts bytes target prot opt in out source destination
  105.  
  106. Chain IN_public_log (1 references)
  107. pkts bytes target prot opt in out source destination
  108.  
  109. Chain OUTPUT_direct (1 references)
  110. pkts bytes target prot opt in out source destination
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement