* Ian McDonald <[EMAIL PROTECTED]> 2005-11-02 09:25
> I always use netem on a middle box as only works on outbound queuing
> but what you are doing may solve that - not quite sure what you are
> doing there!

Off-topic (maybe helpful) it is possible to do basic traffic
policing on ingress like this:

tc qdisc add dev ${indev} handle ffff: ingress

tc filter add dev ${indev} parent ffff: \
    protocol ip \
    prio 10 \
    u32 match ip protocol 33 0xff \  
    police rate 100kbit \
        burst 20k \
        drop \
        flowid :1

so this would just drop all dccp traffic exceeding 100kbit/s based
on a not very reliable rate estimator.
-
To unsubscribe from this list: send the line "unsubscribe dccp" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to