Hi guys:
Does anybody knows if there is a problem using SER 0.9.2, Mediaproxy 1.3.1 and Vovida B2BUA Vocal 1.5.0?
I'm having no audio when I try to place a call even if the call is established.
I'm attaching my ser.cfg and a ngrep debug for reference The only weird thing that I can notice is that the B2BUA is using the localhost IP as the Via Address even when the invites was sent to the Public IP address.
Did I make somtehing wrong at the ser.cfg file?
Regards
Alberto Cruz
# # $Id: ser.cfg,v 1.25.2.1 2005/02/18 14:30:44 andrei Exp $ # # simple quick-start config script #
# ----------- global configuration parameters ------------------------
debug=5 # debug level (cmd line: -ddddd) fork=yes log_stderror=no
/* Uncomment these lines to enter debugging mode fork=no log_stderror=yes # (cmd line: -E) debug=7 */
check_via=no # (cmd. line: -v) dns=no # (cmd. line: -r) rev_dns=no # (cmd. line: -R) listen=200.94.75.6 port=5060 alias=200.94.75.6 alias=sipsrv.conecta-te.com fifo_mode=0666 fifo="/tmp/ser_fifo" fifo_db_url="mysql://ser:heslo@localhost/ser" # ------------------ module loading ----------------------------------
# Uncomment this if you want to use SQL database loadmodule "/usr/local/lib/ser/modules/mysql.so" loadmodule "/usr/local/lib/ser/modules/sl.so" loadmodule "/usr/local/lib/ser/modules/tm.so" loadmodule "/usr/local/lib/ser/modules/rr.so" loadmodule "/usr/local/lib/ser/modules/maxfwd.so" loadmodule "/usr/local/lib/ser/modules/usrloc.so" loadmodule "/usr/local/lib/ser/modules/registrar.so" loadmodule "/usr/local/lib/ser/modules/auth.so" loadmodule "/usr/local/lib/ser/modules/auth_radius.so" loadmodule "/usr/local/lib/ser/modules/auth_db.so" loadmodule "/usr/local/lib/ser/modules/uri.so" loadmodule "/usr/local/lib/ser/modules/uri_db.so" loadmodule "/usr/local/lib/ser/modules/uri_radius.so" loadmodule "/usr/local/lib/ser/modules/group.so" loadmodule "/usr/local/lib/ser/modules/group_radius.so" loadmodule "/usr/local/lib/ser/modules/mediaproxy.so" loadmodule "/usr/local/lib/ser/modules/nathelper.so" loadmodule "/usr/local/lib/ser/modules/textops.so" loadmodule "/usr/local/lib/ser/modules/acc.so" loadmodule "/usr/local/lib/ser/modules/domain.so" # ----------------- setting module-specific parameters ---------------
# -- usrloc params -- #modparam("usrloc", "db_mode", 0) # Uncomment this if you want to use SQL database # for persistent storage and comment the previous line modparam("usrloc", "db_mode", 2) modparam("domain", "db_mode", 1) modparam("usrloc|domain", "db_url", "mysql://ser:heslo@localhost/ser") #modparam("group", "use_domain", 0)
# -- auth params -- # Uncomment if you are using auth module #modparam("auth_db", "calculate_ha1", yes) # # If you set "calculate_ha1" parameter to yes (which true in this config), # uncomment also the following parameter) #modparam("auth_db", "password_column", "password")
### Radius Configuration ### #modparam("auth_radius", "radius_config", "/usr/local/etc/radiusclient/radiusclient.conf") #modparam("auth_radius", "service_type", 15) #modparam("group_radius", "radius_config", "/usr/local/etc/radiusclient/radiusclient.conf") #modparam("group_radius", "use_domain", 0)
# -- nathelper params -- modparam("nathelper", "rtpproxy_disable", 1) modparam("nathelper", "natping_interval", 0) # -- mediprox params -- modparam("mediaproxy", "natping_interval", 30) modparam("mediaproxy", "mediaproxy_socket", "/var/run/mediaproxy.sock") modparam("mediaproxy", "sip_asymmetrics", "/usr/local/etc/ser/sip-clients") modparam("mediaproxy", "rtp_asymmetrics", "/usr/local/etc/ser/rtp-clients") # -- rr params -- # add value to ;lr param to make some broken UAs happy modparam("rr", "enable_full_lr", 1) modparam("registrar", "nat_flag", 6)
# ------------------------- request routing logic ------------------- # main routing logic
route{ #---------------------------------------------- # initial sanity checks -- messages with # max_forwards==0, or excessively long requests #---------------------------------------------- if (!mf_process_maxfwd_header("10")) { if (method!="ACK") { sl_send_reply("483","Too Many Hops"); }; break; }; if (msg:len > max_len ) { if (method!="ACK") { sl_send_reply("513", "Message too big"); }; break; };
#---------------------------------------------------- # we record-route all messages -- to make sure that # subsequent messages will go through our proxy; that's # particularly good if upstream and downstream entities # use different transport protocol #---------------------------------------------------- if (method=="INVITE" && client_nat_test("3")){ record_route_preset("200.94.75.6:5060;nat=yes"); }else if (!method=="REGISTER"){ record_route(); };
#--------------------------------------------- # we tear down the call before entering to loose route #--------------------------------------------- if (method=="BYE" || method=="CANCEL") { end_media_session(); append_hf("P-hint: finishing call\r\n"); };
#------------------------------------------------- # subsequent messages withing a dialog should take the # path determined by record-routing #------------------------------------------------- if (loose_route()) { append_hf("P-hint: rr-enforced\r\n"); # The following lines are added due media proxy if (has_totag() && (method=="INVITE" || method=="ACK")) { if (client_nat_test("3") && !search("^Route:.*;nat=yes")) { # Mark as NAT'ed setflag(6); use_media_proxy(); }; }; # end media session for BYE and CANCEL is done above # before entering the loose route. no need to call it here route(1); break; };
#---------------------------------------- # processing the most common sip messages # for all the calls #---------------------------------------- if (!uri==myself) { # mark routing logic in request append_hf("P-hint: outbound\r\n"); route(5); route(1); break; }; if (uri==myself) { #--------------------------------- #all the calls from the sip uacs should #be handled by the b2bua for authorization #and accounting #--------------------------------- if (!(src_ip==200.94.75.6 || src_ip==200.94.75.1)and(method=="INVITE" || method=="BYE" || method=="CANCEL")) { log("Hey this request is NOT from B2BUA\n"); log("Forwarding to B2BUA\n"); if (client_nat_test("3")) { setflag(7); force_rport(); fix_nated_contact(); }; forward(200.94.75.6,5065); break; };
if (method=="ACK") { route(6); break; } else if (method=="CANCEL" || method=="INVITE") { route(3); break; } else if (method=="REGISTER") { route(2); break; }; route(4); if (!lookup("location")) { sl_send_reply("404", "User Not Found"); break; }; }; route(1); }
route[1] { #------------------------------- # Default SIP message handler # forward to current uri now; use stateful forwarding; that # works reliably even if we forward from TCP to UDP #------------------------------ t_on_reply("1"); if (!t_relay()) { if (method=="INVITE" || method=="ACK") { end_media_session(); append_hf("P-hint: finishing call no-relay\r\n"); }; sl_reply_error(); }; }
route[2] { #--------------------------- # "REGISTER" message handler #--------------------------- sl_send_reply("100", "Trying"); if (!search("^Contact:\ +*") && client_nat_test("7")) { setflag(6); fix_nated_register(); force_rport(); }; if (is_from_local() || uri==myself) { if (!radius_www_authorize("")) { www_challenge("", "0"); break; } else if (!check_to()){ sl_send_reply("403", "Username!=To not allowed"); break; }; if (!save("location")) { sl_reply_error(); }; } else { append_hf("P-hint: outbound alias\r\n"); sl_send_reply("403", "This domain is not served here"); }; }
route[3] { #-------------------------- #"CANCEL" and "INVITE" message handler #-------------------------- if (client_nat_test("3")) { setflag(7); force_rport(); fix_nated_contact(); }; if (method=="INVITE") { if (!(is_from_local() || uri==myself || is_uri_host_local())) { sl_send_reply("403", "Relaying is forbidden"); break; }; } else if (method=="CANCEL") { route(1); break; }; route(4); if (!lookup("location")) { if ((uri=~"sip:01[1-9][0-9]+@.*") || (uri=~"sip:00[1-9][0-9]+@.*")) { rewritehost("200.94.75.1"); }; } else { sl_send_reply("404", "User not found"); break; }; route(5); route(1); }
route[4] { #--------------- #we need to check for the alias #--------------- lookup("aliases"); if (uri!=myself) { route(5); route(1); break; }; }
route[5] { #------------------------------------- #RTP Proxy handler #------------------------------------- if (isflagset(6) || isflagset(7)) { use_media_proxy(); append_hf("P-hint: are you nated?\r\n"); }; }
route[6] { #-------------------------- #ACK handler #-------------------------- route(4); lookup("location"); route(1); }
failure_route[1] { end_media_session(); append_hf("P-hint: finishing call on failure\r\n"); }
onreply_route[1] { if ((isflagset(6) || isflagset(7)) && (status=~"(180)|(183)|(2[0-9][0-9])")) { if (client_nat_test("1")) { fix_nated_contact(); }; if (!search("^Content-Length:\ +0")) { use_media_proxy(); append_hf("P-hint: use nat for call\r\n"); }; }; }
interface: any filter: ip and ( port 5060 ) match: sip ##### U 2005/06/22 03:33:01.181845 200.67.33.247:61973 -> 200.94.75.6:5060 INVITE sip:018183324166@sipsrv.conecta-te.com SIP/2.0. Via: SIP/2.0/UDP 172.31.253.127:5060;branch=z9hG4bK-a8bb0d6a. From: 8183651723 sip:8183651723@sipsrv.conecta-te.com;tag=cc6b17aa14d1536ao0. To: sip:018183324166@sipsrv.conecta-te.com. Call-ID: f4ac9caa-c775926a@172.31.253.127. CSeq: 101 INVITE. Max-Forwards: 70. Contact: 8183651723 sip:8183651723@172.31.253.127:5060. Expires: 240. User-Agent: Linksys/PAP2-2.0.12(LS). Content-Length: 314. Allow: ACK, BYE, CANCEL, INFO, INVITE, NOTIFY, OPTIONS, REFER. Supported: x-sipura. Content-Type: application/sdp. . v=0. o=- 2188429 2188429 IN IP4 172.31.253.127. s=-. c=IN IP4 172.31.253.127. t=0 0. m=audio 16470 RTP/AVP 18 0 4 8 100 101. a=rtpmap:18 G729a/8000. a=rtpmap:0 PCMU/8000. a=rtpmap:4 G723/8000. a=rtpmap:8 PCMA/8000. a=rtpmap:100 NSE/8000. a=rtpmap:101 telephone-event/8000. a=fmtp:101 0-15. a=ptime:30. a=sendrecv.
# U 2005/06/22 03:33:01.184060 200.94.75.6:5060 -> 200.94.75.6:5065 INVITE sip:018183324166@sipsrv.conecta-te.com SIP/2.0. Record-Route: sip:018183324166@200.94.75.6:5060;nat=yes;ftag=cc6b17aa14d1536ao0;lr=on. Via: SIP/2.0/UDP 200.94.75.6;branch=0. Via: SIP/2.0/UDP 172.31.253.127:5060;rport=61973;received=200.67.33.247;branch=z9hG4bK-a8bb0d6a. From: 8183651723 sip:8183651723@sipsrv.conecta-te.com;tag=cc6b17aa14d1536ao0. To: sip:018183324166@sipsrv.conecta-te.com. Call-ID: f4ac9caa-c775926a@172.31.253.127. CSeq: 101 INVITE. Max-Forwards: 16. Contact: 8183651723 sip:8183651723@200.67.33.247:61973. Expires: 240. User-Agent: Linksys/PAP2-2.0.12(LS). Content-Length: 314. Allow: ACK, BYE, CANCEL, INFO, INVITE, NOTIFY, OPTIONS, REFER. Supported: x-sipura. Content-Type: application/sdp. . v=0. o=- 2188429 2188429 IN IP4 172.31.253.127. s=-. c=IN IP4 172.31.253.127. t=0 0. m=audio 16470 RTP/AVP 18 0 4 8 100 101. a=rtpmap:18 G729a/8000. a=rtpmap:0 PCMU/8000. a=rtpmap:4 G723/8000. a=rtpmap:8 PCMA/8000. a=rtpmap:100 NSE/8000. a=rtpmap:101 telephone-event/8000. a=fmtp:101 0-15. a=ptime:30. a=sendrecv.
# U 2005/06/22 03:33:01.195680 200.94.75.6:5065 -> 200.94.75.6:5060 INVITE sip:018183324166@200.94.75.6:5060 SIP/2.0. Via: SIP/2.0/UDP 127.0.0.1:5065. To: sip:018183324166@sipsrv.conecta-te.com. From: 8183651723 sip:8183651723@sipsrv.conecta-te.com;tag=cc6b17aa14d1536ao0. Call-ID: 7493ff1a89cef56a809686afb229e4ac@127.0.0.1. CSeq: 101 INVITE. Max-Forwards: 16. Expires: 240. Contact: sip:8183651723@127.0.0.1:5065. Allow: ACK,BYE,CANCEL,INFO,INVITE,NOTIFY,OPTIONS,REFER. Supported: x-sipura. User-Agent: Linksys/PAP2-2.0.12(LS). Content-Type: application/sdp. Content-Length: 314. . v=0. o=- 2188429 2188429 IN IP4 172.31.253.127. s=-. c=IN IP4 172.31.253.127. t=0 0. m=audio 16470 RTP/AVP 18 0 4 8 100 101. a=rtpmap:18 G729a/8000. a=rtpmap:0 PCMU/8000. a=rtpmap:4 G723/8000. a=rtpmap:8 PCMA/8000. a=rtpmap:100 NSE/8000. a=rtpmap:101 telephone-event/8000. a=sendrecv. a=fmtp:101 0-15. a=ptime:30.
# U 2005/06/22 03:33:01.201069 200.94.75.6:5060 -> 200.94.75.6:5065 SIP/2.0 100 trying -- your call is important to us. Via: SIP/2.0/UDP 127.0.0.1:5065;rport=5065;received=200.94.75.6. To: sip:018183324166@sipsrv.conecta-te.com. From: 8183651723 sip:8183651723@sipsrv.conecta-te.com;tag=cc6b17aa14d1536ao0. Call-ID: 7493ff1a89cef56a809686afb229e4ac@127.0.0.1. CSeq: 101 INVITE. Server: Sip EXpress router (0.9.2 (i386/linux)). Content-Length: 0. Warning: 392 200.94.75.6:5060 "Noisy feedback tells: pid=22827 req_src_ip=200.94.75.6 req_src_port=5065 in_uri=sip:018183324166@200.94.75.6:5060 out_uri=sip:018183324166@200.94.75.1:5060 via_cnt==1". .
# U 2005/06/22 03:33:01.201175 200.94.75.6:5060 -> 200.94.75.1:5060 INVITE sip:018183324166@200.94.75.1:5060 SIP/2.0. Record-Route: sip:018183324166@200.94.75.6:5060;nat=yes;ftag=cc6b17aa14d1536ao0;lr=on. Via: SIP/2.0/UDP 200.94.75.6;branch=z9hG4bK6512.acf311c7.0. Via: SIP/2.0/UDP 127.0.0.1:5065;rport=5065;received=200.94.75.6. To: sip:018183324166@sipsrv.conecta-te.com. From: 8183651723 sip:8183651723@sipsrv.conecta-te.com;tag=cc6b17aa14d1536ao0. Call-ID: 7493ff1a89cef56a809686afb229e4ac@127.0.0.1. CSeq: 101 INVITE. Max-Forwards: 15. Expires: 240. Contact: sip:8183651723@200.94.75.6:5065. Allow: ACK,BYE,CANCEL,INFO,INVITE,NOTIFY,OPTIONS,REFER. Supported: x-sipura. User-Agent: Linksys/PAP2-2.0.12(LS). Content-Type: application/sdp. Content-Length: 311. P-hint: are you nated?. . v=0. o=- 2188429 2188429 IN IP4 172.31.253.127. s=-. c=IN IP4 200.94.75.6. t=0 0. m=audio 35024 RTP/AVP 18 0 4 8 100 101. a=rtpmap:18 G729a/8000. a=rtpmap:0 PCMU/8000. a=rtpmap:4 G723/8000. a=rtpmap:8 PCMA/8000. a=rtpmap:100 NSE/8000. a=rtpmap:101 telephone-event/8000. a=sendrecv. a=fmtp:101 0-15. a=ptime:30.
# U 2005/06/22 03:33:01.216824 200.94.75.1:5060 -> 200.94.75.6:5060 SIP/2.0 100 Trying. Via: SIP/2.0/UDP 200.94.75.6;branch=z9hG4bK6512.acf311c7.0,SIP/2.0/UDP 127.0.0.1:5065;rport=5065;received=200.94.75.6. From: 8183651723 sip:8183651723@sipsrv.conecta-te.com;tag=cc6b17aa14d1536ao0. To: sip:018183324166@sipsrv.conecta-te.com;tag=1B2C9420-70E. Date: Wed, 22 Jun 2005 08:33:22 GMT. Call-ID: 7493ff1a89cef56a809686afb229e4ac@127.0.0.1. Server: Cisco-SIPGateway/IOS-12.x. CSeq: 101 INVITE. Allow-Events: telephone-event. Content-Length: 0. .
# U 2005/06/22 03:33:06.105293 200.94.75.1:5060 -> 200.94.75.6:5060 SIP/2.0 183 Session Progress. Via: SIP/2.0/UDP 200.94.75.6;branch=z9hG4bK6512.acf311c7.0,SIP/2.0/UDP 127.0.0.1:5065;rport=5065;received=200.94.75.6. From: 8183651723 sip:8183651723@sipsrv.conecta-te.com;tag=cc6b17aa14d1536ao0. To: sip:018183324166@sipsrv.conecta-te.com;tag=1B2C9420-70E. Date: Wed, 22 Jun 2005 08:33:22 GMT. Call-ID: 7493ff1a89cef56a809686afb229e4ac@127.0.0.1. Server: Cisco-SIPGateway/IOS-12.x. CSeq: 101 INVITE. Allow-Events: telephone-event. Content-Type: application/sdp. Content-Disposition: session;handling=required. Content-Length: 210. . v=0. o=CiscoSystemsSIP-GW-UserAgent 133 5493 IN IP4 200.94.75.1. s=SIP Call. c=IN IP4 200.94.75.1. t=0 0. m=audio 18168 RTP/AVP 18. c=IN IP4 200.94.75.1. a=rtpmap:18 G729/8000. a=fmtp:18 annexb=no. a=ptime:20.
# U 2005/06/22 03:33:06.108419 200.94.75.6:5060 -> 200.94.75.6:5065 SIP/2.0 183 Session Progress. Via: SIP/2.0/UDP 127.0.0.1:5065;rport=5065;received=200.94.75.6. From: 8183651723 sip:8183651723@sipsrv.conecta-te.com;tag=cc6b17aa14d1536ao0. To: sip:018183324166@sipsrv.conecta-te.com;tag=1B2C9420-70E. Date: Wed, 22 Jun 2005 08:33:22 GMT. Call-ID: 7493ff1a89cef56a809686afb229e4ac@127.0.0.1. Server: Cisco-SIPGateway/IOS-12.x. CSeq: 101 INVITE. Allow-Events: telephone-event. Content-Type: application/sdp. Content-Disposition: session;handling=required. Content-Length: 210. P-hint: use nat for call. . v=0. o=CiscoSystemsSIP-GW-UserAgent 133 5493 IN IP4 200.94.75.1. s=SIP Call. c=IN IP4 200.94.75.6. t=0 0. m=audio 35024 RTP/AVP 18. c=IN IP4 200.94.75.6. a=rtpmap:18 G729/8000. a=fmtp:18 annexb=no. a=ptime:20.
# U 2005/06/22 03:33:11.985671 200.94.75.1:5060 -> 200.94.75.6:5060 SIP/2.0 200 OK. Via: SIP/2.0/UDP 200.94.75.6;branch=z9hG4bK6512.acf311c7.0,SIP/2.0/UDP 127.0.0.1:5065;rport=5065;received=200.94.75.6. From: 8183651723 sip:8183651723@sipsrv.conecta-te.com;tag=cc6b17aa14d1536ao0. To: sip:018183324166@sipsrv.conecta-te.com;tag=1B2C9420-70E. Date: Wed, 22 Jun 2005 08:33:22 GMT. Call-ID: 7493ff1a89cef56a809686afb229e4ac@127.0.0.1. Server: Cisco-SIPGateway/IOS-12.x. CSeq: 101 INVITE. Allow: INVITE, OPTIONS, BYE, CANCEL, ACK, PRACK, COMET, REFER, SUBSCRIBE, NOTIFY, INFO. Allow-Events: telephone-event. Contact: sip:018183324166@200.94.75.1:5060. Record-Route: sip:018183324166@200.94.75.6:5060;nat=yes;ftag=cc6b17aa14d1536ao0;lr=on. Content-Type: application/sdp. Content-Length: 210. . v=0. o=CiscoSystemsSIP-GW-UserAgent 133 5493 IN IP4 200.94.75.1. s=SIP Call. c=IN IP4 200.94.75.1. t=0 0. m=audio 18168 RTP/AVP 18. c=IN IP4 200.94.75.1. a=rtpmap:18 G729/8000. a=fmtp:18 annexb=no. a=ptime:20.
# U 2005/06/22 03:33:11.988704 200.94.75.6:5060 -> 200.94.75.6:5065 SIP/2.0 200 OK. Via: SIP/2.0/UDP 127.0.0.1:5065;rport=5065;received=200.94.75.6. From: 8183651723 sip:8183651723@sipsrv.conecta-te.com;tag=cc6b17aa14d1536ao0. To: sip:018183324166@sipsrv.conecta-te.com;tag=1B2C9420-70E. Date: Wed, 22 Jun 2005 08:33:22 GMT. Call-ID: 7493ff1a89cef56a809686afb229e4ac@127.0.0.1. Server: Cisco-SIPGateway/IOS-12.x. CSeq: 101 INVITE. Allow: INVITE, OPTIONS, BYE, CANCEL, ACK, PRACK, COMET, REFER, SUBSCRIBE, NOTIFY, INFO. Allow-Events: telephone-event. Contact: sip:018183324166@200.94.75.1:5060. Record-Route: sip:018183324166@200.94.75.6:5060;nat=yes;ftag=cc6b17aa14d1536ao0;lr=on. Content-Type: application/sdp. Content-Length: 210. P-hint: use nat for call. . v=0. o=CiscoSystemsSIP-GW-UserAgent 133 5493 IN IP4 200.94.75.1. s=SIP Call. c=IN IP4 200.94.75.6. t=0 0. m=audio 35024 RTP/AVP 18. c=IN IP4 200.94.75.6. a=rtpmap:18 G729/8000. a=fmtp:18 annexb=no. a=ptime:20.
# U 2005/06/22 03:33:12.082614 200.67.33.247:61973 -> 200.94.75.6:5060 ACK sip:018183324166@200.94.75.6:5060 SIP/2.0. Via: SIP/2.0/UDP 172.31.253.127:5060;branch=z9hG4bK-c5ebdced. From: 8183651723 sip:8183651723@sipsrv.conecta-te.com;tag=cc6b17aa14d1536ao0. To: sip:018183324166@sipsrv.conecta-te.com;tag=7f9ab200. Call-ID: f4ac9caa-c775926a@172.31.253.127. CSeq: 101 ACK. Max-Forwards: 70. Route: sip:018183324166@127.0.0.1:5065. Contact: 8183651723 sip:8183651723@172.31.253.127:5060. User-Agent: Linksys/PAP2-2.0.12(LS). Content-Length: 0. .
# U 2005/06/22 03:33:12.085346 200.94.75.6:5060 -> 127.0.0.1:5065 ACK sip:018183324166@127.0.0.1:5065 SIP/2.0. Record-Route: sip:200.94.75.6;ftag=cc6b17aa14d1536ao0;lr=on. Via: SIP/2.0/UDP 200.94.75.6;branch=0. Via: SIP/2.0/UDP 172.31.253.127:5060;received=200.67.33.247;branch=z9hG4bK-c5ebdced. From: 8183651723 sip:8183651723@sipsrv.conecta-te.com;tag=cc6b17aa14d1536ao0. To: sip:018183324166@sipsrv.conecta-te.com;tag=7f9ab200. Call-ID: f4ac9caa-c775926a@172.31.253.127. CSeq: 101 ACK. Max-Forwards: 16. Contact: 8183651723 sip:8183651723@172.31.253.127:5060. User-Agent: Linksys/PAP2-2.0.12(LS). Content-Length: 0. P-hint: rr-enforced. .
# U 2005/06/22 03:33:12.087437 200.94.75.6:5065 -> 200.94.75.6:5060 ACK sip:018183324166@200.94.75.6:5060 SIP/2.0. Via: SIP/2.0/UDP 127.0.0.1:5065. To: sip:018183324166@sipsrv.conecta-te.com;tag=1B2C9420-70E. From: 8183651723 sip:8183651723@sipsrv.conecta-te.com;tag=cc6b17aa14d1536ao0. Call-ID: 7493ff1a89cef56a809686afb229e4ac@127.0.0.1. CSeq: 101 ACK. Max-Forwards: 70. Route: sip:018183324166@200.94.75.1:5060. Content-Length: 0. .
# U 2005/06/22 03:33:12.090626 200.94.75.6:5060 -> 200.94.75.1:5060 ACK sip:018183324166@200.94.75.1:5060 SIP/2.0. Record-Route: sip:200.94.75.6;ftag=cc6b17aa14d1536ao0;lr=on. Via: SIP/2.0/UDP 200.94.75.6;branch=0. Via: SIP/2.0/UDP 127.0.0.1:5065;received=200.94.75.6. To: sip:018183324166@sipsrv.conecta-te.com;tag=1B2C9420-70E. From: 8183651723 sip:8183651723@sipsrv.conecta-te.com;tag=cc6b17aa14d1536ao0. Call-ID: 7493ff1a89cef56a809686afb229e4ac@127.0.0.1. CSeq: 101 ACK. Max-Forwards: 16. Content-Length: 0. P-hint: rr-enforced. .
# U 2005/06/22 03:33:20.813952 200.67.33.247:61973 -> 200.94.75.6:5060 BYE sip:018183324166@200.94.75.6:5060 SIP/2.0. Via: SIP/2.0/UDP 172.31.253.127:5060;branch=z9hG4bK-eb281eb1. From: 8183651723 sip:8183651723@sipsrv.conecta-te.com;tag=cc6b17aa14d1536ao0. To: sip:018183324166@sipsrv.conecta-te.com;tag=7f9ab200. Call-ID: f4ac9caa-c775926a@172.31.253.127. CSeq: 102 BYE. Max-Forwards: 70. Route: sip:018183324166@127.0.0.1:5065. User-Agent: Linksys/PAP2-2.0.12(LS). Content-Length: 0. .
# U 2005/06/22 03:33:20.816802 200.94.75.6:5060 -> 127.0.0.1:5065 BYE sip:018183324166@127.0.0.1:5065 SIP/2.0. Record-Route: sip:200.94.75.6;ftag=cc6b17aa14d1536ao0;lr=on. Via: SIP/2.0/UDP 200.94.75.6;branch=z9hG4bK47f1.7c391b44.0. Via: SIP/2.0/UDP 172.31.253.127:5060;received=200.67.33.247;branch=z9hG4bK-eb281eb1. From: 8183651723 sip:8183651723@sipsrv.conecta-te.com;tag=cc6b17aa14d1536ao0. To: sip:018183324166@sipsrv.conecta-te.com;tag=7f9ab200. Call-ID: f4ac9caa-c775926a@172.31.253.127. CSeq: 102 BYE. Max-Forwards: 16. User-Agent: Linksys/PAP2-2.0.12(LS). Content-Length: 0. P-hint: finishing call. P-hint: rr-enforced. .
# U 2005/06/22 03:33:20.818924 200.94.75.6:5065 -> 200.94.75.6:5060 SIP/2.0 200 OK. Via: SIP/2.0/UDP 200.94.75.6:5060;branch=z9hG4bK47f1.7c391b44.0. Via: SIP/2.0/UDP 172.31.253.127:5060;received=200.67.33.247;branch=z9hG4bK-eb281eb1. To: sip:018183324166@sipsrv.conecta-te.com;tag=7f9ab200. From: 8183651723 sip:8183651723@sipsrv.conecta-te.com;tag=cc6b17aa14d1536ao0. Call-ID: f4ac9caa-c775926a@172.31.253.127. CSeq: 102 BYE. Record-Route: sip:200.94.75.6;ftag=cc6b17aa14d1536ao0;lr=on. Content-Length: 0. .
# U 2005/06/22 03:33:20.820445 200.94.75.6:5065 -> 200.94.75.6:5060 BYE sip:018183324166@200.94.75.6:5060;lr=on SIP/2.0. Via: SIP/2.0/UDP 127.0.0.1:5065. To: sip:018183324166@sipsrv.conecta-te.com;tag=1B2C9420-70E. From: 8183651723 sip:8183651723@sipsrv.conecta-te.com;tag=cc6b17aa14d1536ao0. Call-ID: 7493ff1a89cef56a809686afb229e4ac@127.0.0.1. CSeq: 102 BYE. Max-Forwards: 70. Route: sip:018183324166@200.94.75.1:5060. Content-Length: 0. .
# U 2005/06/22 03:33:20.823726 200.94.75.6:5060 -> 200.67.33.247:5060 SIP/2.0 200 OK. Via: SIP/2.0/UDP 172.31.253.127:5060;received=200.67.33.247;branch=z9hG4bK-eb281eb1. To: sip:018183324166@sipsrv.conecta-te.com;tag=7f9ab200. From: 8183651723 sip:8183651723@sipsrv.conecta-te.com;tag=cc6b17aa14d1536ao0. Call-ID: f4ac9caa-c775926a@172.31.253.127. CSeq: 102 BYE. Record-Route: sip:200.94.75.6;ftag=cc6b17aa14d1536ao0;lr=on. Content-Length: 0. .
# U 2005/06/22 03:33:20.826479 200.94.75.6:5060 -> 200.94.75.1:5060 BYE sip:018183324166@200.94.75.1:5060 SIP/2.0. Record-Route: sip:200.94.75.6;ftag=cc6b17aa14d1536ao0;lr=on. Via: SIP/2.0/UDP 200.94.75.6;branch=z9hG4bK3512.5c7c5523.0. Via: SIP/2.0/UDP 127.0.0.1:5065;received=200.94.75.6. To: sip:018183324166@sipsrv.conecta-te.com;tag=1B2C9420-70E. From: 8183651723 sip:8183651723@sipsrv.conecta-te.com;tag=cc6b17aa14d1536ao0. Call-ID: 7493ff1a89cef56a809686afb229e4ac@127.0.0.1. CSeq: 102 BYE. Max-Forwards: 16. Content-Length: 0. P-hint: finishing call. P-hint: rr-enforced. .
# U 2005/06/22 03:33:20.833064 200.94.75.1:5060 -> 200.94.75.6:5060 SIP/2.0 200 OK. Via: SIP/2.0/UDP 200.94.75.6;branch=z9hG4bK3512.5c7c5523.0,SIP/2.0/UDP 127.0.0.1:5065;received=200.94.75.6. From: 8183651723 sip:8183651723@sipsrv.conecta-te.com;tag=cc6b17aa14d1536ao0. To: sip:018183324166@sipsrv.conecta-te.com;tag=1B2C9420-70E. Date: Wed, 22 Jun 2005 08:33:41 GMT. Call-ID: 7493ff1a89cef56a809686afb229e4ac@127.0.0.1. Server: Cisco-SIPGateway/IOS-12.x. Content-Length: 0. CSeq: 102 BYE. .
# U 2005/06/22 03:33:20.834554 200.94.75.6:5060 -> 200.94.75.6:5065 SIP/2.0 200 OK. Via: SIP/2.0/UDP 127.0.0.1:5065;received=200.94.75.6. From: 8183651723 sip:8183651723@sipsrv.conecta-te.com;tag=cc6b17aa14d1536ao0. To: sip:018183324166@sipsrv.conecta-te.com;tag=1B2C9420-70E. Date: Wed, 22 Jun 2005 08:33:41 GMT. Call-ID: 7493ff1a89cef56a809686afb229e4ac@127.0.0.1. Server: Cisco-SIPGateway/IOS-12.x. Content-Length: 0. CSeq: 102 BYE. .
# U 2005/06/22 03:33:21.314404 200.67.33.247:61973 -> 200.94.75.6:5060 BYE sip:018183324166@200.94.75.6:5060 SIP/2.0. Via: SIP/2.0/UDP 172.31.253.127:5060;branch=z9hG4bK-eb281eb1. From: 8183651723 sip:8183651723@sipsrv.conecta-te.com;tag=cc6b17aa14d1536ao0. To: sip:018183324166@sipsrv.conecta-te.com;tag=7f9ab200. Call-ID: f4ac9caa-c775926a@172.31.253.127. CSeq: 102 BYE. Max-Forwards: 70. Route: sip:018183324166@127.0.0.1:5065. User-Agent: Linksys/PAP2-2.0.12(LS). Content-Length: 0. .
# U 2005/06/22 03:33:21.317081 200.94.75.6:5060 -> 200.67.33.247:5060 SIP/2.0 200 OK. Via: SIP/2.0/UDP 172.31.253.127:5060;received=200.67.33.247;branch=z9hG4bK-eb281eb1. To: sip:018183324166@sipsrv.conecta-te.com;tag=7f9ab200. From: 8183651723 sip:8183651723@sipsrv.conecta-te.com;tag=cc6b17aa14d1536ao0. Call-ID: f4ac9caa-c775926a@172.31.253.127. CSeq: 102 BYE. Record-Route: sip:200.94.75.6;ftag=cc6b17aa14d1536ao0;lr=on. Content-Length: 0. .
# U 2005/06/22 03:33:22.312811 200.67.33.247:61973 -> 200.94.75.6:5060 BYE sip:018183324166@200.94.75.6:5060 SIP/2.0. Via: SIP/2.0/UDP 172.31.253.127:5060;branch=z9hG4bK-eb281eb1. From: 8183651723 sip:8183651723@sipsrv.conecta-te.com;tag=cc6b17aa14d1536ao0. To: sip:018183324166@sipsrv.conecta-te.com;tag=7f9ab200. Call-ID: f4ac9caa-c775926a@172.31.253.127. CSeq: 102 BYE. Max-Forwards: 70. Route: sip:018183324166@127.0.0.1:5065. User-Agent: Linksys/PAP2-2.0.12(LS). Content-Length: 0. .
# U 2005/06/22 03:33:22.315462 200.94.75.6:5060 -> 200.67.33.247:5060 SIP/2.0 200 OK. Via: SIP/2.0/UDP 172.31.253.127:5060;received=200.67.33.247;branch=z9hG4bK-eb281eb1. To: sip:018183324166@sipsrv.conecta-te.com;tag=7f9ab200. From: 8183651723 sip:8183651723@sipsrv.conecta-te.com;tag=cc6b17aa14d1536ao0. Call-ID: f4ac9caa-c775926a@172.31.253.127. CSeq: 102 BYE. Record-Route: sip:200.94.75.6;ftag=cc6b17aa14d1536ao0;lr=on. Content-Length: 0. .
# U 2005/06/22 03:33:24.315246 200.67.33.247:61973 -> 200.94.75.6:5060 BYE sip:018183324166@200.94.75.6:5060 SIP/2.0. Via: SIP/2.0/UDP 172.31.253.127:5060;branch=z9hG4bK-eb281eb1. From: 8183651723 sip:8183651723@sipsrv.conecta-te.com;tag=cc6b17aa14d1536ao0. To: sip:018183324166@sipsrv.conecta-te.com;tag=7f9ab200. Call-ID: f4ac9caa-c775926a@172.31.253.127. CSeq: 102 BYE. Max-Forwards: 70. Route: sip:018183324166@127.0.0.1:5065. User-Agent: Linksys/PAP2-2.0.12(LS). Content-Length: 0. .
# U 2005/06/22 03:33:24.317882 200.94.75.6:5060 -> 200.67.33.247:5060 SIP/2.0 200 OK. Via: SIP/2.0/UDP 172.31.253.127:5060;received=200.67.33.247;branch=z9hG4bK-eb281eb1. To: sip:018183324166@sipsrv.conecta-te.com;tag=7f9ab200. From: 8183651723 sip:8183651723@sipsrv.conecta-te.com;tag=cc6b17aa14d1536ao0. Call-ID: f4ac9caa-c775926a@172.31.253.127. CSeq: 102 BYE. Record-Route: sip:200.94.75.6;ftag=cc6b17aa14d1536ao0;lr=on. Content-Length: 0. .
##### U 2005/06/22 03:33:28.313369 200.67.33.247:61973 -> 200.94.75.6:5060 BYE sip:018183324166@200.94.75.6:5060 SIP/2.0. Via: SIP/2.0/UDP 172.31.253.127:5060;branch=z9hG4bK-eb281eb1. From: 8183651723 sip:8183651723@sipsrv.conecta-te.com;tag=cc6b17aa14d1536ao0. To: sip:018183324166@sipsrv.conecta-te.com;tag=7f9ab200. Call-ID: f4ac9caa-c775926a@172.31.253.127. CSeq: 102 BYE. Max-Forwards: 70. Route: sip:018183324166@127.0.0.1:5065. User-Agent: Linksys/PAP2-2.0.12(LS). Content-Length: 0. .
# U 2005/06/22 03:33:28.316301 200.94.75.6:5060 -> 127.0.0.1:5065 BYE sip:018183324166@127.0.0.1:5065 SIP/2.0. Record-Route: sip:200.94.75.6;ftag=cc6b17aa14d1536ao0;lr=on. Via: SIP/2.0/UDP 200.94.75.6;branch=z9hG4bK47f1.8c391b44.0. Via: SIP/2.0/UDP 172.31.253.127:5060;received=200.67.33.247;branch=z9hG4bK-eb281eb1. From: 8183651723 sip:8183651723@sipsrv.conecta-te.com;tag=cc6b17aa14d1536ao0. To: sip:018183324166@sipsrv.conecta-te.com;tag=7f9ab200. Call-ID: f4ac9caa-c775926a@172.31.253.127. CSeq: 102 BYE. Max-Forwards: 16. User-Agent: Linksys/PAP2-2.0.12(LS). Content-Length: 0. P-hint: finishing call. P-hint: rr-enforced. .
# U 2005/06/22 03:33:28.317393 200.94.75.6:5065 -> 200.94.75.6:5060 SIP/2.0 200 OK. Via: SIP/2.0/UDP 200.94.75.6:5060;branch=z9hG4bK47f1.8c391b44.0. Via: SIP/2.0/UDP 172.31.253.127:5060;received=200.67.33.247;branch=z9hG4bK-eb281eb1. To: sip:018183324166@sipsrv.conecta-te.com;tag=7f9ab200. From: 8183651723 sip:8183651723@sipsrv.conecta-te.com;tag=cc6b17aa14d1536ao0. Call-ID: f4ac9caa-c775926a@172.31.253.127. CSeq: 102 BYE. Record-Route: sip:200.94.75.6;ftag=cc6b17aa14d1536ao0;lr=on. Content-Length: 0. .
# U 2005/06/22 03:33:28.320084 200.94.75.6:5060 -> 200.67.33.247:5060 SIP/2.0 200 OK. Via: SIP/2.0/UDP 172.31.253.127:5060;received=200.67.33.247;branch=z9hG4bK-eb281eb1. To: sip:018183324166@sipsrv.conecta-te.com;tag=7f9ab200. From: 8183651723 sip:8183651723@sipsrv.conecta-te.com;tag=cc6b17aa14d1536ao0. Call-ID: f4ac9caa-c775926a@172.31.253.127. CSeq: 102 BYE. Record-Route: sip:200.94.75.6;ftag=cc6b17aa14d1536ao0;lr=on. Content-Length: 0. .
# U 2005/06/22 03:33:32.313366 200.67.33.247:61973 -> 200.94.75.6:5060 BYE sip:018183324166@200.94.75.6:5060 SIP/2.0. Via: SIP/2.0/UDP 172.31.253.127:5060;branch=z9hG4bK-eb281eb1. From: 8183651723 sip:8183651723@sipsrv.conecta-te.com;tag=cc6b17aa14d1536ao0. To: sip:018183324166@sipsrv.conecta-te.com;tag=7f9ab200. Call-ID: f4ac9caa-c775926a@172.31.253.127. CSeq: 102 BYE. Max-Forwards: 70. Route: sip:018183324166@127.0.0.1:5065. User-Agent: Linksys/PAP2-2.0.12(LS). Content-Length: 0. .
# U 2005/06/22 03:33:32.316045 200.94.75.6:5060 -> 200.67.33.247:5060 SIP/2.0 200 OK. Via: SIP/2.0/UDP 172.31.253.127:5060;received=200.67.33.247;branch=z9hG4bK-eb281eb1. To: sip:018183324166@sipsrv.conecta-te.com;tag=7f9ab200. From: 8183651723 sip:8183651723@sipsrv.conecta-te.com;tag=cc6b17aa14d1536ao0. Call-ID: f4ac9caa-c775926a@172.31.253.127. CSeq: 102 BYE. Record-Route: sip:200.94.75.6;ftag=cc6b17aa14d1536ao0;lr=on. Content-Length: 0. .
# U 2005/06/22 03:33:36.311492 200.67.33.247:61973 -> 200.94.75.6:5060 BYE sip:018183324166@200.94.75.6:5060 SIP/2.0. Via: SIP/2.0/UDP 172.31.253.127:5060;branch=z9hG4bK-eb281eb1. From: 8183651723 sip:8183651723@sipsrv.conecta-te.com;tag=cc6b17aa14d1536ao0. To: sip:018183324166@sipsrv.conecta-te.com;tag=7f9ab200. Call-ID: f4ac9caa-c775926a@172.31.253.127. CSeq: 102 BYE. Max-Forwards: 70. Route: sip:018183324166@127.0.0.1:5065. User-Agent: Linksys/PAP2-2.0.12(LS). Content-Length: 0. .
# U 2005/06/22 03:33:36.314360 200.94.75.6:5060 -> 127.0.0.1:5065 BYE sip:018183324166@127.0.0.1:5065 SIP/2.0. Record-Route: sip:200.94.75.6;ftag=cc6b17aa14d1536ao0;lr=on. Via: SIP/2.0/UDP 200.94.75.6;branch=z9hG4bK47f1.9c391b44.0. Via: SIP/2.0/UDP 172.31.253.127:5060;received=200.67.33.247;branch=z9hG4bK-eb281eb1. From: 8183651723 sip:8183651723@sipsrv.conecta-te.com;tag=cc6b17aa14d1536ao0. To: sip:018183324166@sipsrv.conecta-te.com;tag=7f9ab200. Call-ID: f4ac9caa-c775926a@172.31.253.127. CSeq: 102 BYE. Max-Forwards: 16. User-Agent: Linksys/PAP2-2.0.12(LS). Content-Length: 0. P-hint: finishing call. P-hint: rr-enforced. .
# U 2005/06/22 03:33:36.315488 200.94.75.6:5065 -> 200.94.75.6:5060 SIP/2.0 200 OK. Via: SIP/2.0/UDP 200.94.75.6:5060;branch=z9hG4bK47f1.9c391b44.0. Via: SIP/2.0/UDP 172.31.253.127:5060;received=200.67.33.247;branch=z9hG4bK-eb281eb1. To: sip:018183324166@sipsrv.conecta-te.com;tag=7f9ab200. From: 8183651723 sip:8183651723@sipsrv.conecta-te.com;tag=cc6b17aa14d1536ao0. Call-ID: f4ac9caa-c775926a@172.31.253.127. CSeq: 102 BYE. Record-Route: sip:200.94.75.6;ftag=cc6b17aa14d1536ao0;lr=on. Content-Length: 0. .
# U 2005/06/22 03:33:36.318179 200.94.75.6:5060 -> 200.67.33.247:5060 SIP/2.0 200 OK. Via: SIP/2.0/UDP 172.31.253.127:5060;received=200.67.33.247;branch=z9hG4bK-eb281eb1. To: sip:018183324166@sipsrv.conecta-te.com;tag=7f9ab200. From: 8183651723 sip:8183651723@sipsrv.conecta-te.com;tag=cc6b17aa14d1536ao0. Call-ID: f4ac9caa-c775926a@172.31.253.127. CSeq: 102 BYE. Record-Route: sip:200.94.75.6;ftag=cc6b17aa14d1536ao0;lr=on. Content-Length: 0. .
# U 2005/06/22 03:33:40.312612 200.67.33.247:61973 -> 200.94.75.6:5060 BYE sip:018183324166@200.94.75.6:5060 SIP/2.0. Via: SIP/2.0/UDP 172.31.253.127:5060;branch=z9hG4bK-eb281eb1. From: 8183651723 sip:8183651723@sipsrv.conecta-te.com;tag=cc6b17aa14d1536ao0. To: sip:018183324166@sipsrv.conecta-te.com;tag=7f9ab200. Call-ID: f4ac9caa-c775926a@172.31.253.127. CSeq: 102 BYE. Max-Forwards: 70. Route: sip:018183324166@127.0.0.1:5065. User-Agent: Linksys/PAP2-2.0.12(LS). Content-Length: 0. .
# U 2005/06/22 03:33:40.315279 200.94.75.6:5060 -> 200.67.33.247:5060 SIP/2.0 200 OK. Via: SIP/2.0/UDP 172.31.253.127:5060;received=200.67.33.247;branch=z9hG4bK-eb281eb1. To: sip:018183324166@sipsrv.conecta-te.com;tag=7f9ab200. From: 8183651723 sip:8183651723@sipsrv.conecta-te.com;tag=cc6b17aa14d1536ao0. Call-ID: f4ac9caa-c775926a@172.31.253.127. CSeq: 102 BYE. Record-Route: sip:200.94.75.6;ftag=cc6b17aa14d1536ao0;lr=on. Content-Length: 0. .
# U 2005/06/22 03:33:44.312361 200.67.33.247:61973 -> 200.94.75.6:5060 BYE sip:018183324166@200.94.75.6:5060 SIP/2.0. Via: SIP/2.0/UDP 172.31.253.127:5060;branch=z9hG4bK-eb281eb1. From: 8183651723 sip:8183651723@sipsrv.conecta-te.com;tag=cc6b17aa14d1536ao0. To: sip:018183324166@sipsrv.conecta-te.com;tag=7f9ab200. Call-ID: f4ac9caa-c775926a@172.31.253.127. CSeq: 102 BYE. Max-Forwards: 70. Route: sip:018183324166@127.0.0.1:5065. User-Agent: Linksys/PAP2-2.0.12(LS). Content-Length: 0. .
# U 2005/06/22 03:33:44.315262 200.94.75.6:5060 -> 127.0.0.1:5065 BYE sip:018183324166@127.0.0.1:5065 SIP/2.0. Record-Route: sip:200.94.75.6;ftag=cc6b17aa14d1536ao0;lr=on. Via: SIP/2.0/UDP 200.94.75.6;branch=z9hG4bK47f1.ac391b44.0. Via: SIP/2.0/UDP 172.31.253.127:5060;received=200.67.33.247;branch=z9hG4bK-eb281eb1. From: 8183651723 sip:8183651723@sipsrv.conecta-te.com;tag=cc6b17aa14d1536ao0. To: sip:018183324166@sipsrv.conecta-te.com;tag=7f9ab200. Call-ID: f4ac9caa-c775926a@172.31.253.127. CSeq: 102 BYE. Max-Forwards: 16. User-Agent: Linksys/PAP2-2.0.12(LS). Content-Length: 0. P-hint: finishing call. P-hint: rr-enforced. .
# U 2005/06/22 03:33:44.316366 200.94.75.6:5065 -> 200.94.75.6:5060 SIP/2.0 200 OK. Via: SIP/2.0/UDP 200.94.75.6:5060;branch=z9hG4bK47f1.ac391b44.0. Via: SIP/2.0/UDP 172.31.253.127:5060;received=200.67.33.247;branch=z9hG4bK-eb281eb1. To: sip:018183324166@sipsrv.conecta-te.com;tag=7f9ab200. From: 8183651723 sip:8183651723@sipsrv.conecta-te.com;tag=cc6b17aa14d1536ao0. Call-ID: f4ac9caa-c775926a@172.31.253.127. CSeq: 102 BYE. Record-Route: sip:200.94.75.6;ftag=cc6b17aa14d1536ao0;lr=on. Content-Length: 0. .
# U 2005/06/22 03:33:44.319075 200.94.75.6:5060 -> 200.67.33.247:5060 SIP/2.0 200 OK. Via: SIP/2.0/UDP 172.31.253.127:5060;received=200.67.33.247;branch=z9hG4bK-eb281eb1. To: sip:018183324166@sipsrv.conecta-te.com;tag=7f9ab200. From: 8183651723 sip:8183651723@sipsrv.conecta-te.com;tag=cc6b17aa14d1536ao0. Call-ID: f4ac9caa-c775926a@172.31.253.127. CSeq: 102 BYE. Record-Route: sip:200.94.75.6;ftag=cc6b17aa14d1536ao0;lr=on. Content-Length: 0. .
# U 2005/06/22 03:33:48.312358 200.67.33.247:61973 -> 200.94.75.6:5060 BYE sip:018183324166@200.94.75.6:5060 SIP/2.0. Via: SIP/2.0/UDP 172.31.253.127:5060;branch=z9hG4bK-eb281eb1. From: 8183651723 sip:8183651723@sipsrv.conecta-te.com;tag=cc6b17aa14d1536ao0. To: sip:018183324166@sipsrv.conecta-te.com;tag=7f9ab200. Call-ID: f4ac9caa-c775926a@172.31.253.127. CSeq: 102 BYE. Max-Forwards: 70. Route: sip:018183324166@127.0.0.1:5065. User-Agent: Linksys/PAP2-2.0.12(LS). Content-Length: 0. .
# U 2005/06/22 03:33:48.315043 200.94.75.6:5060 -> 200.67.33.247:5060 SIP/2.0 200 OK. Via: SIP/2.0/UDP 172.31.253.127:5060;received=200.67.33.247;branch=z9hG4bK-eb281eb1. To: sip:018183324166@sipsrv.conecta-te.com;tag=7f9ab200. From: 8183651723 sip:8183651723@sipsrv.conecta-te.com;tag=cc6b17aa14d1536ao0. Call-ID: f4ac9caa-c775926a@172.31.253.127. CSeq: 102 BYE. Record-Route: sip:200.94.75.6;ftag=cc6b17aa14d1536ao0;lr=on. Content-Length: 0. .
# U 2005/06/22 03:33:52.312107 200.67.33.247:61973 -> 200.94.75.6:5060 BYE sip:018183324166@200.94.75.6:5060 SIP/2.0. Via: SIP/2.0/UDP 172.31.253.127:5060;branch=z9hG4bK-eb281eb1. From: 8183651723 sip:8183651723@sipsrv.conecta-te.com;tag=cc6b17aa14d1536ao0. To: sip:018183324166@sipsrv.conecta-te.com;tag=7f9ab200. Call-ID: f4ac9caa-c775926a@172.31.253.127. CSeq: 102 BYE. Max-Forwards: 70. Route: sip:018183324166@127.0.0.1:5065. User-Agent: Linksys/PAP2-2.0.12(LS). Content-Length: 0. .
# U 2005/06/22 03:33:52.315065 200.94.75.6:5060 -> 127.0.0.1:5065 BYE sip:018183324166@127.0.0.1:5065 SIP/2.0. Record-Route: sip:200.94.75.6;ftag=cc6b17aa14d1536ao0;lr=on. Via: SIP/2.0/UDP 200.94.75.6;branch=z9hG4bK47f1.bc391b44.0. Via: SIP/2.0/UDP 172.31.253.127:5060;received=200.67.33.247;branch=z9hG4bK-eb281eb1. From: 8183651723 sip:8183651723@sipsrv.conecta-te.com;tag=cc6b17aa14d1536ao0. To: sip:018183324166@sipsrv.conecta-te.com;tag=7f9ab200. Call-ID: f4ac9caa-c775926a@172.31.253.127. CSeq: 102 BYE. Max-Forwards: 16. User-Agent: Linksys/PAP2-2.0.12(LS). Content-Length: 0. P-hint: finishing call. P-hint: rr-enforced. .
# U 2005/06/22 03:33:52.316179 200.94.75.6:5065 -> 200.94.75.6:5060 SIP/2.0 200 OK. Via: SIP/2.0/UDP 200.94.75.6:5060;branch=z9hG4bK47f1.bc391b44.0. Via: SIP/2.0/UDP 172.31.253.127:5060;received=200.67.33.247;branch=z9hG4bK-eb281eb1. To: sip:018183324166@sipsrv.conecta-te.com;tag=7f9ab200. From: 8183651723 sip:8183651723@sipsrv.conecta-te.com;tag=cc6b17aa14d1536ao0. Call-ID: f4ac9caa-c775926a@172.31.253.127. CSeq: 102 BYE. Record-Route: sip:200.94.75.6;ftag=cc6b17aa14d1536ao0;lr=on. Content-Length: 0. .
# U 2005/06/22 03:33:52.318886 200.94.75.6:5060 -> 200.67.33.247:5060 SIP/2.0 200 OK. Via: SIP/2.0/UDP 172.31.253.127:5060;received=200.67.33.247;branch=z9hG4bK-eb281eb1. To: sip:018183324166@sipsrv.conecta-te.com;tag=7f9ab200. From: 8183651723 sip:8183651723@sipsrv.conecta-te.com;tag=cc6b17aa14d1536ao0. Call-ID: f4ac9caa-c775926a@172.31.253.127. CSeq: 102 BYE. Record-Route: sip:200.94.75.6;ftag=cc6b17aa14d1536ao0;lr=on. Content-Length: 0. .
############exit 89 received, 0 dropped