Inbound Calls not ringing
No one hears a ring when calling my BV number. I added the progressinband=yes setting to the general section of my sip.conf, but still no workie. I also added the Ringing(); app to my extensions.ael just before I perform a Dial(); No luck. Any suggestions? Here are my config files:
SIP.CONF
[general]
context=default ; Default context for incoming calls
allowguest=yes ; Allow or reject guest calls (default is yes, this can also be set to 'osp'
bindport=5060 ; UDP Port to bind to (SIP standard port is 5060)
bindaddr=0.0.0.0 ; IP address to bind to (0.0.0.0 binds to all)
srvlookup=yes ; Enable DNS SRV lookups on outbound calls
notifymimetype=application/simple-message-summary ;; allows message light to work with mailbox= in context
disallow=all ; First disallow all codecs
allow=ulaw ; Allow codecs in order of preference
allow=ilbc
allow=gsm ;
pedantic=no
tos=0x1b
progressinband=yes
registertimeout=30 ; retry registration calls every 20 seconds (default)
canreinvite=no
;-----------------BROADVOICE CONFIG---------------------
register => MYNUMBER:MYPASS@sip.broadvoice.com
[sip1.broadvoice.com]
type=peer
user=phone
host=sip.broadvoice.com
fromuser=MYNUMBER
fromdomain=sip.broadvoice.com
username=MYNUMBER
authname=MYNUMBER
secret=MYPASS
insecure=very
context=default
dtmfmode=inband
dtmf=inband
nat=yes
canreinvite=no
qualify=yes
I am using AEL instead of standard extensions.
EXTENSIONS.AEL
context default {
//Main House Number
XXXXXXXXXX => {
Ringing();
&home-exten(1000,SIP/1000&SIP/1001&SIP/1002&SIP/1003&SIP/1100);
}
}
Any ideas are appreciated...
|