1. Brekeke Product Name and version:
SIP Server v 2.4.3.0 standard
2. Java version:
6.11
3. OS type and the version:
windows server 2008
4. UA (phone), gateway or other hardware/software involved:
5. Select your network pattern from http://www.brekeke-sip.com/bbs/network/ ... terns.html :5
6. Your problem:
I want to forward any call to extension number 444 when the invite to an extesion number exceeds a timersetting of max. 3 seconds.
So extension is still registered on BSS, but went offline before expiration of registration
What parameter to add in below dialplan?
<Matching Pattern>
$request=^INVITE
To=sip:(.+)@
...........................?
<Deploy Pattern>
To = sip:444@
dialplan to forward to ext number if invite > 4 sec.
Moderator: Brekeke Support Team
Like this..
-------------------------------------------------------------------------
[Matching Patterns]
$request = ^INVITE
To = sip:(.+)@
[Deploy Patterns]
To = sip:%1@
$session = plugin.failover sip:444@<IP_Address>
&failover.timer.inviting = 3
-------------------------------------------------------------------------
-------------------------------------------------------------------------
[Matching Patterns]
$request = ^INVITE
To = sip:(.+)@
[Deploy Patterns]
To = sip:%1@
$session = plugin.failover sip:444@<IP_Address>
&failover.timer.inviting = 3
-------------------------------------------------------------------------