* [LARTC] Newbie
@ 2002-11-25 23:08 Diego Rodriguez
2002-11-25 23:22 ` Martin A. Brown
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Diego Rodriguez @ 2002-11-25 23:08 UTC (permalink / raw)
To: lartc
Hi !!
First sorry about my english.
I really wont to know where can I start with Traffic control and load
balance. I have 2 links to internet and about 100 users.
Could anybody tell me what can I read for start?? What papers ???
Thank you very much and sorry for disturb.
Best regards,
Diego
_______________________________________________
LARTC mailing list / LARTC@mailman.ds9a.nl
http://mailman.ds9a.nl/mailman/listinfo/lartc HOWTO: http://lartc.org/
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [LARTC] Newbie
2002-11-25 23:08 [LARTC] Newbie Diego Rodriguez
@ 2002-11-25 23:22 ` Martin A. Brown
2005-04-29 7:40 ` [LARTC] newbie Grace Baldonasa
2005-04-30 3:49 ` gypsy
2 siblings, 0 replies; 4+ messages in thread
From: Martin A. Brown @ 2002-11-25 23:22 UTC (permalink / raw)
To: lartc
Diego,
traffic control: http://www.docum.org/
http://www.lartc.org/
multiple links: http://lartc.org/howto/lartc.rpdb.multiple-links.html
http://plorf.net/linux-ip/html/adv-routing.htm#ADV-MULTI-INTERNET-OUTBOUND
Bon voyage,
-Martin
: Hi !!
:
: First sorry about my english.
: I really wont to know where can I start with Traffic control and load
: balance. I have 2 links to internet and about 100 users.
: Could anybody tell me what can I read for start?? What papers ???
: Thank you very much and sorry for disturb.
: Best regards,
:
: Diego
:
:
: _______________________________________________
: LARTC mailing list / LARTC@mailman.ds9a.nl
: http://mailman.ds9a.nl/mailman/listinfo/lartc HOWTO: http://lartc.org/
:
--
Martin A. Brown --- SecurePipe, Inc. --- mabrown@securepipe.com
_______________________________________________
LARTC mailing list / LARTC@mailman.ds9a.nl
http://mailman.ds9a.nl/mailman/listinfo/lartc HOWTO: http://lartc.org/
^ permalink raw reply [flat|nested] 4+ messages in thread
* [LARTC] newbie
2002-11-25 23:08 [LARTC] Newbie Diego Rodriguez
2002-11-25 23:22 ` Martin A. Brown
@ 2005-04-29 7:40 ` Grace Baldonasa
2005-04-30 3:49 ` gypsy
2 siblings, 0 replies; 4+ messages in thread
From: Grace Baldonasa @ 2005-04-29 7:40 UTC (permalink / raw)
To: lartc
[-- Attachment #1.1: Type: text/plain, Size: 762 bytes --]
Hi all,
After posting some emails here and googling in the net. I have now a little
clarity where and how to start bandwidth Management.
Hope I can still be guided though.
My understanding is I will be needing these modules and linux utilities. I
hope someone can confirm.
1. I need to use iptables/ebtables for packet marking.
2. I can use tc for packet shaping.
3. I can use bwm_ng for bandwidth monitoring.
4. I need these modules in loaded into the kernel. CBQ, HTB, modules.
5. I need to create some configuration for CBQ/HTB.
Without these configuration or init scripts, i wont be able to use tc since
it is using cbq/htb?
Is there still more things I'm missing.
Thanks for the patience. I am really new to this utilities.
Grace
[-- Attachment #1.2: Type: text/html, Size: 842 bytes --]
[-- Attachment #2: Type: text/plain, Size: 143 bytes --]
_______________________________________________
LARTC mailing list
LARTC@mailman.ds9a.nl
http://mailman.ds9a.nl/cgi-bin/mailman/listinfo/lartc
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [LARTC] newbie
2002-11-25 23:08 [LARTC] Newbie Diego Rodriguez
2002-11-25 23:22 ` Martin A. Brown
2005-04-29 7:40 ` [LARTC] newbie Grace Baldonasa
@ 2005-04-30 3:49 ` gypsy
2 siblings, 0 replies; 4+ messages in thread
From: gypsy @ 2005-04-30 3:49 UTC (permalink / raw)
To: lartc
Grace Baldonasa wrote:
>
> Hi all,
>
> After posting some emails here and googling in the net. I have now a
> little clarity where and how to start bandwidth Management.
> Hope I can still be guided though.
>
> My understanding is I will be needing these modules and linux
> utilities. I hope someone can confirm.
> 1. I need to use iptables/ebtables for packet marking.
ebtables is applicable to bridges. I don't think you want or need to
bridge.
I prefer to use iptables' connmark. Read about connmark here:
http://selab.edu.ms/twiki/bin/view/Networking/MultihomedLinuxNetworking
> 2. I can use tc for packet shaping.
No. tc tells the scheduler module what it needs to know. It does not
do the scheduling. Type
man tc
and start reading. Also read
http://lartc.org/howto/lartc.qdisc.html
> 3. I can use bwm_ng for bandwidth monitoring.
I can't help you with that. The only monitors I know of are
http://rawsoft.org/
and
http://yesican.chsoft.biz/lartc/netpsec.zip
(which is for WinBlow$), so please post the URL to bwm_ng.
> 4. I need these modules in loaded into the kernel. CBQ, HTB, modules.
Modules are loaded into memory such that they can interface with the
kernel. They are NOT "in" the kernel. If you know what a .dll is then
a module is similar.
You need any one of the shaping modules. Make your choice after reading
man tc and lartc.qdisc.html -- but when you build your kernel you should
say "m" to everything in "QoS and/or fair queueing". Here is a partial
list from my 2.4.29 kernel build:
CONFIG_NET_SCHED=y
CONFIG_NET_SCH_CBQ=m
CONFIG_NET_SCH_HTB=m
CONFIG_NET_SCH_CSZ=m
CONFIG_NET_SCH_HFSC=m
CONFIG_NET_SCH_PRIO=m
CONFIG_NET_SCH_RED=m
CONFIG_NET_SCH_INGRESS=m
Read the top of
http://yesican.chsoft.biz/lartc/index.html
where it talks about building kernel versions 2.4.2# for htb. It is
outdated, but have a look at
ftp://andthatsjazz.org/pub/lartc/BUILD-2.4.25
> 5. I need to create some configuration for CBQ/HTB.
Yes, with tc or tcng. Personally, I think tcng stinks but you may love
it; many people do. The Wonder Shaper is an educational configuration,
cbq http://lartc.org/howto/lartc.cookbook.ultimate-tc.html#AEN2233
htb http://lartc.org/howto/lartc.cookbook.ultimate-tc.html#AEN2241
but Jim DiGriz' QoS script is famous (fabulous):
http://digriz.org.uk/
> Without these configuration or init scripts, i wont be able to use tc
> since it is using cbq/htb?
tc is used for many things other than cbq and htb, amongst which are
hsfq, wrr and red So the answer to that question is "no"; tc has a lot
more functions than you apparently think.
> Is there still more things I'm missing.
> Thanks for the patience. I am really new to this utilities.
The thing you are missing is the reading. Please go do it, and don't
expect to read it just once. I have just given you DAYS worth of
reading material.
> Grace
--
gypsy
_______________________________________________
LARTC mailing list
LARTC@mailman.ds9a.nl
http://mailman.ds9a.nl/cgi-bin/mailman/listinfo/lartc
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2005-04-30 3:49 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-11-25 23:08 [LARTC] Newbie Diego Rodriguez
2002-11-25 23:22 ` Martin A. Brown
2005-04-29 7:40 ` [LARTC] newbie Grace Baldonasa
2005-04-30 3:49 ` gypsy
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.