Call from Linphone to Cisco-VG202 & Cisco 2801

Hi,
I have two Cisco Voice router VG202 and Cisco 2801. I have established calls between two Voice router using H323. User can call to each other from both the end.
The two router cisco and svetah is registered to Asteris-21.0.0
Endpoint: 6001 Unavailable 0 of inf
InAuth: 6001/6001
Aor: 6001 1

Endpoint: 6003 Unavailable 0 of inf
InAuth: 6003/6003
Aor: 6003 1

Endpoint: 6004/6004 Not in use 0 of inf
InAuth: 6004/6004
Aor: 6004 3
Contact: 6004/sip:6004@10.128.1.86:42521;transport= a8503c3f96 NonQual nan

Endpoint: cisco Not in use 0 of inf
Aor: cisco 1
Contact: cisco/sip:cisco@10.128.120.5 46ea90a3a9 NonQual nan
Identify: cisco/cisco
Match: 10.128.120.5/32

Endpoint: svetah Not in use 0 of inf
Aor: svetah 1
Contact: svetah/sip:svetah@172.20.1.2 f2b45a28f6 NonQual nan
Identify: svetah/svetah
Match: 172.20.1.2/32
One of the Sip client 6004 is also registered to to Asterisk as shown above using “Linphone”
The Linphone user can call cisco-2801 voice port and vice versa.
User from VG202 can call linphone user on extension 6004 but the linphone user is not able to call Cisco-VG202 user. I have run the debug command on Cisco VG202 and here is what I see:
svetah-voip#
Nov 21 11:10:34.618: //-1/xxxxxxxxxxxx/CCAPI/cc_set_post_tagdata:
CALL_ERROR; Avlist Set Is Failed
Nov 21 11:10:34.626: //-1/xxxxxxxxxxxx/CCAPI/cc_validate_mlpp_info:
Unsupported MLPP Service Domain Network 0
Nov 21 11:10:34.626: //-1/xxxxxxxxxxxx/CCAPI/cc_set_mlpp_info:
Invalid MLPP Information
Nov 21 11:10:34.626: //-1/xxxxxxxxxxxx/CCAPI/cc_validate_mlpp_info:
Unsupported MLPP Service Domain Network 0
Nov 21 11:10:34.626: //-1/xxxxxxxxxxxx/CCAPI/cc_set_mlpp_info:
Invalid MLPP Information
Nov 21 11:10:34.626: //-1/xxxxxxxxxxxx/CCAPI/cc_validate_mlpp_info:
Unsupported MLPP Service Domain Network 0
svetah-voip#
Nov 21 11:10:34.626: //-1/xxxxxxxxxxxx/CCAPI/cc_set_mlpp_info:
Invalid MLPP Information
Nov 21 11:10:34.630: //-1/xxxxxxxxxxxx/CCAPI/cc_set_outpulsed_digits:
Invalid Arguments
Nov 21 11:10:34.638: //-1/xxxxxxxxxxxx/CCAPI/cc_exchange_calls_mlpp_info:
Unable too Get MLPP nformation for callID 137
svetah-voip#
Nov 21 11:10:38.118: //-1/xxxxxxxxxxxx/CCAPI/cc_set_post_tagdata:
CALL_ERROR; Avlist Set Is Failed
Nov 21 11:10:38.122: //-1/xxxxxxxxxxxx/CCAPI/cc_validate_mlpp_info:
Unsupported MLPP Service Domain Network 0
Nov 21 11:10:38.122: //-1/xxxxxxxxxxxx/CCAPI/cc_set_mlpp_info:
Invalid MLPP Information
Nov 21 11:10:38.126: //-1/xxxxxxxxxxxx/CCAPI/cc_validate_mlpp_info:
Unsupported MLPP Service Domain Network 0
Nov 21 11:10:38.126: //-1/xxxxxxxxxxxx/CCAPI/cc_set_mlpp_info:
Invalid MLPP Information
Nov 21 11:10:38.126: //-1/xxxxxxxxxxxx/CCAPI/cc_validate_mlpp_info:
Unsupported MLPP Service Domain Network 0
svetah-voip#
Nov 21 11:10:38.126: //-1/xxxxxxxxxxxx/CCAPI/cc_set_mlpp_info:
Invalid MLPP Information
Nov 21 11:10:38.130: //-1/xxxxxxxxxxxx/CCAPI/cc_set_outpulsed_digits:
Invalid Arguments
Nov 21 11:10:38.138: //-1/xxxxxxxxxxxx/CCAPI/cc_exchange_calls_mlpp_info:
Unable too Get MLPP nformation for callID 139
######################
extension.conf
[from-internal]
exten = 5000,1,Goto(IeplMenu,start,1)

[from-internal]
; Internal calls
exten => _6XXX,1,NoOp(Internal call to extension ${EXTEN}) ; Dial the user extension starting with 6
same => n,Dial(PJSIP/${EXTEN},30) ; Dail and with to answer for 30 second
same => n,Voicemail(${EXTEN}@default,u)
same => n,Hangup() ; Hangup the call
exten => _8.,1,Dial(PJSIP/${EXTEN}@cisco,30) ; Dial the extension in cisco-2801 router
same => n,Hangup()
exten => _7.,1,Dial(PJSIP/${EXTEN}@svetah,30) ; Dial the extension in cisco-2801 router
same => n,Hangup()

[IeplMenu]
exten => start,1,Answer()
same => n,Wait(1) ; Wait for 1 second
same => n,Playback(welcome) ; Play a welcome message
same => n,Wait(1) ; Wait for 1 second
same => n,Background(if-u-know-ext-dial) ; Play a menu of options
same => n,WaitExten(10) ; Wait for the caller to enter an option within 10 seconds
exten => _6XXX,1,NoOp(Internal call to extension ${EXTEN}); Allow the user to dial internal extension
same => n,Dial(PJSIP/${EXTEN},30,) ; Dial the extension, if unanswered go to Playback
same => n,Playback(vm-nobodyavail) ; Play back the message
same => n,Hangup() ; Hangup the call
exten => 8000,1,Dial(PJSIP/8000@cisco,20) ; Allow the user to dial the enxtension 8000
same => n,Playback(vm-nobodyavail) ; If the call is unanswered with in 15 sec go to Voice mail
same => n,Hangup() ; Hangup the call
exten => 7000,1,Dial(PJSIP/7000@svetah,20) ; Allow the user to dial the enxtension 8000
same => n,Playback(vm-nobodyavail) ; If the call is unanswered with in 15 sec go to Voice mail
same => n,Hangup() ; Hangup the call

exten => i,1,Playback(pbx-invalid) ; Play back invaldi extension if the dail plan is not avalable
same => n,Goto(IeplMenu,start,1) ; Go back to TestMenu

