[LARTC] please advise me in HTB and HFSC

2006-06-22 Thread *~ r a K u ~ *


now i'm read a lot of knowledge paper about traffic control in linux because now i'm try to develop and research about traffic shaper so can everybody tell me about my topic ... Is it can do for real
my topic is "now, many organization use traffic shaper for control traffic and bandwidth because don't want something example some mac address, ip address, traffic in that port or that application use a lot of bandwidth more than it appropriate should use example if people in organization try to use p2p application ,it may make a lot of problem for all bandwidth in organization
now most famous algorithm to manage queue in mastershaper is "HTB" but i have just read some paper their tell about"HFSC" algorithm ,it's very good to manage real-time application traffic so i think may be performance when HTB manage real-time application are not work if i comparable with performance by HFSC"
so my project is ... i want to develop new traffic shaper that use 2 algorithm simultaneously (HTB for manage general traffic and HFSC for manage only real time application) by when the package come in my shaper outbound i will have one filter for filtering that package about what kind of that package??(general or real time application package) and then after filtering it will continue send that package to appropriate queue to mananage shaper later"
sorry for my bad english so much may be you don't understand my project topic so looking in my picture. 
  (general package) outbound | |-- HTB --eth0--- filter ||___|--- HFSC  (real time application package)
now my problem is... i read a lot paper they tell if i want to use traffic shaper in outbound side. In linux i must use tc command for setting it, but it's telling me about setting algoritm will start to set in root qdisc and root qdisc is outboud sideso i fear about i can't setting 2 algorithm simultaneously
so please advise me , if you think i'm misunderstand and Is it can do for real??? what should i do???
Express yourself instantly with MSN Messenger! MSN Messenger Download today it's FREE!

___
LARTC mailing list
LARTC@mailman.ds9a.nl
http://mailman.ds9a.nl/cgi-bin/mailman/listinfo/lartc


[LARTC] run multiple algorithm qdisc simultaneously (HTB HFSC)

2006-06-25 Thread *~ r a K u ~ *
now i'm read a lot of knowledge paper about traffic control in linux because now i'm try to develop and research about traffic shaper so can everybody tell me about my topic 
... Is it can do for real
my topic is "now, many organization use traffic shaper for control traffic and bandwidth because don't want something example some mac address, ip address, traffic in that port or that application use a lot of bandwidth more than it appropriate should use example if people in organization try to use 
p2p application ,it may make a lot of problem for all bandwidth in organization
now most famous algorithm to manage queue in mastershaper is "HTB" but i have just read some paper their tell about"HFSC" algorithm ,it's very good to manage real-time application traffic so i think may be performance when HTB manage real-time application are not work if i comparable 
with performance by HFSC"
so my project is ... i want to develop new traffic shaper that use 2 algorithm simultaneously (HTB for manage general traffic and HFSC for manage only real time application) 
by when the package come in my shaper outbound i will have one filter for filtering that package about what kind of that package??(general or real time application package) and then after filtering it will continue send that package to appropriate 
queue to separate manage traffic later.
sorry for my bad english so much may be you don't understand my project topic so looking in my picture. 
 (general package) outbound - HTB--eth0--- filter   - HFSC (real time application package)
now my problem is... i read a lot paper they tell if i want to use traffic shaper in outbound side. In linux i must use tc command for setting it, but it's telling me about setting 
algoritm will start to set in root qdisc and root qdisc is outboud sideso i fear about i can't setting 2 algorithm simultaneously in tc command

