similar to: Re: Questin regarding HTB

Displaying 20 results from an estimated 120 matches similar to: "Re: Questin regarding HTB"

2005 Jun 29
0
I can''t read this but perhaps it helps the Romanians <grin>
vlad.lupescu@actualbvt.ro
2006 Jan 29
6
tyro Ruby questin
Trying to print out a simple database grid, using, with column headers such as ''SunToSatRoles'', ''PrimaryRoles'', etcetera. Iterating through an object @List which is populated thusly @list = mymodel.find(:all, :order => mymodel.editlist_order) When I do something like <table> <% for i in @list %> <tr> <td><%= i.inspect
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
2002 Aug 01
1
htb qdisc on top of htb
Hi I tryed to use a htb qdisc/class on top of another htb qdisc/class as you can see bellow: #!/bin/bash tc="/sbin/tc" $tc qdisc del dev eth0 root $tc qdisc add dev eth0 root handle 1: htb default 40 $tc class add dev eth0 parent 1: classid 1:1 htb rate 100Mbit burst 15k $tc class add dev eth0 parent 1:1 classid 1:10 htb rate 50Mbit burst 15k $tc class add dev eth0 parent 1:1 classid
2009 Aug 26
2
shaping torrent traffic
hi who can ever help me out with the shaping of torrent traffic? i have a pptp at ppp0 over eth0 (10.0.0.1/8) i would like to shape outgoing traffic of rtorrent on these two interfaces, assume rtorrent is running at port 6999 need 3mbit for ppp0 and 50mbit for eth0 i supposed: [tcclasses] ppp0 1 2mbit 3mbit 1 eth0 2 20mbit 50mbit 2 [tcrules] 1 0.0.0.0/0 0.0.0.0/0 tcp
2012 Jun 21
1
Distribution and location scale family
Hi, For some dataset I have made a histogram, boxplot en qqplot. http://r.789695.n4.nabble.com/file/n4634093/Naamloos.jpg Investigate the data with the given functions for making QQ-plots and find an appropriate location-scale family for the underlying distribution of this sample. Apart from giving a proper location-scale family, also specify the member of the location-scale family that is
2002 Nov 06
1
help, strange question about tcp and udp traffic control?
Hi ; +--------+ +-----------+ +--------+ | server |---------- | linux box |---------------------| Client | +--------+ +-----------+ +--------+ 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
2007 Jun 21
1
A HTB problem
My hardware is a Linksys AP with MIPS 300MHz and Linux kernel 2.4.20. The traffics are from two LAN switch ports to WAN port. And the traffics are generate at a rate of 80Mbit. So the total traffic to WAN port is 160Mbit. The shaping works well that the traffic to WAN port is about 50/30Mbit according to configuration. But the priority seems strange when the root rate is 50Mbit. When the root
2013 Jan 28
1
Setting inline hook to a function identical to default in knitr turns of exponential formatting
Hello List, while dealing with a questin of 'xiaodao' ( http://r.789695.n4.nabble.com/Problem-with-large-small-numbers-in-knitr-tp4653986.html) I noticed that copying the default inline hook function obtained by knit_hooks$get("inline") into a knit_hook$set(inline = <...>) call turns off exponential fomatting in the resulting .tex file. I used a stripped version of
2006 Jan 06
6
HTB traffic shaping odd effects
Hi, I''m trying to perform some (what I consider) basic traffic shaping on our network utilising HTB. I have mostly reused the example on the lartc.org site: tc qdisc add dev eth0 root handle 1: htb default 10 tc class add dev eth0 parent 1: classid 1:1 htb rate 100mbit burst 24k tc class add dev eth0 parent 1:1 classid 1:10 htb rate 50mbit ceil 80mbit burst 19k tc class add dev eth0
2005 Jun 28
1
Question regarding HTB
Ok, So I am from Romania where we have this tiny problem. The IP clases are split in 2: metropolitan and extern (worldwide). We have 2 types of guaranteed band: metro and extern. Now.. the link comes into my gw. I have an IP which my ISP gave it to me which is eth0. I have 2 other PI clasess 194.126.178.0/23. What I want to do is this: make a HTB script which can limit the bandwidth on each PI
2007 Jun 15
0
sangoma WAN boards with lartc
Hi anyone using sangoma hardware with lartc? pls let me know Thanks Imthiyaz Original Message: ----------------- From: lartc-request@mailman.ds9a.nl Date: Fri, 15 Jun 2007 12:00:07 +0200 (CEST) To: lartc@mailman.ds9a.nl Subject: LARTC Digest, Vol 28, Issue 23 Send LARTC mailing list submissions to lartc@mailman.ds9a.nl To subscribe or unsubscribe via the World Wide Web, visit
2004 Feb 13
1
Slow copying over samba server to/from Windows XP
Hi! Just like to know if anyone have the same problem and the solution for this: At our company we buy that UNKNOWN os called MS XP Pro, after a while the users report some errors when they try to copy to our samba fileserver, before we use Win98 at the client side, and that problem was not observable. The copy start at 50mbit/sec and somehow it's stops and just waiting waiting about 10-20
2006 Jun 12
0
Realtime form validation for forms containing collections
Hi, I''m successfully using the realtime_form_validation plugin from http://railsrtv.rubyforge.org/ However, my forms contain collections, as described in the AWDWR book. Basically my form looks like this. 2004 2005 2006 Question 1 12 13 15 Question 2 9 11 13 I have the following code to generate ids for my input fields.
2006 Jun 17
0
Dynamic forms containing collections
Hiall, I have the following problem: I need to use forms containing collections (i will call them FCC), and I want to construct them dynamically, as I need to deal with quite large forms (more than 600 input fields). The variables @model_name and @field_name contain the proper model and field names as strings, which is enough for "normal" form input fields. (i.e. the "if
2007 May 08
2
TDB functionality document
Hi, Does someone know a document which explains the TDB structure. functionalites, and format of the TDB files etc. I need to understand why some of the TDBs like messages.tdb, unexpected.tdb, brlock if not read_only, locking.tdb, session.tdb, wins.tdb are called with TDB_CLEAR_IF_FIRST tdb flags. Why some TDBs are opend with O_RDWR|O_CREAT flags viz. gencache.tdb, group_mapping.tdb,
2007 Oct 23
1
"adding" matrix of smaller dimensions to matrix of larger dimensions and "apply" question
Hi I have another question concerning matrices: I have two matrices: > b <- matrix(1:25,5,5,byrow=T) > b [,1] [,2] [,3] [,4] [,5] [1,] 1 2 3 4 5 [2,] 6 7 8 9 10 [3,] 11 12 13 14 15 [4,] 16 17 18 19 20 [5,] 21 22 23 24 25 and > d <- matrix(1:4,2,2,byrow=T) > d [,1] [,2] [1,] 1 2 [2,] 3 4
2006 May 23
11
how to debug RTNETLINK invalid argument?
Hey, I am getting an invalid argument trying to insert a qdisc: [root@emu-5 iproute2]# tc qdisc add dev eth0 root xcp capacity 50Mbit limit 500 RTNETLINK answers: Invalid argument I''m not sure whats wrong here, because i can successfully insert this qdisc on other computers of mine. How can i debug this? Thanks! George
2006 Jan 27
0
dom0 packet drops caused by domU cpu load
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hi together, last week I played around with XEN 2.0.5 and a Spirent performance test system. Installation is as follow: Spirent -> eth0 <- dom0 -> eth1 <- Spirent Testflow was a simple unidirectional UDP stream from left to right with differen paket sizes. Throughput is measured by Spirent in highest Mbit flow without packet drops...
2017 Apr 06
0
IMAP hibernate and scalability in general
On Thu, Apr 6, 2017 at 3:10 AM, Timo Sirainen <tss at iki.fi> wrote: > On 6 Apr 2017, at 9.56, Christian Balzer <chibi at gol.com> wrote: > > > >> For no particular reason besides wanting to start conservatively, we've > got > >> client_limit set to 50 on the hibernate procs (with 1100 total > hibernated > >> connections on the box I'm