;exten => t,1,Playback(please-try-again) ; Try again if invalid extension is pressed.
;same => n,Goto(IeplMenu,start,1) ; Go back to TestMenu

exten => t,1,Playback(vm-goodbye) ; Try again if invalid extension is pressed.
same => n,Handup()

Requesting your help.

Why not SIP ?

This could be codec mismatch issue. You might try limiting what is allowed to basic ulaw or alaw, on all sides (Asterisk, Linphone and Cisco.)

Also posting the Asterisk logs could perhaps get more feedback from others in these Asterisk-specific forums.

Hello,
Thank you for the reply. Here is the Asterisk log: I am using ulaw here is my pjsip.conf
[svetah]
type=endpoint
context=from-internal
disallow=all
allow=ulaw
direct_media=no
aors=svetah
callerid=“svetah”
[svetah]
type=aor
contact=sip:svetah@172.20.1.2
max_contacts=1
[svetah]
type=identify
endpoint=svetah
match=172.20.1.2
####### Log from asterisk####
<— Received SIP request (1310 bytes) from UDP:10.128.1.55:40340 —>
INVITE sip:7000@10.128.110.26 SIP/2.0
Via: SIP/2.0/UDP 10.128.1.55:40340;branch=z9hG4bK.OjyEIFqW8;rport
From: sip:6004@10.128.110.26;tag=mpXmZR2eX
To: sip:7000@10.128.110.26
CSeq: 20 INVITE
Call-ID: cCvlGJ2hTN
Max-Forwards: 70
Supported: replaces, outbound, gruu, path, record-aware
Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, NOTIFY, MESSAGE, SUBSCRIBE, INFO, PRACK, UPDATE
Content-Type: application/sdp
Content-Length: 684
Contact: sip:6004@10.128.1.55:40340;transport=udp;expires=3599;+org.linphone.specs=“lime”
User-Agent: LinphoneAndroid/5.1.4 (Galaxy Note20) LinphoneSDK/5.2.110 (tags/5.2.110^0)

v=0
o=6004 115 1059 IN IP4 10.128.1.55
s=Talk
c=IN IP4 10.128.1.55
t=0 0
a=rtcp-xr:rcvr-rtt=all:10000 stat-summary=loss,dup,jitt,TTL voip-metrics
a=record:off
m=audio 47929 RTP/AVP 96 97 98 0 8 3 9 99 18 100 101 102 103 104
a=rtpmap:96 opus/48000/2
a=fmtp:96 useinbandfec=1
a=rtpmap:97 speex/16000
a=fmtp:97 vbr=on
a=rtpmap:98 speex/8000
a=fmtp:98 vbr=on
a=rtpmap:99 iLBC/8000
a=fmtp:99 mode=30
a=fmtp:18 annexb=yes
a=rtpmap:100 speex/32000
a=fmtp:100 vbr=on
a=rtpmap:101 telephone-event/48000
a=rtpmap:102 telephone-event/16000
a=rtpmap:103 telephone-event/8000
a=rtpmap:104 telephone-event/32000
a=rtcp:45564
a=rtcp-fb:* trr-int 1000
a=rtcp-fb:* ccm tmmbr

<— Transmitting SIP response (453 bytes) to UDP:10.128.1.55:40340 —>
SIP/2.0 401 Unauthorized
Via: SIP/2.0/UDP 10.128.1.55:40340;rport=40340;received=10.128.1.55;branch=z9hG4bK.OjyEIFqW8
Call-ID: cCvlGJ2hTN
From: sip:6004@10.128.110.26;tag=mpXmZR2eX
To: sip:7000@10.128.110.26;tag=z9hG4bK.OjyEIFqW8
CSeq: 20 INVITE
WWW-Authenticate: Digest realm=“asterisk”,nonce=“1702444613/491a4560ac37d61a46ae8cd6f31d0786”,opaque=“171437ca0d9bfb65”,algorithm=MD5,qop=“auth”
Server: Asterisk PBX 21.0.0
Content-Length: 0

<— Received SIP request (349 bytes) from UDP:10.128.1.55:40340 —>
ACK sip:7000@10.128.110.26 SIP/2.0
Via: SIP/2.0/UDP 10.128.1.55:40340;branch=z9hG4bK.OjyEIFqW8;rport
Call-ID: cCvlGJ2hTN
From: sip:6004@10.128.110.26;tag=mpXmZR2eX
To: sip:7000@10.128.110.26;tag=z9hG4bK.OjyEIFqW8
Contact: sip:6004@10.128.1.55:40340;transport=udp;expires=3599;+org.linphone.specs=“lime”
Max-Forwards: 70
CSeq: 20 ACK

<— Received SIP request (1589 bytes) from UDP:10.128.1.55:40340 —>
INVITE sip:7000@10.128.110.26 SIP/2.0
Via: SIP/2.0/UDP 10.128.1.55:40340;branch=z9hG4bK.1dCRZ8Rug;rport
From: sip:6004@10.128.110.26;tag=mpXmZR2eX
To: sip:7000@10.128.110.26
CSeq: 21 INVITE
Call-ID: cCvlGJ2hTN
Max-Forwards: 70
Supported: replaces, outbound, gruu, path, record-aware
Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, NOTIFY, MESSAGE, SUBSCRIBE, INFO, PRACK, UPDATE
Content-Type: application/sdp
Content-Length: 684
Contact: sip:6004@10.128.1.55:40340;transport=udp;expires=3599;+org.linphone.specs=“lime”
User-Agent: LinphoneAndroid/5.1.4 (Galaxy Note20) LinphoneSDK/5.2.110 (tags/5.2.110^0)
Authorization: Digest realm=“asterisk”, nonce=“1702444613/491a4560ac37d61a46ae8cd6f31d0786”, algorithm=MD5, opaque=“171437ca0d9bfb65”, username=“6004”, uri="sip:7000@10.128.110.26", response=“8196ba1705c100034334abc5156f6b9a”, cnonce=“HSfWYcGbrs1UTp4U”, nc=00000001, qop=auth

v=0
o=6004 115 1059 IN IP4 10.128.1.55
s=Talk
c=IN IP4 10.128.1.55
t=0 0
a=rtcp-xr:rcvr-rtt=all:10000 stat-summary=loss,dup,jitt,TTL voip-metrics
a=record:off
m=audio 47929 RTP/AVP 96 97 98 0 8 3 9 99 18 100 101 102 103 104
a=rtpmap:96 opus/48000/2
a=fmtp:96 useinbandfec=1
a=rtpmap:97 speex/16000
a=fmtp:97 vbr=on
a=rtpmap:98 speex/8000
a=fmtp:98 vbr=on
a=rtpmap:99 iLBC/8000
a=fmtp:99 mode=30
a=fmtp:18 annexb=yes
a=rtpmap:100 speex/32000
a=fmtp:100 vbr=on
a=rtpmap:101 telephone-event/48000
a=rtpmap:102 telephone-event/16000
a=rtpmap:103 telephone-event/8000
a=rtpmap:104 telephone-event/32000
a=rtcp:45564
a=rtcp-fb:* trr-int 1000
a=rtcp-fb:* ccm tmmbr

