How to support UAs with Inter - BSS call

Discuss any topic about Brekeke SIP Server.

Moderator: Brekeke Support Team

Post Reply
Jason Lee
Posts: 2
Joined: Tue Oct 16, 2007 9:26 am

How to support UAs with Inter - BSS call

Post by Jason Lee »

1. Brekeke Product Name and version: Brekeke SIP server ver 2.0

2. Java version:

3. OS type and the version: Vista

4. UA (phone), gateway or other hardware/software involved: HW phone

5. Select your network pattern from http://www.brekeke-sip.com/bbs/network/ ... terns.html : Pattern 7

6. Your problem: Is there any method to support the sketch in pattern 7 so that UAs register in the left side server can make call to the right side UAs through the right server?
Thanks!
Mohney
Posts: 79
Joined: Tue Nov 20, 2007 12:05 pm

Post by Mohney »

My setting is..

Matching Patterns
$request = ^INVITE
To = sip:9(.+)@

Deploy Patterns
To = %1@RIGHT_SIDE_SERVER_ADDRESS


If you dial with prefix 9, the call will be forwarded to the right-side-server.
Jason Lee
Posts: 2
Joined: Tue Oct 16, 2007 9:26 am

Methodology fo multiple BSS (Distributed) architecture

Post by Jason Lee »

Thanks Mohney,
How about the solution for architecture with more than 2 BSSs? May I get your idea on the methodology for the solution.
Bs regards!
Mohney
Posts: 79
Joined: Tue Nov 20, 2007 12:05 pm

Post by Mohney »

Umm...

You can assign a prefix for each SIP server.

For example..
SIP-server-1 is prefix "001"
SIP-server-2 is prefix "002"
SIP-server-3 is prefix "003".. so on


so the dial plan rules will be...


rule-1
~~~~~
Matching Patterns
$request = ^INVITE
To = sip:001(.+)@

Deploy Patterns
To = %1@_SIP_SERBER_1_IP_ADDRESS



rule-2
~~~~~
Matching Patterns
$request = ^INVITE
To = sip:002(.+)@

Deploy Patterns
To = %1@_SIP_SERBER_2_IP_ADDRESS



rule-3
~~~~~
Matching Patterns
$request = ^INVITE
To = sip:003(.+)@

Deploy Patterns
To = %1@_SIP_SERBER_2_IP_ADDRESS


please add these dialplan in all servers.


if you want to make a call to the SIP-server-2's "1234", you need add the prefix "002".
so the dialed number should be "0021234"..

please try.
Post Reply