Dears,
I started my lab on VMware (debian lenny) where I installed Kamailio 3.2 and
started drouting configuration.
I'm using 2 PCs each having an x-lite softphone and the Kamailio on the
vmware all connected locally. My primary test is to make a call from x-lite
on PC (192.168.111.11) to x-lite on PC (192.168.111.226) through Kamailio\
drouting modules (192.168.111.139).
What is happening is that when I call 9611558800, for example, am getting
'Calling' message on PC x-lite followed by 'Call Failed: Request Timeout'
after a certain time.
Attached is my routing logic script, and ngrep for the call that is failing.
And my dr_tables data is :
dr_rules: 4, '0', '9611', '', 0, '', '#3', 'Lebanon Fix'
dr_gw_lists: 3, '5', 'Test Call'
dr_groups: 3, '.*', '.*', 0, 'Everyone'
dr_gateways: 5, 1, '192.168.111.226', 0, '', '', 2, 'PC1'
I tried adding port number to the gateways, remove '#' and add 5 in the
dr_rules, remove the "0" from do_routing in the script, but with no success.
Reading some related documents and books, I found that all scenarios using
drouting have gateways as media servers (Asterisks) . So my question: is
this a must, to have a media proxy even using my above primary enviroment?
If not, can you please help me finding my mistake that prohibit the call's
success(ringing)?
Thanks in advance.
F.Chahrour
################################ Routing Logic
######################################
route{
# initial sanity checks -- messages with
# max_forwards==0, or excessively long requests
if (!mf_process_maxfwd_header("10")) {
sl_send_reply("483","Too Many Hops");
exit;
};
if (msg:len >= 2048 ) {
sl_send_reply("513", "Message too big");
exit;
};
if (msg:len >= 2048 ) {
sl_send_reply("513", "Message too big");
exit;
};
# we record-route all messages -- to make sure that
# subsequent messages will go through our proxy; that's
# particularly good if upstream and downstream entities
# use different transport protocol
if (!method=="REGISTER")
record_route();
# subsequent messages withing a dialog should take the
# path determined by record-routing
if (loose_route()) {
# mark routing logic in request
append_hf("P-hint: rr-enforced\r\n");
route(1);
};
if (!uri==myself) {
# mark routing logic in request
append_hf("P-hint: outbound\r\n");
# if you have some interdomain connections via TLS
#if(uri=~"@tls_domain1.net") {
# t_relay("tls:domain1.net");
# exit;
#} else if(uri=~"@tls_domain2.net") {
# t_relay("tls:domain2.net");
# exit;
#}
route(1);
};
if (is_method("INVITE"))
{
if (!do_routing("0")) {
send_reply("503", "No Rules matching the URI");
exit;
}
route(1);
}
# if the request is for other domain use UsrLoc
# (in case, it does not work, use the following command
# with proper names and addresses in it)
if (uri==myself) {
if (method=="REGISTER") {
# Uncomment this if you want to use digest authentication
#if (!www_authorize("openser.org","subscriber")) {
# www_challenge("openser.org", "0");
# exit;
#};
save("location");
exit;
};
}
lookup("aliases");
if (!uri==myself) {
append_hf("P-hint: outbound alias\r\n");
route(1);
};
# native SIP destinations are handled using our USRLOC DB
if (!lookup("location")) {
sl_send_reply("404", "Not Found");
exit;
};
append_hf("P-hint: usrloc applied\r\n");
route(1);
}
route[1] {
# send it out now; use stateful forwarding as it works
# reliably even for UDP2TCP
if (!t_relay()) {
sl_reply_error();
};
exit;
}
interface: eth0 (192.168.111.0/255.255.255.0)
filter: (ip or ip6) and ( port 5060 )
U 192.168.111.226:54576 -> 192.168.111.139:5060
..
..
..............
U 192.168.111.11:20254 -> 192.168.111.139:5060
INVITE sip:[email protected] SIP/2.0.
Via: SIP/2.0/UDP
192.168.111.11:20254;branch=z9hG4bK-d8754z-a1602d6268003f58-1---d8754z-;rport.
Max-Forwards: 70.
Contact: <sip:[email protected]:20254>.
To: "9611558800"<sip:[email protected]>.
From: "1000"<sip:[email protected]>;tag=1f79f872.
Call-ID: N2Q0YTM3YjMzNWZhZmMwN2NhZDkxNWNjZWIxZGFkY2E..
CSeq: 1 INVITE.
Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, NOTIFY, MESSAGE, SUBSCRIBE,
INFO.
Content-Type: application/sdp.
User-Agent: X-Lite release 1100l stamp 47546.
Content-Length: 426.
..
v=0.
o=- 8 2 IN IP4 192.168.111.11.
s=CounterPath X-Lite 3.0.
c=IN IP4 192.168.111.11.
t=0 0.
m=audio 7312 RTP/AVP 107 119 100 106 0 105 98 8 3 101.
a=alt:1 1 : HoD1z/cu FZ1lnldj 192.168.111.11 7312.
a=fmtp:101 0-15.
a=rtpmap:107 BV32/16000.
a=rtpmap:119 BV32-FEC/16000.
a=rtpmap:100 SPEEX/16000.
a=rtpmap:106 SPEEX-FEC/16000.
a=rtpmap:105 SPEEX-FEC/8000.
a=rtpmap:98 iLBC/8000.
a=rtpmap:101 telephone-event/8000.
a=sendrecv.
U 192.168.111.139:5060 -> 192.168.111.11:20254
SIP/2.0 100 trying -- your call is important to us.
Via: SIP/2.0/UDP
192.168.111.11:20254;branch=z9hG4bK-d8754z-a1602d6268003f58-1---d8754z-;rport=20254.
To: "9611558800"<sip:[email protected]>.
From: "1000"<sip:[email protected]>;tag=1f79f872.
Call-ID: N2Q0YTM3YjMzNWZhZmMwN2NhZDkxNWNjZWIxZGFkY2E..
CSeq: 1 INVITE.
Server: kamailio (3.2.2 (i386/linux)).
Content-Length: 0.
..
U 192.168.111.139:5060 -> 192.168.111.226:5060
INVITE sip:[email protected] SIP/2.0.
Record-Route: <sip:192.168.111.139;lr=on>.
Via: SIP/2.0/UDP 192.168.111.139;branch=z9hG4bK42b8.ab275eb.0.
Via: SIP/2.0/UDP
192.168.111.11:20254;branch=z9hG4bK-d8754z-a1602d6268003f58-1---d8754z-;rport=20254.
Max-Forwards: 69.
Contact: <sip:[email protected]:20254>.
To: "9611558800"<sip:[email protected]>.
From: "1000"<sip:[email protected]>;tag=1f79f872.
Call-ID: N2Q0YTM3YjMzNWZhZmMwN2NhZDkxNWNjZWIxZGFkY2E..
CSeq: 1 INVITE.
Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, NOTIFY, MESSAGE, SUBSCRIBE,
INFO.
Content-Type: application/sdp.
User-Agent: X-Lite release 1100l stamp 47546.
Content-Length: 426.
..
v=0.
o=- 8 2 IN IP4 192.168.111.11.
s=CounterPath X-Lite 3.0.
c=IN IP4 192.168.111.11.
t=0 0.
m=audio 7312 RTP/AVP 107 119 100 106 0 105 98 8 3 101.
a=alt:1 1 : HoD1z/cu FZ1lnldj 192.168.111.11 7312.
a=fmtp:101 0-15.
a=rtpmap:107 BV32/16000.
a=rtpmap:119 BV32-FEC/16000.
a=rtpmap:100 SPEEX/16000.
a=rtpmap:106 SPEEX-FEC/16000.
a=rtpmap:105 SPEEX-FEC/8000.
a=rtpmap:98 iLBC/8000.
a=rtpmap:101 telephone-event/8000.
a=sendrecv.
U 192.168.111.139:5060 -> 192.168.111.226:5060
INVITE sip:[email protected] SIP/2.0.
Record-Route: <sip:192.168.111.139;lr=on>.
Via: SIP/2.0/UDP 192.168.111.139;branch=z9hG4bK42b8.ab275eb.0.
Via: SIP/2.0/UDP
192.168.111.11:20254;branch=z9hG4bK-d8754z-a1602d6268003f58-1---d8754z-;rport=20254.
Max-Forwards: 69.
Contact: <sip:[email protected]:20254>.
To: "9611558800"<sip:[email protected]>.
From: "1000"<sip:[email protected]>;tag=1f79f872.
Call-ID: N2Q0YTM3YjMzNWZhZmMwN2NhZDkxNWNjZWIxZGFkY2E..
CSeq: 1 INVITE.
Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, NOTIFY, MESSAGE, SUBSCRIBE,
INFO.
Content-Type: application/sdp.
User-Agent: X-Lite release 1100l stamp 47546.
Content-Length: 426.
..
v=0.
o=- 8 2 IN IP4 192.168.111.11.
s=CounterPath X-Lite 3.0.
c=IN IP4 192.168.111.11.
t=0 0.
m=audio 7312 RTP/AVP 107 119 100 106 0 105 98 8 3 101.
a=alt:1 1 : HoD1z/cu FZ1lnldj 192.168.111.11 7312.
a=fmtp:101 0-15.
a=rtpmap:107 BV32/16000.
a=rtpmap:119 BV32-FEC/16000.
a=rtpmap:100 SPEEX/16000.
a=rtpmap:106 SPEEX-FEC/16000.
a=rtpmap:105 SPEEX-FEC/8000.
a=rtpmap:98 iLBC/8000.
a=rtpmap:101 telephone-event/8000.
a=sendrecv.
U 192.168.111.139:5060 -> 192.168.111.226:5060
INVITE sip:[email protected] SIP/2.0.
Record-Route: <sip:192.168.111.139;lr=on>.
Via: SIP/2.0/UDP 192.168.111.139;branch=z9hG4bK42b8.ab275eb.0.
Via: SIP/2.0/UDP
192.168.111.11:20254;branch=z9hG4bK-d8754z-a1602d6268003f58-1---d8754z-;rport=20254.
Max-Forwards: 69.
Contact: <sip:[email protected]:20254>.
To: "9611558800"<sip:[email protected]>.
From: "1000"<sip:[email protected]>;tag=1f79f872.
Call-ID: N2Q0YTM3YjMzNWZhZmMwN2NhZDkxNWNjZWIxZGFkY2E..
CSeq: 1 INVITE.
Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, NOTIFY, MESSAGE, SUBSCRIBE,
INFO.
Content-Type: application/sdp.
User-Agent: X-Lite release 1100l stamp 47546.
Content-Length: 426.
..
v=0.
o=- 8 2 IN IP4 192.168.111.11.
s=CounterPath X-Lite 3.0.
c=IN IP4 192.168.111.11.
t=0 0.
m=audio 7312 RTP/AVP 107 119 100 106 0 105 98 8 3 101.
a=alt:1 1 : HoD1z/cu FZ1lnldj 192.168.111.11 7312.
a=fmtp:101 0-15.
a=rtpmap:107 BV32/16000.
a=rtpmap:119 BV32-FEC/16000.
a=rtpmap:100 SPEEX/16000.
a=rtpmap:106 SPEEX-FEC/16000.
a=rtpmap:105 SPEEX-FEC/8000.
a=rtpmap:98 iLBC/8000.
a=rtpmap:101 telephone-event/8000.
a=sendrecv.
U 192.168.111.139:5060 -> 192.168.111.226:5060
INVITE sip:[email protected] SIP/2.0.
Record-Route: <sip:192.168.111.139;lr=on>.
Via: SIP/2.0/UDP 192.168.111.139;branch=z9hG4bK42b8.ab275eb.0.
Via: SIP/2.0/UDP
192.168.111.11:20254;branch=z9hG4bK-d8754z-a1602d6268003f58-1---d8754z-;rport=20254.
Max-Forwards: 69.
Contact: <sip:[email protected]:20254>.
To: "9611558800"<sip:[email protected]>.
From: "1000"<sip:[email protected]>;tag=1f79f872.
Call-ID: N2Q0YTM3YjMzNWZhZmMwN2NhZDkxNWNjZWIxZGFkY2E..
CSeq: 1 INVITE.
Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, NOTIFY, MESSAGE, SUBSCRIBE,
INFO.
Content-Type: application/sdp.
User-Agent: X-Lite release 1100l stamp 47546.
Content-Length: 426.
..
v=0.
o=- 8 2 IN IP4 192.168.111.11.
s=CounterPath X-Lite 3.0.
c=IN IP4 192.168.111.11.
t=0 0.
m=audio 7312 RTP/AVP 107 119 100 106 0 105 98 8 3 101.
a=alt:1 1 : HoD1z/cu FZ1lnldj 192.168.111.11 7312.
a=fmtp:101 0-15.
a=rtpmap:107 BV32/16000.
a=rtpmap:119 BV32-FEC/16000.
a=rtpmap:100 SPEEX/16000.
a=rtpmap:106 SPEEX-FEC/16000.
a=rtpmap:105 SPEEX-FEC/8000.
a=rtpmap:98 iLBC/8000.
a=rtpmap:101 telephone-event/8000.
a=sendrecv.
U 192.168.111.139:5060 -> 192.168.111.226:5060
INVITE sip:[email protected] SIP/2.0.
Record-Route: <sip:192.168.111.139;lr=on>.
Via: SIP/2.0/UDP 192.168.111.139;branch=z9hG4bK42b8.ab275eb.0.
Via: SIP/2.0/UDP
192.168.111.11:20254;branch=z9hG4bK-d8754z-a1602d6268003f58-1---d8754z-;rport=20254.
Max-Forwards: 69.
Contact: <sip:[email protected]:20254>.
To: "9611558800"<sip:[email protected]>.
From: "1000"<sip:[email protected]>;tag=1f79f872.
Call-ID: N2Q0YTM3YjMzNWZhZmMwN2NhZDkxNWNjZWIxZGFkY2E..
CSeq: 1 INVITE.
Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, NOTIFY, MESSAGE, SUBSCRIBE,
INFO.
Content-Type: application/sdp.
User-Agent: X-Lite release 1100l stamp 47546.
Content-Length: 426.
..
v=0.
o=- 8 2 IN IP4 192.168.111.11.
s=CounterPath X-Lite 3.0.
c=IN IP4 192.168.111.11.
t=0 0.
m=audio 7312 RTP/AVP 107 119 100 106 0 105 98 8 3 101.
a=alt:1 1 : HoD1z/cu FZ1lnldj 192.168.111.11 7312.
a=fmtp:101 0-15.
a=rtpmap:107 BV32/16000.
a=rtpmap:119 BV32-FEC/16000.
a=rtpmap:100 SPEEX/16000.
a=rtpmap:106 SPEEX-FEC/16000.
a=rtpmap:105 SPEEX-FEC/8000.
a=rtpmap:98 iLBC/8000.
a=rtpmap:101 telephone-event/8000.
a=sendrecv.
U 192.168.111.139:5060 -> 192.168.111.226:5060
INVITE sip:[email protected] SIP/2.0.
Record-Route: <sip:192.168.111.139;lr=on>.
Via: SIP/2.0/UDP 192.168.111.139;branch=z9hG4bK42b8.ab275eb.0.
Via: SIP/2.0/UDP
192.168.111.11:20254;branch=z9hG4bK-d8754z-a1602d6268003f58-1---d8754z-;rport=20254.
Max-Forwards: 69.
Contact: <sip:[email protected]:20254>.
To: "9611558800"<sip:[email protected]>.
From: "1000"<sip:[email protected]>;tag=1f79f872.
Call-ID: N2Q0YTM3YjMzNWZhZmMwN2NhZDkxNWNjZWIxZGFkY2E..
CSeq: 1 INVITE.
Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, NOTIFY, MESSAGE, SUBSCRIBE,
INFO.
Content-Type: application/sdp.
User-Agent: X-Lite release 1100l stamp 47546.
Content-Length: 426.
..
v=0.
o=- 8 2 IN IP4 192.168.111.11.
s=CounterPath X-Lite 3.0.
c=IN IP4 192.168.111.11.
t=0 0.
m=audio 7312 RTP/AVP 107 119 100 106 0 105 98 8 3 101.
a=alt:1 1 : HoD1z/cu FZ1lnldj 192.168.111.11 7312.
a=fmtp:101 0-15.
a=rtpmap:107 BV32/16000.
a=rtpmap:119 BV32-FEC/16000.
a=rtpmap:100 SPEEX/16000.
a=rtpmap:106 SPEEX-FEC/16000.
a=rtpmap:105 SPEEX-FEC/8000.
a=rtpmap:98 iLBC/8000.
a=rtpmap:101 telephone-event/8000.
a=sendrecv.
U 192.168.111.11:20254 -> 192.168.111.139:5060
..
..
..............
U 192.168.111.15:38802 -> 192.168.111.139:5060
..
..
..............
U 192.168.111.139:5060 -> 192.168.111.226:5060
INVITE sip:[email protected] SIP/2.0.
Record-Route: <sip:192.168.111.139;lr=on>.
Via: SIP/2.0/UDP 192.168.111.139;branch=z9hG4bK42b8.ab275eb.0.
Via: SIP/2.0/UDP
192.168.111.11:20254;branch=z9hG4bK-d8754z-a1602d6268003f58-1---d8754z-;rport=20254.
Max-Forwards: 69.
Contact: <sip:[email protected]:20254>.
To: "9611558800"<sip:[email protected]>.
From: "1000"<sip:[email protected]>;tag=1f79f872.
Call-ID: N2Q0YTM3YjMzNWZhZmMwN2NhZDkxNWNjZWIxZGFkY2E..
CSeq: 1 INVITE.
Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, NOTIFY, MESSAGE, SUBSCRIBE,
INFO.
Content-Type: application/sdp.
User-Agent: X-Lite release 1100l stamp 47546.
Content-Length: 426.
..
v=0.
o=- 8 2 IN IP4 192.168.111.11.
s=CounterPath X-Lite 3.0.
c=IN IP4 192.168.111.11.
t=0 0.
m=audio 7312 RTP/AVP 107 119 100 106 0 105 98 8 3 101.
a=alt:1 1 : HoD1z/cu FZ1lnldj 192.168.111.11 7312.
a=fmtp:101 0-15.
a=rtpmap:107 BV32/16000.
a=rtpmap:119 BV32-FEC/16000.
a=rtpmap:100 SPEEX/16000.
a=rtpmap:106 SPEEX-FEC/16000.
a=rtpmap:105 SPEEX-FEC/8000.
a=rtpmap:98 iLBC/8000.
a=rtpmap:101 telephone-event/8000.
a=sendrecv.
U 192.168.111.139:5060 -> 192.168.111.226:5060
INVITE sip:[email protected] SIP/2.0.
Record-Route: <sip:192.168.111.139;lr=on>.
Via: SIP/2.0/UDP 192.168.111.139;branch=z9hG4bK42b8.ab275eb.0.
Via: SIP/2.0/UDP
192.168.111.11:20254;branch=z9hG4bK-d8754z-a1602d6268003f58-1---d8754z-;rport=20254.
Max-Forwards: 69.
Contact: <sip:[email protected]:20254>.
To: "9611558800"<sip:[email protected]>.
From: "1000"<sip:[email protected]>;tag=1f79f872.
Call-ID: N2Q0YTM3YjMzNWZhZmMwN2NhZDkxNWNjZWIxZGFkY2E..
CSeq: 1 INVITE.
Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, NOTIFY, MESSAGE, SUBSCRIBE,
INFO.
Content-Type: application/sdp.
User-Agent: X-Lite release 1100l stamp 47546.
Content-Length: 426.
..
v=0.
o=- 8 2 IN IP4 192.168.111.11.
s=CounterPath X-Lite 3.0.
c=IN IP4 192.168.111.11.
t=0 0.
m=audio 7312 RTP/AVP 107 119 100 106 0 105 98 8 3 101.
a=alt:1 1 : HoD1z/cu FZ1lnldj 192.168.111.11 7312.
a=fmtp:101 0-15.
a=rtpmap:107 BV32/16000.
a=rtpmap:119 BV32-FEC/16000.
a=rtpmap:100 SPEEX/16000.
a=rtpmap:106 SPEEX-FEC/16000.
a=rtpmap:105 SPEEX-FEC/8000.
a=rtpmap:98 iLBC/8000.
a=rtpmap:101 telephone-event/8000.
a=sendrecv.
U 192.168.111.226:54576 -> 192.168.111.139:5060
..
..
..............
U 192.168.111.139:5060 -> 192.168.111.226:5060
INVITE sip:[email protected] SIP/2.0.
Record-Route: <sip:192.168.111.139;lr=on>.
Via: SIP/2.0/UDP 192.168.111.139;branch=z9hG4bK42b8.ab275eb.0.
Via: SIP/2.0/UDP
192.168.111.11:20254;branch=z9hG4bK-d8754z-a1602d6268003f58-1---d8754z-;rport=20254.
Max-Forwards: 69.
Contact: <sip:[email protected]:20254>.
To: "9611558800"<sip:[email protected]>.
From: "1000"<sip:[email protected]>;tag=1f79f872.
Call-ID: N2Q0YTM3YjMzNWZhZmMwN2NhZDkxNWNjZWIxZGFkY2E..
CSeq: 1 INVITE.
Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, NOTIFY, MESSAGE, SUBSCRIBE,
INFO.
Content-Type: application/sdp.
User-Agent: X-Lite release 1100l stamp 47546.
Content-Length: 426.
..
v=0.
o=- 8 2 IN IP4 192.168.111.11.
s=CounterPath X-Lite 3.0.
c=IN IP4 192.168.111.11.
t=0 0.
m=audio 7312 RTP/AVP 107 119 100 106 0 105 98 8 3 101.
a=alt:1 1 : HoD1z/cu FZ1lnldj 192.168.111.11 7312.
a=fmtp:101 0-15.
a=rtpmap:107 BV32/16000.
a=rtpmap:119 BV32-FEC/16000.
a=rtpmap:100 SPEEX/16000.
a=rtpmap:106 SPEEX-FEC/16000.
a=rtpmap:105 SPEEX-FEC/8000.
a=rtpmap:98 iLBC/8000.
a=rtpmap:101 telephone-event/8000.
a=sendrecv.
U 192.168.111.139:5060 -> 192.168.111.226:5060
INVITE sip:[email protected] SIP/2.0.
Record-Route: <sip:192.168.111.139;lr=on>.
Via: SIP/2.0/UDP 192.168.111.139;branch=z9hG4bK42b8.ab275eb.0.
Via: SIP/2.0/UDP
192.168.111.11:20254;branch=z9hG4bK-d8754z-a1602d6268003f58-1---d8754z-;rport=20254.
Max-Forwards: 69.
Contact: <sip:[email protected]:20254>.
To: "9611558800"<sip:[email protected]>.
From: "1000"<sip:[email protected]>;tag=1f79f872.
Call-ID: N2Q0YTM3YjMzNWZhZmMwN2NhZDkxNWNjZWIxZGFkY2E..
CSeq: 1 INVITE.
Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, NOTIFY, MESSAGE, SUBSCRIBE,
INFO.
Content-Type: application/sdp.
User-Agent: X-Lite release 1100l stamp 47546.
Content-Length: 426.
..
v=0.
o=- 8 2 IN IP4 192.168.111.11.
s=CounterPath X-Lite 3.0.
c=IN IP4 192.168.111.11.
t=0 0.
m=audio 7312 RTP/AVP 107 119 100 106 0 105 98 8 3 101.
a=alt:1 1 : HoD1z/cu FZ1lnldj 192.168.111.11 7312.
a=fmtp:101 0-15.
a=rtpmap:107 BV32/16000.
a=rtpmap:119 BV32-FEC/16000.
a=rtpmap:100 SPEEX/16000.
a=rtpmap:106 SPEEX-FEC/16000.
a=rtpmap:105 SPEEX-FEC/8000.
a=rtpmap:98 iLBC/8000.
a=rtpmap:101 telephone-event/8000.
a=sendrecv.
U 192.168.111.139:5060 -> 192.168.111.11:20254
SIP/2.0 408 Request Timeout.
Via: SIP/2.0/UDP
192.168.111.11:20254;branch=z9hG4bK-d8754z-a1602d6268003f58-1---d8754z-;rport=20254.
To:
"9611558800"<sip:[email protected]>;tag=a6a1c5f60faecf035a1ae5b6e96e979a-43e3.
From: "1000"<sip:[email protected]>;tag=1f79f872.
Call-ID: N2Q0YTM3YjMzNWZhZmMwN2NhZDkxNWNjZWIxZGFkY2E..
CSeq: 1 INVITE.
Server: kamailio (3.2.2 (i386/linux)).
Content-Length: 0.
..
U 192.168.111.11:20254 -> 192.168.111.139:5060
ACK sip:[email protected] SIP/2.0.
Via: SIP/2.0/UDP
192.168.111.11:20254;branch=z9hG4bK-d8754z-a1602d6268003f58-1---d8754z-;rport.
To:
"9611558800"<sip:[email protected]>;tag=a6a1c5f60faecf035a1ae5b6e96e979a-43e3.
From: "1000"<sip:[email protected]>;tag=1f79f872.
Call-ID: N2Q0YTM3YjMzNWZhZmMwN2NhZDkxNWNjZWIxZGFkY2E..
CSeq: 1 ACK.
Content-Length: 0.
..
U 192.168.111.11:20254 -> 192.168.111.139:5060
..
..
..............
U 192.168.111.15:38802 -> 192.168.111.139:5060
..
..
..............
U 192.168.111.226:54576 -> 192.168.111.139:5060
..
..
..............
U 192.168.111.11:20254 -> 192.168.111.139:5060
..
..
..............
U 192.168.111.15:38802 -> 192.168.111.139:5060
..
..
..............
U 192.168.111.226:54576 -> 192.168.111.139:5060
..
..
..............
U 192.168.111.11:20254 -> 192.168.111.139:5060
..
..
..............
U 192.168.111.15:38802 -> 192.168.111.139:5060
..
..
..............
U 192.168.111.226:54576 -> 192.168.111.139:5060
..
..
..............
U 192.168.111.11:20254 -> 192.168.111.139:5060
..
..
..............
U 192.168.111.15:38802 -> 192.168.111.139:5060
..
..
..............
U 192.168.111.226:54576 -> 192.168.111.139:5060
..
..
..............
U 192.168.111.11:20254 -> 192.168.111.139:5060
..
..
..............
U 192.168.111.15:38802 -> 192.168.111.139:5060
..
..
..............
U 192.168.111.226:54576 -> 192.168.111.139:5060
..
..
..............
U 192.168.111.11:20254 -> 192.168.111.139:5060
..
..
..............
U 192.168.111.15:38802 -> 192.168.111.139:5060
..
..
..............
U 192.168.111.226:54576 -> 192.168.111.139:5060
..
..
..............
U 192.168.111.11:20254 -> 192.168.111.139:5060
..
..
..............
U 192.168.111.15:38802 -> 192.168.111.139:5060
..
..
..............
U 192.168.111.226:54576 -> 192.168.111.139:5060
..
..
..............
U 192.168.111.11:20254 -> 192.168.111.139:5060
..
..
..............
U 192.168.111.15:38802 -> 192.168.111.139:5060
..
..
..............
U 192.168.111.226:54576 -> 192.168.111.139:5060
..
..
..............
U 192.168.111.11:20254 -> 192.168.111.139:5060
..
..
..............
U 192.168.111.15:38802 -> 192.168.111.139:5060
..
..
..............
U 192.168.111.226:54576 -> 192.168.111.139:5060
..
..
..............
U 192.168.111.11:20254 -> 192.168.111.139:5060
..
..
..............
U 192.168.111.15:38802 -> 192.168.111.139:5060
..
..
..............
U 192.168.111.226:54576 -> 192.168.111.139:5060
..
..
..............
U 192.168.111.11:20254 -> 192.168.111.139:5060
..
..
..............
U 192.168.111.15:38802 -> 192.168.111.139:5060
..
..
..............
U 192.168.111.226:54576 -> 192.168.111.139:5060
..
..
..............
U 192.168.111.11:20254 -> 192.168.111.139:5060
..
..
..............
U 192.168.111.15:38802 -> 192.168.111.139:5060
..
..
..............
U 192.168.111.226:54576 -> 192.168.111.139:5060
..
..
..............
U 192.168.111.11:20254 -> 192.168.111.139:5060
..
..
..............
U 192.168.111.15:38802 -> 192.168.111.139:5060
..
..
..............
U 192.168.111.226:54576 -> 192.168.111.139:5060
..
..
..............
U 192.168.111.11:20254 -> 192.168.111.139:5060
..
..
..............
U 192.168.111.15:38802 -> 192.168.111.139:5060
..
..
..............
U 192.168.111.226:54576 -> 192.168.111.139:5060
..
..
..............
_______________________________________________
SIP Express Router (SER) and Kamailio (OpenSER) - sr-users mailing list
[email protected]
http://lists.sip-router.org/cgi-bin/mailman/listinfo/sr-users