On Tue, Dec 8, 2015 at 10:29 AM, xaled <xa...@web.de> wrote:

> Hi,
>
>
>
> I’m trying to port our configuration form sip to pjsip channel and have
> following issue.
>
>
>
> Sip.conf has a host parameter that sets the RURI to a given value. This
> functionality is needed in some of our scenarios where we need to send
> requests to specific IP address with specific domain in RURI.
>
>
>
> I did not found an equivalent to the host parameter in pjsip
> configuration. Did I miss something?
>
>
>
> All I could come with is to get the Route header set to the needed value,
> but that does not help us in our scenarios. Below are relevant config
> settings and resulting SIP REGISTER Request.
>
>
>
> sip.conf:
>
>
>
> host=test.com
>
> outboundproxy=tcp://1.2.3.4
>
> fromuser=+12345678
>
> fromdomain=test.com
>
>
>
> REGISTER sip:test.com SIP/2.0
>
> From: <sip:+12345...@test.com>;tag=as5152122a
>
> To: <sip:+12345...@test.com>
>
> Contact: <sip:+12345678@4.3.2.1:5071;transport=TCP>
>
> User-Agent: Asterisk PBX 13.6.0
>
>
>
> pjsip.conf:
>
>
>
> client_uri = sip:+12345...@test.com
>
> server_uri = sip:test.com
>
> outbound_proxy=sip:1.2.3.4\;transport=tcp
>
>
>
> REGISTER sip:1.2.3.4;transport=tcp SIP/2.0
>
> From: <sip:+12345...@test.com>;tag=f47f3ed2-0975-4ff0-bd3b-bd5c38e594c4
>
> To: <sip:+12345...@test.com>
>
> Contact: <sip:+12345678@4.3.2.1:60938>
>
> Route: <sip:test.com>
>
> User-Agent: Asterisk PBX 13.6.0
>
>
In order to preserve the request URI, you'll need to specify loose routing
on the SIP URI for the outbound proxy:

outbound_proxy=sip:1.2.3.4\;transport=tcp\;lr

-- 
Matthew Jordan
Digium, Inc. | Director of Technology
445 Jan Davis Drive NW - Huntsville, AL 35806 - USA
Check us out at: http://digium.com & http://asterisk.org
-- 
_____________________________________________________________________
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
               http://www.asterisk.org/hello

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users

Reply via email to