Re: [asterisk-users] Dealing with 2 SIP providers

2007-05-19 Thread Andrew Joakimsen
I would suggest you at least look into DIALSTATUS. Guys: The dialplan is not a toy. You need to consider with care the results of your actions. What Mike posted is an example of a bad dialplan in the works. On 5/11/07, Mike <[EMAIL PROTECTED]> wrote: Hi, I have a question of using 2 SIP pro

RE: [asterisk-users] Dealing with 2 SIP providers

2007-05-19 Thread Steve Totaro
2:22 AM > To: Asterisk Users Mailing List - Non-Commercial Discussion > Subject: Re: [asterisk-users] Dealing with 2 SIP providers > > On Fri, May 11, 2007 at 11:06:35AM -0400, Mike wrote: > > Hi, > > > > I have a question of using 2 SIP providers. Let's say I ha

Re: [asterisk-users] Dealing with 2 SIP providers

2007-05-19 Thread Remco Post
Brad Templeton wrote: > On Fri, May 11, 2007 at 11:06:35AM -0400, Mike wrote: >> Hi, >> >> I have a question of using 2 SIP providers. Let's say I have provider A and >> provider B, and I would like my calls to go to A, and then B if A wasn`t >> available > there is a macro floating around cal

Re: [asterisk-users] Dealing with 2 SIP providers

2007-05-18 Thread Brad Templeton
On Fri, May 11, 2007 at 11:06:35AM -0400, Mike wrote: > Hi, > > I have a question of using 2 SIP providers. Let's say I have provider A and > provider B, and I would like my calls to go to A, and then B if A wasn`t > available What would be really cool, but require special code in the chan_sip

RE: [asterisk-users] Dealing with 2 SIP providers

2007-05-13 Thread Chris Bagnall
> I haven't used AEL yet, if is > ready for production at this point? (a while ago it was recommended not to > use it). I think AEL's been replaced by AEL2 in 1.4, but I've yet to migrate our asterisk deployments to 1.4, so cannot confirm. I've not found any stability issue using AEL - essential

RE: [asterisk-users] Dealing with 2 SIP providers

2007-05-13 Thread Mike
11, 2007 22:22 To: 'Asterisk Users Mailing List - Non-Commercial Discussion' Subject: RE: [asterisk-users] Dealing with 2 SIP providers > What I mean is I want a call to go out on ProviderA, UNLESS it's down > and then go to ProviderB. > I want it to ring 30 seconds and t

RE: [asterisk-users] Dealing with 2 SIP providers

2007-05-11 Thread Yuan LIU
and then Hangup if nobody has answers. I DON'T want to dial both, only one or the other. Mike -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Yuan LIU Sent: Friday, May 11, 2007 17:03 To: asterisk-users@lists.digium.com Subject: RE: [asterisk-user

Re: [asterisk-users] Dealing with 2 SIP providers

2007-05-11 Thread Lee Jenkins
Mike wrote: Yeah ok. That doesn't help. What I mean is I want a call to go out on ProviderA, UNLESS it's down and then go to ProviderB. I want it to ring 30 seconds and then Hangup if nobody has answers. I DON'T want to dial both, only one or the other. Mike Mike, You had it correct i

RE: [asterisk-users] Dealing with 2 SIP providers

2007-05-11 Thread Chris Bagnall
> What I mean is I want a call to go out on ProviderA, UNLESS it's down and > then go to ProviderB. > I want it to ring 30 seconds and then Hangup if nobody has answers. This one's actually a bit more complicated than it first seems, since you need to know how each provider reports status when it

RE: [asterisk-users] Dealing with 2 SIP providers

2007-05-11 Thread Mike
-- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Yuan LIU Sent: Friday, May 11, 2007 17:03 To: asterisk-users@lists.digium.com Subject: RE: [asterisk-users] Dealing with 2 SIP providers >From: Mike <[EMAIL PROTECTED]> >Date: Fri, 11 May 2007 11:06:35 -0400 > >Hi, &g

RE: [asterisk-users] Dealing with 2 SIP providers

2007-05-11 Thread Yuan LIU
From: Mike <[EMAIL PROTECTED]> Date: Fri, 11 May 2007 11:06:35 -0400 Hi, I have a question of using 2 SIP providers. Let's say I have provider A and provider B, and I would like my calls to go to A, and then B if A wasn`t available Something like this would work: exten => 1234,1,Dial(SIP/pro

[asterisk-users] Dealing with 2 SIP providers

2007-05-11 Thread Mike
Hi, I have a question of using 2 SIP providers. Let's say I have provider A and provider B, and I would like my calls to go to A, and then B if A wasn`t available Something like this would work: exten => 1234,1,Dial(SIP/providerA) exten => 1234,2,Dial(providerB) exten => 1234,3,Hangup But wh