<— Transmitting SIP response (279 bytes) to UDP:10.128.1.55:40340 —>
SIP/2.0 100 Trying
Via: SIP/2.0/UDP 10.128.1.55:40340;rport=40340;received=10.128.1.55;branch=z9hG4bK.1dCRZ8Rug
Call-ID: cCvlGJ2hTN
From: sip:6004@10.128.110.26;tag=mpXmZR2eX
To: sip:7000@10.128.110.26
CSeq: 21 INVITE
Server: Asterisk PBX 21.0.0
Content-Length: 0

-- Executing [7000@from-internal:1] Dial("PJSIP/6004-00000042", "PJSIP/7000@svetah,30") in new stack

<— Transmitting SIP request (904 bytes) to UDP:172.20.1.2:5060 —>
INVITE sip:7000@172.20.1.2 SIP/2.0
Via: SIP/2.0/UDP 10.128.110.26:5060;rport;branch=z9hG4bKPj5cef5cae-40b5-462c-8996-ba099c5cc9f6
From: “IT-Support” sip:6004@10.128.110.26;tag=17f063c8-232a-4745-bd6c-135f4824d487
To: sip:7000@172.20.1.2
Contact: sip:asterisk@10.128.110.26:5060
Call-ID: bdb05d9f-1e6f-4463-8d7b-088df66555ce
CSeq: 18187 INVITE
Allow: OPTIONS, REGISTER, SUBSCRIBE, NOTIFY, PUBLISH, INVITE, ACK, BYE, CANCEL, UPDATE, PRACK, MESSAGE, REFER
Supported: 100rel, timer, replaces, norefersub, histinfo
Session-Expires: 1800
Min-SE: 90
Max-Forwards: 70
User-Agent: Asterisk PBX 21.0.0
Content-Type: application/sdp
Content-Length: 237

v=0
o=- 702150592 702150592 IN IP4 10.128.110.26
s=Asterisk
c=IN IP4 10.128.110.26
t=0 0
m=audio 16942 RTP/AVP 0 101
a=rtpmap:0 PCMU/8000
a=rtpmap:101 telephone-event/8000
a=fmtp:101 0-16
a=ptime:20
a=maxptime:150
a=sendrecv

-- Called PJSIP/7000@svetah

<— Transmitting SIP request (904 bytes) to UDP:172.20.1.2:5060 —>
INVITE sip:7000@172.20.1.2 SIP/2.0
Via: SIP/2.0/UDP 10.128.110.26:5060;rport;branch=z9hG4bKPj5cef5cae-40b5-462c-8996-ba099c5cc9f6
From: “IT-Support” sip:6004@10.128.110.26;tag=17f063c8-232a-4745-bd6c-135f4824d487
To: sip:7000@172.20.1.2
Contact: sip:asterisk@10.128.110.26:5060
Call-ID: bdb05d9f-1e6f-4463-8d7b-088df66555ce
CSeq: 18187 INVITE
Allow: OPTIONS, REGISTER, SUBSCRIBE, NOTIFY, PUBLISH, INVITE, ACK, BYE, CANCEL, UPDATE, PRACK, MESSAGE, REFER
Supported: 100rel, timer, replaces, norefersub, histinfo
Session-Expires: 1800
Min-SE: 90
Max-Forwards: 70
User-Agent: Asterisk PBX 21.0.0
Content-Type: application/sdp
Content-Length: 237

v=0
o=- 702150592 702150592 IN IP4 10.128.110.26
s=Asterisk
c=IN IP4 10.128.110.26
t=0 0
m=audio 16942 RTP/AVP 0 101
a=rtpmap:0 PCMU/8000
a=rtpmap:101 telephone-event/8000
a=fmtp:101 0-16
a=ptime:20
a=maxptime:150
a=sendrecv

<— Transmitting SIP request (904 bytes) to UDP:172.20.1.2:5060 —>
INVITE sip:7000@172.20.1.2 SIP/2.0
Via: SIP/2.0/UDP 10.128.110.26:5060;rport;branch=z9hG4bKPj5cef5cae-40b5-462c-8996-ba099c5cc9f6
From: “IT-Support” sip:6004@10.128.110.26;tag=17f063c8-232a-4745-bd6c-135f4824d487
To: sip:7000@172.20.1.2
Contact: sip:asterisk@10.128.110.26:5060
Call-ID: bdb05d9f-1e6f-4463-8d7b-088df66555ce
CSeq: 18187 INVITE
Allow: OPTIONS, REGISTER, SUBSCRIBE, NOTIFY, PUBLISH, INVITE, ACK, BYE, CANCEL, UPDATE, PRACK, MESSAGE, REFER
Supported: 100rel, timer, replaces, norefersub, histinfo
Session-Expires: 1800
Min-SE: 90
Max-Forwards: 70
User-Agent: Asterisk PBX 21.0.0
Content-Type: application/sdp
Content-Length: 237

v=0
o=- 702150592 702150592 IN IP4 10.128.110.26
s=Asterisk
c=IN IP4 10.128.110.26
t=0 0
m=audio 16942 RTP/AVP 0 101
a=rtpmap:0 PCMU/8000
a=rtpmap:101 telephone-event/8000
a=fmtp:101 0-16
a=ptime:20
a=maxptime:150
a=sendrecv

<— Transmitting SIP request (904 bytes) to UDP:172.20.1.2:5060 —>
INVITE sip:7000@172.20.1.2 SIP/2.0
Via: SIP/2.0/UDP 10.128.110.26:5060;rport;branch=z9hG4bKPj5cef5cae-40b5-462c-8996-ba099c5cc9f6
From: “IT-Support” sip:6004@10.128.110.26;tag=17f063c8-232a-4745-bd6c-135f4824d487
To: sip:7000@172.20.1.2
Contact: sip:asterisk@10.128.110.26:5060
Call-ID: bdb05d9f-1e6f-4463-8d7b-088df66555ce
CSeq: 18187 INVITE
Allow: OPTIONS, REGISTER, SUBSCRIBE, NOTIFY, PUBLISH, INVITE, ACK, BYE, CANCEL, UPDATE, PRACK, MESSAGE, REFER
Supported: 100rel, timer, replaces, norefersub, histinfo
Session-Expires: 1800
Min-SE: 90
Max-Forwards: 70
User-Agent: Asterisk PBX 21.0.0
Content-Type: application/sdp
Content-Length: 237

