Advertisement
nnsense

iptables-mangle

Jun 23rd, 2015
292
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 2.52 KB | None | 0 0
  1. # iptables -t mangle -L -n
  2.  
  3. Chain PREROUTING (policy ACCEPT)
  4. target     prot opt source               destination        
  5. PREROUTING_direct  all  --  0.0.0.0/0            0.0.0.0/0          
  6. PREROUTING_ZONES_SOURCE  all  --  0.0.0.0/0            0.0.0.0/0          
  7. PREROUTING_ZONES  all  --  0.0.0.0/0            0.0.0.0/0          
  8.  
  9. Chain INPUT (policy ACCEPT)
  10. target     prot opt source               destination        
  11. INPUT_direct  all  --  0.0.0.0/0            0.0.0.0/0          
  12.  
  13. Chain FORWARD (policy ACCEPT)
  14. target     prot opt source               destination        
  15. FORWARD_direct  all  --  0.0.0.0/0            0.0.0.0/0          
  16.  
  17. Chain OUTPUT (policy ACCEPT)
  18. target     prot opt source               destination        
  19. OUTPUT_direct  all  --  0.0.0.0/0            0.0.0.0/0          
  20.  
  21. Chain POSTROUTING (policy ACCEPT)
  22. target     prot opt source               destination        
  23. POSTROUTING_direct  all  --  0.0.0.0/0            0.0.0.0/0          
  24.  
  25. Chain FORWARD_direct (1 references)
  26. target     prot opt source               destination        
  27.  
  28. Chain INPUT_direct (1 references)
  29. target     prot opt source               destination        
  30.  
  31. Chain OUTPUT_direct (1 references)
  32. target     prot opt source               destination        
  33.  
  34. Chain POSTROUTING_direct (1 references)
  35. target     prot opt source               destination        
  36.  
  37. Chain PREROUTING_ZONES (1 references)
  38. target     prot opt source               destination        
  39. PRE_public  all  --  0.0.0.0/0            0.0.0.0/0           [goto]
  40. PRE_public  all  --  0.0.0.0/0            0.0.0.0/0           [goto]
  41.  
  42. Chain PREROUTING_ZONES_SOURCE (1 references)
  43. target     prot opt source               destination        
  44.  
  45. Chain PREROUTING_direct (1 references)
  46. target     prot opt source               destination        
  47.  
  48. Chain PRE_public (2 references)
  49. target     prot opt source               destination        
  50. PRE_public_log  all  --  0.0.0.0/0            0.0.0.0/0          
  51. PRE_public_deny  all  --  0.0.0.0/0            0.0.0.0/0          
  52. PRE_public_allow  all  --  0.0.0.0/0            0.0.0.0/0          
  53.  
  54. Chain PRE_public_allow (1 references)
  55. target     prot opt source               destination        
  56. MARK       tcp  --  0.0.0.0/0            0.0.0.0/0            tcp dpt:2023 MARK set 0x64
  57.  
  58. Chain PRE_public_deny (1 references)
  59. target     prot opt source               destination        
  60.  
  61. Chain PRE_public_log (1 references)
  62. target     prot opt source               destination
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement