All of lore.kernel.org
 help / color / mirror / Atom feed
From: Rokas Zakarevicius <rokasz@centras.lt>
To: lartc@vger.kernel.org
Subject: [LARTC] Questions about HTB.
Date: Sat, 22 Feb 2003 10:18:00 +0000	[thread overview]
Message-ID: <marc-lartc-104590912926353@msgid-missing> (raw)


Hello!

Could you help me with these questions?

My system is:
Internet ADSL(PPPoE) ---> ppp0 [LINUX server(router)] eth0 ---> LAN
Server(router) is running on LINUX Slackware 8.1. I have compiled a
new 2.4.20 kernel, enabled all QoS support in the kernel config,
including HTB. My ADSL download bandwidth is 192Kbit/s.

I'd like to shape the download traffic from the internet to different
LAN users. I have done some experiments with HTB-init script, but it
didn't work as I wanted. My HTB configuration is:
--------------------------------------------
tc qdisc del dev eth0 root
tc qdisc add dev eth0 root handle 1 htb default 20

tc class add dev eth0 parent 1: classid 1:2 htb rate 192Kbit

tc class add dev eth0 parent 1:2 classid 1:10 htb rate 128Kbit ceil 192Kbit burst 2K prio 1
tc qdisc add dev eth0 parent 1:10 handle 10 sfq perturb 10
tc filter add dev eth0 parent 1:0 protocol ip prio 100 u32 match ip sport 80 0xffff classid 1:10

tc class add dev eth0 parent 1:2 classid 1:20 htb rate 24Kbit ceil 192Kbit burst 2K prio 5
tc qdisc add dev eth0 parent 1:20 handle 20 sfq perturb 10
--------------------------------------------
All the download default traffic gets routed to the 1:20 class, which
is a low priority class. And all HTTP traffic gets routed to the 1:10
class, which has high priority. I want Web traffic to have a big
bandwidth and high priority, but all other traffic such as FTP, KaZaA
to have lower bandwidth and lower priority. If I set rateÎil$Kbit
for 1:20 class, it works, but I want 1:20 class to borrow the
bandwidth from 1:10 class (if 1:10 class is not busy with Web
traffic), so I set the above listed configuration.
The problem is that if my download bandwidth is busy with unprivileged
port download (default class 1:20 borrows all the bandwidth), my Web
surfing gets very slow. 1:10 class has a higher priority and bigger
rate, so why 1:20 class borrows big amount of traffic if 1:10 class is
busy with Web surfing??? Could you give me an advice how to solve my
problem??? If one of my LAN users begin downloading a very big file
using KaZaA or FTP, all other users can't browse the Web.

Another question: from what class does 1:20 borrow the traffic?
As I see from the statistics (htb-init stats), both leaf classes
borrow traffic from their parent class 1:2. And why do leaf classes
lend packets to other classes, if they need to borrow packets ???
--------------------------------------------------------------
class htb 1:10 parent 1:2 leaf 10: prio 1 rate 128Kbit ceil 192Kbit burst 2Kb cburst 1844b
 Sent 172759492 bytes 151332 pkts (dropped 0, overlimits 0) 
 rate 796bps 1pps 
 lended: 132897 borrowed: 18435 giants: 0
 tokens: 97601 ctokens: 58300

class htb 1:2 root rate 192Kbit ceil 192Kbit burst 1844b cburst 1844b 
 Sent 307163200 bytes 288106 pkts (dropped 0, overlimits 0) 
 rate 4303bps 4pps 
 lended: 61122 borrowed: 0 giants: 0
 tokens: 58300 ctokens: 58300

class htb 1:20 parent 1:2 leaf 20: prio 5 rate 24Kbit ceil 192Kbit burst 2Kb cburst 1844b 
 Sent 134403708 bytes 136774 pkts (dropped 0, overlimits 0) 
 rate 3516bps 2pps 
 lended: 94087 borrowed: 42687 giants: 0
 tokens: -141737 ctokens: 12700
-------------------------------------------------------------

Thank you for your patience... :)

    Rokas Zakarevicius

Kaunas, Lithuania


_______________________________________________
LARTC mailing list / LARTC@mailman.ds9a.nl
http://mailman.ds9a.nl/mailman/listinfo/lartc HOWTO: http://lartc.org/

             reply	other threads:[~2003-02-22 10:18 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2003-02-22 10:18 Rokas Zakarevicius [this message]
2003-02-22 17:46 ` [LARTC] Questions about HTB Stef Coene

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=marc-lartc-104590912926353@msgid-missing \
    --to=rokasz@centras.lt \
    --cc=lartc@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.