URI Replacement
Moderator: Brekeke Support Team
URI Replacement
1. Brekeke Product Name and version: Brekeke SIP Server 2.2.6.2
2. Java version: 1.6.0_12
3. OS type and the version: Windows 2003
4. UA (phone), gateway or other hardware/software involved: eyeBeam
5. Select your network pattern from http://www.brekeke-sip.com/bbs/network/ ... terns.html : 9
6. Your problem: need to replace 'from-uri' value when forwarding a call to another destination in order to 'mask' origin of the call.
2. Java version: 1.6.0_12
3. OS type and the version: Windows 2003
4. UA (phone), gateway or other hardware/software involved: eyeBeam
5. Select your network pattern from http://www.brekeke-sip.com/bbs/network/ ... terns.html : 9
6. Your problem: need to replace 'from-uri' value when forwarding a call to another destination in order to 'mask' origin of the call.
editing SIP header section at
http://www.brekeke-sip.com/download/bss ... lan_en.pdf
http://www.brekeke-sip.com/download/bss ... lan_en.pdf
In my environment, it works.
Try this.
==========================
<Matching Patterns>
$request = ^INVITE
From = sip:(.+)@
<Deploy Patterns>
From = "%1" <sip:%1@masked.com>
$replaceuri = true
$continue = true
==========================
And check the priority of this rule.
it should be the first rule in the rule list!
Try this.
==========================
<Matching Patterns>
$request = ^INVITE
From = sip:(.+)@
<Deploy Patterns>
From = "%1" <sip:%1@masked.com>
$replaceuri = true
$continue = true
==========================
And check the priority of this rule.
it should be the first rule in the rule list!
That's why the above DialPlan rules don't work!!
You need to add the following lines to "From PBX REG" and "From PBX" rules.
In Matching Patterns:
From = sip:(.+)@
In Deploy Patterns:
From = "%1" <sip:%1@masked.com>
$replaceuri = true
If you can not understand it, ask Brekeke's support team to provide hands-on support.
You need to add the following lines to "From PBX REG" and "From PBX" rules.
In Matching Patterns:
From = sip:(.+)@
In Deploy Patterns:
From = "%1" <sip:%1@masked.com>
$replaceuri = true
If you can not understand it, ask Brekeke's support team to provide hands-on support.