Hi,
Thanks for the feedback. I will investigate this and try to implement from Monday and will reach you with the outcome. You can check full log in the attachments.
Thanks again.
Pozdrav/Best regards,
Mladen Mijatovic,
Technology Partnership.
2017-10-20 17:42 GMT+02:00 Peter Warrick <peter@xxxxxxxxxxxxxx>:
Two things you may want to look at.One, confirm what is being sent in the CONTACT header. If it is indeed the internal IP of your server (172.31.1.0/24) then set your external media and signalling addresses to an IP and not a hostname. I ran into this issue recently with the hostname being used on my AWS instance of Asterisk as AWS will resolve the private IP even if the hostname is the public one. Simple solution is not to use the hostname and instead just the IP.Second, I noticed that nothing is set in the transport field of your endpoint. I’m not sure if this is relevant as according to the documentation (https://wiki.asterisk.org/wiki/display/AST/PJSIP+ ) it states…Configuration+Sections+and+ Relationships Defaults: For many config options, it's very helpful to understand their default behavior. For example, for the endpoint section "transport=" option, if no value is assigned then Asterisk will *DEFAULT* to the first configured transport in pjsip.conf which is valid for the URI we are trying to contact.Regardless, for me I do set this field and it does show up when I do a pjsip show endpoint myendpoint. I set it using ARI but you should be able to do it in the pjsip.conf. When I look at my endpoints they are set to 0.0.0.0-tls which is the name of my transport config.. ie.[0.0.0.0-tls]type=transport
protocol=tls…Hopefully that helps some. My guess is it’s a couple of missing configs like I just mentioned and highly likely a NAT issue with the the addresses not being set correctly. Definitely look for that CONTACT header to see what it’s being set to.Regards,
PeterOn Oct 19, 2017, at 7:11 AM, Mladen Mijatovic <mladen.mijatovic@xxxxx> wrote:Hi______________________________We think we need some help with our Asterisk server.We are using Asterisk 13.9.1 with Pjproject 2.5.5 on Ubuntu 16.04.Server is located in the cloud, and test clients are on the local WiFi, behind the same router. We are, mostly successfully, making TLS calls between two clients.However, we have been experiencing some problems, and we think we have traced their root to the specific invite message. It might be a configuration issue, and we would appreciate any help with resolving it.We believe that source of the problems is "From" line in INVITE message forwarded to the callee, that contains "sip" , instead of "sips", address. In further course of the call, it likely propagates to "To" headers, and eventually ends up in "Contact" header, which causes call to end due "SIPS Required" error.This is the INVITE message that is received by asterisk from the caller:[Oct 18 15:47:13] VERBOSE[21198] res_pjsip_logger.c: <--- Received SIP request (1630 bytes) from TLS:217.169.223.250:50986 --->INVITE sips:zz2867@xxxxxxxxxxxxxxx:5060 SIP/2.0 Via: SIP/2.0/TLS 217.169.223.250:50986;rport;branch=z9hG4bKPjfc4612c5-1684-46 5d-bc4e-3efe626e3f31;alias Max-Forwards: 70From: sips:yy0206@xxxxxxxxxxxxxxx;tag=382ff707-70d7-43e5-ad8c-ca33 19e3d124 To: sips:zz2867@xxxxxxxxxxxxxxxContact: <sips:yy0206@217.169.223.250:50986;transport=TLS;ob> Call-ID: a62d94a3-17ba-4fd5-acb7-c3e6e9514f5a CSeq: 12748 INVITEAllow: PRACK, INVITE, ACK, BYE, CANCEL, UPDATE, INFO, SUBSCRIBE, NOTIFY, REFER, MESSAGE, OPTIONSSupported: replaces, 100rel, timer, norefersubSession-Expires: 1800Min-SE: 90Authorization: ******************************************************* Content-Type: application/sdpContent-Length: 650v=0o=- 3717323230 3717323230 IN IP4 192.168.15.207s=pjmediab=AS:30t=0 0m=audio 4000 RTP/SAVP 3 96c=IN IP4 192.168.15.207b=TIAS:13200a=rtcp:4001 IN IP4 192.168.15.207a=sendrecva=rtpmap:3 GSM/8000a=rtpmap:96 telephone-event/8000a=fmtp:96 0-16a=crypto:1 ******************************************************* a=crypto:2 ******************************************************* a=crypto:3 ******************************************************* a=crypto:4 ******************************************************* This is the INVITE message forwarded to the callee (note From line):[Oct 18 15:47:14] VERBOSE[21718] res_pjsip_logger.c: <--- Transmitting SIP request (1048 bytes) to TLS:217.169.223.250:43122 --->INVITE sips:zz2867@217.169.223.250:43122;transport=TLS;ob SIP/2.0 Via: SIP/2.0/TLS xxx.xxx.xxx.xxx:5060;rport;branch=z9hG4bKPj76d12694-8316-42c 6-9c16-737dc1ce9c5d;alias From: <sip:yy0206@172.31.1.100>;tag=a2953819-10ab-4673-ad5f-ba31bf 3d9d60 To: <sips:zz2867@217.169.223.250;ob> Contact: <sips:asterisk@xxxxxxxxxxxxxxx:5060;transport=TLS> Call-ID: 6c9e38cb-3515-421a-ae00-40636f1912ac CSeq: 31285 INVITEAllow: OPTIONS, SUBSCRIBE, NOTIFY, PUBLISH, INVITE, ACK, BYE, CANCEL, UPDATE, MESSAGE, REGISTER, REFERSupported: timer, replaces, norefersubSession-Expires: 1800Min-SE: 90Max-Forwards: 70User-Agent: VoIPServerBetaContent-Type: application/sdpContent-Length: 339v=0o=- 54900247 54900247 IN IP4 172.31.1.100s=Asteriskc=IN IP4 xxx.xxx.xxx.xxxt=0 0m=audio 6016 RTP/SAVP 3 0 101a=crypto:1 ******************************************************* a=rtpmap:3 GSM/8000a=rtpmap:0 PCMU/8000a=rtpmap:101 telephone-event/8000a=fmtp:101 0-16a=ptime:20a=maxptime:150a=sendrecvThere are two defined transports:[transport-udp]type=transportbind=0.0.0.0:5060protocol=udpand[transport-tls]type=transportbind=0.0.0.0:5060protocol=tlscert_file=***priv_key_file=***password=***cipher=***method=tlsv1local_net=172.31.1.0/255.255.255.0 external_media_address=xxx.xxx.xxx.xxx external_signaling_address=xxx.xxx.xxx.xxx external_signaling_port=5060(We are aware that default port for TLS is 5061. 5060 also work, and binding to 5061 didn't help. Nether did removing UDP transport.)All users have the same configuration. This is the example:Endpoint: yy0206 Not in use 0 of infInAuth: yy0206/yy0206Aor: yy0206 1Contact: yy0206/sips:yy0206@217.169.223.250 3d00261b2b Unknown nanIdentify: yy0206/yy0206Match: 127.0.0.1/32ParameterName : ParameterValue========================================================= 100rel : noaccountcode :aggregate_mwi : trueallow : (gsm|ulaw)allow_subscribe : trueallow_transfer : trueaors : yy0206auth : yy0206bind_rtp_to_media_address : falsecall_group :callerid : <unknown>callerid_privacy : allowed_not_screenedcallerid_tag :connected_line_method : invitecontext : voip_testcos_audio : 0cos_video : 0device_state_busy_at : 0direct_media : falsedirect_media_glare_mitigation: none direct_media_method : invitedisable_direct_media_on_nat : falsedtls_ca_file :dtls_ca_path :dtls_cert_file :dtls_cipher :dtls_fingerprint : XXXdtls_private_key :dtls_rekey : 0dtls_setup : activedtls_verify : Nodtmf_mode : rfc4733fax_detect : falseforce_avp : falseforce_rport : truefrom_domain :from_user :g726_non_standard : falseice_support : falseidentify_by : usernameinband_progress : falselanguage :mailboxes :media_address :media_encryption : sdesmedia_encryption_optimistic : falsemedia_use_received_transport : falsemessage_context :moh_suggest : defaultmwi_from_user :mwi_subscribe_replaces_unsolicited : false named_call_group :named_pickup_group :one_touch_recording : falseoutbound_auth :outbound_proxy :pickup_group :record_off_feature : automixmonrecord_on_feature : automixmonrewrite_contact : falserpid_immediate : falsertp_engine : asteriskrtp_ipv6 : falsertp_keepalive : 0rtp_symmetric : truertp_timeout : 0rtp_timeout_hold : 0sdp_owner : -sdp_session : Asterisksend_diversion : truesend_pai : falsesend_rpid : falseset_var :srtp_tag_32 : falsesub_min_expiry : 0t38_udptl : falset38_udptl_ec : nonet38_udptl_ipv6 : falset38_udptl_maxdatagram : 0t38_udptl_nat : falsetimers : yestimers_min_se : 90timers_sess_expires : 1800tone_zone :tos_audio : 0tos_video : 0transport :trust_id_inbound : falsetrust_id_outbound : falseuse_avpf : falseuse_ptime : trueuser_eq_phone : falsevoicemail_extension :We would very much appreciate any help with this issue.Thank you.Pozdrav/Best regards,Mladen Mijatovic,Technology Partnership._________________
Visit our blog: http://blog.pjsip.org
pjsip mailing list
pjsip@xxxxxxxxxxxxxxx
http://lists.pjsip.org/mailman/listinfo/pjsip_lists. pjsip.org
_______________________________________________
Visit our blog: http://blog.pjsip.org
pjsip mailing list
pjsip@xxxxxxxxxxxxxxx
http://lists.pjsip.org/mailman/listinfo/pjsip_lists. pjsip.org
[Oct 18 15:47:10] VERBOSE[21198] res_pjsip_logger.c: <--- Received SIP request (1312 bytes) from TLS:217.169.223.250:50986 ---> INVITE sips:yy867@xxxxxxxxxxxxxxx:5060 SIP/2.0 Via: SIP/2.0/TLS 217.169.223.250:50986;rport;branch=z9hG4bKPj230fd747-f9b8-4c46-8d54-3b8aa2ae089d;alias Max-Forwards: 70 From: sips:zz867@xxxxxxxxxxxxxxx;tag=382ff707-70d7-43e5-ad8c-ca3319e3d124 To: sips:yy867@xxxxxxxxxxxxxxx Contact: <sips:zz867@217.169.223.250:50986;transport=TLS;ob> Call-ID: a62d94a3-17ba-4fd5-acb7-c3e6e9514f5a CSeq: 12747 INVITE Allow: PRACK, INVITE, ACK, BYE, CANCEL, UPDATE, INFO, SUBSCRIBE, NOTIFY, REFER, MESSAGE, OPTIONS Supported: replaces, 100rel, timer, norefersub Session-Expires: 1800 Min-SE: 90 Content-Type: application/sdp Content-Length: 650 v=0 o=- 3717323230 3717323230 IN IP4 192.168.15.207 s=pjmedia b=AS:30 t=0 0 m=audio 4000 RTP/SAVP 3 96 c=IN IP4 192.168.15.207 b=TIAS:13200 a=rtcp:4001 IN IP4 192.168.15.207 a=sendrecv a=rtpmap:3 GSM/8000 a=rtpmap:96 telephone-event/8000 a=fmtp:96 0-16 a=crypto: *********************** a=crypto: *********************** a=crypto: *********************** a=crypto: *********************** [Oct 18 15:47:11] VERBOSE[21718] res_pjsip_logger.c: <--- Transmitting SIP response (596 bytes) to TLS:217.169.223.250:50986 ---> SIP/2.0 401 Unauthorized Via: SIP/2.0/TLS 217.169.223.250:50986;rport=50986;received=217.169.223.250;branch=z9hG4bKPj230fd747-f9b8-4c46-8d54-3b8aa2ae089d;alias Call-ID: a62d94a3-17ba-4fd5-acb7-c3e6e9514f5a From: <sips:zz867@xxxxxxxxxxxxxxx>;tag=382ff707-70d7-43e5-ad8c-ca3319e3d124 To: <sips:yy867@xxxxxxxxxxxxxxx>;tag=z9hG4bKPj230fd747-f9b8-4c46-8d54-3b8aa2ae089d CSeq: 12747 INVITE WWW-Authenticate: *********************** Server: ServerBeta Content-Length: 0 [Oct 18 15:47:13] VERBOSE[21198] res_pjsip_logger.c: <--- Received SIP request (421 bytes) from TLS:217.169.223.250:50986 ---> ACK sips:yy867@xxxxxxxxxxxxxxx:5060 SIP/2.0 Via: SIP/2.0/TLS 217.169.223.250:50986;rport;branch=z9hG4bKPj230fd747-f9b8-4c46-8d54-3b8aa2ae089d;alias Max-Forwards: 70 From: sips:zz867@xxxxxxxxxxxxxxx;tag=382ff707-70d7-43e5-ad8c-ca3319e3d124 To: sips:yy867@xxxxxxxxxxxxxxx;tag=z9hG4bKPj230fd747-f9b8-4c46-8d54-3b8aa2ae089d Call-ID: a62d94a3-17ba-4fd5-acb7-c3e6e9514f5a CSeq: 12747 ACK Content-Length: 0 [Oct 18 15:47:13] VERBOSE[21198] res_pjsip_logger.c: <--- Received SIP request (1630 bytes) from TLS:217.169.223.250:50986 ---> INVITE sips:yy867@xxxxxxxxxxxxxxx:5060 SIP/2.0 Via: SIP/2.0/TLS 217.169.223.250:50986;rport;branch=z9hG4bKPjfc4612c5-1684-465d-bc4e-3efe626e3f31;alias Max-Forwards: 70 From: sips:zz867@xxxxxxxxxxxxxxx;tag=382ff707-70d7-43e5-ad8c-ca3319e3d124 To: sips:yy867@xxxxxxxxxxxxxxx Contact: <sips:zz867@217.169.223.250:50986;transport=TLS;ob> Call-ID: a62d94a3-17ba-4fd5-acb7-c3e6e9514f5a CSeq: 12748 INVITE Allow: PRACK, INVITE, ACK, BYE, CANCEL, UPDATE, INFO, SUBSCRIBE, NOTIFY, REFER, MESSAGE, OPTIONS Supported: replaces, 100rel, timer, norefersub Session-Expires: 1800 Min-SE: 90 Authorization: *********************** Content-Type: application/sdp Content-Length: 650 v=0 o=- 3717323230 3717323230 IN IP4 192.168.15.207 s=pjmedia b=AS:30 t=0 0 m=audio 4000 RTP/SAVP 3 96 c=IN IP4 192.168.15.207 b=TIAS:13200 a=rtcp:4001 IN IP4 192.168.15.207 a=sendrecv a=rtpmap:3 GSM/8000 a=rtpmap:96 telephone-event/8000 a=fmtp:96 0-16 a=crypto: *********************** a=crypto: *********************** a=crypto: *********************** a=crypto: *********************** [Oct 18 15:47:14] VERBOSE[21718] res_pjsip_logger.c: <--- Transmitting SIP response (393 bytes) to TLS:217.169.223.250:50986 ---> SIP/2.0 100 Trying Via: SIP/2.0/TLS 217.169.223.250:50986;rport=50986;received=217.169.223.250;branch=z9hG4bKPjfc4612c5-1684-465d-bc4e-3efe626e3f31;alias Call-ID: a62d94a3-17ba-4fd5-acb7-c3e6e9514f5a From: <sips:zz867@xxxxxxxxxxxxxxx>;tag=382ff707-70d7-43e5-ad8c-ca3319e3d124 To: <sips:yy867@xxxxxxxxxxxxxxx> CSeq: 12748 INVITE Server: ServerBeta Content-Length: 0 [Oct 18 15:47:14] VERBOSE[21718] res_pjsip_logger.c: <--- Transmitting SIP request (1048 bytes) to TLS:217.169.223.250:43122 ---> INVITE sips:yy867@217.169.223.250:43122;transport=TLS;ob SIP/2.0 Via: SIP/2.0/TLS xxx.xxx.xxx.xxx:5060;rport;branch=z9hG4bKPj76d12694-8316-42c6-9c16-737dc1ce9c5d;alias From: <sip:zz867@172.31.1.100>;tag=a2953819-10ab-4673-ad5f-ba31bf3d9d60 To: <sips:yy867@217.169.223.250;ob> Contact: <sips:asterisk@xxxxxxxxxxxxxxx:5060;transport=TLS> Call-ID: 6c9e38cb-3515-421a-ae00-40636f1912ac CSeq: 31285 INVITE Allow: OPTIONS, SUBSCRIBE, NOTIFY, PUBLISH, INVITE, ACK, BYE, CANCEL, UPDATE, MESSAGE, REGISTER, REFER Supported: timer, replaces, norefersub Session-Expires: 1800 Min-SE: 90 Max-Forwards: 70 User-Agent: ServerBeta Content-Type: application/sdp Content-Length: 339 v=0 o=- 54900247 54900247 IN IP4 172.31.1.100 s=Asterisk c=IN IP4 xxx.xxx.xxx.xxx t=0 0 m=audio 6016 RTP/SAVP 3 0 101 a=crypto: *********************** a=rtpmap:3 GSM/8000 a=rtpmap:0 PCMU/8000 a=rtpmap:101 telephone-event/8000 a=fmtp:101 0-16 a=ptime:20 a=maxptime:150 a=sendrecv [Oct 18 15:47:14] VERBOSE[21198] res_pjsip_logger.c: <--- Received SIP response (360 bytes) from TLS:217.169.223.250:43122 ---> SIP/2.0 100 Trying Via: SIP/2.0/TLS xxx.xxx.xxx.xxx:5060;rport=5060;received=xxx.xxx.xxx.xxx;branch=z9hG4bKPj76d12694-8316-42c6-9c16-737dc1ce9c5d;alias Call-ID: 6c9e38cb-3515-421a-ae00-40636f1912ac From: <sip:zz867@172.31.1.100>;tag=a2953819-10ab-4673-ad5f-ba31bf3d9d60 To: <sips:yy867@217.169.223.250;ob> CSeq: 31285 INVITE Content-Length: 0 [Oct 18 15:47:14] VERBOSE[21198] res_pjsip_logger.c: <--- Received SIP response (569 bytes) from TLS:217.169.223.250:43122 ---> SIP/2.0 180 Ringing Via: SIP/2.0/TLS xxx.xxx.xxx.xxx:5060;rport=5060;received=xxx.xxx.xxx.xxx;branch=z9hG4bKPj76d12694-8316-42c6-9c16-737dc1ce9c5d;alias Call-ID: 6c9e38cb-3515-421a-ae00-40636f1912ac From: <sip:zz867@172.31.1.100>;tag=a2953819-10ab-4673-ad5f-ba31bf3d9d60 To: <sips:yy867@217.169.223.250;ob>;tag=4228d6b1-083a-4c0b-bbf8-510987e62649 CSeq: 31285 INVITE Contact: <sips:yy867@217.169.223.250:43122;transport=TLS;ob> Allow: PRACK, INVITE, ACK, BYE, CANCEL, UPDATE, INFO, SUBSCRIBE, NOTIFY, REFER, MESSAGE, OPTIONS Content-Length: 0 [Oct 18 15:47:14] VERBOSE[21718] res_pjsip_logger.c: <--- Transmitting SIP response (587 bytes) to TLS:217.169.223.250:50986 ---> SIP/2.0 180 Ringing Via: SIP/2.0/TLS 217.169.223.250:50986;rport=50986;received=217.169.223.250;branch=z9hG4bKPjfc4612c5-1684-465d-bc4e-3efe626e3f31;alias Call-ID: a62d94a3-17ba-4fd5-acb7-c3e6e9514f5a From: <sips:zz867@xxxxxxxxxxxxxxx>;tag=382ff707-70d7-43e5-ad8c-ca3319e3d124 To: <sips:yy867@xxxxxxxxxxxxxxx>;tag=be210663-0f2b-4f50-997f-4c5fcb9fc750 CSeq: 12748 INVITE Server: ServerBeta Contact: <sips:xxx.xxx.xxx.xxx:5060;transport=TLS> Allow: OPTIONS, SUBSCRIBE, NOTIFY, PUBLISH, INVITE, ACK, BYE, CANCEL, UPDATE, MESSAGE, REGISTER, REFER Content-Length: 0 [Oct 18 15:47:16] VERBOSE[21198] res_pjsip_logger.c: <--- Received SIP response (1052 bytes) from TLS:217.169.223.250:43122 ---> SIP/2.0 200 OK Via: SIP/2.0/TLS xxx.xxx.xxx.xxx:5060;rport=5060;received=xxx.xxx.xxx.xxx;branch=z9hG4bKPj76d12694-8316-42c6-9c16-737dc1ce9c5d;alias Call-ID: 6c9e38cb-3515-421a-ae00-40636f1912ac From: <sip:zz867@172.31.1.100>;tag=a2953819-10ab-4673-ad5f-ba31bf3d9d60 To: <sips:yy867@217.169.223.250;ob>;tag=4228d6b1-083a-4c0b-bbf8-510987e62649 CSeq: 31285 INVITE Allow: PRACK, INVITE, ACK, BYE, CANCEL, UPDATE, INFO, SUBSCRIBE, NOTIFY, REFER, MESSAGE, OPTIONS Contact: <sips:yy867@217.169.223.250:43122;transport=TLS;ob> Supported: replaces, 100rel, timer, norefersub Session-Expires: 1800;refresher=uac Require: timer Content-Type: application/sdp Content-Length: 353 v=0 o=- 3717323234 3717323235 IN IP4 192.168.15.218 s=pjmedia b=AS:30 t=0 0 m=audio 4000 RTP/SAVP 3 101 c=IN IP4 192.168.15.218 b=TIAS:13200 a=rtcp:4001 IN IP4 192.168.15.218 a=sendrecv a=rtpmap:3 GSM/8000 a=crypto: *********************** a=rtpmap:101 telephone-event/8000 a=fmtp:101 0-16 [Oct 18 15:47:16] VERBOSE[21718] res_pjsip_logger.c: <--- Transmitting SIP request (474 bytes) to TLS:217.169.223.250:43122 ---> ACK sips:yy867@217.169.223.250:43122;transport=TLS;ob SIP/2.0 Via: SIP/2.0/TLS xxx.xxx.xxx.xxx:5060;rport;branch=z9hG4bKPj0e57ffbc-a8e9-402b-905f-4786c48ac3de;alias From: <sip:zz867@172.31.1.100>;tag=a2953819-10ab-4673-ad5f-ba31bf3d9d60 To: <sips:yy867@217.169.223.250;ob>;tag=4228d6b1-083a-4c0b-bbf8-510987e62649 Call-ID: 6c9e38cb-3515-421a-ae00-40636f1912ac CSeq: 31285 ACK Max-Forwards: 70 User-Agent: ServerBeta Content-Length: 0 [Oct 18 15:47:16] VERBOSE[21718] res_pjsip_logger.c: <--- Transmitting SIP response (1025 bytes) to TLS:217.169.223.250:50986 ---> SIP/2.0 200 OK Via: SIP/2.0/TLS 217.169.223.250:50986;rport=50986;received=217.169.223.250;branch=z9hG4bKPjfc4612c5-1684-465d-bc4e-3efe626e3f31;alias Call-ID: a62d94a3-17ba-4fd5-acb7-c3e6e9514f5a From: <sips:zz867@xxxxxxxxxxxxxxx>;tag=382ff707-70d7-43e5-ad8c-ca3319e3d124 To: <sips:yy867@xxxxxxxxxxxxxxx>;tag=be210663-0f2b-4f50-997f-4c5fcb9fc750 CSeq: 12748 INVITE Server: ServerBeta Allow: OPTIONS, SUBSCRIBE, NOTIFY, PUBLISH, INVITE, ACK, BYE, CANCEL, UPDATE, MESSAGE, REGISTER, REFER Contact: <sips:xxx.xxx.xxx.xxx:5060;transport=TLS> Supported: timer, replaces, norefersub Session-Expires: 1800;refresher=uac Require: timer Content-Type: application/sdp Content-Length: 316 v=0 o=- 3717323230 3717323232 IN IP4 172.31.1.100 s=Asterisk c=IN IP4 xxx.xxx.xxx.xxx t=0 0 m=audio 6026 RTP/SAVP 3 96 a=crypto: *********************** a=rtpmap:3 GSM/8000 a=rtpmap:96 telephone-event/8000 a=fmtp:96 0-16 a=ptime:20 a=maxptime:300 a=sendrecv [Oct 18 15:47:17] VERBOSE[21198] res_pjsip_logger.c: <--- Received SIP request (413 bytes) from TLS:217.169.223.250:50986 ---> ACK sips:xxx.xxx.xxx.xxx:5060;transport=TLS SIP/2.0 Via: SIP/2.0/TLS 217.169.223.250:50986;rport;branch=z9hG4bKPjadfe3536-0f6c-4a70-8ed4-dc665d4ceaf0;alias Max-Forwards: 70 From: sips:zz867@xxxxxxxxxxxxxxx;tag=382ff707-70d7-43e5-ad8c-ca3319e3d124 To: sips:yy867@xxxxxxxxxxxxxxx;tag=be210663-0f2b-4f50-997f-4c5fcb9fc750 Call-ID: a62d94a3-17ba-4fd5-acb7-c3e6e9514f5a CSeq: 12748 ACK Content-Length: 0 [Oct 18 15:47:22] VERBOSE[21198] res_pjsip_logger.c: <--- Received SIP request (1079 bytes) from TLS:217.169.223.250:43122 ---> INVITE sips:asterisk@xxxxxxxxxxxxxxx:5060;transport=TLS SIP/2.0 Via: SIP/2.0/TLS 217.169.223.250:43122;rport;branch=z9hG4bKPj9f57318c-5319-4f07-a805-f9c4967d31ee;alias Max-Forwards: 70 From: <sips:yy867@217.169.223.250;ob>;tag=4228d6b1-083a-4c0b-bbf8-510987e62649 To: <sip:zz867@172.31.1.100>;tag=a2953819-10ab-4673-ad5f-ba31bf3d9d60 Contact: <sips:yy867@217.169.223.250:43122;transport=TLS;ob> Call-ID: 6c9e38cb-3515-421a-ae00-40636f1912ac CSeq: 5159 INVITE Allow: PRACK, INVITE, ACK, BYE, CANCEL, UPDATE, INFO, SUBSCRIBE, NOTIFY, REFER, MESSAGE, OPTIONS Supported: replaces, 100rel, timer, norefersub Session-Expires: 1800;refresher=uas Min-SE: 90 Content-Type: application/sdp Content-Length: 343 v=0 o=- 3717323234 3717323236 IN IP4 192.168.15.218 s=pjmedia b=AS:30 t=0 0 m=audio 4000 RTP/SAVP 3 96 c=IN IP4 0.0.0.0 b=TIAS:13200 a=rtcp:4001 IN IP4 192.168.15.218 a=rtpmap:3 GSM/8000 a=rtpmap:96 telephone-event/8000 a=fmtp:96 0-16 a=crypto: *********************** a=inactive [Oct 18 15:47:22] VERBOSE[21718] res_pjsip_logger.c: <--- Transmitting SIP response (1034 bytes) to TLS:217.169.223.250:43122 ---> SIP/2.0 200 OK Via: SIP/2.0/TLS 217.169.223.250:43122;rport=43122;received=217.169.223.250;branch=z9hG4bKPj9f57318c-5319-4f07-a805-f9c4967d31ee;alias Call-ID: 6c9e38cb-3515-421a-ae00-40636f1912ac From: <sips:yy867@217.169.223.250;ob>;tag=4228d6b1-083a-4c0b-bbf8-510987e62649 To: <sip:zz867@172.31.1.100>;tag=a2953819-10ab-4673-ad5f-ba31bf3d9d60 CSeq: 5159 INVITE Session-Expires: 1800;refresher=uas Contact: <sip:asterisk@xxxxxxxxxxxxxxx:5060;transport=TLS> Allow: OPTIONS, SUBSCRIBE, NOTIFY, PUBLISH, INVITE, ACK, BYE, CANCEL, UPDATE, PRACK, MESSAGE, REGISTER, REFER Supported: 100rel, timer, replaces, norefersub Server: ServerBeta Content-Type: application/sdp Content-Length: 312 v=0 o=- 54900247 54900248 IN IP4 172.31.1.100 s=Asterisk c=IN IP4 xxx.xxx.xxx.xxx t=0 0 m=audio 6016 RTP/SAVP 3 96 a=crypto: *********************** a=rtpmap:3 GSM/8000 a=rtpmap:96 telephone-event/8000 a=fmtp:96 0-16 a=ptime:20 a=maxptime:150 a=inactive [Oct 18 15:47:22] VERBOSE[21198] res_pjsip_logger.c: <--- Received SIP request (471 bytes) from TLS:217.169.223.250:43122 ---> BYE sip:asterisk@xxxxxxxxxxxxxxx:5060;transport=TLS SIP/2.0 Via: SIP/2.0/TLS 217.169.223.250:43122;rport;branch=z9hG4bKPja369cb16-e0a3-496d-b9b3-165fb63dd4dc;alias Max-Forwards: 70 From: <sips:yy867@217.169.223.250;ob>;tag=4228d6b1-083a-4c0b-bbf8-510987e62649 To: <sip:zz867@172.31.1.100>;tag=a2953819-10ab-4673-ad5f-ba31bf3d9d60 Call-ID: 6c9e38cb-3515-421a-ae00-40636f1912ac CSeq: 5160 BYE Warning: 381 localhost "SIPS Required" Content-Length: 0 [Oct 18 15:47:22] VERBOSE[21718] res_pjsip_logger.c: <--- Transmitting SIP response (433 bytes) to TLS:217.169.223.250:43122 ---> SIP/2.0 200 OK Via: SIP/2.0/TLS 217.169.223.250:43122;rport=43122;received=217.169.223.250;branch=z9hG4bKPja369cb16-e0a3-496d-b9b3-165fb63dd4dc;alias Call-ID: 6c9e38cb-3515-421a-ae00-40636f1912ac From: <sips:yy867@217.169.223.250;ob>;tag=4228d6b1-083a-4c0b-bbf8-510987e62649 To: <sip:zz867@172.31.1.100>;tag=a2953819-10ab-4673-ad5f-ba31bf3d9d60 CSeq: 5160 BYE Server: ServerBeta Content-Length: 0 [Oct 18 15:47:22] VERBOSE[22168] res_pjsip_logger.c: <--- Transmitting SIP request (491 bytes) to TLS:217.169.223.250:50986 ---> BYE sips:zz867@217.169.223.250:50986;transport=TLS;ob SIP/2.0 Via: SIP/2.0/TLS xxx.xxx.xxx.xxx:5060;rport;branch=z9hG4bKPjd124dfc8-2048-46d0-8741-9878869a129f;alias From: <sips:yy867@xxxxxxxxxxxxxxx>;tag=be210663-0f2b-4f50-997f-4c5fcb9fc750 To: <sips:zz867@xxxxxxxxxxxxxxx>;tag=382ff707-70d7-43e5-ad8c-ca3319e3d124 Call-ID: a62d94a3-17ba-4fd5-acb7-c3e6e9514f5a CSeq: 1217 BYE Reason: Q.850;cause=16 Max-Forwards: 70 User-Agent: ServerBeta Content-Length: 0 [Oct 18 15:47:22] VERBOSE[21198] res_pjsip_logger.c: <--- Received SIP response (386 bytes) from TLS:217.169.223.250:50986 ---> SIP/2.0 200 OK Via: SIP/2.0/TLS xxx.xxx.xxx.xxx:5060;rport=5060;received=xxx.xxx.xxx.xxx;branch=z9hG4bKPjd124dfc8-2048-46d0-8741-9878869a129f;alias Call-ID: a62d94a3-17ba-4fd5-acb7-c3e6e9514f5a From: <sips:yy867@xxxxxxxxxxxxxxx>;tag=be210663-0f2b-4f50-997f-4c5fcb9fc750 To: <sips:zz867@xxxxxxxxxxxxxxx>;tag=382ff707-70d7-43e5-ad8c-ca3319e3d124 CSeq: 1217 BYE Content-Length: 0 [Oct 18 15:47:22] VERBOSE[21198] res_pjsip_logger.c: <--- Transmitting SIP response (1034 bytes) to TLS:217.169.223.250:43122 ---> SIP/2.0 200 OK Via: SIP/2.0/TLS 217.169.223.250:43122;rport=43122;received=217.169.223.250;branch=z9hG4bKPj9f57318c-5319-4f07-a805-f9c4967d31ee;alias Call-ID: 6c9e38cb-3515-421a-ae00-40636f1912ac From: <sips:yy867@217.169.223.250;ob>;tag=4228d6b1-083a-4c0b-bbf8-510987e62649 To: <sip:zz867@172.31.1.100>;tag=a2953819-10ab-4673-ad5f-ba31bf3d9d60 CSeq: 5159 INVITE Session-Expires: 1800;refresher=uas Contact: <sip:asterisk@xxxxxxxxxxxxxxx:5060;transport=TLS> Allow: OPTIONS, SUBSCRIBE, NOTIFY, PUBLISH, INVITE, ACK, BYE, CANCEL, UPDATE, PRACK, MESSAGE, REGISTER, REFER Supported: 100rel, timer, replaces, norefersub Server: ServerBeta Content-Type: application/sdp Content-Length: 312 v=0 o=- 54900247 54900248 IN IP4 172.31.1.100 s=Asterisk c=IN IP4 xxx.xxx.xxx.xxx t=0 0 m=audio 6016 RTP/SAVP 3 96 a=crypto: *********************** a=rtpmap:3 GSM/8000 a=rtpmap:96 telephone-event/8000 a=fmtp:96 0-16 a=ptime:20 a=maxptime:150 a=inactive [Oct 18 15:47:23] VERBOSE[21198] res_pjsip_logger.c: <--- Transmitting SIP response (1034 bytes) to TLS:217.169.223.250:43122 ---> SIP/2.0 200 OK Via: SIP/2.0/TLS 217.169.223.250:43122;rport=43122;received=217.169.223.250;branch=z9hG4bKPj9f57318c-5319-4f07-a805-f9c4967d31ee;alias Call-ID: 6c9e38cb-3515-421a-ae00-40636f1912ac From: <sips:yy867@217.169.223.250;ob>;tag=4228d6b1-083a-4c0b-bbf8-510987e62649 To: <sip:zz867@172.31.1.100>;tag=a2953819-10ab-4673-ad5f-ba31bf3d9d60 CSeq: 5159 INVITE Session-Expires: 1800;refresher=uas Contact: <sip:asterisk@xxxxxxxxxxxxxxx:5060;transport=TLS> Allow: OPTIONS, SUBSCRIBE, NOTIFY, PUBLISH, INVITE, ACK, BYE, CANCEL, UPDATE, PRACK, MESSAGE, REGISTER, REFER Supported: 100rel, timer, replaces, norefersub Server: ServerBeta Content-Type: application/sdp Content-Length: 312 v=0 o=- 54900247 54900248 IN IP4 172.31.1.100 s=Asterisk c=IN IP4 xxx.xxx.xxx.xxx t=0 0 m=audio 6016 RTP/SAVP 3 96 a=crypto: *********************** a=rtpmap:3 GSM/8000 a=rtpmap:96 telephone-event/8000 a=fmtp:96 0-16 a=ptime:20 a=maxptime:150 a=inactive [Oct 18 15:47:25] VERBOSE[21198] res_pjsip_logger.c: <--- Transmitting SIP response (1034 bytes) to TLS:217.169.223.250:43122 ---> SIP/2.0 200 OK Via: SIP/2.0/TLS 217.169.223.250:43122;rport=43122;received=217.169.223.250;branch=z9hG4bKPj9f57318c-5319-4f07-a805-f9c4967d31ee;alias Call-ID: 6c9e38cb-3515-421a-ae00-40636f1912ac From: <sips:yy867@217.169.223.250;ob>;tag=4228d6b1-083a-4c0b-bbf8-510987e62649 To: <sip:zz867@172.31.1.100>;tag=a2953819-10ab-4673-ad5f-ba31bf3d9d60 CSeq: 5159 INVITE Session-Expires: 1800;refresher=uas Contact: <sip:asterisk@xxxxxxxxxxxxxxx:5060;transport=TLS> Allow: OPTIONS, SUBSCRIBE, NOTIFY, PUBLISH, INVITE, ACK, BYE, CANCEL, UPDATE, PRACK, MESSAGE, REGISTER, REFER Supported: 100rel, timer, replaces, norefersub Server: ServerBeta Content-Type: application/sdp Content-Length: 312 v=0 o=- 54900247 54900248 IN IP4 172.31.1.100 s=Asterisk c=IN IP4 xxx.xxx.xxx.xxx t=0 0 m=audio 6016 RTP/SAVP 3 96 a=crypto: *********************** a=rtpmap:3 GSM/8000 a=rtpmap:96 telephone-event/8000 a=fmtp:96 0-16 a=ptime:20 a=maxptime:150 a=inactive [Oct 18 15:47:29] VERBOSE[21198] res_pjsip_logger.c: <--- Transmitting SIP response (1034 bytes) to TLS:217.169.223.250:43122 ---> SIP/2.0 200 OK Via: SIP/2.0/TLS 217.169.223.250:43122;rport=43122;received=217.169.223.250;branch=z9hG4bKPj9f57318c-5319-4f07-a805-f9c4967d31ee;alias Call-ID: 6c9e38cb-3515-421a-ae00-40636f1912ac From: <sips:yy867@217.169.223.250;ob>;tag=4228d6b1-083a-4c0b-bbf8-510987e62649 To: <sip:zz867@172.31.1.100>;tag=a2953819-10ab-4673-ad5f-ba31bf3d9d60 CSeq: 5159 INVITE Session-Expires: 1800;refresher=uas Contact: <sip:asterisk@xxxxxxxxxxxxxxx:5060;transport=TLS> Allow: OPTIONS, SUBSCRIBE, NOTIFY, PUBLISH, INVITE, ACK, BYE, CANCEL, UPDATE, PRACK, MESSAGE, REGISTER, REFER Supported: 100rel, timer, replaces, norefersub Server: ServerBeta Content-Type: application/sdp Content-Length: 312 v=0 o=- 54900247 54900248 IN IP4 172.31.1.100 s=Asterisk c=IN IP4 xxx.xxx.xxx.xxx t=0 0 m=audio 6016 RTP/SAVP 3 96 a=crypto: *********************** a=rtpmap:3 GSM/8000 a=rtpmap:96 telephone-event/8000 a=fmtp:96 0-16 a=ptime:20 a=maxptime:150 a=inactive [Oct 18 15:47:33] VERBOSE[21198] res_pjsip_logger.c: <--- Transmitting SIP response (1034 bytes) to TLS:217.169.223.250:43122 ---> SIP/2.0 200 OK Via: SIP/2.0/TLS 217.169.223.250:43122;rport=43122;received=217.169.223.250;branch=z9hG4bKPj9f57318c-5319-4f07-a805-f9c4967d31ee;alias Call-ID: 6c9e38cb-3515-421a-ae00-40636f1912ac From: <sips:yy867@217.169.223.250;ob>;tag=4228d6b1-083a-4c0b-bbf8-510987e62649 To: <sip:zz867@172.31.1.100>;tag=a2953819-10ab-4673-ad5f-ba31bf3d9d60 CSeq: 5159 INVITE Session-Expires: 1800;refresher=uas Contact: <sip:asterisk@xxxxxxxxxxxxxxx:5060;transport=TLS> Allow: OPTIONS, SUBSCRIBE, NOTIFY, PUBLISH, INVITE, ACK, BYE, CANCEL, UPDATE, PRACK, MESSAGE, REGISTER, REFER Supported: 100rel, timer, replaces, norefersub Server: ServerBeta Content-Type: application/sdp Content-Length: 312 v=0 o=- 54900247 54900248 IN IP4 172.31.1.100 s=Asterisk c=IN IP4 xxx.xxx.xxx.xxx t=0 0 m=audio 6016 RTP/SAVP 3 96 a=crypto: *********************** a=rtpmap:3 GSM/8000 a=rtpmap:96 telephone-event/8000 a=fmtp:96 0-16 a=ptime:20 a=maxptime:150 a=inactive [Oct 18 15:47:37] VERBOSE[21198] res_pjsip_logger.c: <--- Transmitting SIP response (1034 bytes) to TLS:217.169.223.250:43122 ---> SIP/2.0 200 OK Via: SIP/2.0/TLS 217.169.223.250:43122;rport=43122;received=217.169.223.250;branch=z9hG4bKPj9f57318c-5319-4f07-a805-f9c4967d31ee;alias Call-ID: 6c9e38cb-3515-421a-ae00-40636f1912ac From: <sips:yy867@217.169.223.250;ob>;tag=4228d6b1-083a-4c0b-bbf8-510987e62649 To: <sip:zz867@172.31.1.100>;tag=a2953819-10ab-4673-ad5f-ba31bf3d9d60 CSeq: 5159 INVITE Session-Expires: 1800;refresher=uas Contact: <sip:asterisk@xxxxxxxxxxxxxxx:5060;transport=TLS> Allow: OPTIONS, SUBSCRIBE, NOTIFY, PUBLISH, INVITE, ACK, BYE, CANCEL, UPDATE, PRACK, MESSAGE, REGISTER, REFER Supported: 100rel, timer, replaces, norefersub Server: ServerBeta Content-Type: application/sdp Content-Length: 312 v=0 o=- 54900247 54900248 IN IP4 172.31.1.100 s=Asterisk c=IN IP4 xxx.xxx.xxx.xxx t=0 0 m=audio 6016 RTP/SAVP 3 96 a=crypto: *********************** a=rtpmap:3 GSM/8000 a=rtpmap:96 telephone-event/8000 a=fmtp:96 0-16 a=ptime:20 a=maxptime:150 a=inactive [Oct 18 15:47:41] VERBOSE[21198] res_pjsip_logger.c: <--- Transmitting SIP response (1034 bytes) to TLS:217.169.223.250:43122 ---> SIP/2.0 200 OK Via: SIP/2.0/TLS 217.169.223.250:43122;rport=43122;received=217.169.223.250;branch=z9hG4bKPj9f57318c-5319-4f07-a805-f9c4967d31ee;alias Call-ID: 6c9e38cb-3515-421a-ae00-40636f1912ac From: <sips:yy867@217.169.223.250;ob>;tag=4228d6b1-083a-4c0b-bbf8-510987e62649 To: <sip:zz867@172.31.1.100>;tag=a2953819-10ab-4673-ad5f-ba31bf3d9d60 CSeq: 5159 INVITE Session-Expires: 1800;refresher=uas Contact: <sip:asterisk@xxxxxxxxxxxxxxx:5060;transport=TLS> Allow: OPTIONS, SUBSCRIBE, NOTIFY, PUBLISH, INVITE, ACK, BYE, CANCEL, UPDATE, PRACK, MESSAGE, REGISTER, REFER Supported: 100rel, timer, replaces, norefersub Server: ServerBeta Content-Type: application/sdp Content-Length: 312 v=0 o=- 54900247 54900248 IN IP4 172.31.1.100 s=Asterisk c=IN IP4 xxx.xxx.xxx.xxx t=0 0 m=audio 6016 RTP/SAVP 3 96 a=crypto: *********************** a=rtpmap:3 GSM/8000 a=rtpmap:96 telephone-event/8000 a=fmtp:96 0-16 a=ptime:20 a=maxptime:150 a=inactive [Oct 18 15:47:45] VERBOSE[21198] res_pjsip_logger.c: <--- Transmitting SIP response (1034 bytes) to TLS:217.169.223.250:43122 ---> SIP/2.0 200 OK Via: SIP/2.0/TLS 217.169.223.250:43122;rport=43122;received=217.169.223.250;branch=z9hG4bKPj9f57318c-5319-4f07-a805-f9c4967d31ee;alias Call-ID: 6c9e38cb-3515-421a-ae00-40636f1912ac From: <sips:yy867@217.169.223.250;ob>;tag=4228d6b1-083a-4c0b-bbf8-510987e62649 To: <sip:zz867@172.31.1.100>;tag=a2953819-10ab-4673-ad5f-ba31bf3d9d60 CSeq: 5159 INVITE Session-Expires: 1800;refresher=uas Contact: <sip:asterisk@xxxxxxxxxxxxxxx:5060;transport=TLS> Allow: OPTIONS, SUBSCRIBE, NOTIFY, PUBLISH, INVITE, ACK, BYE, CANCEL, UPDATE, PRACK, MESSAGE, REGISTER, REFER Supported: 100rel, timer, replaces, norefersub Server: ServerBeta Content-Type: application/sdp Content-Length: 312 v=0 o=- 54900247 54900248 IN IP4 172.31.1.100 s=Asterisk c=IN IP4 xxx.xxx.xxx.xxx t=0 0 m=audio 6016 RTP/SAVP 3 96 a=crypto: *********************** a=rtpmap:3 GSM/8000 a=rtpmap:96 telephone-event/8000 a=fmtp:96 0-16 a=ptime:20 a=maxptime:150 a=inactive [Oct 18 15:47:49] VERBOSE[21198] res_pjsip_logger.c: <--- Transmitting SIP response (1034 bytes) to TLS:217.169.223.250:43122 ---> SIP/2.0 200 OK Via: SIP/2.0/TLS 217.169.223.250:43122;rport=43122;received=217.169.223.250;branch=z9hG4bKPj9f57318c-5319-4f07-a805-f9c4967d31ee;alias Call-ID: 6c9e38cb-3515-421a-ae00-40636f1912ac From: <sips:yy867@217.169.223.250;ob>;tag=4228d6b1-083a-4c0b-bbf8-510987e62649 To: <sip:zz867@172.31.1.100>;tag=a2953819-10ab-4673-ad5f-ba31bf3d9d60 CSeq: 5159 INVITE Session-Expires: 1800;refresher=uas Contact: <sip:asterisk@xxxxxxxxxxxxxxx:5060;transport=TLS> Allow: OPTIONS, SUBSCRIBE, NOTIFY, PUBLISH, INVITE, ACK, BYE, CANCEL, UPDATE, PRACK, MESSAGE, REGISTER, REFER Supported: 100rel, timer, replaces, norefersub Server: ServerBeta Content-Type: application/sdp Content-Length: 312 v=0 o=- 54900247 54900248 IN IP4 172.31.1.100 s=Asterisk c=IN IP4 xxx.xxx.xxx.xxx t=0 0 m=audio 6016 RTP/SAVP 3 96 a=crypto: *********************** a=rtpmap:3 GSM/8000 a=rtpmap:96 telephone-event/8000 a=fmtp:96 0-16 a=ptime:20 a=maxptime:150 a=inactive [Oct 18 15:47:53] VERBOSE[21198] res_pjsip_logger.c: <--- Transmitting SIP response (1034 bytes) to TLS:217.169.223.250:43122 ---> SIP/2.0 200 OK Via: SIP/2.0/TLS 217.169.223.250:43122;rport=43122;received=217.169.223.250;branch=z9hG4bKPj9f57318c-5319-4f07-a805-f9c4967d31ee;alias Call-ID: 6c9e38cb-3515-421a-ae00-40636f1912ac From: <sips:yy867@217.169.223.250;ob>;tag=4228d6b1-083a-4c0b-bbf8-510987e62649 To: <sip:zz867@172.31.1.100>;tag=a2953819-10ab-4673-ad5f-ba31bf3d9d60 CSeq: 5159 INVITE Session-Expires: 1800;refresher=uas Contact: <sip:asterisk@xxxxxxxxxxxxxxx:5060;transport=TLS> Allow: OPTIONS, SUBSCRIBE, NOTIFY, PUBLISH, INVITE, ACK, BYE, CANCEL, UPDATE, PRACK, MESSAGE, REGISTER, REFER Supported: 100rel, timer, replaces, norefersub Server: ServerBeta Content-Type: application/sdp Content-Length: 312 v=0 o=- 54900247 54900248 IN IP4 172.31.1.100 s=Asterisk c=IN IP4 xxx.xxx.xxx.xxx t=0 0 m=audio 6016 RTP/SAVP 3 96 a=crypto: *********************** a=rtpmap:3 GSM/8000 a=rtpmap:96 telephone-event/8000 a=fmtp:96 0-16 a=ptime:20 a=maxptime:150 a=inactive
INVITE sips:yy867@217.169.223.250:43122;transport=TLS;ob SIP/2.0 Via: SIP/2.0/TLS xxx.xxx.xxx.xxx:5060;rport;branch=z9hG4bKPj76d12694-8316-42c6-9c16-737dc1ce9c5d;alias From: <sip:zz867@172.31.1.100>;tag=a2953819-10ab-4673-ad5f-ba31bf3d9d60 To: <sips:yy867@217.169.223.250;ob> Contact: <sips:asterisk@xxxxxxxxxxxxxxx:5060;transport=TLS> Call-ID: 6c9e38cb-3515-421a-ae00-40636f1912ac CSeq: 31285 INVITE Allow: OPTIONS, SUBSCRIBE, NOTIFY, PUBLISH, INVITE, ACK, BYE, CANCEL, UPDATE, MESSAGE, REGISTER, REFER Supported: timer, replaces, norefersub Session-Expires: 1800 Min-SE: 90 Max-Forwards: 70 User-Agent: ServerBeta Content-Type: application/sdp Content-Length: 339 v=0 o=- 54900247 54900247 IN IP4 172.31.1.100 s=Asterisk c=IN IP4 xxx.xxx.xxx.xxx t=0 0 m=audio 6016 RTP/SAVP 3 0 101 a=crypto: *********************** a=rtpmap:3 GSM/8000 a=rtpmap:0 PCMU/8000 a=rtpmap:101 telephone-event/8000 a=fmtp:101 0-16 a=ptime:20 a=maxptime:150 a=sendrecv SIP/2.0 100 Trying Via: SIP/2.0/TLS xxx.xxx.xxx.xxx:5060;rport=5060;received=xxx.xxx.xxx.xxx;branch=z9hG4bKPj76d12694-8316-42c6-9c16-737dc1ce9c5d;alias Call-ID: 6c9e38cb-3515-421a-ae00-40636f1912ac From: <sip:zz867@172.31.1.100>;tag=a2953819-10ab-4673-ad5f-ba31bf3d9d60 To: <sips:yy867@217.169.223.250;ob> CSeq: 31285 INVITE Content-Length: 0 SIP/2.0 180 Ringing Via: SIP/2.0/TLS xxx.xxx.xxx.xxx:5060;rport=5060;received=xxx.xxx.xxx.xxx;branch=z9hG4bKPj76d12694-8316-42c6-9c16-737dc1ce9c5d;alias Call-ID: 6c9e38cb-3515-421a-ae00-40636f1912ac From: <sip:zz867@172.31.1.100>;tag=a2953819-10ab-4673-ad5f-ba31bf3d9d60 To: <sips:yy867@217.169.223.250;ob>;tag=4228d6b1-083a-4c0b-bbf8-510987e62649 CSeq: 31285 INVITE Contact: <sips:yy867@217.169.223.250:43122;transport=TLS;ob> Allow: PRACK, INVITE, ACK, BYE, CANCEL, UPDATE, INFO, SUBSCRIBE, NOTIFY, REFER, MESSAGE, OPTIONS Content-Length: 0 SIP/2.0 200 OK Via: SIP/2.0/TLS xxx.xxx.xxx.xxx:5060;rport=5060;received=xxx.xxx.xxx.xxx;branch=z9hG4bKPj76d12694-8316-42c6-9c16-737dc1ce9c5d;alias Call-ID: 6c9e38cb-3515-421a-ae00-40636f1912ac From: <sip:zz867@172.31.1.100>;tag=a2953819-10ab-4673-ad5f-ba31bf3d9d60 To: <sips:yy867@217.169.223.250;ob>;tag=4228d6b1-083a-4c0b-bbf8-510987e62649 CSeq: 31285 INVITE Allow: PRACK, INVITE, ACK, BYE, CANCEL, UPDATE, INFO, SUBSCRIBE, NOTIFY, REFER, MESSAGE, OPTIONS Contact: <sips:yy867@217.169.223.250:43122;transport=TLS;ob> Supported: replaces, 100rel, timer, norefersub Session-Expires: 1800;refresher=uac Require: timer Content-Type: application/sdp Content-Length: 353 v=0 o=- 3717323234 3717323235 IN IP4 192.168.15.218 s=pjmedia b=AS:30 t=0 0 m=audio 4000 RTP/SAVP 3 101 c=IN IP4 192.168.15.218 b=TIAS:13200 a=rtcp:4001 IN IP4 192.168.15.218 a=sendrecv a=rtpmap:3 GSM/8000 a=crypto: *********************** a=rtpmap:101 telephone-event/8000 a=fmtp:101 0-16 ACK sips:yy867@217.169.223.250:43122;transport=TLS;ob SIP/2.0 Via: SIP/2.0/TLS xxx.xxx.xxx.xxx:5060;rport;branch=z9hG4bKPj0e57ffbc-a8e9-402b-905f-4786c48ac3de;alias From: <sip:zz867@172.31.1.100>;tag=a2953819-10ab-4673-ad5f-ba31bf3d9d60 To: <sips:yy867@217.169.223.250;ob>;tag=4228d6b1-083a-4c0b-bbf8-510987e62649 Call-ID: 6c9e38cb-3515-421a-ae00-40636f1912ac CSeq: 31285 ACK Max-Forwards: 70 User-Agent: ServerBeta Content-Length: 0 INVITE sips:asterisk@xxxxxxxxxxxxxxx:5060;transport=TLS SIP/2.0 Via: SIP/2.0/TLS 217.169.223.250:43122;rport;branch=z9hG4bKPj9f57318c-5319-4f07-a805-f9c4967d31ee;alias Max-Forwards: 70 From: <sips:yy867@217.169.223.250;ob>;tag=4228d6b1-083a-4c0b-bbf8-510987e62649 To: <sip:zz867@172.31.1.100>;tag=a2953819-10ab-4673-ad5f-ba31bf3d9d60 Contact: <sips:yy867@217.169.223.250:43122;transport=TLS;ob> Call-ID: 6c9e38cb-3515-421a-ae00-40636f1912ac CSeq: 5159 INVITE Allow: PRACK, INVITE, ACK, BYE, CANCEL, UPDATE, INFO, SUBSCRIBE, NOTIFY, REFER, MESSAGE, OPTIONS Supported: replaces, 100rel, timer, norefersub Session-Expires: 1800;refresher=uas Min-SE: 90 Content-Type: application/sdp Content-Length: 343 v=0 o=- 3717323234 3717323236 IN IP4 192.168.15.218 s=pjmedia b=AS:30 t=0 0 m=audio 4000 RTP/SAVP 3 96 c=IN IP4 0.0.0.0 b=TIAS:13200 a=rtcp:4001 IN IP4 192.168.15.218 a=rtpmap:3 GSM/8000 a=rtpmap:96 telephone-event/8000 a=fmtp:96 0-16 a=crypto: *********************** a=inactive SIP/2.0 200 OK Via: SIP/2.0/TLS 217.169.223.250:43122;rport=43122;received=217.169.223.250;branch=z9hG4bKPj9f57318c-5319-4f07-a805-f9c4967d31ee;alias Call-ID: 6c9e38cb-3515-421a-ae00-40636f1912ac From: <sips:yy867@217.169.223.250;ob>;tag=4228d6b1-083a-4c0b-bbf8-510987e62649 To: <sip:zz867@172.31.1.100>;tag=a2953819-10ab-4673-ad5f-ba31bf3d9d60 CSeq: 5159 INVITE Session-Expires: 1800;refresher=uas Contact: <sip:asterisk@xxxxxxxxxxxxxxx:5060;transport=TLS> Allow: OPTIONS, SUBSCRIBE, NOTIFY, PUBLISH, INVITE, ACK, BYE, CANCEL, UPDATE, PRACK, MESSAGE, REGISTER, REFER Supported: 100rel, timer, replaces, norefersub Server: ServerBeta Content-Type: application/sdp Content-Length: 312 v=0 o=- 54900247 54900248 IN IP4 172.31.1.100 s=Asterisk c=IN IP4 xxx.xxx.xxx.xxx t=0 0 m=audio 6016 RTP/SAVP 3 96 a=crypto: *********************** a=rtpmap:3 GSM/8000 a=rtpmap:96 telephone-event/8000 a=fmtp:96 0-16 a=ptime:20 a=maxptime:150 a=inactive BYE sip:asterisk@xxxxxxxxxxxxxxx:5060;transport=TLS SIP/2.0 Via: SIP/2.0/TLS 217.169.223.250:43122;rport;branch=z9hG4bKPja369cb16-e0a3-496d-b9b3-165fb63dd4dc;alias Max-Forwards: 70 From: <sips:yy867@217.169.223.250;ob>;tag=4228d6b1-083a-4c0b-bbf8-510987e62649 To: <sip:zz867@172.31.1.100>;tag=a2953819-10ab-4673-ad5f-ba31bf3d9d60 Call-ID: 6c9e38cb-3515-421a-ae00-40636f1912ac CSeq: 5160 BYE Warning: 381 localhost "SIPS Required" Content-Length: 0 SIP/2.0 200 OK Via: SIP/2.0/TLS 217.169.223.250:43122;rport=43122;received=217.169.223.250;branch=z9hG4bKPja369cb16-e0a3-496d-b9b3-165fb63dd4dc;alias Call-ID: 6c9e38cb-3515-421a-ae00-40636f1912ac From: <sips:yy867@217.169.223.250;ob>;tag=4228d6b1-083a-4c0b-bbf8-510987e62649 To: <sip:zz867@172.31.1.100>;tag=a2953819-10ab-4673-ad5f-ba31bf3d9d60 CSeq: 5160 BYE Server: ServerBeta Content-Length: 0 SIP/2.0 200 OK Via: SIP/2.0/TLS 217.169.223.250:43122;rport=43122;received=217.169.223.250;branch=z9hG4bKPj9f57318c-5319-4f07-a805-f9c4967d31ee;alias Call-ID: 6c9e38cb-3515-421a-ae00-40636f1912ac From: <sips:yy867@217.169.223.250;ob>;tag=4228d6b1-083a-4c0b-bbf8-510987e62649 To: <sip:zz867@172.31.1.100>;tag=a2953819-10ab-4673-ad5f-ba31bf3d9d60 CSeq: 5159 INVITE Session-Expires: 1800;refresher=uas Contact: <sip:asterisk@xxxxxxxxxxxxxxx:5060;transport=TLS> Allow: OPTIONS, SUBSCRIBE, NOTIFY, PUBLISH, INVITE, ACK, BYE, CANCEL, UPDATE, PRACK, MESSAGE, REGISTER, REFER Supported: 100rel, timer, replaces, norefersub Server: ServerBeta Content-Type: application/sdp Content-Length: 312 v=0 o=- 54900247 54900248 IN IP4 172.31.1.100 s=Asterisk c=IN IP4 xxx.xxx.xxx.xxx t=0 0 m=audio 6016 RTP/SAVP 3 96 a=crypto: *********************** a=rtpmap:3 GSM/8000 a=rtpmap:96 telephone-event/8000 a=fmtp:96 0-16 a=ptime:20 a=maxptime:150 a=inactive SIP/2.0 200 OK Via: SIP/2.0/TLS 217.169.223.250:43122;rport=43122;received=217.169.223.250;branch=z9hG4bKPj9f57318c-5319-4f07-a805-f9c4967d31ee;alias Call-ID: 6c9e38cb-3515-421a-ae00-40636f1912ac From: <sips:yy867@217.169.223.250;ob>;tag=4228d6b1-083a-4c0b-bbf8-510987e62649 To: <sip:zz867@172.31.1.100>;tag=a2953819-10ab-4673-ad5f-ba31bf3d9d60 CSeq: 5159 INVITE Session-Expires: 1800;refresher=uas Contact: <sip:asterisk@xxxxxxxxxxxxxxx:5060;transport=TLS> Allow: OPTIONS, SUBSCRIBE, NOTIFY, PUBLISH, INVITE, ACK, BYE, CANCEL, UPDATE, PRACK, MESSAGE, REGISTER, REFER Supported: 100rel, timer, replaces, norefersub Server: ServerBeta Content-Type: application/sdp Content-Length: 312 v=0 o=- 54900247 54900248 IN IP4 172.31.1.100 s=Asterisk c=IN IP4 xxx.xxx.xxx.xxx t=0 0 m=audio 6016 RTP/SAVP 3 96 a=crypto: *********************** a=rtpmap:3 GSM/8000 a=rtpmap:96 telephone-event/8000 a=fmtp:96 0-16 a=ptime:20 a=maxptime:150 a=inactive SIP/2.0 200 OK Via: SIP/2.0/TLS 217.169.223.250:43122;rport=43122;received=217.169.223.250;branch=z9hG4bKPj9f57318c-5319-4f07-a805-f9c4967d31ee;alias Call-ID: 6c9e38cb-3515-421a-ae00-40636f1912ac From: <sips:yy867@217.169.223.250;ob>;tag=4228d6b1-083a-4c0b-bbf8-510987e62649 To: <sip:zz867@172.31.1.100>;tag=a2953819-10ab-4673-ad5f-ba31bf3d9d60 CSeq: 5159 INVITE Session-Expires: 1800;refresher=uas Contact: <sip:asterisk@xxxxxxxxxxxxxxx:5060;transport=TLS> Allow: OPTIONS, SUBSCRIBE, NOTIFY, PUBLISH, INVITE, ACK, BYE, CANCEL, UPDATE, PRACK, MESSAGE, REGISTER, REFER Supported: 100rel, timer, replaces, norefersub Server: ServerBeta Content-Type: application/sdp Content-Length: 312 v=0 o=- 54900247 54900248 IN IP4 172.31.1.100 s=Asterisk c=IN IP4 xxx.xxx.xxx.xxx t=0 0 m=audio 6016 RTP/SAVP 3 96 a=crypto: *********************** a=rtpmap:3 GSM/8000 a=rtpmap:96 telephone-event/8000 a=fmtp:96 0-16 a=ptime:20 a=maxptime:150 a=inactive SIP/2.0 200 OK Via: SIP/2.0/TLS 217.169.223.250:43122;rport=43122;received=217.169.223.250;branch=z9hG4bKPj9f57318c-5319-4f07-a805-f9c4967d31ee;alias Call-ID: 6c9e38cb-3515-421a-ae00-40636f1912ac From: <sips:yy867@217.169.223.250;ob>;tag=4228d6b1-083a-4c0b-bbf8-510987e62649 To: <sip:zz867@172.31.1.100>;tag=a2953819-10ab-4673-ad5f-ba31bf3d9d60 CSeq: 5159 INVITE Session-Expires: 1800;refresher=uas Contact: <sip:asterisk@xxxxxxxxxxxxxxx:5060;transport=TLS> Allow: OPTIONS, SUBSCRIBE, NOTIFY, PUBLISH, INVITE, ACK, BYE, CANCEL, UPDATE, PRACK, MESSAGE, REGISTER, REFER Supported: 100rel, timer, replaces, norefersub Server: ServerBeta Content-Type: application/sdp Content-Length: 312 v=0 o=- 54900247 54900248 IN IP4 172.31.1.100 s=Asterisk c=IN IP4 xxx.xxx.xxx.xxx t=0 0 m=audio 6016 RTP/SAVP 3 96 a=crypto: *********************** a=rtpmap:3 GSM/8000 a=rtpmap:96 telephone-event/8000 a=fmtp:96 0-16 a=ptime:20 a=maxptime:150 a=inactive SIP/2.0 200 OK Via: SIP/2.0/TLS 217.169.223.250:43122;rport=43122;received=217.169.223.250;branch=z9hG4bKPj9f57318c-5319-4f07-a805-f9c4967d31ee;alias Call-ID: 6c9e38cb-3515-421a-ae00-40636f1912ac From: <sips:yy867@217.169.223.250;ob>;tag=4228d6b1-083a-4c0b-bbf8-510987e62649 To: <sip:zz867@172.31.1.100>;tag=a2953819-10ab-4673-ad5f-ba31bf3d9d60 CSeq: 5159 INVITE Session-Expires: 1800;refresher=uas Contact: <sip:asterisk@xxxxxxxxxxxxxxx:5060;transport=TLS> Allow: OPTIONS, SUBSCRIBE, NOTIFY, PUBLISH, INVITE, ACK, BYE, CANCEL, UPDATE, PRACK, MESSAGE, REGISTER, REFER Supported: 100rel, timer, replaces, norefersub Server: ServerBeta Content-Type: application/sdp Content-Length: 312 v=0 o=- 54900247 54900248 IN IP4 172.31.1.100 s=Asterisk c=IN IP4 xxx.xxx.xxx.xxx t=0 0 m=audio 6016 RTP/SAVP 3 96 a=crypto: *********************** a=rtpmap:3 GSM/8000 a=rtpmap:96 telephone-event/8000 a=fmtp:96 0-16 a=ptime:20 a=maxptime:150 a=inactive SIP/2.0 200 OK Via: SIP/2.0/TLS 217.169.223.250:43122;rport=43122;received=217.169.223.250;branch=z9hG4bKPj9f57318c-5319-4f07-a805-f9c4967d31ee;alias Call-ID: 6c9e38cb-3515-421a-ae00-40636f1912ac From: <sips:yy867@217.169.223.250;ob>;tag=4228d6b1-083a-4c0b-bbf8-510987e62649 To: <sip:zz867@172.31.1.100>;tag=a2953819-10ab-4673-ad5f-ba31bf3d9d60 CSeq: 5159 INVITE Session-Expires: 1800;refresher=uas Contact: <sip:asterisk@xxxxxxxxxxxxxxx:5060;transport=TLS> Allow: OPTIONS, SUBSCRIBE, NOTIFY, PUBLISH, INVITE, ACK, BYE, CANCEL, UPDATE, PRACK, MESSAGE, REGISTER, REFER Supported: 100rel, timer, replaces, norefersub Server: ServerBeta Content-Type: application/sdp Content-Length: 312 v=0 o=- 54900247 54900248 IN IP4 172.31.1.100 s=Asterisk c=IN IP4 xxx.xxx.xxx.xxx t=0 0 m=audio 6016 RTP/SAVP 3 96 a=crypto: *********************** a=rtpmap:3 GSM/8000 a=rtpmap:96 telephone-event/8000 a=fmtp:96 0-16 a=ptime:20 a=maxptime:150 a=inactive SIP/2.0 200 OK Via: SIP/2.0/TLS 217.169.223.250:43122;rport=43122;received=217.169.223.250;branch=z9hG4bKPj9f57318c-5319-4f07-a805-f9c4967d31ee;alias Call-ID: 6c9e38cb-3515-421a-ae00-40636f1912ac From: <sips:yy867@217.169.223.250;ob>;tag=4228d6b1-083a-4c0b-bbf8-510987e62649 To: <sip:zz867@172.31.1.100>;tag=a2953819-10ab-4673-ad5f-ba31bf3d9d60 CSeq: 5159 INVITE Session-Expires: 1800;refresher=uas Contact: <sip:asterisk@xxxxxxxxxxxxxxx:5060;transport=TLS> Allow: OPTIONS, SUBSCRIBE, NOTIFY, PUBLISH, INVITE, ACK, BYE, CANCEL, UPDATE, PRACK, MESSAGE, REGISTER, REFER Supported: 100rel, timer, replaces, norefersub Server: ServerBeta Content-Type: application/sdp Content-Length: 312 v=0 o=- 54900247 54900248 IN IP4 172.31.1.100 s=Asterisk c=IN IP4 xxx.xxx.xxx.xxx t=0 0 m=audio 6016 RTP/SAVP 3 96 a=crypto: *********************** a=rtpmap:3 GSM/8000 a=rtpmap:96 telephone-event/8000 a=fmtp:96 0-16 a=ptime:20 a=maxptime:150 a=inactive SIP/2.0 200 OK Via: SIP/2.0/TLS 217.169.223.250:43122;rport=43122;received=217.169.223.250;branch=z9hG4bKPj9f57318c-5319-4f07-a805-f9c4967d31ee;alias Call-ID: 6c9e38cb-3515-421a-ae00-40636f1912ac From: <sips:yy867@217.169.223.250;ob>;tag=4228d6b1-083a-4c0b-bbf8-510987e62649 To: <sip:zz867@172.31.1.100>;tag=a2953819-10ab-4673-ad5f-ba31bf3d9d60 CSeq: 5159 INVITE Session-Expires: 1800;refresher=uas Contact: <sip:asterisk@xxxxxxxxxxxxxxx:5060;transport=TLS> Allow: OPTIONS, SUBSCRIBE, NOTIFY, PUBLISH, INVITE, ACK, BYE, CANCEL, UPDATE, PRACK, MESSAGE, REGISTER, REFER Supported: 100rel, timer, replaces, norefersub Server: ServerBeta Content-Type: application/sdp Content-Length: 312 v=0 o=- 54900247 54900248 IN IP4 172.31.1.100 s=Asterisk c=IN IP4 xxx.xxx.xxx.xxx t=0 0 m=audio 6016 RTP/SAVP 3 96 a=crypto: *********************** a=rtpmap:3 GSM/8000 a=rtpmap:96 telephone-event/8000 a=fmtp:96 0-16 a=ptime:20 a=maxptime:150 a=inactive SIP/2.0 200 OK Via: SIP/2.0/TLS 217.169.223.250:43122;rport=43122;received=217.169.223.250;branch=z9hG4bKPj9f57318c-5319-4f07-a805-f9c4967d31ee;alias Call-ID: 6c9e38cb-3515-421a-ae00-40636f1912ac From: <sips:yy867@217.169.223.250;ob>;tag=4228d6b1-083a-4c0b-bbf8-510987e62649 To: <sip:zz867@172.31.1.100>;tag=a2953819-10ab-4673-ad5f-ba31bf3d9d60 CSeq: 5159 INVITE Session-Expires: 1800;refresher=uas Contact: <sip:asterisk@xxxxxxxxxxxxxxx:5060;transport=TLS> Allow: OPTIONS, SUBSCRIBE, NOTIFY, PUBLISH, INVITE, ACK, BYE, CANCEL, UPDATE, PRACK, MESSAGE, REGISTER, REFER Supported: 100rel, timer, replaces, norefersub Server: ServerBeta Content-Type: application/sdp Content-Length: 312 v=0 o=- 54900247 54900248 IN IP4 172.31.1.100 s=Asterisk c=IN IP4 xxx.xxx.xxx.xxx t=0 0 m=audio 6016 RTP/SAVP 3 96 a=crypto: *********************** a=rtpmap:3 GSM/8000 a=rtpmap:96 telephone-event/8000 a=fmtp:96 0-16 a=ptime:20 a=maxptime:150 a=inactive SIP/2.0 200 OK Via: SIP/2.0/TLS 217.169.223.250:43122;rport=43122;received=217.169.223.250;branch=z9hG4bKPj9f57318c-5319-4f07-a805-f9c4967d31ee;alias Call-ID: 6c9e38cb-3515-421a-ae00-40636f1912ac From: <sips:yy867@217.169.223.250;ob>;tag=4228d6b1-083a-4c0b-bbf8-510987e62649 To: <sip:zz867@172.31.1.100>;tag=a2953819-10ab-4673-ad5f-ba31bf3d9d60 CSeq: 5159 INVITE Session-Expires: 1800;refresher=uas Contact: <sip:asterisk@xxxxxxxxxxxxxxx:5060;transport=TLS> Allow: OPTIONS, SUBSCRIBE, NOTIFY, PUBLISH, INVITE, ACK, BYE, CANCEL, UPDATE, PRACK, MESSAGE, REGISTER, REFER Supported: 100rel, timer, replaces, norefersub Server: ServerBeta Content-Type: application/sdp Content-Length: 312 v=0 o=- 54900247 54900248 IN IP4 172.31.1.100 s=Asterisk c=IN IP4 xxx.xxx.xxx.xxx t=0 0 m=audio 6016 RTP/SAVP 3 96 a=crypto: *********************** a=rtpmap:3 GSM/8000 a=rtpmap:96 telephone-event/8000 a=fmtp:96 0-16 a=ptime:20 a=maxptime:150 a=inactive
INVITE sips:yy867@xxxxxxxxxxxxxxx:5060 SIP/2.0 Via: SIP/2.0/TLS 217.169.223.250:50986;rport;branch=z9hG4bKPj230fd747-f9b8-4c46-8d54-3b8aa2ae089d;alias Max-Forwards: 70 From: sips:zz867@xxxxxxxxxxxxxxx;tag=382ff707-70d7-43e5-ad8c-ca3319e3d124 To: sips:yy867@xxxxxxxxxxxxxxx Contact: <sips:zz867@217.169.223.250:50986;transport=TLS;ob> Call-ID: a62d94a3-17ba-4fd5-acb7-c3e6e9514f5a CSeq: 12747 INVITE Allow: PRACK, INVITE, ACK, BYE, CANCEL, UPDATE, INFO, SUBSCRIBE, NOTIFY, REFER, MESSAGE, OPTIONS Supported: replaces, 100rel, timer, norefersub Session-Expires: 1800 Min-SE: 90 Content-Type: application/sdp Content-Length: 650 v=0 o=- 3717323230 3717323230 IN IP4 192.168.15.207 s=pjmedia b=AS:30 t=0 0 m=audio 4000 RTP/SAVP 3 96 c=IN IP4 192.168.15.207 b=TIAS:13200 a=rtcp:4001 IN IP4 192.168.15.207 a=sendrecv a=rtpmap:3 GSM/8000 a=rtpmap:96 telephone-event/8000 a=fmtp:96 0-16 a=crypto: *********************** a=crypto: *********************** a=crypto: *********************** a=crypto: *********************** SIP/2.0 401 Unauthorized Via: SIP/2.0/TLS 217.169.223.250:50986;rport=50986;received=217.169.223.250;branch=z9hG4bKPj230fd747-f9b8-4c46-8d54-3b8aa2ae089d;alias Call-ID: a62d94a3-17ba-4fd5-acb7-c3e6e9514f5a From: <sips:zz867@xxxxxxxxxxxxxxx>;tag=382ff707-70d7-43e5-ad8c-ca3319e3d124 To: <sips:yy867@xxxxxxxxxxxxxxx>;tag=z9hG4bKPj230fd747-f9b8-4c46-8d54-3b8aa2ae089d CSeq: 12747 INVITE WWW-Authenticate: *********************** Server: ServerBeta Content-Length: 0 ACK sips:yy867@xxxxxxxxxxxxxxx:5060 SIP/2.0 Via: SIP/2.0/TLS 217.169.223.250:50986;rport;branch=z9hG4bKPj230fd747-f9b8-4c46-8d54-3b8aa2ae089d;alias Max-Forwards: 70 From: sips:zz867@xxxxxxxxxxxxxxx;tag=382ff707-70d7-43e5-ad8c-ca3319e3d124 To: sips:yy867@xxxxxxxxxxxxxxx;tag=z9hG4bKPj230fd747-f9b8-4c46-8d54-3b8aa2ae089d Call-ID: a62d94a3-17ba-4fd5-acb7-c3e6e9514f5a CSeq: 12747 ACK Content-Length: 0 INVITE sips:yy867@xxxxxxxxxxxxxxx:5060 SIP/2.0 Via: SIP/2.0/TLS 217.169.223.250:50986;rport;branch=z9hG4bKPjfc4612c5-1684-465d-bc4e-3efe626e3f31;alias Max-Forwards: 70 From: sips:zz867@xxxxxxxxxxxxxxx;tag=382ff707-70d7-43e5-ad8c-ca3319e3d124 To: sips:yy867@xxxxxxxxxxxxxxx Contact: <sips:zz867@217.169.223.250:50986;transport=TLS;ob> Call-ID: a62d94a3-17ba-4fd5-acb7-c3e6e9514f5a CSeq: 12748 INVITE Allow: PRACK, INVITE, ACK, BYE, CANCEL, UPDATE, INFO, SUBSCRIBE, NOTIFY, REFER, MESSAGE, OPTIONS Supported: replaces, 100rel, timer, norefersub Session-Expires: 1800 Min-SE: 90 Authorization: *********************** Content-Type: application/sdp Content-Length: 650 v=0 o=- 3717323230 3717323230 IN IP4 192.168.15.207 s=pjmedia b=AS:30 t=0 0 m=audio 4000 RTP/SAVP 3 96 c=IN IP4 192.168.15.207 b=TIAS:13200 a=rtcp:4001 IN IP4 192.168.15.207 a=sendrecv a=rtpmap:3 GSM/8000 a=rtpmap:96 telephone-event/8000 a=fmtp:96 0-16 a=crypto: *********************** a=crypto: *********************** a=crypto: *********************** a=crypto: *********************** SIP/2.0 100 Trying Via: SIP/2.0/TLS 217.169.223.250:50986;rport=50986;received=217.169.223.250;branch=z9hG4bKPjfc4612c5-1684-465d-bc4e-3efe626e3f31;alias Call-ID: a62d94a3-17ba-4fd5-acb7-c3e6e9514f5a From: <sips:zz867@xxxxxxxxxxxxxxx>;tag=382ff707-70d7-43e5-ad8c-ca3319e3d124 To: <sips:yy867@xxxxxxxxxxxxxxx> CSeq: 12748 INVITE Server: ServerBeta Content-Length: 0 SIP/2.0 180 Ringing Via: SIP/2.0/TLS 217.169.223.250:50986;rport=50986;received=217.169.223.250;branch=z9hG4bKPjfc4612c5-1684-465d-bc4e-3efe626e3f31;alias Call-ID: a62d94a3-17ba-4fd5-acb7-c3e6e9514f5a From: <sips:zz867@xxxxxxxxxxxxxxx>;tag=382ff707-70d7-43e5-ad8c-ca3319e3d124 To: <sips:yy867@xxxxxxxxxxxxxxx>;tag=be210663-0f2b-4f50-997f-4c5fcb9fc750 CSeq: 12748 INVITE Server: ServerBeta Contact: <sips:xxx.xxx.xxx.xxx:5060;transport=TLS> Allow: OPTIONS, SUBSCRIBE, NOTIFY, PUBLISH, INVITE, ACK, BYE, CANCEL, UPDATE, MESSAGE, REGISTER, REFER Content-Length: 0 SIP/2.0 200 OK Via: SIP/2.0/TLS 217.169.223.250:50986;rport=50986;received=217.169.223.250;branch=z9hG4bKPjfc4612c5-1684-465d-bc4e-3efe626e3f31;alias Call-ID: a62d94a3-17ba-4fd5-acb7-c3e6e9514f5a From: <sips:zz867@xxxxxxxxxxxxxxx>;tag=382ff707-70d7-43e5-ad8c-ca3319e3d124 To: <sips:yy867@xxxxxxxxxxxxxxx>;tag=be210663-0f2b-4f50-997f-4c5fcb9fc750 CSeq: 12748 INVITE Server: ServerBeta Allow: OPTIONS, SUBSCRIBE, NOTIFY, PUBLISH, INVITE, ACK, BYE, CANCEL, UPDATE, MESSAGE, REGISTER, REFER Contact: <sips:xxx.xxx.xxx.xxx:5060;transport=TLS> Supported: timer, replaces, norefersub Session-Expires: 1800;refresher=uac Require: timer Content-Type: application/sdp Content-Length: 316 v=0 o=- 3717323230 3717323232 IN IP4 172.31.1.100 s=Asterisk c=IN IP4 xxx.xxx.xxx.xxx t=0 0 m=audio 6026 RTP/SAVP 3 96 a=crypto: *********************** a=rtpmap:3 GSM/8000 a=rtpmap:96 telephone-event/8000 a=fmtp:96 0-16 a=ptime:20 a=maxptime:300 a=sendrecv ACK sips:xxx.xxx.xxx.xxx:5060;transport=TLS SIP/2.0 Via: SIP/2.0/TLS 217.169.223.250:50986;rport;branch=z9hG4bKPjadfe3536-0f6c-4a70-8ed4-dc665d4ceaf0;alias Max-Forwards: 70 From: sips:zz867@xxxxxxxxxxxxxxx;tag=382ff707-70d7-43e5-ad8c-ca3319e3d124 To: sips:yy867@xxxxxxxxxxxxxxx;tag=be210663-0f2b-4f50-997f-4c5fcb9fc750 Call-ID: a62d94a3-17ba-4fd5-acb7-c3e6e9514f5a CSeq: 12748 ACK Content-Length: 0 BYE sips:zz867@217.169.223.250:50986;transport=TLS;ob SIP/2.0 Via: SIP/2.0/TLS xxx.xxx.xxx.xxx:5060;rport;branch=z9hG4bKPjd124dfc8-2048-46d0-8741-9878869a129f;alias From: <sips:yy867@xxxxxxxxxxxxxxx>;tag=be210663-0f2b-4f50-997f-4c5fcb9fc750 To: <sips:zz867@xxxxxxxxxxxxxxx>;tag=382ff707-70d7-43e5-ad8c-ca3319e3d124 Call-ID: a62d94a3-17ba-4fd5-acb7-c3e6e9514f5a CSeq: 1217 BYE Reason: Q.850;cause=16 Max-Forwards: 70 User-Agent: ServerBeta Content-Length: 0 SIP/2.0 200 OK Via: SIP/2.0/TLS xxx.xxx.xxx.xxx:5060;rport=5060;received=xxx.xxx.xxx.xxx;branch=z9hG4bKPjd124dfc8-2048-46d0-8741-9878869a129f;alias Call-ID: a62d94a3-17ba-4fd5-acb7-c3e6e9514f5a From: <sips:yy867@xxxxxxxxxxxxxxx>;tag=be210663-0f2b-4f50-997f-4c5fcb9fc750 To: <sips:zz867@xxxxxxxxxxxxxxx>;tag=382ff707-70d7-43e5-ad8c-ca3319e3d124 CSeq: 1217 BYE Content-Length: 0
_______________________________________________ Visit our blog: http://blog.pjsip.org pjsip mailing list pjsip@xxxxxxxxxxxxxxx http://lists.pjsip.org/mailman/listinfo/pjsip_lists.pjsip.org