Hi
I am using Kamailio 3.0.1 and experiencing a strange behaviour of the lcr module. In short: Using next_gw() function makes my server to send two INVITEs to different destinations!
The INVITE Kamailio receives is like:
R=sip:4644235465675757@77.77.77.77 F=sip:manwe2@77.77.77.77 T=sip:4644235465675757@77.77.77.77
To try this I have set this in my gw table:
sercmd lcr.dump_gws { lcr_id: 1 grp_id: 17 ip_addr: 91.121.117.27 hostname: sindominio.net port: 5080 scheme: sip transport: UDP strip: 0 tag: weight: 1 flags: 37 defunct_until: 268313248 } sercmd lcr.dump_lcrs { lcr_id: 1 prefix: from_uri: grp_id: 17 priority: 1 }
Hostname and ip_addr don't match (sindominio.net points to 82.144.4.26). What I capture leaving Kamailio is:
U 2010/04/08 17:51:09.614055 77.77.77.77:5060 -> 91.121.117.27:5080 INVITE sip:+4644235465675757@77.77.77.77 SIP/2.0' Record-Route: sip:77.77.77.77;lr=on;ftag=hgtcn;nat=yes;vsf=czFwOgs5JCAEJEYoJGk3ajxNYmBrPBYC' Via: SIP/2.0/UDP 77.77.77.77;branch=z9hG4bK90e8.cd3135e1.0' Via: SIP/2.0/UDP 10.0.0.92;received=91.115.172.34;rport=53658;branch=z9hG4bKiwibmejv' Max-Forwards: 69' To: sip:4644235465675757@77.77.77.77' From: "1102" sip:1102@77.77.77.77;tag=hgtcn' Call-ID: qxvyddwlnmurqvi@multivac' CSeq: 571 INVITE' Contact: sip:manwe2@91.115.172.34:53658' Content-Type: application/sdp' Allow: INVITE,ACK,BYE,CANCEL,OPTIONS,PRACK,REFER,NOTIFY,SUBSCRIBE,INFO,MESSAGE' Supported: replaces,norefersub,100rel' User-Agent: Twinkle/1.4.2' Content-Length: 226' ' v=0' o=twinkle 1296734594 70729915 IN IP4 77.77.77.77' s=-' c=IN IP4 77.77.77.77' t=0 0' m=audio 38232 RTP/AVP 8 101' a=rtpmap:8 PCMA/8000' a=rtpmap:101 telephone-event/8000' a=fmtp:101 0-15' a=ptime:20' a=nortpproxy:yes'
# U 2010/04/08 17:51:09.614074 77.77.77.77:5060 -> 82.144.4.26:5060 INVITE sip:+4644235465675757@sindominio.net SIP/2.0' Record-Route: sip:77.77.77.77;lr=on;ftag=hgtcn;nat=yes;vsf=czFwOgs5JCAEJEYoJGk3ajxNYmBrPBYC' Via: SIP/2.0/UDP 77.77.77.77;branch=z9hG4bK90e8.cd3135e1.1' Via: SIP/2.0/UDP 10.0.0.92;received=91.115.172.34;rport=53658;branch=z9hG4bKiwibmejv' Max-Forwards: 69' To: sip:4644235465675757@77.77.77.77' From: "1102" sip:1102@77.77.77.77;tag=hgtcn' Call-ID: qxvyddwlnmurqvi@multivac' CSeq: 571 INVITE' Contact: sip:manwe2@91.115.172.34:53658' Content-Type: application/sdp' Allow: INVITE,ACK,BYE,CANCEL,OPTIONS,PRACK,REFER,NOTIFY,SUBSCRIBE,INFO,MESSAGE' Supported: replaces,norefersub,100rel' User-Agent: Twinkle/1.4.2' Content-Length: 226' ' v=0' o=twinkle 1296734594 70729915 IN IP4 77.77.77.77' s=-' c=IN IP4 77.77.77.77' t=0 0' m=audio 38232 RTP/AVP 8 101' a=rtpmap:8 PCMA/8000' a=rtpmap:101 telephone-event/8000' a=fmtp:101 0-15' a=ptime:20' a=nortpproxy:yes'
My kamailio.cfg script does something like this:
if(!load_gws("1", "$ru")) ... if(!next_gw()) ... t_on_branch("BRANCH_ROUTE_CLI_RTP"); if(!t_relay_to("0x01")) ...
Branch route_cli_rtp: do rtpproxy stuff
No append_branch is executed at all. I have two INVITES IMHO because next_gw() function does create the second one.
Any idea about this behaviour?
El Thu, 8 Apr 2010 18:40:33 +0200 Jon Bonilla (Manwe) manwe@aholab.ehu.es escribió:
Hi
Forgot to comment:
The correct behaviour should be just one INVITE like
U 2010/04/08 17:51:09.614055 77.77.77.77:5060 -> 91.121.117.27:5080 INVITE sip:+4644235465675757@sindominio.net SIP/2.0'
right?
"If hostname is not NULL, Request-URI is rewritten based on gateway's URI scheme and hostname, and destination URI is set based on gateway's URI scheme, IP address, port, and transport protocol. Upon subsequent calls, the same is done, but instead of rewriting Request URI, a new branch is added."
http://kamailio.org/docs/modules/3.0.x/modules/lcr.html#id3088147
jon,
since you have hostname defined, next_gw() function sets r-uri and destination uri and t_relay() should relay only based destination uri unless you call t_relay() more than once.
No append_branch is executed at all. I have two INVITES IMHO because next_gw() function does create the second one.
next_gw() function does not create any invites. check how your r-uri and dst uri look like after next_gw() call.
-- juha
El Thu, 8 Apr 2010 20:11:35 +0300 jh@tutpro.com (Juha Heinanen) escribió:
jon,
since you have hostname defined, next_gw() function sets r-uri and destination uri and t_relay() should relay only based destination uri unless you call t_relay() more than once.
No append_branch is executed at all. I have two INVITES IMHO because next_gw() function does create the second one.
next_gw() function does not create any invites. check how your r-uri and dst uri look like after next_gw() call.
-- juha
Hi Juha
I have xloged $du and $ru just after next_gw() call and also in branch_route:
Afer next_gw ---- ru=sip:58658765876587685@77.77.77.77 du=sip:91.121.117.27:5080
Branch ---- ru=sip:58658765876587685@77.77.77.77 du=sip:91.121.117.27:5080
Branch ---- ru=sip:58658765876587685@sindominio.net du=sip:58658765876587685@sindominio.net
Setting "hostname" to NULL in gw table I get:
Afer next_gw ---- ru=sip:58658765876587685@77.77.77.77 du=<null>
Branch ---- ru=sip:58658765876587685@77.77.77.77 du=sip:58658765876587685@77.77.77.77
Branch ---- ru=sip:58658765876587685@91.121.117.27:5080 du=sip:58658765876587685@91.121.117.27:5080
Jon Bonilla (Manwe) writes:
I have xloged $du and $ru just after next_gw() call and also in branch_route:
Afer next_gw ---- ru=sip:58658765876587685@77.77.77.77 du=sip:91.121.117.27:5080
Branch ---- ru=sip:58658765876587685@77.77.77.77 du=sip:91.121.117.27:5080
Branch ---- ru=sip:58658765876587685@sindominio.net du=sip:58658765876587685@sindominio.net
it is all ok after next_gw() call. try to figure out why do you enter branch route two times. you should be there only once (the first one).
-- juha
2010/4/8 Juha Heinanen jh@tutpro.com:
Jon Bonilla (Manwe) writes:
> I have xloged $du and $ru just after next_gw() call and also in branch_route: > > Afer next_gw ---- > ru=sip:58658765876587685@77.77.77.77 > du=sip:91.121.117.27:5080 > > Branch ---- > ru=sip:58658765876587685@77.77.77.77 > du=sip:91.121.117.27:5080 > > Branch ---- > ru=sip:58658765876587685@sindominio.net > du=sip:58658765876587685@sindominio.net
it is all ok after next_gw() call. try to figure out why do you enter branch route two times. you should be there only once (the first one).
Hi, IMHO it's not ok after netx_gw(). Note that the incomig INVITE is:
INVITE sip:4644235465675757@77.77.77.77
When hostname is "sindominio.org" then after t_relay() ru ad du should look like:
ru = sip:4644235465675757@sindominio.org du = sip:91.121.117.27:5080
but they are:
ru = sip:58658765876587685@77.77.77.77 du = sip:91.121.117.27:5080
(note that the ruri domain has not been changed !!!).
Setting "hostname" to NULL in gw table then after t_realy ru and du should be:
ru = sip:4644235465675757@91.121.117.27:5080 du = <null>
but they are:
ru = sip:58658765876587685@77.77.77.77 du = <null>
It's obviously wrong. Not sure why two branches are generated, but the values of ru and du after t_realy don't look correct for me.
Regards.
Iñaki Baz Castillo writes:
Hi, IMHO it's not ok after netx_gw(). Note that the incomig INVITE is:
INVITE sip:4644235465675757@77.77.77.77
When hostname is "sindominio.org" then after t_relay() ru ad du should look like:
ru = sip:4644235465675757@sindominio.org du = sip:91.121.117.27:5080
but they are:
ru = sip:58658765876587685@77.77.77.77 du = sip:91.121.117.27:5080
(note that the ruri domain has not been changed !!!).
sorry, it was too late when i replied to the email. i tried to reproduce this, but was not able to do so. my test works as it should:
Apr 9 10:16:12 localhost /usr/sbin/sip-proxy[18946]: ERROR: before next_gw() ru is sip:0447218248@test.fi, du is <null> Apr 9 10:16:12 localhost /usr/sbin/sip-proxy[18946]: ERROR: after next_gw() ru is sip:0447218248@gw1.test.fi, du is sip:192.98.100.2:5060
when i have ip_addr/hostname/port = 192.98.100.2/gw1.test.fi/5060
does it work for you inaki?
-- juha
2010/4/9 Juha Heinanen jh@tutpro.com:
sorry, it was too late when i replied to the email. i tried to reproduce this, but was not able to do so. my test works as it should:
Apr 9 10:16:12 localhost /usr/sbin/sip-proxy[18946]: ERROR: before next_gw() ru is sip:0447218248@test.fi, du is <null> Apr 9 10:16:12 localhost /usr/sbin/sip-proxy[18946]: ERROR: after next_gw() ru is sip:0447218248@gw1.test.fi, du is sip:192.98.100.2:5060
when i have ip_addr/hostname/port = 192.98.100.2/gw1.test.fi/5060
does it work for you inaki?
I've not tested it in 3.0.
I just can tell that it works of for me under 1.5.1 and 1.5.4, but under 1.5.1 there is an issue as LCR ignores the hostname field in the gw table (in fact it is not displayed when performing the MI function to get the gw list). But I hav eno problem of extra-branches and so.
El Thu, 8 Apr 2010 20:55:13 +0300 jh@tutpro.com (Juha Heinanen) escribió:
it is all ok after next_gw() call. try to figure out why do you enter branch route two times. you should be there only once (the first one).
Finally I have found it. It's related to lcr's ruri_user_avp.
I was manually setting this avp before load_gws() call. This was causing to have another branch and two INVITEs to leave my proxy:
modparam("lcr", "ruri_user_avp", "$avp(s:lcr_ruri_user)") ... route[ROUTE_PSTN] { $avp(s:lcr_ruri_user) = $rU; load_gws("1", "$ru") next_gw() ... }
Once erased that line, just one INVITE leaves the server. These are the values of the avp:
Begining:<null> After setting it: 66566345436543646346 After load_gws: 66566345436543646346 After next_gw: 66566345436543646346
And without setting it manually: Beginning: <null> After load_gws: <null> After next_gw: 66566345436543646346
Reading the doc, I realize that that's an internal avp for the lcr module and maybe it has no sense to set it myself. But I don't see any logic to the creation of a new branch
Jon Bonilla (Manwe) writes:
I was manually setting this avp before load_gws() call. This was causing to have another branch and two INVITEs to leave my proxy:
modparam("lcr", "ruri_user_avp", "$avp(s:lcr_ruri_user)")
you are not supposed to set or do anything with that avp. does it now work, when you leave the avp alone?
-- juha
El Fri, 9 Apr 2010 16:32:47 +0300 jh@tutpro.com (Juha Heinanen) escribió:
you are not supposed to set or do anything with that avp. does it now work, when you leave the avp alone?
-- juha
Hi Juha
Yes. As I told before, just erasing the line where I set the avp makes the script to work as expected, no aditional branches are created.