Qos and CLASSIFY

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Hi Guys

After googling a little I couldn't find the correct answer..

Scenario:

#!/bin/bash
#
#        128Kbps              192.168.0.1
#       <-----  eth1 firewall   eth0
# internet-adsl-----+squid---------------4 desktops
#       ----->      +QoS                   192.168.0.5
#       450Kbps                                     .11
#                                                   .12
#                                                   .20
#
echo -e "calling modules\n"
modprobe sch_htb sch_prio sch_sfq cls_u32

echo -e "limiting download\n"

echo -e "deleting qdisc \n"
tc qdisc del dev eth0 root

echo -e "adding HTB and SFP/PFIFO as leaves\n"
tc qdisc add dev eth0 root handle 1:0 htb

tc class add dev eth0 parent 1:0 classid 1:1 htb rate 450kbit ceil
450kbit

tc class add dev eth0 parent 1:1 classid 1:30 htb rate  80kbit ceil
400kbit
tc class add dev eth0 parent 1:1 classid 1:40 htb rate  80kbit ceil
400kbit
tc class add dev eth0 parent 1:1 classid 1:50 htb rate  80kbit ceil
400kbit
tc class add dev eth0 parent 1:1 classid 1:60 htb rate  80kbit ceil
400kbit

tc qdisc add dev eth0 parent 1:30 handle 30: sfq perturb 10
tc qdisc add dev eth0 parent 1:40 handle 40: sfq perturb 10
tc qdisc add dev eth0 parent 1:50 handle 50: sfq perturb 10
tc qdisc add dev eth0 parent 1:60 handle 60: sfq perturb 10


Using :

tc filter add dev eth0 parent 1:0 protocol ip prio 1 u32 match ip dst
192.168.0.1 flowid 1:20 

I can shape traffic to 1:20. Now instead tc filter I would like to use
CLASSIFY as below:

iptables -t mangle -A POSTROUTING -o eth0 -d 192.168.0.5 -j CLASSIFY
--set-class 1:30

but when I comment tc filter add...u32 match ip dst 192.168.0.1... and
include iptables -t mangle..CLASSIFY nothing works.

Where Am I wrong??


thanks in advanced

-
-- 
Paulo Ricardo Bruck - consultor

Attachment: signature.asc
Description: Esta =?ISO-8859-1?Q?=E9?= uma parte de mensagem assinada digitalmente


[Index of Archives]     [Linux Netfilter Development]     [Linux Kernel Networking Development]     [Netem]     [Berkeley Packet Filter]     [Linux Kernel Development]     [Advanced Routing & Traffice Control]     [Bugtraq]

  Powered by Linux