Displaying 13 results from an estimated 13 matches for "12mbit".
Did you mean:
128bit
2002 Oct 21
9
help, a children can not borrow from a parent?
Hi ;
MY script:
tc-htb3 qdisc del dev eth2 root
ipchains -F
tc-htb3 qdisc add dev eth2 root handle 10: htb default 20 r2q 40
tc-htb3 class add dev eth2 parent 10: classid 10:1 htb rate 50Mbit burst
2000
tc-htb3 class add dev eth2 parent 10:1 classid 10:100 htb rate 12mbit ceil
50mbit prio 1
tc-htb3 class add dev eth2 parent 10:1 classid 10:20 htb rate 38mbit ceil
50Mbit prio 8
ipchains -A fw -s 10.1.1.1 -m 100
ipchains -A fw -s 0.0.0.0 -d 0.0.0.0 -j ACCEPT
tc-htb3 filter add dev eth2 protocol ip parent 10:0 prio 1 handle 100 fw
classid 10:100
WHEN i send packet...
2005 May 04
4
HTB rate miscalculation
...ass has 10Mbit rate and when
the interface has heavy trafic the measured bandwidth coudn''t get more then
8.5Mbit.
"# tc -s class show ...." shows that the root class has about the 10Mbit,
but the link stats shows mutch less.
The solution was to put the htb ceil on about 12Mbit. Then I can get to
the 10Mbit. When using CBQ I didn''t have this problem.
Is there any parameter that I can change to correct the rate calculation?
Any one has similar problem?
Marcus Pereira
2006 Apr 09
10
Trying to do some very simple ingress limiting, no success
Hi,
I am trying to do some simple ingress limiting based on fwmark. I know
the ability and sense to do INGRESS limiting is ehm... limited ;-) but
still I want to try it.
I tried several things.
=== 1 ===
tcq ingress handle ffff:
tcf parent ffff: protocol ip prio 1 handle 1 fw police rate 12mbit burst 10k drop
tcf parent ffff: protocol ip prio 1 handle 2 fw police rate 10mbit burst 10k drop
tcf parent ffff: protocol ip prio 1 handle 3 fw police rate 1mbit burst 10k drop
This installs OK, but the filters are never called. The netfilter stats
show the marks are set though. To make sure it&...
2004 Dec 22
0
HFSC again.
...QOS. I have something like this:
tc qdisc add dev ethx root handle 1: hfsc default 9
tc class add dev ethx parent 1: classid 1:1 hfsc ls m2 70mbit ul m2 70mbit
tc class add dev ethx parent 1:1 classid 1:9 hfsc ls m2 7mbit
#DNS stuff follows
tc class add dev ethx parent 1:1 classid 1:2 hfsc rt m1 12mbit d 1ms m2 1mbit
#Half-life
tc class add dev ethx parent 1:1 classid 1:3 hfsc rt m1 24mbit d 1ms m2 2mbit
#Some packets with important flags like SYN SYN,ACK small ACKs
tc class add dev ethx parent 1:1 classid 1:4 hfsc rt m1 12mbit d 1ms m2 1mbit
#www traffic
tc class add dev ethx parent 1:1 class...
2012 Sep 27
5
Understanding IFB
...IONS REDIRECTED
#INTERFACE INTERFACES
$MID_IF_TC:$MID_IF 0 1000mbit
$INET1_IF_TC:$INET1_IF - 2mbit
classify
$INET1_IFB_TC:$INET1_IFB_IF - 12mbit
- $INET1_IF
/etc/shorewall/tcclasses:
#INTERFACE:CLASS MARK RATE: CEIL PRIORITY OPTIONS
# DMAX:UMAX
$MID_IF:110 - 30*full/100 95*full/100 1
$MID_IF:120 - 20*full/100...
2002 Nov 06
1
help, strange question about tcp and udp traffic control?
...+--------+
MY script:
tc-htb3 qdisc del dev eth1 root
ipchains -F
tc-htb3 qdisc add dev eth1 root handle 10: htb default 20 r2q 40
tc-htb3 class add dev eth1 parent 10: classid 10:1 htb rate 50Mbit burst
2000
tc-htb3 class add dev eth1 parent 10:1 classid 10:100 htb rate 12mbit ceil
13mbit prio 1
tc-htb3 class add dev eth1 parent 10:1 classid 10:20 htb rate 38mbit ceil
50Mbit prio 7
ipchains -A fw -s 10.1.1.1 -d 10.1.5.1 -m 100
ipchains -A fw -s 0.0.0.0 -d 0.0.0.0 -j ACCEPT
tc-htb3 filter add dev eth1 protocol ip parent 10:0 prio 1 handle 100 fw
classid 10:100
I...
2005 Apr 19
5
Strange pings.
Hi.
The configuration script is at the bottom.
My configuration looks similar to this:
imq0
|
1:1 (12mbit)
|
1:2 (10mbit)
|
3:0
|
3:1 (256kbit)
/ \
3:2 3:3
icmp (rest)
both 3:2 and 3:3 have rate 1kbit ceil 256kbit
Icmp bucklet have priority 1 (better), "rest" bucklet have prio 2 (worse)
I tested the script with heavy download from machine 192.168.1...
2004 Apr 06
11
htb2 -> htb3 problems
Hello!
I need to switch from htb2 to htb3, because of speed issues (for me,
htb2 is unable to handle more then 100mbit duplex with ~550 classes),
kernel profiling shows htb_dequeue_prio at 1st place with 3x isolation.
So, I''ve moved from 2.4.19 to 2.4.25 kernel (hi-pac for classification/marking
and htb3 for queueing), and traffic rate drop from 100 to 20mbit.
What can be wrong? The
2003 Mar 03
5
Re: 2.4.20 htb3 oops
...ther any output from the consoles of
the crasched machines.
Here is the script the ruleset script:
#!/bin/sh
for DEV in eth0.123 eth1
do
tc qdisc del dev $DEV root
tc qdisc add dev $DEV root handle 1: htb
# Total
tc class add dev $DEV parent 1:0 classid 1:1 htb rate 12Mbit
# Default class
tc class add dev $DEV parent 1:1 classid 1:2 htb rate 11Mbit
# Filesharing traffic
tc class add dev $DEV parent 1:1 classid 1:3 htb rate 512Kbit
# ICMP (Highest priority - on customer''s request, not ours)
tc class add dev $DEV...
2004 Dec 22
4
Recommnded system
Can't find any recommended system specs on the website.
What are they? Will it run well on a Celeron 1GHz? How about a 700Mhz?
I'm asking because the company I'm hosting through is running a
special on 700Mhz and 1Ghz servers, and if Icecast will run on these,
I may just go ahead and lease 4-5 more to move my icecast stuff onto
dedicated servers.
2003 Jan 02
7
Can I Classify Non-IP Traffic?
Background: Thanks to the LARTC howto, this list and Stef Coene''s and
devik''s excellent web sites I now have an ethernet bridge (patch
bridge-nf.0.0.7) happily prioritising traffic (12Mbit) into 10 queues
(9 for IP and 1 for non-IP) using a combination of iptables (fwmark)
and htb3 and sfq. Many thanks.
At the moment I''m filtering all non-IP traffic by setting the default
queue on the htb root qdisc to my non-IP class and having my last rule
in iptables (POSTROUTING) marks...
2008 Aug 20
44
GPL PV drivers for Windows 0.9.11-pre12
I''ve just uploaded 0.9.11-pre12 of the GPL PV drivers for Windows.
Since -pre10 (and -pre11) I''ve fixed a heap of crashes that were
plaguing xennet under load, and also rewritten the interrupt/event
distribution logic to improve performance.
Under windows 2003 I can now get network speeds of 1-2Gbit/second TX and
600Gbit/second RX, which is considerably better than I was
2008 Aug 20
44
GPL PV drivers for Windows 0.9.11-pre12
I''ve just uploaded 0.9.11-pre12 of the GPL PV drivers for Windows.
Since -pre10 (and -pre11) I''ve fixed a heap of crashes that were
plaguing xennet under load, and also rewritten the interrupt/event
distribution logic to improve performance.
Under windows 2003 I can now get network speeds of 1-2Gbit/second TX and
600Gbit/second RX, which is considerably better than I was