v=0
o=- 702150592 702150592 IN IP4 10.128.110.26
s=Asterisk
c=IN IP4 10.128.110.26
t=0 0
m=audio 16942 RTP/AVP 0 101
a=rtpmap:0 PCMU/8000
a=rtpmap:101 telephone-event/8000
a=fmtp:101 0-16
a=ptime:20
a=maxptime:150
a=sendrecv

<— Transmitting SIP request (904 bytes) to UDP:172.20.1.2:5060 —>
INVITE sip:7000@172.20.1.2 SIP/2.0
Via: SIP/2.0/UDP 10.128.110.26:5060;rport;branch=z9hG4bKPj5cef5cae-40b5-462c-8996-ba099c5cc9f6
From: “IT-Support” sip:6004@10.128.110.26;tag=17f063c8-232a-4745-bd6c-135f4824d487
To: sip:7000@172.20.1.2
Contact: sip:asterisk@10.128.110.26:5060
Call-ID: bdb05d9f-1e6f-4463-8d7b-088df66555ce
CSeq: 18187 INVITE
Allow: OPTIONS, REGISTER, SUBSCRIBE, NOTIFY, PUBLISH, INVITE, ACK, BYE, CANCEL, UPDATE, PRACK, MESSAGE, REFER
Supported: 100rel, timer, replaces, norefersub, histinfo
Session-Expires: 1800
Min-SE: 90
Max-Forwards: 70
User-Agent: Asterisk PBX 21.0.0
Content-Type: application/sdp
Content-Length: 237

v=0
o=- 702150592 702150592 IN IP4 10.128.110.26
s=Asterisk
c=IN IP4 10.128.110.26
t=0 0
m=audio 16942 RTP/AVP 0 101
a=rtpmap:0 PCMU/8000
a=rtpmap:101 telephone-event/8000
a=fmtp:101 0-16
a=ptime:20
a=maxptime:150
a=sendrecv

<— Transmitting SIP request (904 bytes) to UDP:172.20.1.2:5060 —>
INVITE sip:7000@172.20.1.2 SIP/2.0
Via: SIP/2.0/UDP 10.128.110.26:5060;rport;branch=z9hG4bKPj5cef5cae-40b5-462c-8996-ba099c5cc9f6
From: “IT-Support” sip:6004@10.128.110.26;tag=17f063c8-232a-4745-bd6c-135f4824d487
To: sip:7000@172.20.1.2
Contact: sip:asterisk@10.128.110.26:5060
Call-ID: bdb05d9f-1e6f-4463-8d7b-088df66555ce
CSeq: 18187 INVITE
Allow: OPTIONS, REGISTER, SUBSCRIBE, NOTIFY, PUBLISH, INVITE, ACK, BYE, CANCEL, UPDATE, PRACK, MESSAGE, REFER
Supported: 100rel, timer, replaces, norefersub, histinfo
Session-Expires: 1800
Min-SE: 90
Max-Forwards: 70
User-Agent: Asterisk PBX 21.0.0
Content-Type: application/sdp
Content-Length: 237

v=0
o=- 702150592 702150592 IN IP4 10.128.110.26
s=Asterisk
c=IN IP4 10.128.110.26
t=0 0
m=audio 16942 RTP/AVP 0 101
a=rtpmap:0 PCMU/8000
a=rtpmap:101 telephone-event/8000
a=fmtp:101 0-16
a=ptime:20
a=maxptime:150
a=sendrecv

-- Nobody picked up in 30000 ms
-- Executing [7000@from-internal:2] Hangup("PJSIP/6004-00000042", "") in new stack

== Spawn extension (from-internal, 7000, 2) exited non-zero on ‘PJSIP/6004-00000042’
<— Transmitting SIP response (345 bytes) to UDP:10.128.1.55:40340 —>
SIP/2.0 603 Decline
Via: SIP/2.0/UDP 10.128.1.55:40340;rport=40340;received=10.128.1.55;branch=z9hG4bK.1dCRZ8Rug
Call-ID: cCvlGJ2hTN
From: sip:6004@10.128.110.26;tag=mpXmZR2eX
To: sip:7000@10.128.110.26;tag=520b2376-ec82-46bf-be7f-aff2e435a1dd
CSeq: 21 INVITE
Server: Asterisk PBX 21.0.0
Reason: Q.850;cause=16
Content-Length: 0

<— Received SIP request (368 bytes) from UDP:10.128.1.55:40340 —>
ACK sip:7000@10.128.110.26 SIP/2.0
Via: SIP/2.0/UDP 10.128.1.55:40340;branch=z9hG4bK.1dCRZ8Rug;rport
Call-ID: cCvlGJ2hTN
From: sip:6004@10.128.110.26;tag=mpXmZR2eX
To: sip:7000@10.128.110.26;tag=520b2376-ec82-46bf-be7f-aff2e435a1dd
Contact: sip:6004@10.128.1.55:40340;transport=udp;expires=3599;+org.linphone.specs=“lime”
Max-Forwards: 70
CSeq: 21 ACK

<— Transmitting SIP request (904 bytes) to UDP:172.20.1.2:5060 —>
INVITE sip:7000@172.20.1.2 SIP/2.0
Via: SIP/2.0/UDP 10.128.110.26:5060;rport;branch=z9hG4bKPj5cef5cae-40b5-462c-8996-ba099c5cc9f6
From: “IT-Support” sip:6004@10.128.110.26;tag=17f063c8-232a-4745-bd6c-135f4824d487
To: sip:7000@172.20.1.2
Contact: sip:asterisk@10.128.110.26:5060
Call-ID: bdb05d9f-1e6f-4463-8d7b-088df66555ce
CSeq: 18187 INVITE
Allow: OPTIONS, REGISTER, SUBSCRIBE, NOTIFY, PUBLISH, INVITE, ACK, BYE, CANCEL, UPDATE, PRACK, MESSAGE, REFER
Supported: 100rel, timer, replaces, norefersub, histinfo
Session-Expires: 1800
Min-SE: 90
Max-Forwards: 70
User-Agent: Asterisk PBX 21.0.0
Content-Type: application/sdp
Content-Length: 237

v=0
o=- 702150592 702150592 IN IP4 10.128.110.26
s=Asterisk
c=IN IP4 10.128.110.26
t=0 0
m=audio 16942 RTP/AVP 0 101
a=rtpmap:0 PCMU/8000
a=rtpmap:101 telephone-event/8000
a=fmtp:101 0-16
a=ptime:20
a=maxptime:150
a=sendrecv

asterisk*CLI>

Destination Cisco VOIP config##

dial-peer voice 6003 voip
description Asterisk
destination-pattern 6003
session protocol sipv2
session target ipv4:10.128.110.26:5060
session transport udp
dtmf-relay rtp-nte
codec g711ulaw
no vad
!
dial-peer voice 6005 voip
description Incoming SIP Calls
session protocol sipv2
session target sip-server
incoming called-number 600*
dtmf-relay rtp-nte
codec g711ulaw

Call log to a different cisco router dialing 8000######################

<— Received SIP request (969 bytes) from UDP:10.128.1.55:40340 —>
PUBLISH sip:6004@10.128.110.26 SIP/2.0
Via: SIP/2.0/UDP 10.128.1.55:40340;branch=z9hG4bK.9xHAou3uL;rport
From: sip:6004@10.128.110.26;tag=NOtZzWHTL
To: sip:6004@10.128.110.26
CSeq: 20 PUBLISH
Call-ID: UX7MnfZ0cX
Max-Forwards: 70
Supported: replaces, outbound, gruu, path, record-aware
Event: presence
Content-Type: application/pidf+xml
Content-Length: 495
Expires: 3600
User-Agent: LinphoneAndroid/5.1.4 (Galaxy Note20) LinphoneSDK/5.2.110 (tags/5.2.110^0)

<?xml version="1.0" encoding="UTF-8"?> open sip:6004@10.128.110.26 2023-12-13T05:26:29Z

<— Transmitting SIP response (454 bytes) to UDP:10.128.1.55:40340 —>
SIP/2.0 401 Unauthorized
Via: SIP/2.0/UDP 10.128.1.55:40340;rport=40340;received=10.128.1.55;branch=z9hG4bK.9xHAou3uL
Call-ID: UX7MnfZ0cX
From: sip:6004@10.128.110.26;tag=NOtZzWHTL
To: sip:6004@10.128.110.26;tag=z9hG4bK.9xHAou3uL
CSeq: 20 PUBLISH
WWW-Authenticate: Digest realm=“asterisk”,nonce=“1702445189/5ba0a9ada317c792500bfdcbda254836”,opaque=“4e3042ba428127b8”,algorithm=MD5,qop=“auth”
Server: Asterisk PBX 21.0.0
Content-Length: 0

<— Received SIP request (1248 bytes) from UDP:10.128.1.55:40340 —>
PUBLISH sip:6004@10.128.110.26 SIP/2.0
Via: SIP/2.0/UDP 10.128.1.55:40340;branch=z9hG4bK.4O9ZQVqP6;rport
From: sip:6004@10.128.110.26;tag=NOtZzWHTL
To: sip:6004@10.128.110.26
CSeq: 21 PUBLISH
Call-ID: UX7MnfZ0cX
Max-Forwards: 70
Supported: replaces, outbound, gruu, path, record-aware
Event: presence
Content-Type: application/pidf+xml
Content-Length: 495
Expires: 3600
User-Agent: LinphoneAndroid/5.1.4 (Galaxy Note20) LinphoneSDK/5.2.110 (tags/5.2.110^0)
Authorization: Digest realm=“asterisk”, nonce=“1702445189/5ba0a9ada317c792500bfdcbda254836”, algorithm=MD5, opaque=“4e3042ba428127b8”, username=“6004”, uri="sip:6004@10.128.110.26", response=“dafa228136c2d89f70949948a116e69c”, cnonce=“Bd7rv0lHFYjoJw9d”, nc=00000001, qop=auth

<?xml version="1.0" encoding="UTF-8"?> open sip:6004@10.128.110.26 2023-12-13T05:26:29Z

[Dec 13 10:56:29] WARNING[73208]: res_pjsip_pubsub.c:3420 pubsub_on_rx_publish_request: No registered publish handler for event presence from 6004
<— Transmitting SIP response (305 bytes) to UDP:10.128.1.55:40340 —>
SIP/2.0 489 Bad Event
Via: SIP/2.0/UDP 10.128.1.55:40340;rport=40340;received=10.128.1.55;branch=z9hG4bK.4O9ZQVqP6
Call-ID: UX7MnfZ0cX
From: sip:6004@10.128.110.26;tag=NOtZzWHTL
To: sip:6004@10.128.110.26;tag=z9hG4bK.4O9ZQVqP6
CSeq: 21 PUBLISH
Server: Asterisk PBX 21.0.0
Content-Length: 0

<— Received SIP request (1310 bytes) from UDP:10.128.1.55:40340 —>
INVITE sip:8000@10.128.110.26 SIP/2.0
Via: SIP/2.0/UDP 10.128.1.55:40340;branch=z9hG4bK.2ldDDMUPu;rport
From: sip:6004@10.128.110.26;tag=em~FLY0~l
To: sip:8000@10.128.110.26
CSeq: 20 INVITE
Call-ID: 49t7Q8v6lN
Max-Forwards: 70
Supported: replaces, outbound, gruu, path, record-aware
Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, NOTIFY, MESSAGE, SUBSCRIBE, INFO, PRACK, UPDATE
Content-Type: application/sdp
Content-Length: 684
Contact: sip:6004@10.128.1.55:40340;transport=udp;expires=3599;+org.linphone.specs=“lime”
User-Agent: LinphoneAndroid/5.1.4 (Galaxy Note20) LinphoneSDK/5.2.110 (tags/5.2.110^0)

v=0
o=6004 2631 141 IN IP4 10.128.1.55
s=Talk
c=IN IP4 10.128.1.55
t=0 0
a=rtcp-xr:rcvr-rtt=all:10000 stat-summary=loss,dup,jitt,TTL voip-metrics
a=record:off
m=audio 40127 RTP/AVP 96 97 98 0 8 3 9 99 18 100 101 102 103 104
a=rtpmap:96 opus/48000/2
a=fmtp:96 useinbandfec=1
a=rtpmap:97 speex/16000
a=fmtp:97 vbr=on
a=rtpmap:98 speex/8000
a=fmtp:98 vbr=on
a=rtpmap:99 iLBC/8000
a=fmtp:99 mode=30
a=fmtp:18 annexb=yes
a=rtpmap:100 speex/32000
a=fmtp:100 vbr=on
a=rtpmap:101 telephone-event/48000
a=rtpmap:102 telephone-event/16000
a=rtpmap:103 telephone-event/8000
a=rtpmap:104 telephone-event/32000
a=rtcp:50369
a=rtcp-fb:* trr-int 1000
a=rtcp-fb:* ccm tmmbr

<— Transmitting SIP response (453 bytes) to UDP:10.128.1.55:40340 —>
SIP/2.0 401 Unauthorized
Via: SIP/2.0/UDP 10.128.1.55:40340;rport=40340;received=10.128.1.55;branch=z9hG4bK.2ldDDMUPu
Call-ID: 49t7Q8v6lN
From: sip:6004@10.128.110.26;tag=em~FLY0~l
To: sip:8000@10.128.110.26;tag=z9hG4bK.2ldDDMUPu
CSeq: 20 INVITE
WWW-Authenticate: Digest realm=“asterisk”,nonce=“1702445199/2b29b1ade5b0be4ecd1485c6b74193a0”,opaque=“3dcbb3035b397750”,algorithm=MD5,qop=“auth”
Server: Asterisk PBX 21.0.0
Content-Length: 0

<— Received SIP request (349 bytes) from UDP:10.128.1.55:40340 —>
ACK sip:8000@10.128.110.26 SIP/2.0
Via: SIP/2.0/UDP 10.128.1.55:40340;branch=z9hG4bK.2ldDDMUPu;rport
Call-ID: 49t7Q8v6lN
From: sip:6004@10.128.110.26;tag=em~FLY0~l
To: sip:8000@10.128.110.26;tag=z9hG4bK.2ldDDMUPu
Contact: sip:6004@10.128.1.55:40340;transport=udp;expires=3599;+org.linphone.specs=“lime”
Max-Forwards: 70
CSeq: 20 ACK

<— Received SIP request (1589 bytes) from UDP:10.128.1.55:40340 —>
INVITE sip:8000@10.128.110.26 SIP/2.0
Via: SIP/2.0/UDP 10.128.1.55:40340;branch=z9hG4bK.p525JPvno;rport
From: sip:6004@10.128.110.26;tag=em~FLY0~l
To: sip:8000@10.128.110.26
CSeq: 21 INVITE
Call-ID: 49t7Q8v6lN
Max-Forwards: 70
Supported: replaces, outbound, gruu, path, record-aware
Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, NOTIFY, MESSAGE, SUBSCRIBE, INFO, PRACK, UPDATE
Content-Type: application/sdp
Content-Length: 684
Contact: sip:6004@10.128.1.55:40340;transport=udp;expires=3599;+org.linphone.specs=“lime”
User-Agent: LinphoneAndroid/5.1.4 (Galaxy Note20) LinphoneSDK/5.2.110 (tags/5.2.110^0)
Authorization: Digest realm=“asterisk”, nonce=“1702445199/2b29b1ade5b0be4ecd1485c6b74193a0”, algorithm=MD5, opaque=“3dcbb3035b397750”, username=“6004”, uri="sip:8000@10.128.110.26", response=“94e980c05a3703de2d159a6175e5dd41”, cnonce=“uwXGVRGuEDtNKCY1”, nc=00000001, qop=auth

v=0
o=6004 2631 141 IN IP4 10.128.1.55
s=Talk
c=IN IP4 10.128.1.55
t=0 0
a=rtcp-xr:rcvr-rtt=all:10000 stat-summary=loss,dup,jitt,TTL voip-metrics
a=record:off
m=audio 40127 RTP/AVP 96 97 98 0 8 3 9 99 18 100 101 102 103 104
a=rtpmap:96 opus/48000/2
a=fmtp:96 useinbandfec=1
a=rtpmap:97 speex/16000
a=fmtp:97 vbr=on
a=rtpmap:98 speex/8000
a=fmtp:98 vbr=on
a=rtpmap:99 iLBC/8000
a=fmtp:99 mode=30
a=fmtp:18 annexb=yes
a=rtpmap:100 speex/32000
a=fmtp:100 vbr=on
a=rtpmap:101 telephone-event/48000
a=rtpmap:102 telephone-event/16000
a=rtpmap:103 telephone-event/8000
a=rtpmap:104 telephone-event/32000
a=rtcp:50369
a=rtcp-fb:* trr-int 1000
a=rtcp-fb:* ccm tmmbr

<— Transmitting SIP response (279 bytes) to UDP:10.128.1.55:40340 —>
SIP/2.0 100 Trying
Via: SIP/2.0/UDP 10.128.1.55:40340;rport=40340;received=10.128.1.55;branch=z9hG4bK.p525JPvno
Call-ID: 49t7Q8v6lN
From: sip:6004@10.128.110.26;tag=em~FLY0~l
To: sip:8000@10.128.110.26
CSeq: 21 INVITE
Server: Asterisk PBX 21.0.0
Content-Length: 0

-- Executing [8000@from-internal:1] Dial("PJSIP/6004-00000046", "PJSIP/8000@cisco,30") in new stack
-- Called PJSIP/8000@cisco

<— Transmitting SIP request (908 bytes) to UDP:10.128.120.5:5060 —>
INVITE sip:8000@10.128.120.5 SIP/2.0
Via: SIP/2.0/UDP 10.128.110.26:5060;rport;branch=z9hG4bKPj6b3f4965-9734-4449-9227-9559ad9005c0
From: “IT-Support” sip:6004@10.128.110.26;tag=18c79319-bb95-4fde-b14a-cfffbcb00275
To: sip:8000@10.128.120.5
Contact: sip:asterisk@10.128.110.26:5060
Call-ID: d30d4084-66bc-4c3d-87d7-800821ca38b4
CSeq: 12165 INVITE
Allow: OPTIONS, REGISTER, SUBSCRIBE, NOTIFY, PUBLISH, INVITE, ACK, BYE, CANCEL, UPDATE, PRACK, MESSAGE, REFER
Supported: 100rel, timer, replaces, norefersub, histinfo
Session-Expires: 1800
Min-SE: 90
Max-Forwards: 70
User-Agent: Asterisk PBX 21.0.0
Content-Type: application/sdp
Content-Length: 237

v=0
o=- 519313177 519313177 IN IP4 10.128.110.26
s=Asterisk
c=IN IP4 10.128.110.26
t=0 0
m=audio 14234 RTP/AVP 0 101
a=rtpmap:0 PCMU/8000
a=rtpmap:101 telephone-event/8000
a=fmtp:101 0-16
a=ptime:20
a=maxptime:150
a=sendrecv

<— Received SIP response (438 bytes) from UDP:10.128.120.5:5060 —>
SIP/2.0 100 Trying
Via: SIP/2.0/UDP 10.128.110.26:5060;rport;branch=z9hG4bKPj6b3f4965-9734-4449-9227-9559ad9005c0
From: “IT-Support” sip:6004@10.128.110.26;tag=18c79319-bb95-4fde-b14a-cfffbcb00275
To: sip:8000@10.128.120.5;tag=3869ED8-3E2
Date: Wed, 13 Dec 2023 06:14:08 GMT
Call-ID: d30d4084-66bc-4c3d-87d7-800821ca38b4
Server: Cisco-SIPGateway/IOS-12.x
CSeq: 12165 INVITE
Allow-Events: telephone-event
Content-Length: 0

