Yes, this resolved the issue. We have not seen calls in ACCEPTED state any more.
Thanks to all for your help.
Dialing Plan
Moderator: Brekeke Support Team
I am still having a minor issue to properly get CDRs from this server, for some reason the server does not show the complete dilaed number in the "to:" field in either in the log or the active sessions page, it only shows this: "sip:<This Server_IP>:5060", this does not happen all the time, but on the 80% of the calls.
Interesting is that the proxy server (downstream) properly shows the dialed number for all calls.
The current dialing plan is:
MATCHING
$request=^INVITE
$geturi(To)=sip:2315(52319.+)@(.+)
DEPLOY
$auth=false
$request=INVITE sip:0700%1@<Production_IP> SIP/2.0
$target = <Production_IP>
$session=failover sip:<ProxyServer_IP> sip:<ProxyServer_IP> sip:<This Server_IP>
&failover.pattern.response=404|603|503
&failover.timer.provisional=60
$continue=false
How could we correct this problem ?
Interesting is that the proxy server (downstream) properly shows the dialed number for all calls.
The current dialing plan is:
MATCHING
$request=^INVITE
$geturi(To)=sip:2315(52319.+)@(.+)
DEPLOY
$auth=false
$request=INVITE sip:0700%1@<Production_IP> SIP/2.0
$target = <Production_IP>
$session=failover sip:<ProxyServer_IP> sip:<ProxyServer_IP> sip:<This Server_IP>
&failover.pattern.response=404|603|503
&failover.timer.provisional=60
$continue=false
How could we correct this problem ?
It seems you don't have any "To" definition in the Deploy Pattern.
You need it if you want to have To-URI in the CDR.
-------------------------------------
MATCHING
$request = ^INVITE
$geturi(To) = sip:2315(52319.+)@(.+)
To = sip:(.+)@
DEPLOY
$auth = false
$request = INVITE sip:0700%1@<Production_IP> SIP/2.0
To = sip:%2@<Production_IP>
$session = failover sip:%2@<ProxyServer_IP> sip:%2@<ProxyServer_IP> sip:%2@<This Server_IP>
&failover.pattern.response = 404|603|503
&failover.timer.provisional = 60
$continue = false
-------------------------------------
I recommend you get some advices from Brekeke or its integrator ..
You need it if you want to have To-URI in the CDR.
-------------------------------------
MATCHING
$request = ^INVITE
$geturi(To) = sip:2315(52319.+)@(.+)
To = sip:(.+)@
DEPLOY
$auth = false
$request = INVITE sip:0700%1@<Production_IP> SIP/2.0
To = sip:%2@<Production_IP>
$session = failover sip:%2@<ProxyServer_IP> sip:%2@<ProxyServer_IP> sip:%2@<This Server_IP>
&failover.pattern.response = 404|603|503
&failover.timer.provisional = 60
$continue = false
-------------------------------------
I recommend you get some advices from Brekeke or its integrator ..