[SR-Users] Dispatcher - failure_route to specific node

2014-09-12 Thread Nicholas Gill
Hello sr-users, We're using Kamailio to proxy to a number of FreeSWITCH backend servers with the dispatcher module. In some specific scenarios it matters to which node the request is sent. In these cases we've configured FS to respond to the invite with 302 and provide a custom header which

[SR-Users] received and rport via parameters

2014-09-12 Thread Daniel-Constantin Mierla
Hello, opening this for discussion to get more eyes on the IETF specs to be sure I haven't missed any requirements. We are no adding received parameter to Via header as required by RFC 3261: 18.2.1 Receiving Requests When the server transport receives a request over any transport, it M

Re: [SR-Users] received and rport via parameters

2014-09-12 Thread Alex Balashov
Daniel, Have you considered posing this question on Sip-Implementors? -- Alex -- Alex Balashov - Principal Evariste Systems LLC Tel: +1-678-954-0670 Web: http://www.evaristesys.com/, http://www.alexbalashov.com/ Please be kind to the English language: http://www.entrepreneur.com/article/23290

Re: [SR-Users] received and rport via parameters

2014-09-12 Thread Daniel-Constantin Mierla
On 12/09/14 10:01, Alex Balashov wrote: Daniel, Have you considered posing this question on Sip-Implementors? We should be enough implementers here :-), only in case is a disagreement we can appeal to higher 'courts'. But also I wanted to have this announced to the community and see if there

[SR-Users] Planning Kamailio v4.1.6

2014-09-12 Thread Daniel-Constantin Mierla
Hello, I am considering releasing minor version 4.1.6 next Wednesday or Thursday, give there is a while from the latest patch release. Also, I will target to release v4.0.7 shortly after. As usual, report any issue not yet announced on sr-dev or bug tracker as well as send a reminder if it i

Re: [SR-Users] Help to build a Kamailio SBC

2014-09-12 Thread [PRE s.r.l.] - Alex
Hello, the situation is: client -> kamailio + rtproxy -> asterisk -> rtpproxy + kamailio -> other client the idea is that rtpproxy has to proxy the whole rtp traffic between asterisk or other media proxy and the client. the strange problem is that my client which is receiving the call (csipsimp

[SR-Users] howto synchronize ruid across multiple proxy instances

2014-09-12 Thread Andrew Pogrebennyk
Hi, let's say I'm running two proxies/registrars that need to access Shared location DB in db_mode=1 (all changes to usrloc are immediately reflected in database too). I have observed that if the UAC re-registers before the previous registration's expiry and the new REGISTER reaches the other proxy

Re: [SR-Users] howto synchronize ruid across multiple proxy instances

2014-09-12 Thread Alex Balashov
Andrew, Try using db_mode 3 for usrloc. -- Alex -- Alex Balashov - Principal Evariste Systems LLC Tel: +1-678-954-0670 Web: http://www.evaristesys.com/, http://www.alexbalashov.com/ Please be kind to the English language: http://www.entrepreneur.com/article/232906 ___

Re: [SR-Users] New..... / kickoff point to learn Kamailio

2014-09-12 Thread Corey Edwards
On Thu, Sep 11, 2014 at 3:35 PM, Poekel wrote: > Hello, > > I am totally new/blank at kamailio and would like learn more but do not > know where to start > > I would like to build a voicemail platform with kamailio and Asterisk. ( > if i CAN use kamailio for this purpose) > Of critical i

[SR-Users] Need help in how to read INVITE packet SDP c line IP Address

2014-09-12 Thread varun pratapsingh
Hi All, Can anybody help me by telling how to read INVITE packet SDP c line IP address in Kamailio.cfg. For example a INVITE packet comes and its SDP contains the line v=0 o=- 3619547086 3619547086 IN IP4 1.223.65.215 s=pjmedia c=IN IP4 1.223.65.215 t=0 0 a=X-nat:0 Now I want to read this SDP p

Re: [SR-Users] Need help in how to read INVITE packet SDP c line IP Address

2014-09-12 Thread Narsay, Deep
Varun, You can use sdpops module. See details for this function: sdp_get_line_startswith(avpvar, string) Sample code: if(sdp_get_line_startswith("$avp(cline)", "c=")) { xlog("connection-line: $avp(cline)\n"); } http://kamailio.org/do