Page 1 of 1

outgoing dial plan - multiple

Posted: Sat Sep 29, 2012 12:23 am
by shezad
Hi i was wondering if it is possible to make a dialplan that calls out using multiple sip provider account.

Like, if the outgoing call failed using sip provider1, it will automatic try again with sip provider2 while im waiting on the line?

if yes, how would the dialplan line be?

Re: outgoing dial plan - multiple

Posted: Sun Sep 30, 2012 12:04 pm
by Aaron
Yes it can be done. Choose the "DialAdvanced" command and then in the Dial String you separate the failover call legs using the | character. For example:

Code: Select all

1234@provider1&1234@provider2|1234@provider3|1234@provider4&1234@provider5
The way that dial string would work is:

1. Initially the call would be forwarded to provider1 and provider2,
2. If both the providers fail the call will be forwarded to provider3,
3. If it also fails the call will be forwarded to provider4 and provider5,
4. The call will fail.