Advertisement
Guest User

Untitled

a guest
May 28th, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. title [ Security Level Low IN rules ]
  2.  
  3. begin
  4. RulesDropFrom192
  5. drop from addr %LANADDR%:%LANMASK% >> done, alert 0 [WAN Traffic from LAN IP]
  6. RulesPass
  7. pass all
  8.  
  9. RulesDropAddress
  10. drop from addr 0.0.0.0 >> done, alert 4 [ 0.0.0.0 Source IP Address]
  11. RulesPassUDP
  12. pass protocol udp, to port 53 >> done
  13. pass protocol udp, from port 53 >> done
  14.  
  15. RulesDropICMP
  16. drop protocol icmp >> alert 4 [ICMP Message To WAN IP]
  17. RulesDropWANUDP
  18. drop protocol udp, to addr %WANADDR%:32 >> done, alert 4 [UDP WAN Traffic to WAN IP]
  19. RulesDropWANTCP
  20. drop protocol tcp, to addr %WANADDR%:32 >> done, alert 4 [TCP WAN Traffic to WAN IP]
  21. RulesPassGoodICMP
  22. pass protocol icmp, to addr %WANADDR%:32 >> done, alert 0 [Responding to WAN Ping]
  23. RulesPassGoodICMP
  24. pass protocol icmp, to addr %LANADDR%:%LANMASK% >> done, alert 0 [Nat'ed LOCAL PING]
  25. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement