similar to: iax limit question

Displaying 20 results from an estimated 300 matches similar to: "iax limit question"

2004 Aug 08
2
pbx answers after answering from analog phone
I am setting up my * for at home office and still have analog phones attached and answer from those analog phones and not necessarily through the pbx. I found that with the X100P cards, they see the 2nd ring and will be ready to answer the line. I used a Wait to pause and allow another 2 rings before * answers. But found that if we answer the line after the 2nd ring and before the 4th, * still
2004 Sep 14
2
Press 9 to dial by name
Hi all. I am new to the list and new to asterisk. I have asterisk installed and running. I am using it as a voicemail server only. What I would like to do is send users to a general mailbox that will be addressed as <companyname>@asterisk and give them the option to wait for the tone and leave a message, or press 9 to dial by name. My questions are: 1. What is the best way to do
2004 Sep 17
5
Background() command
Folks, Apologies ahead of time if this has already been asked (read the list for the last month looking for something similar). I have been trying to get the Background command to work with no joy yet. Here is what I am trying to do: 1. Answer the call. 2. Play the message in the background, while waiting on DTMF from user. 3. If I get a "1", then interrupt the message and dial the
2005 Oct 16
1
GROUP and GROUP_COUNT
I have a macro and when I call it I have something like this: exten => s,1,NoOp(Group Count: ${GROUP_COUNT(MYGROUP)}) exten => s,n,Set(GROUP()=MYGROUP) ;Set Group exten => s,n,NoOp(Group List: ${GROUP_LIST()}) exten => s,n,NoOp(Group Count: ${GROUP_COUNT(MYGROUP)}) The GROUP_COUNT returns zero before the call to GROUP but also returns 0 after the call to GROUP. If I
2008 Jun 13
1
AEL Help
I need help translating extensions.conf to AEL: [default] exten => _X.,1,Set(DID=${EXTEN:6}) exten => _X.,n,Goto(continue,1) exten => _1X.,1,Set(DID=${EXTEN:7}) exten => _1X.,n,Goto(continue,1) exten => continue,1,Noop(${DID}) exten => continue,n,Set(GROUP(IAX)=incoming) exten => continue,n,GotoIf($[${MATH(${GROUP_COUNT(incoming at IAX)}+${GROUP_COUNT(outgoing at
2007 Nov 22
5
Odd bug in Siemens C460IP ?
Hello, I think I have encountered an odd bug in Siemens C460 IP/dect handsets, which is a bit annoying, and I'm not (yet) sure how to get round it without lots of hacks. Basically, on all external incoming calls, we set: exten => s,n,SIPAddHeader(Alert-Info: Bellcore-dr2) This causes handsets (i.e. Cisco 7960 / Grandstream / aastra) to set a different ring cadence so to differentiate
2009 Dec 15
2
member (In use)
Hello list. We just upgraded to 1.6.1.11. We are using real time information stored on mysql databases. That is all running fine. Now, since we upgraded, some member don't get calls from queues. In CLI: "queue show" shows something like: 611 (Local/611 at agents) with penalty 20 (realtime) (*In use*) has taken no calls yet We use the extension 611 in different computers, in the
2008 Oct 10
2
Configuring Bandwidth.com SIP trunks to prevent one-way audio
Hello, We have 2 SIP trunks from Bandwidth.com and if both are in use and someone tries to dial out, they cause another call to get one-way audio (the caller hears us, we cannot hear them). This happens 100% of the time and Bandwidth.com doesn't offer any support. I don't see any setting that tells Asterisk that there are 2 channels available from Bandwidth.com's IP. I'm
2005 Sep 21
1
Does Asterisk know if the trunks are busy?
I am planning on dabbling with some VOIP providers. I was thinking of Teliax first. My thinking is that the first LD call would go to teliax and the second (etc.) calls would go out to the PSTN. I could then verify bandwidth and quality to decide when to add more trunks and to Internet connections. I have been doing some concept testing with FWD for toll free calls, but I am using 393 as a
2010 Jun 05
1
Problem with GROUP()
Hello list, using asterisk 1.4.30 and trying GROUP() and GROUP_COUNT() for the first time... Having some troubles. This the dialplan (using a sub) : exten => s,n,Set(_custID=${custID}) exten => s,n,GROUP(${custID}) exten => s,n,NoOp(grouppcount = GROUP_COUNT(${custID})) exten => s,n,GoToIf($[ ${GROUP_COUNT(${custID})} > 2 ]?maxreached) The CLI shows : [Jun 5 16:06:26] --
2009 Feb 26
3
call-limit on a per destination basis
Hello, I use asterisk to to IAX2 trunking between London POP & Reunion Island pop. I would like to know if it's possible to do a kind of call-limit (i.e. restrict to XX) channels but on a per dialcode and / or destination basis. For example: [trunk] ; reunion proper, i want to send no more than 24 channels exten => _0262XXXXXX,1,Dial(IAX2/mytrunk/${EXTEN}) ; reunion mobile, i want
2010 May 29
6
Best way to limit outgoing calls per trunk
Hi Guys, I am looking to use System() function along with some bash scripting to determine if a Trunk is being used during certain time of the day or not. Here is what I have in mind. Please guide me if you know a better way: exten => s,1,answer exten => s,n,System(/tmp/check.sh) check.sh: check EPOCH time => do an IF for certain times => Allow mutiple calls in certain times and
2007 Feb 27
1
Do I understand GROUPs correctly?
Hi, I was under the impression that Set(GROUP()=1234) incremented some value associated with 1234. So if I did the same thing twice, I'd get a group count of 2. Ex: exten => s,1,Set(GROUP()=1234) exten => s,n,Set(GROUP()=1234) exten => s,n,Noop(Used channels: ${GROUP_COUNT(1234}) I get this in the CLI: -- Executing Set("IAX2/test-2", "GROUP()=1234") in new
2019 Nov 28
2
PJSIP device_state_busy_at, how does this work?
Hi Gang According to: https://wiki.asterisk.org/wiki/display/AST/Asterisk+13+Configuration_res_pjsip#Asterisk12Configuration_res_pjsip-endpoint_device_state_busy_at And endpoint should return busy if this number is reached. We have PBX Trunks registering to the Asterisk. So we want to limit the number of concurrent calls to a PBX and return busy, if more than the configured number of channels
2004 Nov 06
5
SIP Groups
I am wondering if there is a way to create a SIP/IAX group of outgoing lines like Zap groups. I am currently using the following method, but would like to use features such as ?g2? that would list all the accounts for a SIP or IAX connection. exten => _1NXXNXXXXXX,1,Dial(SIP/account_name:Password@gw5.voicepulse.com/${EXTEN }) exten =>
2010 Apr 02
3
Asterisk send calls to SIP Trunks with Round Robin Call Distribution
Hi All, I know I can do this pretty easily with one of the SIP Proxy/Routers, I already do this using OpenSER as a load balancer. I have a special requirement that insist an Asterisk server, 1.6.1.x, is used. I will have 2 SIP trunks coming into the server and I will have to send calls to these SIP trunks with a round robin distribution pattern. I was thinking of using a group count
2006 Mar 27
2
Testing asterisk faxing functionality
I have asterisk with rxfax txfax modules.I want to test fax sendig and reciving in one asterisk instance, in extensions.conf I have : exten => 1234567,1,rxfax(/home/patryk/fax-new.tif|debug) exten => s,1,Dial(1234567) exten => s,2,txfax(/home/patryk/fax.tif|caller|debug) but I doesn't seem to work.But when I'm calling on this number I can hear fax tones. I can't find sip
2006 Apr 05
15
How to restrict simultaneous phone registrations
Hello all, I am looking for a way to restrict users from logging in two separate phones with the same authorization name/password at the same time. Meaning, I only want users to be able to place a call from one phone in one location, but have the ability to move from computer to computer. Has anyone found any sort of solution for this type scenario? Thanks, Bryan Mahin Please visit us @
2017 Nov 07
4
Call preemption
Hello, Has anyone already implemented some sort of call preemption in Asterisk ? I am trying to achieve something like this : - I want to limit the number of calls on a given SIP peer to 10 - on the other hand, some calls have higher priority than others - when the ceiling of 10 calls is reached and a call with a high priority is attempted, I would like to drop a call with a lower priority
2014 Jul 10
1
dialplan =>how many concurrent calls
Hi guys. Does somebody knows how to get the concurrent calls from the dial plan? Or. How can i control not to run more than n simultaneus agi applications? Thanks in advance. rv -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.digium.com/pipermail/asterisk-users/attachments/20140710/70b38e21/attachment.html>