Quantcast
Channel: IEOC - INE's Online Community
Viewing all articles
Browse latest Browse all 10744

MQC Single-Rate Three-Color Policer

$
0
0

The solution guide explains how policing burst sizes at one end must be greater than shaping burst sizes at the other end, but the explanation is a little too difficult for me.

Can someone explain?

------------------------------

By the way, the formula in Step 3 in SG should be corrected as follows (added the words in bold):

 

if (S <= CBS) then   ### "<=" instead of "<"

  Packet Conforms;

  CBS = CBS - S;

else if (S < CBS + EBS) then  ###"CBS + EBS" instead of "EBS"

  Packet Exceeds;

  EBS = CBS + EBS - S;  ### "CBS + EBS - S" instead of "EBS - S"

else

  Packet Violates;

end if

 


Viewing all articles
Browse latest Browse all 10744

Trending Articles