Advertisement
Guest User

Untitled

a guest
Jun 18th, 2013
843
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.27 KB | None | 0 0
  1. !
  2. class-map match-any EF
  3. match ip dscp ef
  4. match ip dscp cs5
  5. class-map match-any BE
  6. match ip dscp default
  7. class-map match-any INTERNAL
  8. match access-group name RFC1918
  9. match access-group name COMPANY-DMZ
  10. class-map match-any RDPTRAFFIC
  11. match access-group name RDPTRAFFIC
  12. class-map match-any AF-HIGH
  13. match ip dscp af31
  14. match ip dscp cs3
  15. class-map match-any ALL
  16. match any
  17. class-map match-any NETWORK
  18. match ip precedence 6
  19. match ip precedence 7
  20. class-map match-any AF-LOW
  21. match ip dscp af21
  22. match ip dscp cs2
  23. !
  24. !
  25. policy-map setTos
  26. class EF
  27. class RDPTRAFFIC
  28. set ip dscp af31
  29. class INTERNAL
  30. set ip dscp af21
  31. class class-default
  32. set ip dscp default
  33. policy-map useTos
  34. class EF
  35. priority percent 70
  36. class AF-HIGH
  37. bandwidth remaining percent 55
  38. class AF-LOW
  39. bandwidth remaining percent 25
  40. class BE
  41. bandwidth remaining percent 18
  42. class NETWORK
  43. policy-map QOS
  44. class ALL
  45. shape average 4096000
  46. service-policy useTos
  47. !
  48. !
  49. ip access-list standard COMPANY-DMZ
  50. permit 20.30.40.0 0.0.0.255
  51. !
  52. ip access-list standard RFC1918
  53. permit 10.0.0.0 0.255.255.255
  54. permit 172.16.0.0 0.15.255.255
  55. permit 192.168.0.0 0.0.255.255
  56. !
  57. ip access-list extended RDPTRAFFIC
  58. permit tcp any eq 3389 any
  59. permit tcp any any eq 3389
  60. !
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement