Hello Daniel,

thanks for the reply. I try out your suggestion, but this is not working. There 
is no sound transmitted and the connection ended after 23 seconds (I think a 
timer is expired).
Scenario is:
Kamailio route all internal calls only internal (external vice versa)
Kamailio route all internal to external through rtpproxy (also vice versa)

INT_IP: 203.207.111.58
EXT_IP: 193.16.163.58

Here my code:
request_route {
        if(is_method("REGISTER")) {
                if(dst_ip==203.207.111.58){
                        setbflag(20);
                }else{
                        setbflag(21);
                }
        }
}

Route [NATMANAGE]


        if(dst_ip==203.207.111.58 && isflagset(20)){
                        rtpproxy_manage("coii");
        }else if(dst_ip==203.207.111.58 && isflagset(21)){
                        rtpproxy_manage("coie");
        }else if(dst_ip==193.16.163.58 && isflagset(20)){
                        rtpproxy_manage("coei");
        }else if(dst_ip==193.16.163.58 && isflagset(21)){
                        rtpproxy_manage("coee");
        }

Alternative try

if(from_uri=~".*@203.207.111.58" && isflagset(20)){
                        rtpproxy_manage("coii");
        }else if(from_uri=~".*@203.207.111.58" && isflagset(21)){
                        rtpproxy_manage("coie");
        }else if(from_uri=~".*@193.16.163.58" && isflagset(20)){
                        rtpproxy_manage("coei");
        }else if(from_uri=~".*@193.16.163.58" && isflagset(21)){
                        rtpproxy_manage("coee");
        }

Another try


        if(from_uri=~".*@203.207.111.58" && isflagset(20)){
                        rtpproxy_manage("coii");
        }else if(from_uri=~".*@203.207.111.58" && isflagset(21)){
                        rtpproxy_manage("coie");
        }else if(from_uri=~".*@193.16.163.58" && isflagset(20)){
                        rtpproxy_manage("coei");
        }else if(from_uri=~".*@193.16.163.58" && isflagset(21)){
                        rtpproxy_manage("coee");
        }

RTPproxy config

EXTRA_OPTS="-l 203.207.111.58/193.16.163.58 -m 20000 -M 20100 -d 
WARN:LOG_LOCAL1"

Some debugging information are in the txt file. TCPdump debugging does not 
shows interesting informations...

Has somebody a good idea which could be helpful? Do you need some more 
information?


Cheers,
Kai


Von: sr-users [mailto:sr-users-boun...@lists.sip-router.org] Im Auftrag von 
Daniel-Constantin Mierla
Gesendet: Montag, 12. Oktober 2015 14:26
An: Kamailio (SER) - Users Mailing List <sr-users@lists.sip-router.org>
Betreff: Re: [SR-Users] Routing between 2 domains

Hello,

the src_ip is not a local IP, so do not match it with INT_IP or EXT_IP. The 
dst_ip is local ip, but the one on which the interface was received.

You can test the $fs to see what socket is going to be used for sending out.

Or set some branch flag for each interface when the registration is processed 
and check that in branch route

if(is_method("REGISTER")) {
if(dst_ip==INT_IP){
   setbflag(20);
}else{
   setbflag(21);
}
}

then in route[NATMANGE] have conditions like:

if(src_ip==INT_IP && isflagset(20)) {
   # internal to internal
} else if(src_ip==INT_IP && isflagset(21)) {
   # internal to external
} else if ...


Cheers,
Daniel
On 08/10/15 11:14, kai.ohnac...@cbc.de<mailto:kai.ohnac...@cbc.de> wrote:

Hello community,



I work with Kamailio 4.2.0 which is placed between two networks (with two 
interfaces) and RTPproxy in bridge mode.

The task from Kamailio is to handle the calls from internal networks to 
internal networks only on the internal Interface without bridging. For external 
networks vice versa. If the call comes from external to internal, then the 
RTPproxy should work in bridge mode and vice versa. I adapt the example with 
IPv4 and IPv6 routing, but this is not working for internal to external calls 
and vice versa (http://kb.asipto.com/kamailio:kamailio-mixed-ipv4-ipv6). Only 
external calls and only internal calls works. I think the cause of this 
behavior is the routing which I implemented to the RTPmanage part in the 
Kamailio config.

The error message is given by the internal device. (call from external to 
internal)

If I make a call from internal to external, the RTP stream is only in one 
direction.



Internal Interface IP: 203.207.111.58

External Interface IP: 193.16.163.58



The RTPproxy config is:

CONTROL_SOCK=udp:127.0.0.1:9000

EXTRA_OPTS="-l 203.207.111.58/193.16.163.58 -d WARN:LOG_LOCAL1"



Kamailio.cfg:

#!define INT_IP 10.96.0.0/14

#!define EXT_IP 193.0.0.0/8



# RTPProxy control and singaling updates for NAT traversal

route[NATMANAGE] {

#!ifdef WITH_NAT

        if (is_request()) {

                if(has_totag()) {

                        if(check_route_param("nat=yes")) {

                                setbflag(FLB_NATB);

                        }

                }

        }

        if (!(isflagset(FLT_NATS) || isbflagset(FLB_NATB)))

                return;



#       rtpproxy_manage("co");



# Start Test routing



        if((src_ip==INT_IP && dst_ip==EXT_IP)){

                        rtpproxy_manage("cowie");

                        }

        if((src_ip==EXT_IP && dst_ip==INT_IP)){

                        rtpproxy_manage("cowei");

                        }



        if (is_request()) {

                if (!has_totag()) {

                        if(t_is_branch_route()) {

                                add_rr_param(";nat=yes");

                        }

                }

        }

        if (is_reply()) {

                if(isbflagset(FLB_NATB)) {

                        if(is_first_hop())

                                set_contact_alias();

                }

        }

#!endif

        return;

}

Can someone help me with the right routing? Do you need some more debugging 
information?

Cheers,
Kai





_______________________________________________

SIP Express Router (SER) and Kamailio (OpenSER) - sr-users mailing list

sr-users@lists.sip-router.org<mailto:sr-users@lists.sip-router.org>

http://lists.sip-router.org/cgi-bin/mailman/listinfo/sr-users



--

Daniel-Constantin Mierla

http://twitter.com/#!/miconda - http://www.linkedin.com/in/miconda

Book: SIP Routing With Kamailio - http://www.asipto.com
11:24:22,705: Connect Request: 32 00 01 00 02 80 27 1D 01 00 00 00 01 00 05 80 
32 30 30 30 06 00 80 34 30 30 30 00 00 09 01 00 01 00 00 00 00 00 00 00 00 02 
91 81 05 00 00 00 00 00 
11:24:22,705: Connect Request: 4000 to 2000
11:24:22,714: Connect Confirm: 0E 00 01 00 02 81 27 1D 01 01 00 00 00 00 
11:24:22,714: Connect Confirm
-------------------------------------------
11:24:22,742: R: Windows firewall open UDP port (RTP): 5062
success
-------------------------------------------
11:24:22,775: R: Windows firewall open UDP port (RTCP): 5063
success
-------------------------------------------
11:24:22,776: T: 193.16.163.58:5060 (UDP)
INVITE sip:2000@193.16.163.58 SIP/2.0
Via: SIP/2.0/UDP 
172.16.32.74:5060;branch=z9hG4bK00a7842e4376e511aed46557ee234a3f;rport
From: "PhonerLite" <sip:4000@193.16.163.58>;tag=1608717633
To: <sip:2000@193.16.163.58>
Call-ID: 00A7842E-4376-E511-AED3-6557EE234A3F@172.16.32.74
CSeq: 183 INVITE
Contact: <sip:4000@172.16.32.74:5060>
Content-Type: application/sdp
Allow: INVITE, OPTIONS, ACK, BYE, CANCEL, INFO, NOTIFY, MESSAGE, UPDATE
Max-Forwards: 70
Supported: 100rel, replaces, from-change
P-Early-Media: supported
User-Agent: SIPPER for PhonerLite
P-Preferred-Identity: <sip:4000@193.16.163.58>
Content-Length:   445

v=0
o=- 4197655648 1 IN IP4 172.16.32.74
s=SIPPER for PhonerLite
c=IN IP4 172.16.32.74
t=0 0
m=audio 5062 RTP/AVP 8 107 0 2 3 97 110 111 9 101
a=rtpmap:8 PCMA/8000
a=rtpmap:107 opus/48000/2
a=rtpmap:0 PCMU/8000
a=rtpmap:2 G726-32/8000
a=rtpmap:3 GSM/8000
a=rtpmap:97 iLBC/8000
a=rtpmap:110 speex/8000
a=rtpmap:111 speex/16000
a=rtpmap:9 G722/8000
a=rtpmap:101 telephone-event/8000
a=fmtp:101 0-16
a=ssrc:1459724854
a=sendrecv

-------------------------------------------
11:24:22,783: R: 193.16.163.58:5060 (UDP)
SIP/2.0 407 Proxy Authentication Required
Via: SIP/2.0/UDP 
172.16.32.74:5060;branch=z9hG4bK00a7842e4376e511aed46557ee234a3f
From: "PhonerLite" <sip:4000@193.16.163.58>;tag=1608717633
To: <sip:2000@193.16.163.58>;tag=b27e1a1d33761e85846fc98f5f3a7e58.8787
Call-ID: 00A7842E-4376-E511-AED3-6557EE234A3F@172.16.32.74
CSeq: 183 INVITE
Proxy-Authenticate: Digest realm="193.16.163.58", 
nonce="VidcGVYnWu1KClVmWI2I3XHZQ5kZTfPD"
Server: kamailio (4.2.5 (x86_64/linux))
Content-Length: 0


-------------------------------------------
11:24:22,783: T: 193.16.163.58:5060 (UDP)
ACK sip:2000@193.16.163.58 SIP/2.0
Via: SIP/2.0/UDP 
172.16.32.74:5060;branch=z9hG4bK00a7842e4376e511aed46557ee234a3f;rport
From: "PhonerLite" <sip:4000@193.16.163.58>;tag=1608717633
To: <sip:2000@193.16.163.58>;tag=b27e1a1d33761e85846fc98f5f3a7e58.8787
Call-ID: 00A7842E-4376-E511-AED3-6557EE234A3F@172.16.32.74
CSeq: 183 ACK
Content-Length: 0


-------------------------------------------
11:24:22,784: T: 193.16.163.58:5060 (UDP)
INVITE sip:2000@193.16.163.58 SIP/2.0
Via: SIP/2.0/UDP 
172.16.32.74:5060;branch=z9hG4bK00a7842e4376e511aed56557ee234a3f;rport
From: "PhonerLite" <sip:4000@193.16.163.58>;tag=1608717633
To: <sip:2000@193.16.163.58>
Call-ID: 00A7842E-4376-E511-AED3-6557EE234A3F@172.16.32.74
CSeq: 184 INVITE
Contact: <sip:4000@172.16.32.74:5060>
Proxy-Authorization: Digest username="4000", realm="193.16.163.58", 
nonce="VidcGVYnWu1KClVmWI2I3XHZQ5kZTfPD", uri="sip:2000@193.16.163.58", 
response="e3bab3c0c8809d181c391d24f6ca78fc", algorithm=MD5
Content-Type: application/sdp
Allow: INVITE, OPTIONS, ACK, BYE, CANCEL, INFO, NOTIFY, MESSAGE, UPDATE
Max-Forwards: 70
Supported: 100rel, replaces, from-change
P-Early-Media: supported
User-Agent: SIPPER for PhonerLite
P-Preferred-Identity: <sip:4000@193.16.163.58>
Content-Length:   445

v=0
o=- 4197655648 1 IN IP4 172.16.32.74
s=SIPPER for PhonerLite
c=IN IP4 172.16.32.74
t=0 0
m=audio 5062 RTP/AVP 8 107 0 2 3 97 110 111 9 101
a=rtpmap:8 PCMA/8000
a=rtpmap:107 opus/48000/2
a=rtpmap:0 PCMU/8000
a=rtpmap:2 G726-32/8000
a=rtpmap:3 GSM/8000
a=rtpmap:97 iLBC/8000
a=rtpmap:110 speex/8000
a=rtpmap:111 speex/16000
a=rtpmap:9 G722/8000
a=rtpmap:101 telephone-event/8000
a=fmtp:101 0-16
a=ssrc:1459724854
a=sendrecv

-------------------------------------------
11:24:22,791: R: 193.16.163.58:5060 (UDP)
SIP/2.0 100 trying -- your call is important to us
Via: SIP/2.0/UDP 
172.16.32.74:5060;branch=z9hG4bK00a7842e4376e511aed56557ee234a3f
From: "PhonerLite" <sip:4000@193.16.163.58>;tag=1608717633
To: <sip:2000@193.16.163.58>
Call-ID: 00A7842E-4376-E511-AED3-6557EE234A3F@172.16.32.74
CSeq: 184 INVITE
Server: kamailio (4.2.5 (x86_64/linux))
Content-Length: 0


-------------------------------------------
11:24:22,796: R: 193.16.163.58:5060 (UDP)
SIP/2.0 180 Ringing
Via: SIP/2.0/UDP 
172.16.32.74:5060;branch=z9hG4bK00a7842e4376e511aed56557ee234a3f
Max-Forwards: 70
To: <sip:2000@193.16.163.58>;tag=omr5o9T5T0c
From: "PhonerLite" <sip:4000@193.16.163.58>;tag=1608717633
Call-ID: 00A7842E-4376-E511-AED3-6557EE234A3F@172.16.32.74
CSeq: 184 INVITE
Allow: INVITE, ACK, CANCEL, BYE, OPTIONS, REFER
Contact: <sip:3000@10.98.107.29:5060;alias=10.98.107.29~5060~1>
Record-Route: <sip:203.207.111.58;lr;r2=on;nat=yes>
Record-Route: <sip:193.16.163.58;lr;r2=on;nat=yes>
Supported: 100rel, replaces, from-change
User-Agent: MAYAH 4.9.18.0-5.39.0.0
Content-Length: 0


11:24:22,797: Info Indication: 0F 00 01 00 08 82 FB 1E 01 01 00 00 01 80 00 
11:24:22,797: Info Indication: alerting
11:24:22,797: Info Response: 0C 00 01 00 08 83 FB 1E 01 01 00 00 
11:24:22,797: Info Response
11:24:22,797: Info Indication: 11 00 01 00 08 82 FC 1E 01 01 00 00 1E 00 02 81 
88 
11:24:22,797: Info Indication: in-band information or an appropriate pattern is 
now available
11:24:22,797: Connect B3 Request: 0D 00 01 00 82 80 28 1D 01 01 00 00 00 
11:24:22,797: Connect B3 Request
11:24:22,797: Info Response: 0C 00 01 00 08 83 FC 1E 01 01 00 00 
11:24:22,797: Info Response
11:24:22,797: Info Indication: 23 00 01 00 08 82 FD 1E 01 01 00 00 6C 00 14 00 
80 32 30 30 30 40 31 39 33 2E 31 36 2E 31 36 33 2E 35 38 
11:24:22,797: Info Indication: 2000@193.16.163.58
11:24:22,797: Info Response: 0C 00 01 00 08 83 FD 1E 01 01 00 00 
11:24:22,797: Info Response
11:24:22,797: Connect B3 Confirm: 0E 00 01 00 82 81 28 1D 01 01 01 00 00 00 
11:24:22,797: Connect B3 Confirm
11:24:22,797: Connect B3 Active Indication: 0D 00 01 00 83 82 FE 1E 01 01 01 00 
00 
11:24:22,797: Connect B3 Active Indication
11:24:22,797: Connect B3 Active Response: 0C 00 01 00 83 83 FE 1E 01 01 01 00 
11:24:22,798: Connect B3 Active Response
11:24:22,798: Facility Request: 19 00 01 00 80 80 29 1D 01 01 01 00 01 00 0A 01 
00 64 00 3C 00 00 00 00 00 
11:24:22,798: Facility (DTMF on/off) Request
11:24:23,071: Facility Confirm: 11 00 01 00 80 81 29 1D 01 00 00 00 00 00 01 00 
00 
11:24:23,071: Facility Confirm (DTMF)
-------------------------------------------
11:24:23,304: R: 193.16.163.58:5060 (UDP)
SIP/2.0 200 OK
Via: SIP/2.0/UDP 
172.16.32.74:5060;branch=z9hG4bK00a7842e4376e511aed56557ee234a3f
Max-Forwards: 70
To: <sip:2000@193.16.163.58>;tag=omr5o9T5T0c
From: "PhonerLite" <sip:4000@193.16.163.58>;tag=1608717633
Call-ID: 00A7842E-4376-E511-AED3-6557EE234A3F@172.16.32.74
CSeq: 184 INVITE
Contact: <sip:3000@10.98.107.29:5060;alias=10.98.107.29~5060~1>
Record-Route: <sip:203.207.111.58;lr;r2=on;nat=yes>
Record-Route: <sip:193.16.163.58;lr;r2=on;nat=yes>
User-Agent: MAYAH 4.9.18.0-5.39.0.0
Content-Type: application/sdp
Content-Length: 199

v=0
o=- 0 13 IN IP4 203.207.111.58
s=-
c=IN IP4 203.207.111.58
t=0 0
m=audio 20012 RTP/AVP 8 0
a=rtpmap:8 PCMA/8000
a=ptime:20
a=rtpmap:0 PCMU/8000
a=ptime:20
a=sendrecv
a=nortpproxy:yes

11:24:23,304: Connect Active Indication: 0F 00 01 00 03 82 1C 1F 01 01 00 00 00 
00 00 
11:24:23,304: Connect Active Indication
11:24:23,304: Connect Active Response: 0C 00 01 00 03 83 1C 1F 01 01 00 00 
11:24:23,304: Connect Active Response
-------------------------------------------
11:24:23,305: T: 193.16.163.58:5060 (UDP)
ACK sip:3000@10.98.107.29:5060;alias=10.98.107.29~5060~1 SIP/2.0
Via: SIP/2.0/UDP 
172.16.32.74:5060;branch=z9hG4bK803d1d2f4376e511aed56557ee234a3f;rport
Route: <sip:193.16.163.58;lr;r2=on;nat=yes>
Route: <sip:203.207.111.58;lr;r2=on;nat=yes>
From: "PhonerLite" <sip:4000@193.16.163.58>;tag=1608717633
To: <sip:2000@193.16.163.58>;tag=omr5o9T5T0c
Call-ID: 00A7842E-4376-E511-AED3-6557EE234A3F@172.16.32.74
CSeq: 184 ACK
Contact: <sip:4000@172.16.32.74:5060>
Proxy-Authorization: Digest username="4000", realm="193.16.163.58", 
nonce="VidcGVYnWu1KClVmWI2I3XHZQ5kZTfPD", uri="sip:2000@193.16.163.58", 
response="e3bab3c0c8809d181c391d24f6ca78fc", algorithm=MD5
Max-Forwards: 70
Content-Length: 0


-------------------------------------------
11:24:27,113: T: 193.16.163.58:5060 (UDP)
INVITE sip:3000@10.98.107.29:5060;alias=10.98.107.29~5060~1 SIP/2.0
Via: SIP/2.0/UDP 
172.16.32.74:5060;branch=z9hG4bK80977f314376e511aed56557ee234a3f;rport
Route: <sip:193.16.163.58;lr;r2=on;nat=yes>
Route: <sip:203.207.111.58;lr;r2=on;nat=yes>
From: "PhonerLite" <sip:4000@193.16.163.58>;tag=1608717633
To: <sip:2000@193.16.163.58>;tag=omr5o9T5T0c
Call-ID: 00A7842E-4376-E511-AED3-6557EE234A3F@172.16.32.74
CSeq: 185 INVITE
Contact: <sip:4000@172.16.32.74:5060>
Proxy-Authorization: Digest username="4000", realm="193.16.163.58", 
nonce="VidcGVYnWu1KClVmWI2I3XHZQ5kZTfPD", 
uri="sip:3000@10.98.107.29:5060;alias=10.98.107.29~5060~1", 
response="849a7799a663a80287fccc3ad4427778", algorithm=MD5
Content-Type: application/sdp
Allow: INVITE, OPTIONS, ACK, BYE, CANCEL, INFO, NOTIFY, MESSAGE, UPDATE
Max-Forwards: 70
Supported: 100rel, replaces, from-change
User-Agent: SIPPER for PhonerLite
Content-Length:   470

v=0
o=- 4197655648 2 IN IP4 172.16.32.74
s=SIPPER for PhonerLite
c=IN IP4 172.16.32.74
t=0 0
m=audio 5060 RTP/AVP 8 107 0 2 3 97 110 111 9 101
a=rtpmap:8 PCMA/8000
a=rtpmap:107 opus/48000/2
a=rtpmap:0 PCMU/8000
a=rtpmap:2 G726-32/8000
a=rtpmap:3 GSM/8000
a=rtpmap:97 iLBC/8000
a=rtpmap:110 speex/8000
a=rtpmap:111 speex/16000
a=rtpmap:9 G722/8000
a=rtpmap:101 telephone-event/8000
a=fmtp:101 0-16
a=rtcp:5060
a=rtcp-mux
a=ssrc:1459724854
a=sendrecv

-------------------------------------------
11:24:27,120: R: 193.16.163.58:5060 (UDP)
SIP/2.0 100 trying -- your call is important to us
Via: SIP/2.0/UDP 
172.16.32.74:5060;branch=z9hG4bK80977f314376e511aed56557ee234a3f
From: "PhonerLite" <sip:4000@193.16.163.58>;tag=1608717633
To: <sip:2000@193.16.163.58>;tag=omr5o9T5T0c
Call-ID: 00A7842E-4376-E511-AED3-6557EE234A3F@172.16.32.74
CSeq: 185 INVITE
Server: kamailio (4.2.5 (x86_64/linux))
Content-Length: 0


-------------------------------------------
11:24:27,144: R: 193.16.163.58:5060 (UDP)
SIP/2.0 200 OK
Via: SIP/2.0/UDP 
172.16.32.74:5060;branch=z9hG4bK80977f314376e511aed56557ee234a3f
Max-Forwards: 70
To: <sip:2000@193.16.163.58>;tag=omr5o9T5T0c
From: "PhonerLite" <sip:4000@193.16.163.58>;tag=1608717633
Call-ID: 00A7842E-4376-E511-AED3-6557EE234A3F@172.16.32.74
CSeq: 185 INVITE
Allow: INVITE, ACK, CANCEL, BYE, OPTIONS, REFER
Contact: <sip:3000@10.98.107.29:5060;alias=10.98.107.29~5060~1>
Supported: 100rel, replaces, from-change
User-Agent: MAYAH 4.9.18.0-5.39.0.0
Content-Type: application/sdp
Content-Length: 181

v=0
o=- 0 14 IN IP4 193.16.163.150
s=-
c=IN IP4 193.16.163.150
t=0 0
m=audio 60590 RTP/AVP 8 0
a=rtpmap:8 PCMA/8000
a=ptime:20
a=rtpmap:0 PCMU/8000
a=ptime:20
a=sendrecv

-------------------------------------------
11:24:27,144: T: 193.16.163.58:5060 (UDP)
ACK sip:3000@10.98.107.29:5060;alias=10.98.107.29~5060~1 SIP/2.0
Via: SIP/2.0/UDP 
172.16.32.74:5060;branch=z9hG4bK80977f314376e511aed66557ee234a3f;rport
Route: <sip:193.16.163.58;lr;r2=on;nat=yes>
Route: <sip:203.207.111.58;lr;r2=on;nat=yes>
From: "PhonerLite" <sip:4000@193.16.163.58>;tag=1608717633
To: <sip:2000@193.16.163.58>;tag=omr5o9T5T0c
Call-ID: 00A7842E-4376-E511-AED3-6557EE234A3F@172.16.32.74
CSeq: 185 ACK
Contact: <sip:4000@172.16.32.74:5060>
Proxy-Authorization: Digest username="4000", realm="193.16.163.58", 
nonce="VidcGVYnWu1KClVmWI2I3XHZQ5kZTfPD", 
uri="sip:3000@10.98.107.29:5060;alias=10.98.107.29~5060~1", 
response="849a7799a663a80287fccc3ad4427778", algorithm=MD5
Max-Forwards: 70
Content-Length: 0


-------------------------------------------
11:24:45,113: T: 193.16.163.58:5060 (UDP)
REGISTER sip:193.16.163.58 SIP/2.0
Via: SIP/2.0/UDP 
172.16.32.74:5060;branch=z9hG4bK802c3a3c4376e511aed66557ee234a3f;rport
From: "PhonerLite" <sip:4000@193.16.163.58>;tag=550310645
To: "PhonerLite" <sip:4000@193.16.163.58>
Call-ID: 8074459B-3676-E511-AEB1-6557EE234A3F@172.16.32.74
CSeq: 186 REGISTER
Contact: 
<sip:4000@172.16.32.74:5060>;+sip.instance="<urn:uuid:00384DC3-92FC-E411-AFB7-476137FD9050>"
Authorization: Digest username="4000", realm="193.16.163.58", 
nonce="VidbEFYnWeTcI8aKfQZItHWPbnrbnQXB", uri="sip:193.16.163.58", 
response="56501d0e17c9352931ed1bca7f2895e5", algorithm=MD5
Allow: INVITE, OPTIONS, ACK, BYE, CANCEL, INFO, NOTIFY, MESSAGE, UPDATE
Max-Forwards: 70
Allow-Events: org.3gpp.nwinitdereg
User-Agent: SIPPER for PhonerLite
Expires: 60
Content-Length: 0


-------------------------------------------
11:24:45,119: R: 193.16.163.58:5060 (UDP)
SIP/2.0 200 OK
Via: SIP/2.0/UDP 
172.16.32.74:5060;branch=z9hG4bK802c3a3c4376e511aed66557ee234a3f
From: "PhonerLite" <sip:4000@193.16.163.58>;tag=550310645
To: "PhonerLite" 
<sip:4000@193.16.163.58>;tag=b27e1a1d33761e85846fc98f5f3a7e58.ec09
Call-ID: 8074459B-3676-E511-AEB1-6557EE234A3F@172.16.32.74
CSeq: 186 REGISTER
Contact: 
<sip:4000@172.16.32.74:5060>;expires=60;received="sip:193.16.163.39:39266";+sip.instance="<urn:uuid:00384DC3-92FC-E411-AFB7-476137FD9050>"
Server: kamailio (4.2.5 (x86_64/linux))
Content-Length: 0


-------------------------------------------
11:24:47,548: R: 193.16.163.58:5060 (UDP)
BYE sip:4000@172.16.32.74:5060 SIP/2.0
Via: SIP/2.0/UDP 
193.16.163.58;branch=z9hG4bK5cea.c8d64a9621ffc3e2997241c98ec31819.0
To: "PhonerLite" <sip:4000@193.16.163.58>;tag=1608717633
From: <sip:2000@193.16.163.58>;tag=omr5o9T5T0c
Call-ID: 00A7842E-4376-E511-AED3-6557EE234A3F@172.16.32.74
CSeq: 185 BYE
Max-Forwards: 69
Contact: <sip:3000@10.98.107.29:5060;alias=10.98.107.29~5060~1>
User-Agent: MAYAH 4.9.18.0-5.39.0.0
Content-Length: 0


11:24:47,548: Info Indication: 0F 00 01 00 08 82 FB 23 01 01 00 00 45 80 00 
11:24:47,548: Info Indication: disconnect
11:24:47,549: Info Response: 0C 00 01 00 08 83 FB 23 01 01 00 00 
11:24:47,549: Info Response
-------------------------------------------
11:24:47,548: T: 193.16.163.58:5060 (UDP)
SIP/2.0 200 OK
Via: SIP/2.0/UDP 
193.16.163.58;branch=z9hG4bK5cea.c8d64a9621ffc3e2997241c98ec31819.0
From: <sip:2000@193.16.163.58>;tag=omr5o9T5T0c
To: "PhonerLite" <sip:4000@193.16.163.58>;tag=1608717633
Call-ID: 00A7842E-4376-E511-AED3-6557EE234A3F@172.16.32.74
CSeq: 185 BYE
Contact: <sip:4000@172.16.32.74:5060>
Server: SIPPER for PhonerLite
Content-Length: 0


11:24:52,113: Disconnect B3 Indication: 0E 00 01 00 84 82 E6 24 01 01 01 00 00 
00 
11:24:52,113: Disconnect B3 Indication
11:24:52,113: Disconnect B3 Response: 0C 00 01 00 84 83 E6 24 01 01 01 00 
11:24:52,113: Disconnect B3 Response
11:24:52,113: Disconnect Request: 12 00 01 00 04 80 E0 22 01 01 00 00 05 00 00 
00 00 00 
11:24:52,113: Disconnect Request
11:24:52,140: Disconnect Indication: 0E 00 01 00 04 82 E7 24 01 01 00 00 00 34 
11:24:52,140: Disconnect Indication: 
11:24:52,164: Disconnect Response: 0C 00 01 00 04 83 E7 24 01 01 00 00 
11:24:52,164: Disconnect Response
-------------------------------------------
11:24:52,127: R: Windows firewall close UDP port (RTP): 5062
success
-------------------------------------------
11:24:52,140: R: Windows firewall close UDP port (RTCP): 5063
success
-------------------------------------------
11:25:33,113: T: 193.16.163.58:5060 (UDP)
REGISTER sip:193.16.163.58 SIP/2.0
Via: SIP/2.0/UDP 
172.16.32.74:5060;branch=z9hG4bK8064d6584376e511aed66557ee234a3f;rport
From: "PhonerLite" <sip:4000@193.16.163.58>;tag=550310645
To: "PhonerLite" <sip:4000@193.16.163.58>
Call-ID: 8074459B-3676-E511-AEB1-6557EE234A3F@172.16.32.74
CSeq: 187 REGISTER
Contact: 
<sip:4000@172.16.32.74:5060>;+sip.instance="<urn:uuid:00384DC3-92FC-E411-AFB7-476137FD9050>"
Authorization: Digest username="4000", realm="193.16.163.58", 
nonce="VidbEFYnWeTcI8aKfQZItHWPbnrbnQXB", uri="sip:193.16.163.58", 
response="56501d0e17c9352931ed1bca7f2895e5", algorithm=MD5
Allow: INVITE, OPTIONS, ACK, BYE, CANCEL, INFO, NOTIFY, MESSAGE, UPDATE
Max-Forwards: 70
Allow-Events: org.3gpp.nwinitdereg
User-Agent: SIPPER for PhonerLite
Expires: 60
Content-Length: 0


-------------------------------------------
11:25:33,118: R: 193.16.163.58:5060 (UDP)
SIP/2.0 401 Unauthorized
Via: SIP/2.0/UDP 
172.16.32.74:5060;branch=z9hG4bK8064d6584376e511aed66557ee234a3f
From: "PhonerLite" <sip:4000@193.16.163.58>;tag=550310645
To: "PhonerLite" 
<sip:4000@193.16.163.58>;tag=b27e1a1d33761e85846fc98f5f3a7e58.f861
Call-ID: 8074459B-3676-E511-AEB1-6557EE234A3F@172.16.32.74
CSeq: 187 REGISTER
WWW-Authenticate: Digest realm="193.16.163.58", 
nonce="VidcYFYnWzTd+qEWqQL++5PfnqE9RLKQ"
Server: kamailio (4.2.5 (x86_64/linux))
Content-Length: 0


-------------------------------------------
11:25:33,119: T: 193.16.163.58:5060 (UDP)
REGISTER sip:193.16.163.58 SIP/2.0
Via: SIP/2.0/UDP 
172.16.32.74:5060;branch=z9hG4bK8064d6584376e511aed76557ee234a3f;rport
From: "PhonerLite" <sip:4000@193.16.163.58>;tag=550310645
To: "PhonerLite" <sip:4000@193.16.163.58>
Call-ID: 8074459B-3676-E511-AEB1-6557EE234A3F@172.16.32.74
CSeq: 188 REGISTER
Contact: 
<sip:4000@172.16.32.74:5060>;+sip.instance="<urn:uuid:00384DC3-92FC-E411-AFB7-476137FD9050>"
Authorization: Digest username="4000", realm="193.16.163.58", 
nonce="VidcYFYnWzTd+qEWqQL++5PfnqE9RLKQ", uri="sip:193.16.163.58", 
response="b433c2b97adc2051a87ab032781e8e54", algorithm=MD5
Allow: INVITE, OPTIONS, ACK, BYE, CANCEL, INFO, NOTIFY, MESSAGE, UPDATE
Max-Forwards: 70
Allow-Events: org.3gpp.nwinitdereg
User-Agent: SIPPER for PhonerLite
Expires: 60
Content-Length: 0


-------------------------------------------
11:25:33,124: R: 193.16.163.58:5060 (UDP)
SIP/2.0 200 OK
Via: SIP/2.0/UDP 
172.16.32.74:5060;branch=z9hG4bK8064d6584376e511aed76557ee234a3f
From: "PhonerLite" <sip:4000@193.16.163.58>;tag=550310645
To: "PhonerLite" 
<sip:4000@193.16.163.58>;tag=b27e1a1d33761e85846fc98f5f3a7e58.2231
Call-ID: 8074459B-3676-E511-AEB1-6557EE234A3F@172.16.32.74
CSeq: 188 REGISTER
Contact: 
<sip:4000@172.16.32.74:5060>;expires=60;received="sip:193.16.163.39:39266";+sip.instance="<urn:uuid:00384DC3-92FC-E411-AFB7-476137FD9050>"
Server: kamailio (4.2.5 (x86_64/linux))
Content-Length: 0


_______________________________________________
SIP Express Router (SER) and Kamailio (OpenSER) - sr-users mailing list
sr-users@lists.sip-router.org
http://lists.sip-router.org/cgi-bin/mailman/listinfo/sr-users

Reply via email to