so please advise me , if you think i'm misunderstand and Is it can do for real??? what should i do???
my question1. In tc command, at root qdisc we must specify what kind of algorithm to use??(htb or etc) Ex. tc qdisc add dev eth0 root handle 1: "htb"-Is it important and must specify algorithm in above command??? and can i define algorithm later??-If i use above command, another class under that root qdisc must be only HTB algorithm? Can be HFSC,CBQ etc??? what should i do it???
2. About linux traffic control atchitecture theory, Is it true or false???(It's only my assumption)Can i define new qdisc under root qdiscBecause from theory, we define class under qdisc. 
this is my assumptiontc qdisc add dev eth0 root handle 1: fifo tc qdisc add dev eth0 parent 1: classid 10:1 htb rate 100kbps ceil 100kbpstc qdisc add dev eth0 parent 1: classid 10:2 hfsc rate 100kbps ceil 100kbps
2. i want to have two different qdisc for run simultaneously??(HTB and HFSC) Can i do it for realif i can, so what should i do it with tc command?
3. In the one time, Outbound traffic Linux can setting to have 2 root qdisc 
FREE pop-up blocking with the new MSN Toolbar MSN Toolbar Get it now!

___
LARTC mailing list
LARTC@mailman.ds9a.nl
http://mailman.ds9a.nl/cgi-bin/mailman/listinfo/lartc


[LARTC] Can i attach another qdisc under classes or root qdisc?

2006-06-26 Thread *~ r a K u ~ *
now, i'm learning and try to read a lot of article about tc command in linux for setting traffic shaper.but i'm doubt aboutIn the theory about tc command ... In general, we define class under root qdiscbut Is it can be possible  If we define another qdisc under root qdisc, Can i do it?because i have just read tc command syntax and i found this point ...

syntax: tc qdisc [add/del] dev String[handle][root /ingress/ parent CLASSID][QDISC_KIND] := {fifo /tbf/ prio/ cbq/ htb/ hfsc}

from above syntax at [handle][root /ingress/ parent CLASSID]
Is "parent CLASSID" mean we can define qdisc under classso this is my assumption about that. and Could you advise me about Is it can do for real

//first .. define root qdisctc qdisc add dev eth0 root handle 1: fifo 
//second ... define class under root qdisc but algorithm's not same like root qdisc algorithmtc class add dev eth0 parent 1: classid 1:1 htb rate 100kbps ceil 100kbpstc class add dev eth0 parent 1: classid 1:2 hfsc rate 100kbps ceil 100kbps
//later attach qdisc to those classestc qdisc add dev eth0 parent 1:1 classid 10:11 htb rate 100kbps ceil 100kbpstc qdisc add dev eth0 parent 1:2 classid 10:21 hfsc rate 100kbps ceil 100kbps

Is is true or falseThank you so much, and so sorry for my bad english language.Express yourself instantly with MSN Messenger! MSN Messenger Download today it's FREE!

___
LARTC mailing list
LARTC@mailman.ds9a.nl
http://mailman.ds9a.nl/cgi-bin/mailman/listinfo/lartc


Re: [LARTC] Can i attach another qdisc under classes or root qdisc?

2006-07-03 Thread *~ r a K u ~ *

thank you so much for your reply, 
but i doubt about "If I understand your question correctly, the answer is "yes". It ispossible to have nested qdiscs. Note that you can nest qdiscs ifyou are using a classful qdisc [0]. See also my list at the bottomof this message."
you mean we can define "nested qdisc" but algorithm in nested qdiscmust same as parent class i'm not clear it andIs we can define nested qdisc with algorithm different from parent class?like this example tc command
and At step 4 about your advise" 4. Now, you may attach a brand-new classful or classless qdisc to one of your existing classes. Repeat from step 1 for each new qdisc."
tc qdisc add dev eth0 root handle 1: htb//this left node hierachy for manage general packagetc class add dev eth0 parent 1: classid 1:1 htb rate 100kbps ceil 100kbps//this right node hierachy for manage real time packagetc class add dev eth0 parent 1: classid 1:2 htb rate 100kbps ceil 100kbps// from your adivse at step 4, attach brand-new after define classbut Is it true??? because algorithm new qdisc are different from class algorithmthat qdisc attach it.tc qdisc add dev eth0 parent 1:2 classid 10:11 hfsc rate 100kbpstc class add dev eth0 parent 10:11 classid 1:111 hfsc rate 100kbps ceil 100kbpstc class add dev eth0 parent 10:11 classid 1:112 hfsc rate 100kbps ceil 100kbps
please adivse me about my assumption, :)
and Can somebody advise me about HOW TO do later in this topic.i want to have got traffic shaper and my solotion is ...i want to manage different traffic package (general package use and real time package)so now i think about have got a problem with tc command, ... i think it can't settingto manage different package with different algorithm HTB and HFSCDo you have any idea about how to setting tc command example
thank you




From:"Martin A. Brown" [EMAIL PROTECTED]To:*~ r a K u ~ * [EMAIL PROTECTED]CC:lartc@mailman.ds9a.nlSubject:Re: [LARTC] Can i attach another qdisc under classes or root qdisc?Date:Thu, 29 Jun 2006 09:14:52 -0500Greetings,: now, i'm learning and try to read a lot of article about tc: command in linux for setting traffic shaper. but i'm doubt about: In the theory about tc command ... In general, we define class: under root qdisc but Is it can be possible  If we define: another qdisc under root qdisc, Can i do it? because i have just: read tc command syntax and i found this point ...[ 
snip mangled "tc qdisc help" output ]: from above syntax at [handle][root /ingress/ parent CLASSID]: Is "parent CLASSID" mean we can define qdisc under class so: this is my assumption about that. and Could you advise me about: Is it can do for realIf I understand your question correctly, the answer is "yes".It ispossible to have nested qdiscs.Note that you can nest qdiscs ifyou are using a classful qdisc [0].See also my list at the bottomof this message.: //first .. define root qdisc:: tc qdisc add dev eth0 root handle 1: fifoBzzzt!Sadly, you can't do this.A fifo qdisc is a classlessqdisc, meaning 
that it cannot have any children.(Poor barrenthing!): //second ... define class under root qdisc but algorithm's not same like root qdisc algorithm:: tc class add dev eth0 parent 1: classid 1:1 htb rate 100kbps ceil 100kbps: tc class add dev eth0 parent 1: classid 1:2 hfsc rate 100kbps ceil 100kbpsWell, you can't quite mix and match classes without having a parentqdisc of the type you want.An HTB parent qdisc can have any numberof children arranged in a tree structure below the parent.Similarly, an HFSC class structure needs to attach to an HFSC qdiscitself.Note, though, you cannot simply change the class name fromhtb to hfsc and supply the same parameters.HTB uses the rate 
andceil parameters, but HFSC uses different parameters (rt, sc and ul).: //later attach qdisc to those classes:: tc qdisc add dev eth0 parent 1:1 classid 10:11 htb rate 100kbps ceil 100kbps: tc qdisc add dev eth0 parent 1:2 classid 10:21 hfsc rate 100kbps ceil 100kbpsOK, now, let's pretend that you have a classful qdisc (e.g. HTB)with two classes, 1:1 and 1:2, AND that you have a good reason foradding a nested qdisc to one of these classes.If that were thecase, then you could add the qdiscs to the parent classes in thefollowing fashion: # -- create a new qdisc, attached inside an existing class #hierarchy below class 1:1 # 
$qdisc_add parent1:1 handle10:0 htb # # -- add a class to our newly created qdisc, and set the #rate and ceil parameters # $class_add parent 10:0 classid 10:1 htb rate 100kbps ceil 100kbpsNote, that you'd still need filters.If I were you, I'd review the documentation for both HTB and HFSCafter understanding the entire Linux traffic control model.Here'sa crash course, starting at the root qdisc: 1. The qdisc can be- classless (e.g., FIFO, SFQ, ESFQ, TBF, GRED)- classful (e.g., HTB, HFSC, CBQ, PRIO) 2. If the qdisc is classful, keep 
reading.If the root qdisc isc

[LARTC] Can i attach another qdisc under classes or root qdisc?

2006-07-10 Thread *~ r a K u ~ *
thank you so much for your reply, 
but i doubt about 
"If I understand your question correctly, the answer is "yes". It ispossible to have nested qdiscs. Note that you can nest qdiscs ifyou are using a classful qdisc [0]. See also my list at the bottomof this message."

you mean we can define "nested qdisc" but algorithm in nested qdiscmust same as parent class i'm not clear it andIs we can define nested qdisc with algorithm different from parent class?like this example tc command

and At step 4 about your advise" 4. Now, you may attach a brand-new classful or classless qdisc to one of your existing classes. Repeat from step 1 for each new qdisc."

tc qdisc add dev eth0 root handle 1: htb//this left node hierachy for manage general packagetc class add dev eth0 parent 1: classid 1:1 htb rate 100kbps ceil 100kbps//this right node hierachy for manage real time packagetc class add dev eth0 parent 1: classid 1:2 htb rate 100kbps ceil 100kbps// from your adivse at step 4, attach brand-new after define class
but Is it true??? because algorithm new qdisc are different from class algorithmthat qdisc attach it.tc qdisc add dev eth0 parent 1:2 classid 10:11 hfsc rate 100kbpstc class add dev eth0 parent 10:11 classid 1:111 hfsc rate 100kbps ceil 100kbpstc class add dev eth0 parent 10:11 classid 1:112 hfsc rate 100kbps ceil 100kbps

please adivse me about my assumption, :)

