Advertisement
Guest User

Untitled

a guest
May 23rd, 2015
237
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.42 KB | None | 0 0
  1. object-group network remote-pcs
  2. host hoszt-1-ip
  3. host hoszt-2-ip
  4.  
  5. object-group network voip-providers
  6. host voip-provider-1-ip
  7. host voip-provider-1-ip
  8.  
  9. ip access-list extended FW_EXCLUSIONS_ACL
  10. permit udp any host 255.255.255.255 range 67 68
  11. permit tcp object-group remote-pcs any eq SSH_PORT
  12. permit udp object-group voip-providers any eq SIP_PORT
  13. permit udp any any eq STUN_PORT
  14. permit udp any any range RTP_PORT_RANGES log
  15.  
  16.  
  17. class-map type inspect match-any IN_TO_OUT_CLASS
  18. match protocol http
  19. match protocol https
  20. match protocol pop3s
  21. match protocol smtp
  22. match protocol dns
  23. match protocol tcp
  24. match protocol udp
  25.  
  26. class-map type inspect match-all FW_EXCLUSIONS_CLASS
  27. match access-group name FW_EXCLUSIONS_ACL
  28.  
  29. policy-map type inspect IN_TO_OUT
  30. class IN_TO_OUT_CLASS
  31. inspect
  32. class class-default
  33. drop
  34.  
  35. policy-map type inspect FW_EXCLUSIONS
  36. class FW_EXCLUSIONS_CLASS
  37. inspect
  38. class class-default
  39. drop
  40.  
  41. zone security INSIDE
  42. zone security OUTSIDE
  43.  
  44. zone-pair security INSIDE-to-OUTSIDE source INSIDE destination OUTSIDE
  45. service-policy type inspect IN_TO_OUT
  46. zone-pair security OUTSIDE-to-INSIDE source OUTSIDE destination INSIDE
  47. service-policy type inspect FW_EXCLUSIONS
  48.  
  49. interface BVI1
  50. zone-member security INSIDE
  51. interface Vlan 600
  52. zone-member security INSIDE
  53. interface Vlan 700
  54. zone-member security INSIDE
  55. interface Fa4
  56. zone-member security OUTSIDE
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement