Advertisement
Guest User

Untitled

a guest
Apr 25th, 2018
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.01 KB | None | 0 0
  1. Chain INPUT (policy ACCEPT 0 packets, 0 bytes)
  2. pkts bytes target prot opt in out source destination
  3. 947 588K local_drop all * * ::/0 ::/0
  4. 286 24744 ACCEPT tcp * * ::/0 ::/0 tcp dpt:22
  5. 9 720 ACCEPT tcp * * ::/0 ::/0 tcp dpt:53
  6. 2 164 ACCEPT udp * * ::/0 ::/0 udp dpt:53
  7. 75 7594 ACCEPT tcp * * ::/0 ::/0 multiport dports 25,465,993 /* Allow mail related traffic */
  8. 39 3197 ACCEPT tcp * * ::/0 ::/0 multiport dports 80,443 /* Allow HTTP(S) traffic */
  9. 377 540K ACCEPT all * * ::/0 ::/0 state RELATED,ESTABLISHED /* Allow all incoming on established connections */
  10. 6 536 ACCEPT all lo * ::/0 ::/0 /* Allow all traffic on lo interface */
  11. 153 10992 DROP all eth0 * ::/0 ::/0 /* Drop all incomming traffic not specified above */
  12.  
  13. Chain FORWARD (policy ACCEPT 0 packets, 0 bytes)
  14. pkts bytes target prot opt in out source destination
  15.  
  16. Chain OUTPUT (policy ACCEPT 155 packets, 11136 bytes)
  17. pkts bytes target prot opt in out source destination
  18. 937 158K ACCEPT all * * ::/0 ::/0 state NEW,RELATED,ESTABLISHED /* Allow all outgoing on established connections */
  19. 2 216 ACCEPT all * lo ::/0 ::/0 /* Allow all traffic on lo interface */
  20.  
  21. Chain local_drop (1 references)
  22. pkts bytes target prot opt in out source destination
  23. 947 588K RETURN all * * ::/0 ::/0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement