similar to: Limit Number Of Simultaneous Outbound SIP Calls

Displaying 20 results from an estimated 700 matches similar to: "Limit Number Of Simultaneous Outbound SIP Calls"

2010 Jul 14
1
DAHDI Outdial To Cell Phone Playing Music
Using Asterisk 1.6.1.14 and dahdi 2.2.0.2+2.2.0. We're placing outbound calls over an analog line. Some of these calls are going to cell phones that play music rather than providing a standard ring. As a result, the Dial command sometimes returns a DIALSTATUS of CHANUNAVAIL and sometimes it returns BUSY. The problem is that this is happening on calls that are being answered. Has anyone else
2010 Jul 15
1
Asterisk Manager Problem
I am originating a call to a Local channel using an Originate Action: Action: Originate Channel: Local/dial at outdial Context: outdial Exten: answer Priority: 1 Timeout: 45000 ActionID: some_id In my dialplan, I have this: [outdial] exten => dial,1,Dial(${DIAL_STRING}, ${DIAL_TIMEOUT}) exten => dial,n,NoOp(Dial Status = ${DIALSTATUS}) exten =>
2009 Jun 30
1
Asterisk 1.6 WaitForSilence Problem
I've set up an outbound .call system for customer callbacks and the like. Calls are going out over analog lines and I'm trying to use the WaitForSilence routine to make sure the phone has stopped ringing before starting message playback. The problem is that if I set the first argument of WaitForSilence to anything other than 1, WaitForSilence never exits. Some general info on my setup:
2010 Apr 05
0
SIP Outdial Not Detecting Ringing Line
First off, I also posted this on the digium forums so if anyone here also reads those, sorry for the cross-post. When I place an outbound call using SIP to my cell phone, asterisk immediately starts processing the dialplan without waiting for the call to be answered. We could handle this on DAHDI using callprogress, but I don't know of a similar setting for SIP. Here is the contents of
2009 Aug 14
1
Number of Phone Numbers per Outgoing CALL File
Is it possible to place multiple phone numbers in a single outbound .call file? If I try doing this, only the last phone number in the file is called. However, if I use 1 file per phone number, then Asterisk attempts to process all generated CALL files at once, incrementing the retry count for each that cannot be called because the designated channel is busy. For example if I have a list of 10
2017 Jun 06
3
[Cellar] FLAC Markdown
Hello all! (cc-ing the flac-dev list) I would like to give an update as to the recent CELLAR work on the FLAC specification. • Work has been done to make internal and external links more accurate and reliable. • 'Rice Coding' has been clarified as 'Exponential Golomb Coding.' • Clarifications have been made for binary representation. • Typos and other small changes have been
2014 Aug 19
0
HangupRequest Infinite Loop
Asterisk 11.8.1 Today our Asterisk server locked up. Looking through the asterisk full log, I see the following over and over again and the log just continues to grow until we reboot Asterisk. Has anyone seen anything like this before or have any idea what may cause it? [Aug 19 14:41:26] DEBUG[7362] manager.c: Examining event: Event: HangupRequest Privilege: call,all Channel:
2017 May 12
2
[Cellar] FLAC Markdown
Hi all, And cc'ing flac-dev. > On May 10, 2017, at 12:15 PM, Dave Rice <dave at dericed.com> wrote: > > Hi Andrew, > >> On May 10, 2017, at 11:19 AM, Andrew James Weaver <weevz at uw.edu <mailto:weevz at uw.edu>> wrote: >> >> Hello all! >> >> In a previous discussions on this list about people interested in working on the FLAC
2013 Mar 12
0
Calls getting "stuck open"
I have a system running Asterisk 11.2.1 that has had a couple calls between internal extensions get "stuck open". I didn't catch the verbose log for the first one, since I generally don't verbosely log to file, but the second one shows that the call that got stuck was dialed, but the caller hung up before the called device answered. This server is running a hotdesking
2017 May 22
0
[Cellar] FLAC Markdown
> On May 12, 2017, at 1:05 PM, Dave Rice <dave at dericed.com> wrote: > > Hi all, > And cc'ing flac-dev. > >> On May 10, 2017, at 12:15 PM, Dave Rice <dave at dericed.com <mailto:dave at dericed.com>> wrote: >> >> Hi Andrew, >> >>> On May 10, 2017, at 11:19 AM, Andrew James Weaver <weevz at uw.edu <mailto:weevz at
2013 Aug 08
6
[Bug 10074] New: rsync reorders --from-files alphabetically
https://bugzilla.samba.org/show_bug.cgi?id=10074 Summary: rsync reorders --from-files alphabetically Product: rsync Version: 3.0.6 Platform: All OS/Version: All Status: NEW Severity: enhancement Priority: P5 Component: core AssignedTo: wayned at samba.org ReportedBy: nicholas.man at
2004 Jul 13
2
SIP simultaneous registry possible workaround (was Re: New Asterisk bounty: SIP simultaneous registry)
Andrew Kohlsmith wrote: >I wasn't talking about bandwidth but rather lengthy >Dial() commands... > >exten => s,1,Dial(SIP/someuser&SIP/someuser&SIP ...... > >kind of thing... seems awfully unwieldy. That's why you would stick the members into a global variable [globals] DIYCALLGROUP => SIP/111&SIP/112&SIP113 etc. then dial using
2010 Apr 04
15
Diagnosing Permanent Errors
I would like to get some help diagnosing permanent errors on my files. The machine in question has 12 1TB disks connected to an Areca raid card. I installed OpenSolaris build 134 and according to zpool history, created a pool with zpool create bigraid raidz2 c4t0d0 c4t0d1 c4t0d2 c4t0d3 c4t0d4 c4t0d5 c4t0d6 c4t0d7 c4t1d0 c4t1d1 c4t1d2 c4t1d3 I then backed up 806G of files to the machine, and had
2010 Apr 06
3
[LLVMdev] How to get the left-hand operand of an instruction?
Hi, I am a new novice of LLVM, and I want know how to get the left-hand operand of an instruction? For example: how to get the %temp2 operand in the next instruction: %temp2 = malloc i8, i32 %n Thanks a lot! Best Regards! -------------- next part -------------- An HTML attachment was scrubbed... URL:
2006 Apr 06
0
how to stop simultaneous execution of commands in rjs templates
If you have a rjs template with 10 lines of code. Is it possible to make then run in order, one after the other. Is this possible with rjs or are you stuck with the simultaneous execution of the javascript. I don''t want to resort to the delay method. Charlie bowman recentrambles.com -------------- next part -------------- An HTML attachment was scrubbed... URL:
2006 Apr 09
0
Simultaneous iptables calls
Run this as one process: #!/bin/sh while [ 1 = 1 ]; do iptables -t mangle -F chain1 iptables -t mangle -X chain1 iptables -t mangle -N chain1 || exit 1 done Run this as another process: #!/bin/sh while [ 1 = 1 ]; do iptables -t mangle -F chain2 iptables -t mangle -X chain2 iptables -t mangle -N chain2 || exit 1 done and you get: iptables: No chain/target/match by that
2005 Apr 01
0
Simultaneous Share Access via NFS/SMB
I have a share that has been exported via NFS as well as shared using Samba 3.0. On the Windows side, all authentication is currently done using Winbind and Active Directory. On the standalone Samba server (also authenticated using Windbind) where the exported NFS resides, I have the same local Unix user (identified by the same name and UID/GID) that I have on each Unix (Mac/Linux) host that
2011 Dec 09
0
R: prop.test() and the simultaneous confidence interval for multiple proportions in R
Hello, is there anyone who has some ideas about the problem I posted? Help! [[alternative HTML version deleted]]
2007 Nov 19
3
Gigaset S450ip and simultaneous calls
Hi, My Gigaset S450ip allows 2 simulatneous calls when each incoming call are targeted to different phones. When both calls target the same extension, the second one is forwarded to voicemail. I couldn't check yet SIP messages but has anyone met this limitation (one simultaneous call per phone) ? Regards -------------- next part -------------- An HTML attachment was scrubbed... URL:
2010 May 27
1
Limit number of simultaneous sftp-server connections from same ip
Hello all, I would like to ask a short question about the configuration capabilities of sshd / sftp-server. I want to limit the number of connections (or instances) to an sftp-server a user can spawn from the same ip address. The reason is that multiple connections overload by box (connection). My first idea was to move control of sftp-server to xinetd. There I could maintain control of such