and Can somebody advise me about HOW TO do later in this topic.i want to have got traffic shaper and my solotion is ...i want to manage different traffic package (general package use and real time package)so now i think about have got a problem with tc command, ... i think it can't settingto manage different package with different algorithm HTB and HFSCDo you have any idea about how to setting tc command example
thank you

-
Greetings, : now, i'm learning and try to read a lot of article about tc  : command in linux for setting traffic shaper. but i'm doubt about  : In the theory about tc command ... In general, we define class  : under root qdisc but Is it can be possible  If we define  : another qdisc under root qdisc, Can i do it? because i have just  : read tc command syntax and i found this point ...[ snip mangled "tc qdisc help" output ] : from above syntax at [handle][root /ingress/ parent CLASSID]  : Is "parent CLASSID" mean we can define qdisc under class so  : this is my assumption about that. and Could you advise me about  : Is it can do for realIf I understand your question correctly, the answer is "yes". It is possible to have nested qdiscs. Note that you can nest qdiscs if you are 
using a classful qdisc [0]. See also my list at the bottom of this message. : //first .. define root qdisc : : tc qdisc add dev eth0 root handle 1: fifoBzzzt! Sadly, you can't do this. A fifo qdisc is a classless qdisc, meaning that it cannot have any children. (Poor barren thing!) : //second ... define class under root qdisc but algorithm's not same like rootqdisc algorithm : : tc class add dev eth0 parent 1: classid 1:1 htb rate 100kbps ceil 100kbps : tc class add dev eth0 parent 1: classid 1:2 hfsc rate 100kbps ceil 100kbpsWell, you can't quite mix and match classes without having a parent qdisc of the type you want. An HTB parent qdisc can have any number of children arranged in a tree structure below the parent.Similarly, an HFSC class structure needs to attach to an 
HFSC qdisc itself. Note, though, you cannot simply change the class name from htb to hfsc and supply the same parameters. HTB uses the rate and ceil parameters, but HFSC uses different parameters (rt, sc and ul). : //later attach qdisc to those classes : : tc qdisc add dev eth0 parent 1:1 classid 10:11 htb rate 100kbps ceil 100kbps : tc qdisc add dev eth0 parent 1:2 classid 10:21 hfsc rate 100kbps ceil 100kbpsOK, now, let's pretend that you have a classful qdisc (e.g. HTB) with two classes, 1:1 and 1:2, AND that you have a good reason for adding a nested qdisc to one of these classes. If that were the case, then you could add the qdiscs to the parent classes in the following fashion: # -- create a new qdisc, attached inside an existing class # hierarchy below class 
1:1 # $qdisc_add parent 1:1 handle 10:0 htb # # -- add a class to our newly created qdisc, and set the # rate and ceil parameters # $class_add parent 10:0 classid 10:1 htb rate 100kbps ceil 100kbpsNote, that you'd still need filters.If I were you, I'd review the documentation for both HTB and HFSC after understanding the entire Linux traffic control model. Here's a crash course, starting at the root qdisc: 1. The qdisc can be  - classless (e.g., FIFO, SFQ, ESFQ, TBF, GRED) - classful (e.g., HTB, HFSC, CBQ, PRIO) 2. If the qdisc is classful, keep reading. If the root qdisc is  classless, stop here. 3. You may add classes to your classful 
qdisc. If your qdisc is  HTB, you can only add HTB 

[LARTC] how different qdisc at root and leaf working???

2006-07-14 Thread *~ r a K u ~ *
i doubt about ruleset in mastershaper demo aboutwhy use hfsc at leaf classbut inner class use htb???how different for manage traffic like it

/bin/false qdisc add dev eth1 handle 1: root htb default 1/bin/false class add dev eth1 parent 1: classid 1:1 htb rate 2048Kbit
# Incoming Rules
# chain HB/bin/false class add dev eth1 parent 1:1 classid 1:21 htb rate 128Kbit ceil 512Kbit prio 2 quantum 1532# generating pipes for HB/bin/false class add dev eth1 parent 1:21 classid 1:299 htb rate 256Kbit ceil 256Kbit prio 4 quantum 1532/bin/false qdisc add dev eth1 handle 299: parent 1:299 hfsc

from above command, Is it true i think ...???use HTB only for shaper bandwidth in each sevice with setting parameter rate???use HFSC only for manage dequeue traffic after shaper bandwidth from inner class???
How different to use 2 algorithm