<— Received SIP response (949 bytes) from UDP:10.128.120.5:5060 —>
SIP/2.0 183 Session Progress
Via: SIP/2.0/UDP 10.128.110.26:5060;rport;branch=z9hG4bKPj6b3f4965-9734-4449-9227-9559ad9005c0
From: “IT-Support” sip:6004@10.128.110.26;tag=18c79319-bb95-4fde-b14a-cfffbcb00275
To: sip:8000@10.128.120.5;tag=3869ED8-3E2
Date: Wed, 13 Dec 2023 06:14:08 GMT
Call-ID: d30d4084-66bc-4c3d-87d7-800821ca38b4
Server: Cisco-SIPGateway/IOS-12.x
CSeq: 12165 INVITE
Require: 100rel
RSeq: 113
Allow: INVITE, OPTIONS, BYE, CANCEL, ACK, PRACK, COMET, REFER, SUBSCRIBE, NOTIFY, INFO, UPDATE, REGISTER
Allow-Events: telephone-event
Contact: sip:8000@10.128.120.5:5060
Content-Disposition: session;handling=required
Content-Type: application/sdp
Content-Length: 247

v=0
o=CiscoSystemsSIP-GW-UserAgent 9276 2024 IN IP4 10.128.120.5
s=SIP Call
c=IN IP4 10.128.120.5
t=0 0
m=audio 16810 RTP/AVP 0 101
c=IN IP4 10.128.120.5
a=rtpmap:0 PCMU/8000
a=rtpmap:101 telephone-event/8000
a=fmtp:101 0-16
a=ptime:20

<— Transmitting SIP request (432 bytes) to UDP:10.128.120.5:5060 —>
PRACK sip:8000@10.128.120.5:5060 SIP/2.0
Via: SIP/2.0/UDP 10.128.110.26:5060;rport;branch=z9hG4bKPj534c24c1-ddaf-4cc9-8569-228e753c16f6
From: “IT-Support” sip:6004@10.128.110.26;tag=18c79319-bb95-4fde-b14a-cfffbcb00275
To: sip:8000@10.128.120.5;tag=3869ED8-3E2
Call-ID: d30d4084-66bc-4c3d-87d7-800821ca38b4
CSeq: 12166 PRACK
RAck: 113 12165 INVITE
Max-Forwards: 70
User-Agent: Asterisk PBX 21.0.0
Content-Length: 0

-- PJSIP/cisco-00000047 is making progress passing it to PJSIP/6004-00000046

<— Transmitting SIP response (736 bytes) to UDP:10.128.1.55:40340 —>
SIP/2.0 183 Session Progress
Via: SIP/2.0/UDP 10.128.1.55:40340;rport=40340;received=10.128.1.55;branch=z9hG4bK.p525JPvno
Call-ID: 49t7Q8v6lN
From: sip:6004@10.128.110.26;tag=em~FLY0~l
To: sip:8000@10.128.110.26;tag=87393947-1395-4baa-a811-3fd927cb0ea0
CSeq: 21 INVITE
Server: Asterisk PBX 21.0.0
Contact: sip:10.128.110.26:5060
Allow: OPTIONS, REGISTER, SUBSCRIBE, NOTIFY, PUBLISH, INVITE, ACK, BYE, CANCEL, UPDATE, PRACK, MESSAGE, REFER
Content-Type: application/sdp
Content-Length: 226

v=0
o=- 2631 143 IN IP4 10.128.110.26
s=Asterisk
c=IN IP4 10.128.110.26
t=0 0
m=audio 12020 RTP/AVP 0 103
a=rtpmap:0 PCMU/8000
a=rtpmap:103 telephone-event/8000
a=fmtp:103 0-16
a=ptime:20
a=maxptime:150
a=sendrecv

<— Received SIP response (402 bytes) from UDP:10.128.120.5:5060 —>
SIP/2.0 200 OK
Via: SIP/2.0/UDP 10.128.110.26:5060;rport;branch=z9hG4bKPj534c24c1-ddaf-4cc9-8569-228e753c16f6
From: “IT-Support” sip:6004@10.128.110.26;tag=18c79319-bb95-4fde-b14a-cfffbcb00275
To: sip:8000@10.128.120.5;tag=3869ED8-3E2
Date: Wed, 13 Dec 2023 06:14:08 GMT
Call-ID: d30d4084-66bc-4c3d-87d7-800821ca38b4
Server: Cisco-SIPGateway/IOS-12.x
CSeq: 12166 PRACK
Content-Length: 0

<— Received SIP response (912 bytes) from UDP:10.128.120.5:5060 —>
SIP/2.0 200 OK
Via: SIP/2.0/UDP 10.128.110.26:5060;rport;branch=z9hG4bKPj6b3f4965-9734-4449-9227-9559ad9005c0
From: “IT-Support” sip:6004@10.128.110.26;tag=18c79319-bb95-4fde-b14a-cfffbcb00275
To: sip:8000@10.128.120.5;tag=3869ED8-3E2
Date: Wed, 13 Dec 2023 06:14:08 GMT
Call-ID: d30d4084-66bc-4c3d-87d7-800821ca38b4
Server: Cisco-SIPGateway/IOS-12.x
CSeq: 12165 INVITE
Session-Expires: 1800;refresher=uac
Require: timer
Allow: INVITE, OPTIONS, BYE, CANCEL, ACK, PRACK, COMET, REFER, SUBSCRIBE, NOTIFY, INFO, UPDATE, REGISTER
Allow-Events: telephone-event
Contact: sip:8000@10.128.120.5:5060
Content-Type: application/sdp
Content-Length: 247

v=0
o=CiscoSystemsSIP-GW-UserAgent 9276 2024 IN IP4 10.128.120.5
s=SIP Call
c=IN IP4 10.128.120.5
t=0 0
m=audio 16810 RTP/AVP 0 101
c=IN IP4 10.128.120.5
a=rtpmap:0 PCMU/8000
a=rtpmap:101 telephone-event/8000
a=fmtp:101 0-16
a=ptime:20

<— Transmitting SIP request (404 bytes) to UDP:10.128.120.5:5060 —>
ACK sip:8000@10.128.120.5:5060 SIP/2.0
Via: SIP/2.0/UDP 10.128.110.26:5060;rport;branch=z9hG4bKPj0eced25e-5393-454c-a018-197b9ee0f337
From: “IT-Support” sip:6004@10.128.110.26;tag=18c79319-bb95-4fde-b14a-cfffbcb00275
To: sip:8000@10.128.120.5;tag=3869ED8-3E2
Call-ID: d30d4084-66bc-4c3d-87d7-800821ca38b4
CSeq: 12165 ACK
Max-Forwards: 70
User-Agent: Asterisk PBX 21.0.0
Content-Length: 0

