Hi everyone,
I’m trying to get get a call working from a softphone with an external sip account (express talk, sisp2sip.info) to sipml5 with a sip account that is registered to my server, so far I can get the call connecting and audio flowing but, on calls to sipml, the call hangs up after 32 seconds (the call is fine from sipml to express talk though) I’ve checked the traces and it seems to be a retransmission error however after goggling the issue I’ve been unable to fix it my self my config files are:
sip.conf:
[code][general]
context=unauthenticated
allowguest=yes
udpbindaddr=0.0.0.0:5060
tcpenable=0
realm=serverIPAddress
transport=udp,ws,wss
;codecs
disallow=all
allow=ulaw
allow=alaw
allow=gsm
nat=force_rport,comedia
webRTCcnct
type=friend
context=from-internal
host=dynamic
icesupport=yes
secret=****
encryption=yes
avpf=yes
1060
defaultuser=1060
dial=SIP/1060
1061
defaultuser=1061
dial=SIP/1061
[/code]
Extensions.conf
[code][globals]
FIRST=SIP/1060
SECOND=SIP/1061
[unauthenticated]
exten => 1060,1,Dial(${FIRST},20)
exten => 1061,1,Dial(${SECOND},20)
exten => 200,1,Answer()
same => n,Playback(hello-world)
;same => n,Hangup()
[from-internal]
exten => 1060,1,Dial(${FIRST},20)
exten => 1061,1,Dial(${SECOND},20)
exten => 200,1,Answer()
same => n,Playback(hello-world)
same => n,Hangup()
[/code]
http.conf:
[general]
enabled=yes
bindaddr=0.0.0.0
bindport=8088
My trace from asterisk with sip debug on
Does anyone have any Idea how to solve this? any help would be greatly appreciated