Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Bit of QoS help.

Status
Not open for further replies.

dozier

MIS
Apr 17, 2001
88
US
hello. i've got a point to point OC-3 link between two cisco 7204s that i've implemented QoS over, but I need some verification that my configuration is doing what i intended it to.

Code:
class-map match-all DMZ_in
 match any 
class-map match-all edge3000_out
 match qos-group 1
class-map match-any edge3000_in
 match any 
class-map match-all DMZ_out
 match qos-group 2
!
!
policy-map oc3_out
 class edge3000_out
  shape peak 135000000
 class DMZ_out
  bandwidth remaining percent 100
policy-map mark_DMZ
 class DMZ_in
  set qos-group 2
policy-map mark_edge3000
 class edge3000_in
  set qos-group 1
!
!
interface GigabitEthernet0/1.20
 service-policy input mark_DMZ
!
interface GigabitEthernet0/2
 service-policy input mark_edge3000
!         
interface GigabitEthernet0/3
 service-policy input mark_edge3000
!
interface POS1/0
 service-policy output oc3_out

i intend the edge3000_out class to get 135Mbps, no more, no less, and have priority over any other traffic. the DMZ_out class can have all the remaining bandwidth available, and also be prioritized over unclassified traffic. have i set this up correctly?

thanks.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top