thankyouExpress yourself instantly with MSN Messenger! MSN Messenger Download today it's FREE!

___
LARTC mailing list
LARTC@mailman.ds9a.nl
http://mailman.ds9a.nl/cgi-bin/mailman/listinfo/lartc


[LARTC] How adventage, disadventage, comparison between HTB and HFSC??

2006-07-14 Thread *~ r a K u ~ *
somebody can advise me ... about adventage, disadventage, comparison statistical parameter between HTB and HFSCor which link telling above knowledge,  please i try to find it but hard to find it.
Express yourself instantly with MSN Messenger! MSN Messenger Download today it's FREE!

___
LARTC mailing list
LARTC@mailman.ds9a.nl
http://mailman.ds9a.nl/cgi-bin/mailman/listinfo/lartc


[LARTC] HTB and HFSC,declaration tc command question

2006-09-17 Thread *~ r a K u ~ *
I have a lot question about tc-command because now i'm doing research to compare 
performance between HTB and HFSC 
so i'm doubt a lot thing and your reply are so very helpful to me ... My question is 

In HTB tc command question1. I'm use opensource (Mastershaper) for help to config traffic control 
but when i'm try to config HTB,I'm doubt about in each chain must identify fallback service level 
and If i'm don't specify it,it will unable to contain pipe. 
Every traffic and if traffic not matched in chain's pipe can only use the fallback service level

(ps. Mastershaper represent interior class as pipe and leaf class as chain)

Is it only true definition in HTB tc command?? or it's only a creative function from developer??