-- PJSIP/cisco-00000047 answered PJSIP/6004-00000046

<— Transmitting SIP response (770 bytes) to UDP:10.128.1.55:40340 —>
SIP/2.0 200 OK
Via: SIP/2.0/UDP 10.128.1.55:40340;rport=40340;received=10.128.1.55;branch=z9hG4bK.p525JPvno
Call-ID: 49t7Q8v6lN
From: sip:6004@10.128.110.26;tag=em~FLY0~l
To: sip:8000@10.128.110.26;tag=87393947-1395-4baa-a811-3fd927cb0ea0
CSeq: 21 INVITE
Server: Asterisk PBX 21.0.0
Allow: OPTIONS, REGISTER, SUBSCRIBE, NOTIFY, PUBLISH, INVITE, ACK, BYE, CANCEL, UPDATE, PRACK, MESSAGE, REFER
Contact: sip:10.128.110.26:5060
Supported: 100rel, timer, replaces, norefersub
Content-Type: application/sdp
Content-Length: 226

v=0
o=- 2631 143 IN IP4 10.128.110.26
s=Asterisk
c=IN IP4 10.128.110.26
t=0 0
m=audio 12020 RTP/AVP 0 103
a=rtpmap:0 PCMU/8000
a=rtpmap:103 telephone-event/8000
a=fmtp:103 0-16
a=ptime:20
a=maxptime:150
a=sendrecv

-- Channel PJSIP/cisco-00000047 joined 'simple_bridge' basic-bridge <c85cafba-0b0a-4632-99a2-acec519ffa0e>
-- Channel PJSIP/6004-00000046 joined 'simple_bridge' basic-bridge <c85cafba-0b0a-4632-99a2-acec519ffa0e>

<— Received SIP request (642 bytes) from UDP:10.128.1.55:40340 —>
ACK sip:10.128.110.26:5060 SIP/2.0
Via: SIP/2.0/UDP 10.128.1.55:40340;rport;branch=z9hG4bK.6~Z6joFkB
From: sip:6004@10.128.110.26;tag=em~FLY0~l
To: sip:8000@10.128.110.26;tag=87393947-1395-4baa-a811-3fd927cb0ea0
CSeq: 21 ACK
Call-ID: 49t7Q8v6lN
Max-Forwards: 70
Authorization: Digest realm=“asterisk”, nonce=“1702445199/2b29b1ade5b0be4ecd1485c6b74193a0”, algorithm=MD5, opaque=“3dcbb3035b397750”, username=“6004”, uri="sip:8000@10.128.110.26", response=“94e980c05a3703de2d159a6175e5dd41”, cnonce=“uwXGVRGuEDtNKCY1”, nc=00000001, qop=auth
User-Agent: LinphoneAndroid/5.1.4 (Galaxy Note20) LinphoneSDK/5.2.110 (tags/5.2.110^0)

<— Received SIP request (456 bytes) from UDP:10.128.120.5:57407 —>
BYE sip:asterisk@10.128.110.26:5060 SIP/2.0
Via: SIP/2.0/UDP 10.128.120.5:5060;branch=z9hG4bK05ED
From: sip:8000@10.128.120.5;tag=3869ED8-3E2
To: “IT-Support” sip:6004@10.128.110.26;tag=18c79319-bb95-4fde-b14a-cfffbcb00275
Date: Wed, 13 Dec 2023 06:14:11 GMT
Call-ID: d30d4084-66bc-4c3d-87d7-800821ca38b4
User-Agent: Cisco-SIPGateway/IOS-12.x
Max-Forwards: 70
Timestamp: 1702448056
CSeq: 101 BYE
Reason: Q.850;cause=16
Content-Length: 0

<— Transmitting SIP response (349 bytes) to UDP:10.128.120.5:57407 —>
SIP/2.0 200 OK
Via: SIP/2.0/UDP 10.128.120.5:5060;rport=57407;received=10.128.120.5;branch=z9hG4bK05ED
Call-ID: d30d4084-66bc-4c3d-87d7-800821ca38b4
From: sip:8000@10.128.120.5;tag=3869ED8-3E2
To: “IT-Support” sip:6004@10.128.110.26;tag=18c79319-bb95-4fde-b14a-cfffbcb00275
CSeq: 101 BYE
Server: Asterisk PBX 21.0.0
Content-Length: 0

-- Channel PJSIP/cisco-00000047 left 'native_rtp' basic-bridge <c85cafba-0b0a-4632-99a2-acec519ffa0e>
-- Channel PJSIP/6004-00000046 left 'native_rtp' basic-bridge <c85cafba-0b0a-4632-99a2-acec519ffa0e>

== Spawn extension (from-internal, 8000, 1) exited non-zero on ‘PJSIP/6004-00000046’
<— Transmitting SIP request (402 bytes) to UDP:10.128.1.55:40340 —>
BYE sip:6004@10.128.1.55:40340;transport=udp SIP/2.0
Via: SIP/2.0/UDP 10.128.110.26:5060;rport;branch=z9hG4bKPjcb86e2de-80d4-4299-be3f-b336c43a4d98
From: sip:8000@10.128.110.26;tag=87393947-1395-4baa-a811-3fd927cb0ea0
To: sip:6004@10.128.110.26;tag=em~FLY0~l
Call-ID: 49t7Q8v6lN
CSeq: 28077 BYE
Reason: Q.850;cause=16
Max-Forwards: 70
User-Agent: Asterisk PBX 21.0.0
Content-Length: 0

<— Received SIP response (414 bytes) from UDP:10.128.1.55:40340 —>
SIP/2.0 200 Ok
Via: SIP/2.0/UDP 10.128.110.26:5060;rport;branch=z9hG4bKPjcb86e2de-80d4-4299-be3f-b336c43a4d98
From: sip:8000@10.128.110.26;tag=87393947-1395-4baa-a811-3fd927cb0ea0
To: sip:6004@10.128.110.26;tag=em~FLY0~l
Call-ID: 49t7Q8v6lN
CSeq: 28077 BYE
User-Agent: LinphoneAndroid/5.1.4 (Galaxy Note20) LinphoneSDK/5.2.110 (tags/5.2.110^0)
Supported: replaces, outbound, gruu, path, record-aware

asterisk*CLI>

The B side is ignoring you, or its replies are not reaching you. You set a call timeout of 30 seconds which expires before the 32 seconds at which you would have got a more specific failure.

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.