Callers Name in outgoing Caller ID
Moderator: Brekeke Support Team
Callers Name in outgoing Caller ID
1. Brekeke Product Name and version:SIP Server 2.2.1.6/255
2. Java version:1.6.0_01
3. OS type and the version:Windows Vista 6.0
4. UA (phone), gateway or other hardware/software involved:
pap2 ect.
5. Select your network pattern from http://www.brekeke-sip.com/bbs/network/ ... terns.html :4
6. Your problem:I am using Standard version of the Sip Server.
I want to be able to append the the user name from the User Authentication Database to the our going caller ID.
I have tried the following
Matching Pattern:
$request=^INVITE
From=sip:(.+)@
Deploy Pattern:
From="Name"<sip:%1@OSS_IP>
[Matching Pattern:]
$request = ^INVITE
$geturi( From ) = @(.+)
--------------------------------
[Matching Pattern:]
$request = ^INVITE
Proxy-Authorization = username="(\\w+)"
[Deploy Pattern:]
From = sip:%1@domain
--------------------------------
[Matching Pattern:]
$request = ^INVITE
$geturi( From ) = @(.+)
[Deploy Pattern:]
From = "new_display_name" sip:15551212@%1
$replaceuri = true
$continue = true
The last one works, but I have to write a dial plan for each user.
2. Java version:1.6.0_01
3. OS type and the version:Windows Vista 6.0
4. UA (phone), gateway or other hardware/software involved:
pap2 ect.
5. Select your network pattern from http://www.brekeke-sip.com/bbs/network/ ... terns.html :4
6. Your problem:I am using Standard version of the Sip Server.
I want to be able to append the the user name from the User Authentication Database to the our going caller ID.
I have tried the following
Matching Pattern:
$request=^INVITE
From=sip:(.+)@
Deploy Pattern:
From="Name"<sip:%1@OSS_IP>
[Matching Pattern:]
$request = ^INVITE
$geturi( From ) = @(.+)
--------------------------------
[Matching Pattern:]
$request = ^INVITE
Proxy-Authorization = username="(\\w+)"
[Deploy Pattern:]
From = sip:%1@domain
--------------------------------
[Matching Pattern:]
$request = ^INVITE
$geturi( From ) = @(.+)
[Deploy Pattern:]
From = "new_display_name" sip:15551212@%1
$replaceuri = true
$continue = true
The last one works, but I have to write a dial plan for each user.
Larry
Do you have any other rule which may be matched instead of the above rule ?
If so, disable other rules.
Also..try the latest version 2.2.5.0
http://www.brekeke.com/download/download_sip_beta.php
If so, disable other rules.
Also..try the latest version 2.2.5.0
http://www.brekeke.com/download/download_sip_beta.php
I tested the following DialPlan without any problem..
--------------------------------
[Matching Patterns]
$request = ^INVITE
Proxy-Authorization=username = "(\w+)"
$getUri(From) = @(.+)
[Deploy Patterns]
From="%1" sip:%1@%2
--------------------------------
This rule should be placed in the top of the DialPlan list.
Are you using the INVITE authentication?
If not, enable it.
([Configuration] -> [SIP] -> [Authentication] -> [INVITE] = "on")
--------------------------------
[Matching Patterns]
$request = ^INVITE
Proxy-Authorization=username = "(\w+)"
$getUri(From) = @(.+)
[Deploy Patterns]
From="%1" sip:%1@%2
--------------------------------
This rule should be placed in the top of the DialPlan list.
Are you using the INVITE authentication?
If not, enable it.
([Configuration] -> [SIP] -> [Authentication] -> [INVITE] = "on")
I installed the server on a different computer and it seems to be working now.
I have the User Authentication user set as 1234 ( I assign the phone number as user) and Sales as name.
The PAP2 has
Subscriber Information
Display Name: Fred
User ID:1234
Auth ID:1234
The caller id on the target phone shows the the phone number as 1234 and the name as 1234.
Is this correct?
I have the User Authentication user set as 1234 ( I assign the phone number as user) and Sales as name.
The PAP2 has
Subscriber Information
Display Name: Fred
User ID:1234
Auth ID:1234
The caller id on the target phone shows the the phone number as 1234 and the name as 1234.
Is this correct?
Larry