Hello,
I'm trying to limit the frame rate on T2080RDB. I used this policy and config:
<netpcd xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="xmlProject/pcd.xsd" name="example"
description="Bridging configuration">
<policer name="policer_10g">
<algorithm>rfc2698</algorithm>
<color_mode>color_blind</color_mode>
<CIR>120000</CIR>
<EIR>340000</EIR>
<CBS>560000</CBS>
<EBS>780000</EBS>
<unit>packet</unit>
<action condition="on-red" type="drop"/>
</policer>
<distribution name="rp_dist">
<queue count="128" base="0x3800"/>
<action name="policer_10g" type="policer"/>
</distribution>
<policy name="rp1">
<dist_order>
<distributionref name="rp_dist"/>
</dist_order>
</policy>
</netpcd>
<cfgdata>
<config>
<engine name="fm0">
<port type="MAC" number="1" policy="rp1"/>
</engine>
</config>
</cfgdata>
currently rate limit work (with SDK1.9 and SDK2.0); but just one core process all the frames. Is there any way to use all cores with rate limit ?
Thanks.