In HFSC tc command question
after i read HFSC paper , i'm doubt in Service curve declaration like this
 | SC := [ [ m1 BPS ] [ d SEC ] m2 BPS |  | m1 : slope of first segment - umax | d : x-coordinate of intersection - dmax | m2 : slope of second segment - rate

2. In all leaf class must specify rt (realtime service curve) ??? and Is it important to 
specify sc (Service curve) in all leaf class ?? and in all leaf class must specify link-sharing (ls) too??
because i think after read HFSC theory about by default All leaf class(Service class)
will use Link-sharing critirion for allocation bandwidth from Service curve 
(My assumtion think this calculation bandwidth is "m1" or "umax" -total bandwidth 
that can send at ceil rate??) and when total delay are exceed to "demax" or "d" - it mean 
it's time for HFSC to manage QoS to guarantee bandwidth and delay
in each leaf class by use Real-time Criterion so bandwidth rate will change to "m2" 
or bandwidth rate that guarantee QoS in eache leaf class
Is it true??? i fear may be misunderstand in HFSC theory,
example in my test lab ,i have leaf class 3 type such real-time ,data ,defaultCan i specify - real-time leaf class - rt (for guatantee delay and bw) ,ls (by default when not exceed max delay)- data lead class - ls (by default and not delay sensitive so delay are not important)
3. I'm doubt in How to declaration ls, and ul about .. in thoery it a type of service curve that not
relative with real-criterion, so Delay may be not important for consider  
Is it true when declaration, parameter in each service curve may be link this?ls [ umax BPS, rate BPS]ul [ umax BPS, rate BPS]
and 
Is it important to declaration all of three parameter (umax,demax,rate) If three parameterare important to setting traffic control

3. I'm try to search HFSC command example, it have a lot case but i'm doubt in service curve (sc)
declaration sometime declaration in root class, interior class, in leaf classso I'm not sure to understand about ls -calculate bandwidth for interior class,root class and rt - calculate bandwidth for leaf class and what about service curve(sc)??? it's specify only in root class???

4. Is it true?? In root class, or interior class will doing with only Link-sharing criterion, so can specify declaration
only link-sharing -ls(umax, dmax, rate) and Upperlimit -ls(umanx,dmax,rate)it's not important 
to declaration real-time curve (rt) because in HFSC theory will use real-time criterion only Leaf class

5. In HFSC, upper limit are bandwidth rate that guarantee maximum bandwidth rate in 
each class as ceil in HTB???

6. I'm doubt about priority in HFSC, in HFSC paper telling about in support priority 
but in HFSC tc-commandit not specify priority in each class, 
So In HFSC how to manage priority class link HTB
Thank you for all reply, it's so very helpful to me alot.which all will suggest or advise me about in something i'm misunderstand 

raku
Express yourself instantly with MSN Messenger! MSN Messenger Download today it's FREE!

___
LARTC mailing list
LARTC@mailman.ds9a.nl
http://mailman.ds9a.nl/cgi-bin/mailman/listinfo/lartc


[LARTC] How to make burst traffic? such ICMP and real time traffic

2006-09-17 Thread *~ r a K u ~ *
My test case must relative with burst traffic such data or real time traffic 
somebody can advise me how to generate traffic data like ICMP to be burst and about 
real time traffic too ,.. i don't have any idea to make burst traffic for test HTB and HFSC which can manage that situation good.

Express yourself instantly with MSN Messenger! MSN Messenger Download today it's FREE!

___
LARTC mailing list
LARTC@mailman.ds9a.nl
http://mailman.ds9a.nl/cgi-bin/mailman/listinfo/lartc


[LARTC] HTB and HFSC tc commandd syntax question

2006-09-17 Thread *~ r a K u ~ *
I have a lot question about tc-command because now i'm doing research to compare performance between HTB and HFSC so i'm doubt a lot thing and your reply are so very helpful me ... my question is 
1. I'm use opensource (Mastershaper) for help to config traffic control but when i'm try to config HTB,I'm doubt about in each chain must identify fallback service level and If i'm don't specify it,it willunable to contain pipe. Every traffic and if traffic not matched in chain's pipe can only use the fallbackservice level
Is it only true definition in HTB tc command?? or it's only a creative function from developer??
ps. in Mastershaper represent interior class as pipe and leaf class as chain 
In HFSC tc command 
fter i read HFSC paper , i'm doubt in Service curve declaration like this
 | SC := [ [ m1 BPS ] [ d SEC ] m2 BPS |  | m1 : slope of first segment - umax | d : x-coordinate of intersection - dmax | m2 : slope of second segment - rate
2. In all leaf class must specify rt (realtime service curve) ??? and Is it important to specifysc (Service curve) in all leaf class ?? and in all leaf class must specify link-sharing (ls) too??because i think after read HFSC theory about by default All leaf class(Service class)will use Link-sharing critirion for allocation bandwidth from Service curve (My assumtion think this calculation bandwidth is "m1" or "umax" -total bandwidth that can send at ceil rate??) and when total delay are exceed to "demax" or "d" - it mean it time for HFSC to manage QoS to guarantee bandwidth and delayin each leaf class by use Real-time Criterion so bandwidth rate will change to "m2" or bandwidth ratethat guarantee QoS in eache leaf classIs it true??? i fear may be misunderstand in HFSC theory,example in my test lab ,i have leaf class 3 type such 
real-time ,data ,defaultCan i specify - real-time leaf class - rt (for guatantee delay and bw) ,ls (by default when not exceed max delay)- data lead class - ls (by default and not delay sensitive so delay are not important)
3. I'm doubt in How to declaration ls, and ul about .. in thoery it a type of service curve that notrelative with real-criterion, so Delay may be not important for consider  Is it true when declaration, parameter in each service curve may be link this?ls [ umax BPS, rate BPS]ul [ umax BPS, rate BPS]and Is it important to declaration all of three parameter (umax,demax,rate) If three parameterare important to setting traffic control
3. I'm try to search HFSC command example, it have a lot case but i'm doubt in service curve (sc) declarationsometime declaration in root class, interior class, in leaf classso I'm not sure to understand about ls -calculate bandwidth for interior class,root class and rt - calculate bandwidth for leaf class and what about service curve(sc)??? it's specify only in root class???
4. Is it true?? In root class, or interior class will doing with only Link-sharing criterion, so can specify declarationonly link-sharing -ls(umax, dmax, rate) and Upperlimit -ls(umanx,dmax,rate)it's not important to declaration real-time curve (rt) because in HFSC theory will use real-time criterion only Leaf class
5. In HFSC, upper limit are bandwidth rate that guarantee maximum bandwidth rate in each class as ceil in HTB???
6. I'm doubt about priority in HFSC, in HFSC paper telling about in support priority but in HFSC tc-commandit not specify priority in each class, So In HFSC how to manage priority class link HTB
Thank you for all reply, it's so very helpful to me alot.which all will suggest or advise me about in something i'm misunderstand 
raku

Express yourself instantly with MSN Messenger! MSN Messenger Download today it's FREE!

___
LARTC mailing list
LARTC@mailman.ds9a.nl
http://mailman.ds9a.nl/cgi-bin/mailman/listinfo/lartc