search for: add_shap

Displaying 1 result from an estimated 1 matches for "add_shap".

Did you mean: add_char
2005 Apr 22
1
Re: tc filter - based on iptables - MAC - MARK not working -altough marking on ip src, dst address works
Reading along the Net it seems that MAC marking is not working with egress HTB (because ipables marks packages based on --mac-source ). So my only choice is using ingress or u32. So this is how I did it: I called bellow script add_shaping DEV="eth0" tc qdisc add dev $DEV root handle 1: htb default 20 tc class add dev $DEV parent 1: classid 1:1 htb rate 200kbps ceil 200kbps tc class add dev $DEV parent 1:1 classid 1:15 htb rate 10kbps ceil 13kbps prio 3 tc class add dev $DEV parent 1:1 classid 1:20 htb rate 150kbps ceil...