Hello every body,
As I have just begin discovering Asterisk world, I countered some problems. Finally, after having successfully installed asterisk, I have errors when I tried to test some functions. I have an error on registration of a peer : Registration from ‘sip:XXX@xxx’ failed for ‘xxx’ - No matching peer found, and in the log of my x-lite softphone, I found this error : PhonePort.dll is absent
I tried in vain many solutions posted.
I really need urgent help.
These are my configuration files :
sip.conf :
[b][general]
port = 5060 ; Port to bind to
bindaddr = 0.0.0.0 ; Address to bind to
context = sip ;default Default for incoming calls
register => user@mysipproxy.com/1000
[mysipproxy.com]
type=peer
host=adresse
fromuser=andy
secret=pass
fromdomain=mysipproxy.com
[phone1]
type=friend
host=dynamic
defaultip=192.168.1.64
username=user1
secret=pass
dtmfmode=rfc2833 ; Choices are inband, rfc2833, or info
mailbox=1000 ; Mailbox for message waiting indicator
context=sip
callerid=“Me” <2124>
[phone2]
type=friend
secret=pass
host=dynamic
defaultip=192.168.1.3
dtmfmode=rfc2833 ; Choices are inband, rfc2833, or info
mailbox=1000 ; Mailbox for message waiting indicator
context=sip
callerid=“Mini Me” <2123>[/b]
extensions.conf :
[b][general]
static=yes
writeprotect=no
[sip]
exten => 1,1,Dial(SIP/phone1,20,tr)
exten => 2,1,Dial(SIP/phone2,20,tr)
exten => 1000,1,Dial(SIP/phone1&SIP/phone2,20,tr)[/b]
Did I forget anything?
Thanks for your answers. ^^