On Friday 12 April 2013, Thomas Perron wrote:> Basic Dial Plan
>
> Why is this plan not engaging the line
> exten => 105,n,Dial(SIP/voipvoip.com/17035013333)
> and dialing the 703 number?
>
> The logs and debug dont show any problems....
>
>
> [incoming]
> exten => 4444444444,1,Answer()
> exten => 4444444444,n,Wait(1)
> exten => 4444444444,n,Playback(beep)
> exten => 4444444444,n,Goto(105,105,1)
> ;
> ;
> [105]
> exten => 105,1,Wait(2)
> exten => 105,n,Playback(hello-world)
> exten => 105,n,Dial(SIP/voipvoip.com/17035013333)
> exten => 105,n,Hangup()
Have you included the [105] context within the default context for the
extension from which you are dialling 105?
If 4444444444 from the outside world is failing to trigger it, then it's
possible that Asterisk is seeing the first 105 in "Goto(105,105,1)" as
a
priority rather than a context,extension,priority. Rename the [105] context
to start with a letter.
--
AJS
Answers come *after* questions.