similar to: Linux Software to monitor quality of bandwidth for carrying voip traffic - suggestions please?

Displaying 20 results from an estimated 2000 matches similar to: "Linux Software to monitor quality of bandwidth for carrying voip traffic - suggestions please?"

2008 Nov 19
2
VoiceMail - audio problem
Please help... The 1st voicemail message after a reload has audio to the caller. All subsequent calls have no audio to the caller even though the same voicemail application is being called? Asterisk Version 1.4.21.2 Executing [0872200189 at In:2] VoiceMail("SIP/voip-1fd034e0", "910|u") in new stack -- <SIP/voip-1fd034e0> Playing 'vm-theperson' (language
2009 Mar 04
2
Required:Asterisk Beep tone while call connects
Hi, There is a long call setup time untill the call connects. How can I play a beep tone say every 4 seconds to the caller untill the call connects? Tx. Shaun -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20090304/38e17d3e/attachment.htm
2010 Apr 10
1
Asterisk script to repeat dial of a number
Say, I'm looking for a simple way to dial a number repeatedly for two minutes at a time. The purpose is to busy up a faulty analogue line in an incoming hunt group. Tx Shaun -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20100410/0d4e92e9/attachment.htm
2009 Apr 01
1
Remote host can't match request CANCEL to call
Hi, Why does this warning occur and what are the implications of it? I'm concerned about calls never getting hung up.....! chan_sip.c:12890 handle_response: Remote host can't match request CANCEL to call '2f197e56611061a678c13b881b2691a9 at 411.2.139.106'. Giving up. Tx -------------- next part -------------- An HTML attachment was scrubbed... URL:
2006 Apr 18
1
Centos as a network recorder and request
I am looking at using CentOS to use as a network recorder to enhance our security analysis. During my research I found that the linux kernel (not CentOS specific) has a bad problem of dropping packets on gigabit connections. This problem exists even on a dual xeon system with 1gb ram using a minimal install. Once I found the ethereal performance wiki I realized the problem was not in the system
2008 Aug 17
2
Running asterisk as non root user
Hi, I've followed instructions of the book "AsteriskFutureOf TelephonySecEdit" on page 295 onwards ) Link to the Asterisk book: http://downloads.oreilly.com/books/9780596510480.pdf) and get an error when running service asterisk start. The error is: cat: /var/run/asterisk.pid: No such file or directory . I can run aserisk fine from the non-root user. Please help Code Snippet: 1:
2008 Dec 01
2
Inbound calls from Asterisk to Asterisk with SIP "Forbidden" from '"asterisk"
Please help. Asterisk 1: Sip.conf [VoipDirect777821] type=friend host=dfvvd.dyndns.org username=VoipDirect777821 secret=xxxxxxxxxxxx accountcode=5260477782 amaflags=billing context=Incoming disallow=all allow=g729 ;allow=alaw ;allow=ulaw trunk=no qualify=yes qualifysmoothing=yes nat=no canreinvite=yes dtmfmode=rfc2833 ;directrtpsetup=no t38pt_udptl = yes Asterisk 2 sip.conf GNU nano 1.3.12
2010 Aug 24
2
Attempted SIP connection by foreign host. Help!
Say, I just picked this up on my messages! There are a whole host of these requests! Anyone know whow there people are? Is there a way to report them? Any suggestions as to how to block them? [Aug 23 10:34:16] NOTICE[1010] chan_sip.c: Registration from '"912" <sip:1 at 41.1.1.1>' failed for '184.106.217.112' - Wrong password [Aug 23 10:34:16] NOTICE[1010]
2008 Dec 12
1
say I wish to run tail command on messages file to pick up if any "channels unavailable" messages appear.
Can I use grep ? Tried but not working. please help Thanks Shaun -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20081212/c856a1f1/attachment.htm
2009 Apr 23
1
Convert file in GSM codec to G729 codec
Hi, I've tried the link http://www.asteriskguru.com/tools/audio_conversion.php but it returns an error at the moment. Any other ideas most welcome. Tx Shaun -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20090423/c491a7b9/attachment.htm
2008 Jul 28
5
PF_RING crashed the CentOS5 - BUG: soft lockup - CPU#7
Hi all, The PF_RING seems not to work smoothly in CentOS 5. Several day before, I patched the kernel 2.6.25.3 and installed the PF_RING-patched kernel in my CentOS5. Based on the PF_RING, I developed my program to capture the network packages. I wished it can work until the machine power is off. Unforturnately, no matter how to adjust my program, whole system can not run more than 48 hours.
2008 Jul 26
5
BUG: soft lockup - CPU#1 stuck for 61s!
Dear All, I selected CentOS5 in my works and installed them in two DELL PowerEdge1950. However, a trouble blocked me during the machines run after two days. The machines crashed and the syslog said it got the following messages: ------------------ part dump of /var/log/messages ---------------------- ..... Jul 25 02:15:02 vega2008 kernel: [<c045bc58>] ? exit_mmap+0x93/0xc9 Jul 25
2011 Aug 19
2
[LLVMdev] LLVM ERROR: Cannot select error in simple i128 math?
In both LLVM 2.9 and the current svn head, I get the following error when running llc % llc < fxp2.ll LLVM ERROR: Cannot select: 0xa5302b0: glue = carry_false [ID=7] on this code: target triple = "i386-pc-linux-gnu" define i32 @fxpadd(i32 %cl) { entry: %0 = zext i32 %cl to i128 %1 = zext i32 %cl to i128 %2 = add i128 %1, %0 br label %L1001510 L1001510:
2017 Aug 03
2
Dependence analysis - missing loop-carried dependencies?
Hi, I'm trying to do some (loop-carried) dependence analysis using LLVM, but I'm confused by the results I'm getting. For example, consider this simple C program: int main(){ for (int i = 0; i < 10; ++i) { } return 0; } I would expect that the loop comparison depends on the loop initialisation and the loop update, however I only see a dependence to the loop initialisation.
2011 Aug 19
0
[LLVMdev] LLVM ERROR: Cannot select error in simple i128 math?
On Fri, Aug 19, 2011 at 1:59 PM, Craig Smith <craig at ni.com> wrote: > In both LLVM 2.9 and the current svn head, I get the following error when running llc > > % llc < fxp2.ll > LLVM ERROR: Cannot select: 0xa5302b0: glue = carry_false [ID=7] > > on this code: > > target triple = "i386-pc-linux-gnu" > > define i32 @fxpadd(i32 %cl) { > entry:
2007 Nov 22
1
Cluster Analysis:build a classifier?
Dear All, I'm currently doing a project about unsupervised learning, and I'll be using R to analyse a few network traffic datasets downloaded off Andrew Moore's website (http://www.cl.cam.ac.uk/Research/SRG/netos/nprobe/data/papers/sigmetrics/index.html). Could anyone shed some light on how to build a classifier from the training set A, and then use a validation set B to assess the
2012 Aug 10
2
[Question]About KVM network zero-copy feature!
Hi,All I searched from git-log, and found that until now we have vhost TX zero-copy experiment feature, how about RX zero-copy? For XEN, net-back also only has TX zero-copy, Is there any reason that RX zero-copy still not implemented? Thanks!
2012 Aug 10
2
[Question]About KVM network zero-copy feature!
Hi,All I searched from git-log, and found that until now we have vhost TX zero-copy experiment feature, how about RX zero-copy? For XEN, net-back also only has TX zero-copy, Is there any reason that RX zero-copy still not implemented? Thanks!
2016 May 26
4
Kernel panic on 6.8 release with kernel-2.6.32-642.el6.x86_64
Hi all, Just tested the new CentOS 6.8 release on a few VMs and a physical box and got a kernel panic. Is it just me, or anybody else as well? Just fishing for now, will look into the issue more thoroughly later today. -- BW, Sorin ----------------------------------------------------------- # Sorin Srbu, Sysadmin # Uppsala University # Dept of Medicinal Chemistry # Div of Org Pharm Chem #
2009 Aug 14
3
Permission Issues
Hi All, I am trying to achieve something pretty simple. I have a samba share and I would like all new directories and files within that share to have 775 permissions. My config for that share is below. Whenever I create a dir I get 755 permissions. I have set every force permission their is. Both configs below produced the same directory. I feel like this should be very easy and my settings are