WBII Lab8
----
task 8.1
---
As per The Solutuons Guide
R1
-
policy-map SHAPE
class class-default
shape average 128000
!
!
policy-map CBWFQ
class class-default
bandwidth percent 100
queue-limit 10
!
policy-map SHAPE
class class-default
service-policy CBWFQ
!
interface Serial0/0
service-policy output SHAPE
!
First: Why was the queue-limit set to 10???. I thought the default in 64 packets
so 10 times the default should be 256 packets.
Second, since the shaping queue needs to be 10 times the default would this solution be valid:
policy-map SHAPE
class class-default
shape average 128000
shape max-buffer 4000
!
as the default max-buffer is 1000. Thus the nested policy-maps CBWFQ is not requied.