similar to: Limit my bandwidth

Displaying 20 results from an estimated 3000 matches similar to: "Limit my bandwidth"

2006 Jun 29
6
Real time traffic Grapher
hi all :) anyone knows some Real time traffic grapher application ? faster than mrtg , im not looking for web based ones ... -- You will soon forget this.
2006 Jun 23
7
Multipath Routing Problems
Hi all :) there is somekind of strange Routing problem that im getting with Linux-2.6.16 and iproute 2.6.16 , when i use command like : ip route add default nexthop via 1.1.1.1 dev eth0 nexthop via 1.1.1.2 dev eth1 all packets goes on 1.1.1.2 ( always last interface ) , whats is the problem ? this situation also tested with equalize flag , on two physical interface and etc ... -- Lady Luck
2006 Jun 22
7
iptables match u32
hello, I try to use iptables rules to drop skype trafic. The iptables rule is : iptables -I FORWARD -p udp -m length --length 39 -m u32 --u32 ''27&0x8f=7'' --u32 ''31=0x01020304'' -j ACCEPT the problem I encounter is that i can''t have the match u32 for iptables. Could someone help me ?
2006 Nov 25
3
Fail-over uplink problem
Hi list, I have a problem I thought was simple first, but now I''m stuck. In a nutshell, it''s about redundant uplinks at an outside location. Crude ASCII-Art follows: Internet | | +------------+ | cisco with | | uplinks | +------------+ | | ATM interface +----------+ ... | alvarion | | | wireless
2006 Jul 06
2
routing ssh to secondary uplink
Hello, I''m following this HOWTO http://linux-ip.net/html/adv-multi-internet.html to route outgoing SSH from a secondary ISP. I can see using tcpdump,jnettop,iftop that when one of the computers located in my internal network is trying to SSH to a box online using SSH, packets are routed via the secondary internet ethernet card. However, packets don''t seem to know how to get back.
2006 Aug 02
3
iptables u32 kernel 2.6.17
hi everybody, I used to test this rules on my gateway : iptables -I FORWARD -p udp -m length --length 39 -m u32 --u32 ''27&0x8f=7'' --u32 ''31=0x527c4833'' -j DROP This was working with a 2.6.16 kernel but now i upgraded to 2.6.17 it give me the following message : [ 5333.870000] ip_tables: u32 match: invalid size 0 != 2028 iptables: Unknown error -1 I tried
2017 Jan 03
3
Does HEP require PJSIP or does it also works with SIP ?
Hello, On a newly built Asterisk 13.13.1 system, I can't make HEP work with chan_sip (though I could make it work with PJSIP on another instance). Looking either at [1] or hep.conf, I can't see anything meaning HEP requires PJSIP. Before diging deeper, may I simply ask if HEP requires PJSIP or not ? What about a line mentioning the answer in above documents (to keep other from wondering
2006 Aug 01
2
IProute/conntrack issues
Hi everybody, sorry for posting again, however I''ve moved the problem now ;-) After digging a bit deeper, I''ve successfully set up the routing as such, it works for incoming as well as outgoing packets that take the default route. Changing some of the routes using IP works as well. When I mark some outgoing packets in order to send them via another route (the fast leased line
2005 Mar 29
1
tc + bandwidth measurement
I want to implement a snmp-agent to measure the bandwidth traffic per flow in a linux router. Is there any way to use tc in bash scripts in order to measure the bandwidth? In my first thought, the agent would fire repeatedly tc commands that would return the rate /flow. Is that speculation correct? Do you propose an alternative way to measure the bandwith through an agent. I found somewhere
2020 Jul 09
5
[RFC] Moving (parts of) the Cling REPL in Clang
Motivation === Over the last decade we have developed an interactive, interpretative C++ (aka REPL) as part of the high-energy physics (HEP) data analysis project -- ROOT [1-2]. We invested a significant  effort to replace the CINT C++ interpreter with a newly implemented REPL based on llvm -- cling [3]. The cling infrastructure is a core component of the data analysis framework of ROOT and
2011 Feb 08
2
please hep in uniform distribution
Hi I have generate two variable with uniform disrtribution A and B and I want to calculate the number of cases where B<A^2 So I done it by sum(B<A^2), but I'm not sure if there is anther way to calculate the number of cases in the distribution or what I have done is fine thanks for helping me Woo -- View this message in context:
2010 Nov 17
2
How to catch warnings
Hello when my code executes I receive the message that were some warnings. I want to catch warning messages at run time so to print some local variables and try to understand why this warning happens. I searched on internet and I tried withCallingHandlers( which seems to work but as I used Rkward the result is awful. I get a prompt to copy paste a value only while at the same time my background
2020 Jul 10
4
[cfe-dev] [RFC] Moving (parts of) the Cling REPL in Clang
I like cling, and having it integrated with the rest of the project would be neat. I agree with Hal’s suggestion to explain the design of what remains. It sounds like a pretty small amount of code. > On Jul 9, 2020, at 7:25 PM, Hal Finkel via cfe-dev <cfe-dev at lists.llvm.org> wrote: > > I think that it would be great to have infrastructure for incremental C++ compilation,
2012 Jul 30
6
Convert variable to STring
Dear all, I have a variable that I would like also to use it as a string. The reasons is that I want to collect results from different function to one table.. So when I use the  colnames(mymatrix) <-c(function1.function2,function3) the function1, function2, function3 to be "converted" to simple strings so as  colnames(mymatrix)
2005 May 17
3
feature: RequiredAuthentications
Hi, probably an ignorant question, maybe I'm missing something ... Is there a way for a sshd server to be able to enforce both client host key authentication as well as user authentication, say for roving user-administered laptops. So a sysadmin can restrict access to allow only client hosts which can pass the HostbasedAuthentication tests, whatever the current IP name/address, but still
2010 Nov 18
3
Sample covariance matrix in R
Hello everyone. I would like to find the sample covariance matrix using R. So far I read on the wikipedia what a sample_covariance is http://en.wikipedia.org/wiki/Sample_covariance according to wikipedia one vector is enough to calculate the sample covariance matrix. In R I tried cov(myvector) and I get the reply that I need to pass either two argument or one matrix with x,y values . How can I
2011 May 28
2
reduce printing accuracy
Dear all, I would like to print a few values with less digits than the default. How I can reduce how many digits are printed ?(warning: not the real integer resolution but what is shown in screen) Best Regards Alex
2010 Oct 26
5
Zoom in in a plot
in a simple plot. When i do plot is it possible to zoom in or out or this is not possible at all? Best Regards Alex [[alternative HTML version deleted]]
2013 Mar 06
2
lm and Formula tutorial
Dear all, I was reading last night the lm and the Formula manual page, and 'I have to admit that I had tough time to understand their syntax. Is there a simpler guide for the dummies like me to start with? I would like to thank you in advance for your help Regards Alex [[alternative HTML version deleted]]
2005 Jun 29
6
statistics + c code
Good morning :) I want to use some c code to read statistics as well as the configured settings ... .. Just give me some links for starting reading :) Have a nice day ____________________________________________________ Yahoo! Sports Rekindle the Rivalries. Sign up for Fantasy Football http://football.fantasysports.yahoo.com