similar to: ChanIsAvail for MGCP

Displaying 20 results from an estimated 1000 matches similar to: "ChanIsAvail for MGCP"

2004 Aug 23
1
using ChanIsAvail
Hi I am trying to use ChanIsAvail to decide if a particular extension is available in the sip channel I am using MySQL to hold my SIP friends. and wy cvs version shows Asterisk CVS-08/02/04 my intention is, that if the extension is not available in Sip channel, I will send the call somewhere else my extensions file contains the following: exten => _[123]XX,1,ChanIsAvail(sip/${EXTEN}) exten
2007 Jan 24
1
ChanIsAvail kills dialplan processing when no Zap available on 1.2.14.
Hi, I'm trying to use ChanIsAvail to build a resilient 'dialout' macro. The logic is simple; try Zap/g1 (a group of two E1s), and if that fails, try locating a channel via DUNDi. Here's a massively cut down version to illustrate the problem I'm having. macro dialout ( dest ) { ChanIsAvail(Zap/g1); noop(Value of AVAILCHAN is ${AVAILCHAN});
2013 May 27
0
ChanIsAvail function is breaking the round robin strategy
Hello everybody, i have two gsm line (extra channels) and i'd like to schedule the outgoing calls with a round-robin strategy. If all the gsm lines are busy, the call must be sent to the pri lines with a linear strategy. here is the dialplan: exten => gsm,ChanIsAvail(EXTRA/r2&DAHDI/g1) same => n,GotoIf($["${AVAILORIGCHAN}" = ""]?unavail,1) same =>
2004 Jul 18
0
ChanIsAvail issue
Hello I am trying to setup ChanIsAvail function in the extensions.conf file so that user should use the available channel to call out, but immediately after the function like, zap channel hangup. Here is the copy of my extensions.conf file and messages display on consol while making the call. Please help me to fingure out this issue. Thanks Deepak Extension.conf : exten =>
2007 Jun 25
1
Problems with ChanIsAvail always return status 0
Hi list: I'm having the next problem, it appear that the application ChanIsAvail is not working on Asterisk 1.4.5 always return me 0 in AVAILSTATUS. I add my dialplan and the output to the cli. THanks. In the example i'm dialing from extension SIP/112 My DialPlan Secction: [macro-callonlyiffree] exten => s,1,ChanIsAvail(${ARG1}|s) exten => s,n,NoOp(${AVAILCHAN}) exten
2004 Apr 08
1
Two operators, 10 rollover lines, Cisco 7960G chanisavail problem
Here's my situation. I have two receptionists that answer incoming lines. Each has a 7960G with 5 incoming lines each. I'm trying to set this up so each line on each phone doesn't utilize call waiting. My problem seems to be that ChanisAvail(Sip/cisco1&Sip/cisco2&Sip/cisco3&Sip/cisco4&Sip/cisco5) always returns cisco1. Here are the sip.conf entries: (mind you,
2009 Nov 03
3
Problem with ChanIsAvail
Hi all, I am having a problem with ChanIsAvail. It always returns the same result, regardless of whether an extension is available or not. It always returns 0 Unknown Status. This is my dialplan. exten => _2XX,1,ChanIsAvail(SIP/winsor_${EXTEN}|s) exten => _2XX,2,Verbose(0, ${AVAILSTATUS}) exten => _2XX,3,GoToIf($[${AVAILSTATUS} = "1"]?4:5) exten =>
2010 Aug 05
1
Can ChanIsAvail return status from sip uri using router ip
hello, Although my previous posts in this forum have not received satisfying answers, here is another question from me. my question is can i use ChanIsAvail function to get the status of a user in the format SPI/user-id if i provide user in sip uri like this ChanIsAvail(SIP/user at 153.18.x.x:5062) calling user with this sip uri works fine. I once tried but status returned was "unknow
2005 Sep 12
1
Is "ChanIsAvail" thread safe?
Curious whether the ChanIsAvail command is thread safe. By that I mean, if I use ChanIsAvail to determine which channel to use, can I be sure that it will still be available when I go to Dial it on the next line? It occurs to me that there's a possibility the channel could get used by a competing thread AFTER my thread has determined it is available and BEFORE my thread gets a chance to
2005 Jan 27
1
ChanIsAvail not working
I'm testing ChanIsAvail context and it is not working for me. exten => 55,1,ChanIsAvail(SIP/11&SIP/21) exten => 55,2,Cut(theChannel=AVAILCHAN,,1) exten => 55,3,Dial(${theChannel},r) exten => 55,4,Hangup exten => 55,102,Goto(s,4) It is not dialing SIP/21 when I'm talking on SIP/11, it execute Hangup instruction instruction. According to notes: The channels are checked
2003 Oct 05
1
ChanIsAvail app setting ${AVAILCHAN} to an unusable value.
I sent this earlier under "Editting variable contents" but no-one has responded. So, the subject is now more to the problem, instead of the solution I was trying to implement. ChanIsAvail returns the channel ID plus "-<session>". How can I edit ${AVAILCHAN} to remove this session ID, so I can use its contents in a subsequent Dial statement? Dialing on Zap just gives a
2005 Mar 23
4
Chanisavail and IAX2
Guys. Anybody doing ChanisAvail on IAX2 channels? Im trying to do this: exten => s,7,ChanIsAvail(IAX2/anton:intrudercom@armando-gw) But I get that the chan is unavailable eventhough I can make calls to that channel. Is there any chatch? The channels is defined as peer and Ialso tried doing a register on iax.conf for that channel. Everything is registering ok and I CAN make the call. Any
2005 Aug 26
0
ChanIsAvail for IAX not working again/still? AKA Redundant IAX connections not working
Hi - I'm running CVS-HEAD from 2005-08-11 20:17:17 UTC, and I'm trying to set up some redundancy on IAX connections between locations. I have two IAX peers set up that work correctly by themselves: "ast551-out" and "ast551-out-backup": [ast551-out] type=peer secret=secret username=ast551 host=X.X.X.X qualify=1000 disallow=all allow=gsm allow=ulaw trunk=no
2006 May 09
0
Using ChanIsAvail and SIP
I am trouble finding a configuration that works for ChanIsAvail and SIP. My two providers are Voxee and Teliax. I have these lines in a macro exten => s,n,ChanIsAvail(SIP/teliax&SIP/voxee) exten => s,n,Cut(CH=AVAILCHAN,-,1) exten => s,n,NoOp(AVAILCHAN= ${CH}) ; Dial the available Channel exten => s,n,Dial(${CH}/${ARG1},60,t) Looking at the execution, I can see what the AVAILCHAN
2006 Feb 14
4
ChanIsAvail
Hi, So I've done my research on Chanisavail, read the wiki, checked the archive but can't seem to find anything to suit my scenario. I've played around with it a lot, but I'm still scratching my head on what I need to do. What I need is to be able to accept a call by SIP and ring all telephones that are not in use (which just so happen to be on Zap interfaces, but might be SIP
2004 Jan 09
3
ChanIsAvail and SIP
Hello all. Has anyone had any success using ChanIsAvail with only SIP channels? Is there another, better way to check if an extension is busy without dialing it? Thanks, B. J. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20040109/48ac2c3e/attachment.htm
2004 Jun 23
1
Problem with incominglimit and outgoinglimit
Hi, I seem to have a problem with chanisavail and the call limits on sip phones(incoming and outgoing) The problem seems to be that chanisavail when trying create to create channels and hanging them up afterwards screw up the current usage limit on the phones. Example with chanisavail: Phone A calls voicemail (usage now 1) Phone B tries to call Phone A and uses ChanIsAvail in the dialplan.
2010 Mar 04
0
Availstatus returns 20 ?
Hello list. ChanIsAvail returns 20 for ${AVAILSTATUS}. What does this '20' mean ?? ... exten => 1,n,ChanIsAvail(SIP/sin10) exten => 1,n,NoOp(chanisavail == ${AVAILSTATUS}) ... [Mar 4 15:10:16] -- Executing [1 at sin:7] ChanIsAvail("IAX2/testlocal-14088", "SIP/sin10") in new stack [Mar 4 15:10:16] -- Executing [1 at sin:8]
2004 Dec 01
1
IAX long distance... Re: Asterisk for home office
On Wed, 1 Dec 2004 12:37:13 -0800 (PST), Ben Kirkpatrick wrote: > Do you find it difficult to manage four LD providers? > Can you show me part of your LD Macro and how it's used? > > I'm toying with two LD providers now, but don't have failover setup. >Just using each one for what they are best at (least cost). > >Thanks, >--Ben Kirkpatrick > > Not
2003 Oct 13
1
AGI solution to Grandstream BT102 call waiting problem
I'm trying to fix a problem with the GrandStream Budgetone 102. I've been reading the source code, mailing lists and other resources. Here's the scenario and the approach I have been pursuing. I'm having some problems with the AGI calls and I hope someone can give me some clarification. PSTN <---> T1,PRI * <---> Grandstream BT 102 (12)