For the mailling list record. This works: Iptables: -A FORWARD -s 192.168.1.0/24 -j MARK --set-mark 3 -A POSTROUTING -s ! 192.168.1.0/24 -d 192.168.1.0/24 -j MARK --set-mark 4 TC: tc qdisc add dev eth0 root handle 11: cbq bandwidth 100Mbit avpkt 1000 mpu 64 tc class add dev eth0 parent 11:0 classid 11:1 cbq rate 2000kbit weight 15kbit allot 1514 prio 1 avpkt 1000 bounded tc filter add dev eth0 parent 11:0 protocol ip handle 4 fw flowid 11:1 tc qdisc add dev eth1 root handle 10: cbq bandwidth 10Mbit avpkt 1000 mpu 64 tc class add dev eth1 parent 10:0 classid 10:1 cbq rate 500kbit weight 2kbit allot 1514 prio 1 avpkt 1000 bounded tc filter add dev eth1 parent 10:0 protocol ip handle 3 fw flowid 10:1 This configuration restricts downloads on internal clients to 2000KB, and uploads to 500KB while not effecting the host. Casey ----- Original Message ----- From: Casey Scott <casey@xxxxxxxxxxxxxx> To: netfilter@xxxxxxxxxxxxxxxxxxx Sent: Thursday, April 20, 2006 11:59:34 AM GMT-0800 Subject: iptables throttle via tc cont. After working some more on my original post, I've come up with this. It doesn't work, though I think it should. I am trying to throttle incoming connections from the Internet. Since tc filters work on transmit, the best place to restrict seems to be from eth1 to eth0 (FORWARD). That way, the restriction imposed on the trasmit of eth1 won't apply to a connection from the internal network going out (like an file upload). The box in question has eth0 in an internal network and eth1 on the WAN link. iptables -t mangle -A FORWARD -i eth0 -j MARK --set-mark 1 iptables -t mangle -A FORWARD -i eth1 -j MARK --set-mark 2 tc qdisc del dev eth0 root 2>/dev/null tc qdisc add dev eth0 root handle 1:0 htb default 1 tc class add dev eth0 parent 1:0 classid 1:1 htb rate 100mbit tc class add dev eth0 parent 1:1 classid 1:10 htb rate 2kbit tc filter add dev eth0 parent 1:0 protocol ip prio 0 handle 1 fw classid 1:10 tc filter add dev eth0 parent 1:0 protocol ip prio 0 handle 2 fw classid 1:1 Though I see packets being caught by the iptables rules, they never seem to get the tc filters applied to them. Thanks, Casey