On Thu, 2012-02-23 at 00:40 -0500, John A. Sullivan III wrote: > Hello, all. We are delighted to finally have a functioning adaptive > traffic shaping system for 95th percentile billing except for one very > serious issue. For some reason, our ingress filter to redirect to an > IFB interface is not working on a bonded interface. It does appear to > work on a non-bonded interface. > > Here are the stats on the test system: > root@testswitch01:/usr/local/sbin# tc -s filter show dev eth1 parent ffff: > filter protocol ip pref 1 u32 > filter protocol ip pref 1 u32 fh 800: ht divisor 1 > filter protocol ip pref 1 u32 fh 800::800 order 2048 key ht 800 bkt 0 terminal flowid ??? (rule hit 1960 success 1960) > match 00000000/00000000 at 0 (success 1960 ) > action order 1: mirred (Egress Redirect to device ifb0) stolen > index 17 ref 1 bind 1 installed 2318 sec > Action statistics: > Sent 609472 bytes 1960 pkt (dropped 0, overlimits 0 requeues 0) > rate 0bit 0pps backlog 0b 0p requeues 0 > > Note the rule hit / rule match. > Here are the stats from production running the same scripts: > [root@fw ~]# tc -s filter show dev bond3 parent ffff: > filter protocol ip pref 1 u32 > filter protocol ip pref 1 u32 fh 800: ht divisor 1 > filter protocol ip pref 1 u32 fh 800::800 order 2048 key ht 800 bkt 0 (rule hit 61596 success 0) > match 00000000/00000000 at 0 (success 61596 ) > action order 1: mirred (Egress Redirect to device ifb0) stolen > index 2 ref 1 bind 1 installed 2185 sec used 2185 sec > Action statistics: > Sent 0 bytes 0 pkt (dropped 0, overlimits 0 requeues 0) > rate 0bit 0pps backlog 0b 0p requeues 0 > > Note zero success on the rule and we are not seeing traffic in the > associated classes. > What do we need to do to do ingress shaping on a bonded interface? We > tried placing the filter on the physical interfaces but then the rules > were not hit at all. > > Here is the pertinent portion of the script: > # Redirect traffic into the IFB interfaces > # Egress > c=1 > for IF in ${DIFS} ${MIFS} ${VIFS} > do > ${TC} filter replace dev ${IF} parent ${c}:0 protocol ip prio 1 u32 match u8 0 0 flowid ${c}:1 action mirred egress redirect dev ${EIFB} > # Ingress > ${TC} qdisc replace dev ${IF} ingress > ${TC} filter replace dev ${IF} parent ffff: protocol ip prio 1 u32 match u8 0 0 action mirred egress redirect dev ${IIFB} > ((c++)) > done > > I'm honestly not sure if the issue is the bonded interface but that is > the one difference which leaps out to me. Thanks - John > <snip> The problem appears to be not specifying a flowid. We did not need to do so for the ingress filter under Debian Squeeze but it appears we do under CentOS 5.7. Making the rule: ${TC} filter replace dev ${IF} parent ffff: protocol ip prio 1 u32 match u8 0 0 flowid ${c}:0 action mirred egress redirect dev ${IIFB} worked. -- To unsubscribe from this list: send the line "unsubscribe lartc" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html