Please, I just got asterisk and A2Billing installed on a Dedicated Virtual Server, and I try to create SIP extensions just to try out the functionality. When I configured the SIP extension thus:
-------------------sip.conf--------------------
musiconhold=default
port=5090 ; Port to bind to (SIP is 5090)
bindaddr=210.32.18.51 ; Address to bind to (all addresses on machine)
disallow=all ; First, disallow all codecs, then allow codecs one by one
allow=ulaw
allow=alaw
context = from-sip-external ; Send unknown SIP callers to this context
callerid = Home
nat=yes ; Important if your Asterisk server and extensions are behind NAT
qualify=yes
canreinvite=no
dtmfmode=rfc2833
--------------------first extension---------------
[101]
user=101
type=friend
secret=1234
host=dynamic
callerid = Ken4ward
context=home
----------------second extension-----------------------------
[102]
user=102
type=friend
secret=1234
host=dynamic
callerid = Taiwo
context=home
------------------------------------sip.conf-------------------
------------------------------extension.conf-----------------
[general]
[home]
exten => 101,1,Dial(SIP/101)
exten => 102,1,Dial(SIP/102)
-------------------------extension.conf--------------------
When I configure both extension on 2 SIP phones they connected, but when I try to dial one from another, it's always giving this error: "Not found (404)". I have tried searched for the solution but could not, please kindly help!!!!
Note, I am not using freePBx, i am working directly in Asterisk files. Thanks. God bless.