Displaying 2 results from an estimated 2 matches for "bobdobb".
Did you mean:
bobdobbs
2003 Apr 12
0
Dial Plan Problems (also IAX)
...ut(10)
exten => s,4,BackGround(dial-exten)
exten => s,5,Wait(15)
exten => s,6,Congestion
exten => s,7,Wait(10)
exten => s,8,Hangup
;
; Let incoming calls connect to extentions
;
include => extentions
;
[extentions]
;
; Eric Wieling Temporary Extention
;
exten => 2111,1,Dial(IAX/bobdobbs@GoFnord/18504841234,20)
exten => 2111,2,Goto(2111,102)
exten => 2111,102,Dial(IAX/bobdobbs@GoFnord/18503841234,20)
exten => 2111,103,Goto(2111,102)
exten => 2111,203,Dial(IAX/bobdobbs@GoFnord/18775521234,20)
exten => 2111,304,Hangup
;
include => outgoing
;
What I want to do is w...
2003 Jun 13
2
Asterisk asterisk => statement
...The switch => statement is used to centralize dialplans.
I've not used the switch => statement yet, I'm just trying to understand
the ramifications of using it before I try it and blow up my dial plan.
Here's an example of a sample setup
Asterisk Server ast-1
switch => IAX/bobdobbs@ast-2
Asterisk Server ast-2
exten => 12010,1,Dial(Zap/1)
If I'm on a device connected to ast-1 and I dial 12010 I assume ast-1
asks ast-2 to resolve the extension 12010, and I also assume that ast-2
returns "exten => 12010,1,Dial(Zap/1)" then ast-1 tries to Dial(Zap/1)
whic...