im having issues when routing calls from the outside with my new VSP. this is
what asterisk tells me when i try to make an incoming call, i get the no service
response when i call.
-- Executing GotoIf("SIP/christopher_corn-eddb",
"1?from-trunk||1") in new stack
-- Goto (from-trunk,s,1)
-- Executing NoOp("SIP/christopher_corn-eddb", "No DID or CID
Match") in new stack
-- Executing Answer("SIP/christopher_corn-eddb", "") in
new stack
-- Executing Wait("SIP/christopher_corn-eddb", "2") in
new stack
-- Executing Playback("SIP/christopher_corn-eddb",
"ss-noservice") in new stack
-- Playing 'ss-noservice' (language 'en')
my extensions additional.conf has this
[ext-did]
include => ext-did-custom
exten => 408335XXXX,1,Set(FROM_DID=4083354290)
exten => 408335XXXX,n,Goto(ext-local,103,1)
exten => s,1,Noop(No DID or CID Match)
exten => s,n,Answer
exten => s,n,Wait(2)
exten => s,n,Playback(ss-noservice)
exten => s,n,SayAlpha(${FROM_DID})
exten => _[*#X].,1,Set(FROM_DID=${EXTEN})
exten => _[*#X].,n,Noop(Received an unknown call with DID set to ${EXTEN})
exten => _[*#X].,n,Goto(ext-did,s,1)
; end of [ext-did]
i tried to replacing my number with my username, my phone number without area
code, using dashes, but nothing works.
is it because my vsp, axvoice.com doesn't pass did's?
any information is appreciated. thanks.
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
http://lists.digium.com/pipermail/asterisk-users/attachments/20060911/0c690bee/attachment-0001.htm
On Mon, 2006-09-11 at 20:25 -0700, Christopher Corn wrote:> im having issues when routing calls from the outside with my new VSP. > this is what asterisk tells me when i try to make an incoming call, i > get the no service response when i call. > > -- Executing GotoIf("SIP/christopher_corn-eddb", "1?from-trunk|| > 1") in new stack > -- Goto (from-trunk,s,1) > -- Executing NoOp("SIP/christopher_corn-eddb", "No DID or CID > Match") in new stack > -- Executing Answer("SIP/christopher_corn-eddb", "") in new stack > -- Executing Wait("SIP/christopher_corn-eddb", "2") in new stack > -- Executing Playback("SIP/christopher_corn-eddb", "ss-noservice") > in new stack > -- Playing 'ss-noservice' (language 'en') > > > my extensions additional.conf has this > [ext-did] > include => ext-did-custom > exten => 408335XXXX,1,Set(FROM_DID=4083354290) > exten => 408335XXXX,n,Goto(ext-local,103,1) > exten => s,1,Noop(No DID or CID Match) > exten => s,n,Answer > exten => s,n,Wait(2) > exten => s,n,Playback(ss-noservice) > exten => s,n,SayAlpha(${FROM_DID}) > exten => _[*#X].,1,Set(FROM_DID=${EXTEN}) > exten => _[*#X].,n,Noop(Received an unknown call with DID set to > ${EXTEN}) > exten => _[*#X].,n,Goto(ext-did,s,1) > ; end of [ext-did] > > > i tried to replacing my number with my username, my phone number > without area code, using dashes, but nothing works. > > is it because my vsp, axvoice.com doesn't pass did's? > > any information is appreciated. thanks. >Try turning on SIP debug to see what you are getting from your provider. Bob...