Broadvoice - Busy signal when calling in

Hi all,

I’m new to this, and have a configuration problem I believe.

I have Asterisk 1.09 installed.

My sip.conf

register => 2058922015@sip.broadvoice.com:secretpass:2058922015@sip.broadvoice.com/1001

[sip.broadvoice.com]
type=peer
user=phone
host=sip.broadvoice.com
fromdomain=sip.broadvoice.com
fromuser=2058922015
secret=secretpass
username=2058922015
insecure=very
context=from-broadvoice
authname=2058922015
dtmfmode=inband
dtmf=inband
;Disable canreinvite if you are behind a NAT
canreinvite=no

[1001]
type=friend
username=1001
secret=acm3
host=dynamic
context=acm3

My extensions.conf file
[acm3]
exten => 1001,1,Dial(SIP/1001)

am I missing something?

Things to troubleshoot:

  1. Is the call making it to Asterisk? (Use a verbosity of 4 when monitoring)
  2. Does the from-broadvoice context include an s extension? or 1001 extension?

i’m new to this too but i think you will have to modify the [acm3] to look like this

[acm3]
exten => 2058922015,1,SetVar(FROM_DID=2058922015) ;
exten => 2058922015,2,Goto(from-pstn,s,1) ;

In [sip.broadvoice.com] you specify that calls be directed to the “from-broadvoice” context. However, I don’t see that context defined in the dialplan you posted.