hola lista , tengo algunos inconvenientes para lograr esta futura que a mi parecer esta genial , la idea es que al llamar a una extensión interna si no contesta o esta ocupada si valla al voicemail de asterisk esto dentro de la función failure_route [1] , o hacer un callforward de una extensión a otra estilo asterisk , para esto agregue el siguiente código a mi kamailio :
if(avp_db_load("$ru/username","$avp(s:callfwd)")) { avp_pushto("$ru", "$avp(s:callfwd)"); xlog("forwarded to: $avp(s:callfwd)"); route(1); exit; }
que hace uso de la función avp_db_load la cual carga un string AVP al que llamo callfwd , registro el callfwd en la tabla preferencias de openser junto con sus respectivos usuarios , hago una llamada para ver si hace el call forward pero nada , aun así me debería salir el buzón de voz del usuario pero nada ..
el esquema es algo asi
UA SIP 113 llama al ===> UA SIP 110 ====> UA SIP 119 (Destino Final) = =
Forward
os cuento cuanto termino de hacer la llamada sin contestar de cualquiera de los SIP , este se la pasa al asterisk ahí va bien , pero este me genera un WARNING
No application 'Voicemail' for extension (netsoluciones, u110, 1) == Spawn extension (netsoluciones, u110, 1) exited non-zero on 'SIP/192.168.10.1-b7d011d8'
detallo mi configuración en kamailio, para ver que de raro miran que yo no veo:
loadmodule "avpops.so"
modparam("avpops", "avp_url", "mysql://openser:openserrw@localhost/openser") modparam("avpops", "avp_table", "usr_preferences") modparam("tm", "fr_timer", 5) modparam("tm", "fr_inv_timer", 20)
route[1] { t_on_failure("1"); if (!t_relay()) { sl_reply_error(); }; exit;
dentro donde manejo los invite , anexo el codigo
if(avp_db_load("$ru/username","$avp(s:callfwd)")) { avp_pushto("$ru", "$avp(s:callfwd)"); route(1); exit; }
if (!lookup("location")) { if (does_uri_exist()) { revert_uri(); prefix("u"); rewritehostport("192.168.10.1:5070"); route(1); } else {
sl_send_reply("404", "User Not Found");
exit; } sl_send_reply("404", "User Not Found"); exit;
};
route(1); }
failure_route[1] { if (t_check_status("487")) { exit; };
if (t_check_status("486")) { revert_uri(); prefix("b"); xlog("L_ERR","Stepped into the 486 ruri=<$ru>"); rewritehostport("192.168.10.1:5070"); append_branch(); route(1); exit; };
if (t_check_status("408") || t_check_status("480")) { revert_uri(); prefix("u"); xlog("L_ERR","Stepped into the 480 ruri=<$ru>"); rewritehostport("192.168.10.1:5070"); append_branch(); route(1); exit; }; }
lo raro es que viendo las trazas del sip , no veo que pasan ni el 487 , 486 408 , ...
saludoss
rickygm
El Monday 01 September 2008 03:38:06 troxlinux escribió:
[...]
os cuento cuanto termino de hacer la llamada sin contestar de cualquiera de los SIP , este se la pasa al asterisk ahí va bien , pero este me genera un WARNING
No application 'Voicemail' for extension (netsoluciones, u110, 1) == Spawn extension (netsoluciones, u110, 1) exited non-zero on 'SIP/192.168.10.1-b7d011d8'
detallo mi configuración en kamailio, para ver que de raro miran que yo no veo:
Si no hace falta que detalles nada ... el warning es más que aclaratorio ... el problema lo tienes en el Asterisk, reele el warning por favor .. XDD
no porque no me funciona el callforward y lo que deseo también es hacer un forward de una extensión a otra, si alguien llama a la extensión 110 esta pase a la 119 , por eso posteaba mi configuración...
El día 1 de septiembre de 2008 1:24, Raúl Alexis Betancor Santana rabs@dimension-virtual.com escribió:
Si no hace falta que detalles nada ... el warning es más que aclaratorio ... el problema lo tienes en el Asterisk, reele el warning por favor .. XDD
con ese warning , tengo en el asterisk declarado en extension.conf algo asi, entiendo que al detectar el ocupado o no disponible el salta al voicemail
exten=>_u.,1,Voicemail(u${openser}) exten=>_u.,2,hangup() exten=>_b.,1,Voicemail(b${openser}) exten=>_b.,2,hangup()
?
saludoss
rickygm
señores siempre tratando de lograr hacer funcionar el voicemail y el forward , realice unos cambios dentro del extension.conf para el voicemail , pero consigo otro error diferente al anterior
Call from 'openser' to extension 'u119' rejected because extension not found.
pero lo raro aquí es que la extensión 119 estaba hablando con la extensión 110 , osea hubiera mandado un b199 (busy)
esto tengo en mi asterisk
exten=> _XXX,1,Voicemail(u${EXTEN}) exten=> _XXX,2,hangup() exten=> _XXX,1,Voicemail(b${EXTEN}) exten=> _XXX,2,hangup()
viendo la traza del sip , solo veo pasar un INVITE sip:u119@192.168.10.1:5070 SIP/2.0 , donde esta la b?
anexo mi traza sip ..
saludoss
rickygm
señores siempre tratando de lograr hacer funcionar el voicemail y el forward , realice unos cambios dentro del extension.conf para el voicemail , pero consigo otro error diferente al anterior
Call from 'openser' to extension 'u119' rejected because extension not found.
pero lo raro aquí es que la extensión 119 estaba hablando con la extensión 110 , osea hubiera mandado un b199 (busy)
esto tengo en mi asterisk
exten=> _XXX,1,Voicemail(u${EXTEN}) exten=> _XXX,2,hangup() exten=> _XXX,1,Voicemail(b${EXTEN}) exten=> _XXX,2,hangup()
viendo la traza del sip , solo veo pasar un INVITE sip:u119@192.168.10.1:5070 SIP/2.0 , donde esta la b?
anexo mi traza sip ..
interface: any filter: (ip) and ( port 5060 ) # U +1.821466 192.168.10.28:5060 -> 192.168.10.1:5060 INVITE sip:110@192.168.10.1 SIP/2.0 Via: SIP/2.0/UDP 192.168.10.28:5060;branch=z9hG4bKe73473e70c06b711 From: sip:119@192.168.10.1;tag=c15633260ef7e270 To: sip:110@192.168.10.1 Contact: sip:119@192.168.10.28:5060 Supported: replaces, timer, path Call-ID: 7473a731cc64e8b7@192.168.10.28 CSeq: 29317 INVITE User-Agent: Grandstream GXV3000 1.1.3.14 Max-Forwards: 70 Allow: INVITE,ACK,CANCEL,BYE,NOTIFY,REFER,OPTIONS,INFO,SUBSCRIBE,UPDATE,PRACK Content-Type: application/sdp Content-Length: 545
v=0 o=119 8000 8000 IN IP4 192.168.10.28 s=SIP Call c=IN IP4 192.168.10.28 t=0 0 m=audio 5004 RTP/AVP 0 18 4 3 2 101 a=sendrecv a=rtpmap:0 PCMU/8000 a=rtpmap:18 G729/8000 a=rtpmap:4 G723/8000 a=rtpmap:3 GSM/8000 a=rtpmap:2 G726-32/8000 a=ptime:20 a=rtpmap:101 telephone-event/8000 a=fmtp:101 0-11 m=video 5006 RTP/AVP 99 34 a=sendrecv a=rtpmap:99 H264/90000 a=fmtp:99 profile-level-id=428014; packetization-mode=0; sprop-parameter-sets=Z0KADJWgUH5A,aM4BryA= a=rtpmap:34 H263/90000 a=fmtp:34 CIF=2 MaxBR=1280 a=framerate:20
# U +0.001435 192.168.10.1:5060 -> 192.168.10.28:5060 SIP/2.0 407 Proxy Authentication Required Via: SIP/2.0/UDP 192.168.10.28:5060;branch=z9hG4bKe73473e70c06b711 From: sip:119@192.168.10.1;tag=c15633260ef7e270 To: sip:110@192.168.10.1;tag=36839585464337ac048b06b445c90d99.094f Call-ID: 7473a731cc64e8b7@192.168.10.28 CSeq: 29317 INVITE Proxy-Authenticate: Digest realm="192.168.10.1", nonce="48bcc46f0000006873802916d66148ac5ec9d93dcbe86472" Server: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.001546 192.168.10.28:5060 -> 192.168.10.1:5060 ACK sip:110@192.168.10.1 SIP/2.0 Via: SIP/2.0/UDP 192.168.10.28:5060;branch=z9hG4bKe73473e70c06b711 From: sip:119@192.168.10.1;tag=c15633260ef7e270 To: sip:110@192.168.10.1;tag=36839585464337ac048b06b445c90d99.094f Contact: sip:119@192.168.10.28:5060 Call-ID: 7473a731cc64e8b7@192.168.10.28 CSeq: 29317 ACK User-Agent: Grandstream GXV3000 1.1.3.14 Max-Forwards: 70 Allow: INVITE,ACK,CANCEL,BYE,NOTIFY,REFER,OPTIONS,INFO,SUBSCRIBE,UPDATE,PRACK Content-Length: 0
# U +0.001303 192.168.10.28:5060 -> 192.168.10.1:5060 INVITE sip:110@192.168.10.1 SIP/2.0 Via: SIP/2.0/UDP 192.168.10.28:5060;branch=z9hG4bKf261a3128451f423 From: sip:119@192.168.10.1;tag=c15633260ef7e270 To: sip:110@192.168.10.1 Contact: sip:119@192.168.10.28:5060 Supported: replaces, timer, path Proxy-Authorization: Digest username="119", realm="192.168.10.1", algorithm=MD5, uri="sip:110@192.168.10.1", nonce="48bcc46f0000006873802916d66148ac5ec9d93dcbe86472", response="82c1463ff68b8ad89c23b66cf93eebec" Call-ID: 7473a731cc64e8b7@192.168.10.28 CSeq: 29318 INVITE User-Agent: Grandstream GXV3000 1.1.3.14 Max-Forwards: 70 Allow: INVITE,ACK,CANCEL,BYE,NOTIFY,REFER,OPTIONS,INFO,SUBSCRIBE,UPDATE,PRACK Content-Type: application/sdp Content-Length: 545
v=0 o=119 8000 8001 IN IP4 192.168.10.28 s=SIP Call c=IN IP4 192.168.10.28 t=0 0 m=audio 5004 RTP/AVP 0 18 4 3 2 101 a=sendrecv a=rtpmap:0 PCMU/8000 a=rtpmap:18 G729/8000 a=rtpmap:4 G723/8000 a=rtpmap:3 GSM/8000 a=rtpmap:2 G726-32/8000 a=ptime:20 a=rtpmap:101 telephone-event/8000 a=fmtp:101 0-11 m=video 5006 RTP/AVP 99 34 a=sendrecv a=rtpmap:99 H264/90000 a=fmtp:99 profile-level-id=428014; packetization-mode=0; sprop-parameter-sets=Z0KADJWgUH5A,aM4BryA= a=rtpmap:34 H263/90000 a=fmtp:34 CIF=2 MaxBR=1280 a=framerate:20
# U +0.000806 192.168.10.1:5060 -> 192.168.10.28:5060 SIP/2.0 100 Giving a try Via: SIP/2.0/UDP 192.168.10.28:5060;branch=z9hG4bKf261a3128451f423 From: sip:119@192.168.10.1;tag=c15633260ef7e270 To: sip:110@192.168.10.1 Call-ID: 7473a731cc64e8b7@192.168.10.28 CSeq: 29318 INVITE Server: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.000082 192.168.10.1:5060 -> 192.168.10.19:5060 INVITE sip:110@192.168.10.19:5060 SIP/2.0 Record-Route: sip:192.168.10.1;lr=on;ftag=c15633260ef7e270 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bKa0fb.c64a74c3.0 Via: SIP/2.0/UDP 192.168.10.28:5060;branch=z9hG4bKf261a3128451f423 From: sip:119@192.168.10.1;tag=c15633260ef7e270 To: sip:110@192.168.10.1 Contact: sip:119@192.168.10.28:5060 Supported: replaces, timer, path Call-ID: 7473a731cc64e8b7@192.168.10.28 CSeq: 29318 INVITE User-Agent: Grandstream GXV3000 1.1.3.14 Max-Forwards: 69 Allow: INVITE,ACK,CANCEL,BYE,NOTIFY,REFER,OPTIONS,INFO,SUBSCRIBE,UPDATE,PRACK Content-Type: application/sdp Content-Length: 545
v=0 o=119 8000 8001 IN IP4 192.168.10.28 s=SIP Call c=IN IP4 192.168.10.28 t=0 0 m=audio 5004 RTP/AVP 0 18 4 3 2 101 a=sendrecv a=rtpmap:0 PCMU/8000 a=rtpmap:18 G729/8000 a=rtpmap:4 G723/8000 a=rtpmap:3 GSM/8000 a=rtpmap:2 G726-32/8000 a=ptime:20 a=rtpmap:101 telephone-event/8000 a=fmtp:101 0-11 m=video 5006 RTP/AVP 99 34 a=sendrecv a=rtpmap:99 H264/90000 a=fmtp:99 profile-level-id=428014; packetization-mode=0; sprop-parameter-sets=Z0KADJWgUH5A,aM4BryA= a=rtpmap:34 H263/90000 a=fmtp:34 CIF=2 MaxBR=1280 a=framerate:20
# U +0.009012 192.168.10.19:5060 -> 192.168.10.1:5060 SIP/2.0 100 Trying To: sip:110@192.168.10.1 From: sip:119@192.168.10.1;tag=c15633260ef7e270 Call-ID: 7473a731cc64e8b7@192.168.10.28 CSeq: 29318 INVITE Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bKa0fb.c64a74c3.0 Via: SIP/2.0/UDP 192.168.10.28:5060;branch=z9hG4bKf261a3128451f423 Record-Route: sip:192.168.10.1;lr=on;ftag=c15633260ef7e270 Server: Linksys/SPA942-5.2.8 Content-Length: 0
# U +0.017965 192.168.10.19:5060 -> 192.168.10.1:5060 SIP/2.0 180 Ringing To: sip:110@192.168.10.1;tag=f23780cba3cea626i0 From: sip:119@192.168.10.1;tag=c15633260ef7e270 Call-ID: 7473a731cc64e8b7@192.168.10.28 CSeq: 29318 INVITE Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bKa0fb.c64a74c3.0 Via: SIP/2.0/UDP 192.168.10.28:5060;branch=z9hG4bKf261a3128451f423 Record-Route: sip:192.168.10.1;lr=on;ftag=c15633260ef7e270 Server: Linksys/SPA942-5.2.8 Content-Length: 0
# U +0.000070 192.168.10.1:5060 -> 192.168.10.28:5060 SIP/2.0 180 Ringing To: sip:110@192.168.10.1;tag=f23780cba3cea626i0 From: sip:119@192.168.10.1;tag=c15633260ef7e270 Call-ID: 7473a731cc64e8b7@192.168.10.28 CSeq: 29318 INVITE Via: SIP/2.0/UDP 192.168.10.28:5060;branch=z9hG4bKf261a3128451f423 Record-Route: sip:192.168.10.1;lr=on;ftag=c15633260ef7e270 Server: Linksys/SPA942-5.2.8 Content-Length: 0
# U +5.545961 192.168.10.19:5060 -> 192.168.10.1:5060 SIP/2.0 200 OK To: sip:110@192.168.10.1;tag=f23780cba3cea626i0 From: sip:119@192.168.10.1;tag=c15633260ef7e270 Call-ID: 7473a731cc64e8b7@192.168.10.28 CSeq: 29318 INVITE Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bKa0fb.c64a74c3.0 Via: SIP/2.0/UDP 192.168.10.28:5060;branch=z9hG4bKf261a3128451f423 Record-Route: sip:192.168.10.1;lr=on;ftag=c15633260ef7e270 Contact: sip:110@192.168.10.19:5060 Server: Linksys/SPA942-5.2.8 Content-Length: 236 Allow: ACK, BYE, CANCEL, INFO, INVITE, NOTIFY, OPTIONS, REFER Supported: replaces Content-Type: application/sdp
v=0 o=- 620022 620022 IN IP4 192.168.10.19 s=- c=IN IP4 192.168.10.19 t=0 0 m=audio 16434 RTP/AVP 18 101 a=rtpmap:18 G729a/8000 a=rtpmap:101 telephone-event/8000 a=fmtp:101 0-15 a=ptime:30 a=sendrecv m=video 0 RTP/AVP 99 34
# U +0.000139 192.168.10.1:5060 -> 192.168.10.28:5060 SIP/2.0 200 OK To: sip:110@192.168.10.1;tag=f23780cba3cea626i0 From: sip:119@192.168.10.1;tag=c15633260ef7e270 Call-ID: 7473a731cc64e8b7@192.168.10.28 CSeq: 29318 INVITE Via: SIP/2.0/UDP 192.168.10.28:5060;branch=z9hG4bKf261a3128451f423 Record-Route: sip:192.168.10.1;lr=on;ftag=c15633260ef7e270 Contact: sip:110@192.168.10.19:5060 Server: Linksys/SPA942-5.2.8 Content-Length: 236 Allow: ACK, BYE, CANCEL, INFO, INVITE, NOTIFY, OPTIONS, REFER Supported: replaces Content-Type: application/sdp
v=0 o=- 620022 620022 IN IP4 192.168.10.19 s=- c=IN IP4 192.168.10.19 t=0 0 m=audio 16434 RTP/AVP 18 101 a=rtpmap:18 G729a/8000 a=rtpmap:101 telephone-event/8000 a=fmtp:101 0-15 a=ptime:30 a=sendrecv m=video 0 RTP/AVP 99 34
# U +0.002778 192.168.10.28:5060 -> 192.168.10.1:5060 ACK sip:110@192.168.10.19:5060 SIP/2.0 Via: SIP/2.0/UDP 192.168.10.28:5060;branch=z9hG4bKf880e06476211556 Route: sip:192.168.10.1;lr=on;ftag=c15633260ef7e270 From: sip:119@192.168.10.1;tag=c15633260ef7e270 To: sip:110@192.168.10.1;tag=f23780cba3cea626i0 Contact: sip:119@192.168.10.28:5060 Proxy-Authorization: Digest username="119", realm="192.168.10.1", algorithm=MD5, uri="sip:110@192.168.10.1", nonce="48bcc46f0000006873802916d66148ac5ec9d93dcbe86472", response="82c1463ff68b8ad89c23b66cf93eebec" Call-ID: 7473a731cc64e8b7@192.168.10.28 CSeq: 29318 ACK User-Agent: Grandstream GXV3000 1.1.3.14 Max-Forwards: 70 Allow: INVITE,ACK,CANCEL,BYE,NOTIFY,REFER,OPTIONS,INFO,SUBSCRIBE,UPDATE,PRACK Content-Length: 0
# U +0.000129 192.168.10.1:5060 -> 192.168.10.19:5060 ACK sip:110@192.168.10.19:5060 SIP/2.0 Record-Route: sip:192.168.10.1;lr=on;ftag=c15633260ef7e270 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bKa0fb.c64a74c3.2 Via: SIP/2.0/UDP 192.168.10.28:5060;branch=z9hG4bKf880e06476211556 From: sip:119@192.168.10.1;tag=c15633260ef7e270 To: sip:110@192.168.10.1;tag=f23780cba3cea626i0 Contact: sip:119@192.168.10.28:5060 Proxy-Authorization: Digest username="119", realm="192.168.10.1", algorithm=MD5, uri="sip:110@192.168.10.1", nonce="48bcc46f0000006873802916d66148ac5ec9d93dcbe86472", response="82c1463ff68b8ad89c23b66cf93eebec" Call-ID: 7473a731cc64e8b7@192.168.10.28 CSeq: 29318 ACK User-Agent: Grandstream GXV3000 1.1.3.14 Max-Forwards: 69 Allow: INVITE,ACK,CANCEL,BYE,NOTIFY,REFER,OPTIONS,INFO,SUBSCRIBE,UPDATE,PRACK Content-Length: 0 P-hint: rr-enforced
# U +2.473979 192.168.10.1:5070 -> 192.168.10.1:5060 OPTIONS sip:192.168.10.1 SIP/2.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK6e959f15;rport From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as27bcb902 To: sip:192.168.10.1 Contact: sip:asterisk@192.168.10.1:5070 Call-ID: 6a62a8060ad9e10516108f335f2defae@192.168.10.1 CSeq: 102 OPTIONS User-Agent: Asterisk PBX Max-Forwards: 70 Date: Tue, 02 Sep 2008 04:38:35 GMT Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, SUBSCRIBE, NOTIFY Supported: replaces Content-Length: 0
# U +0.000219 192.168.10.1:5060 -> 192.168.10.1:5070 SIP/2.0 404 User Not Found Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK6e959f15;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as27bcb902 To: sip:192.168.10.1;tag=36839585464337ac048b06b445c90d99.4493 Call-ID: 6a62a8060ad9e10516108f335f2defae@192.168.10.1 CSeq: 102 OPTIONS Server: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.000088 192.168.10.1:5060 -> 192.168.10.1:5060 OPTIONS sip:192.168.10.1 SIP/2.0 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.3b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK6e959f15;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as27bcb902 To: sip:192.168.10.1 Contact: sip:asterisk@192.168.10.1:5070 Call-ID: 6a62a8060ad9e10516108f335f2defae@192.168.10.1 CSeq: 102 OPTIONS User-Agent: Asterisk PBX Max-Forwards: 69 Date: Tue, 02 Sep 2008 04:38:35 GMT Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, SUBSCRIBE, NOTIFY Supported: replaces Content-Length: 0
# U +0.000085 192.168.10.1:5060 -> 192.168.10.1:5060 SIP/2.0 404 User Not Found Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.3b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK6e959f15;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as27bcb902 To: sip:192.168.10.1;tag=36839585464337ac048b06b445c90d99.c845 Call-ID: 6a62a8060ad9e10516108f335f2defae@192.168.10.1 CSeq: 102 OPTIONS Server: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.000056 192.168.10.1:5060 -> 192.168.10.1:5060 OPTIONS sip:192.168.10.1 SIP/2.0 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.4b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.3b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK6e959f15;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as27bcb902 To: sip:192.168.10.1 Contact: sip:asterisk@192.168.10.1:5070 Call-ID: 6a62a8060ad9e10516108f335f2defae@192.168.10.1 CSeq: 102 OPTIONS User-Agent: Asterisk PBX Max-Forwards: 68 Date: Tue, 02 Sep 2008 04:38:35 GMT Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, SUBSCRIBE, NOTIFY Supported: replaces Content-Length: 0
# U +0.000087 192.168.10.1:5060 -> 192.168.10.1:5070 SIP/2.0 404 User Not Found Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK6e959f15;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as27bcb902 To: sip:192.168.10.1;tag=36839585464337ac048b06b445c90d99.c845 Call-ID: 6a62a8060ad9e10516108f335f2defae@192.168.10.1 CSeq: 102 OPTIONS Server: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.000072 192.168.10.1:5060 -> 192.168.10.1:5060 SIP/2.0 404 User Not Found Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.4b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.3b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK6e959f15;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as27bcb902 To: sip:192.168.10.1;tag=36839585464337ac048b06b445c90d99.9709 Call-ID: 6a62a8060ad9e10516108f335f2defae@192.168.10.1 CSeq: 102 OPTIONS Server: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.000072 192.168.10.1:5060 -> 192.168.10.1:5060 OPTIONS sip:192.168.10.1 SIP/2.0 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.5b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.4b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.3b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK6e959f15;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as27bcb902 To: sip:192.168.10.1 Contact: sip:asterisk@192.168.10.1:5070 Call-ID: 6a62a8060ad9e10516108f335f2defae@192.168.10.1 CSeq: 102 OPTIONS User-Agent: Asterisk PBX Max-Forwards: 67 Date: Tue, 02 Sep 2008 04:38:35 GMT Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, SUBSCRIBE, NOTIFY Supported: replaces Content-Length: 0
# U +0.000041 192.168.10.1:5060 -> 192.168.10.1:5060 SIP/2.0 404 User Not Found Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.3b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK6e959f15;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as27bcb902 To: sip:192.168.10.1;tag=36839585464337ac048b06b445c90d99.9709 Call-ID: 6a62a8060ad9e10516108f335f2defae@192.168.10.1 CSeq: 102 OPTIONS Server: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.000052 192.168.10.1:5060 -> 192.168.10.1:5060 SIP/2.0 404 User Not Found Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.5b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.4b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.3b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK6e959f15;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as27bcb902 To: sip:192.168.10.1;tag=36839585464337ac048b06b445c90d99.e5cb Call-ID: 6a62a8060ad9e10516108f335f2defae@192.168.10.1 CSeq: 102 OPTIONS Server: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.000068 192.168.10.1:5060 -> 192.168.10.1:5060 OPTIONS sip:192.168.10.1 SIP/2.0 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.6b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.5b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.4b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.3b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK6e959f15;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as27bcb902 To: sip:192.168.10.1 Contact: sip:asterisk@192.168.10.1:5070 Call-ID: 6a62a8060ad9e10516108f335f2defae@192.168.10.1 CSeq: 102 OPTIONS User-Agent: Asterisk PBX Max-Forwards: 66 Date: Tue, 02 Sep 2008 04:38:35 GMT Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, SUBSCRIBE, NOTIFY Supported: replaces Content-Length: 0
# U +0.000027 192.168.10.1:5060 -> 192.168.10.1:5060 SIP/2.0 404 User Not Found Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.4b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.3b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK6e959f15;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as27bcb902 To: sip:192.168.10.1;tag=36839585464337ac048b06b445c90d99.e5cb Call-ID: 6a62a8060ad9e10516108f335f2defae@192.168.10.1 CSeq: 102 OPTIONS Server: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.000470 192.168.10.1:5060 -> 192.168.10.1:5060 SIP/2.0 404 User Not Found Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.6b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.5b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.4b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.3b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK6e959f15;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as27bcb902 To: sip:192.168.10.1;tag=36839585464337ac048b06b445c90d99.738c Call-ID: 6a62a8060ad9e10516108f335f2defae@192.168.10.1 CSeq: 102 OPTIONS Server: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.000082 192.168.10.1:5060 -> 192.168.10.1:5060 SIP/2.0 404 User Not Found Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.5b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.4b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.3b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK6e959f15;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as27bcb902 To: sip:192.168.10.1;tag=36839585464337ac048b06b445c90d99.738c Call-ID: 6a62a8060ad9e10516108f335f2defae@192.168.10.1 CSeq: 102 OPTIONS Server: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.000095 192.168.10.1:5060 -> 192.168.10.1:5060 OPTIONS sip:192.168.10.1 SIP/2.0 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.7b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.6b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.5b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.4b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.3b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK6e959f15;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as27bcb902 To: sip:192.168.10.1 Contact: sip:asterisk@192.168.10.1:5070 Call-ID: 6a62a8060ad9e10516108f335f2defae@192.168.10.1 CSeq: 102 OPTIONS User-Agent: Asterisk PBX Max-Forwards: 65 Date: Tue, 02 Sep 2008 04:38:35 GMT Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, SUBSCRIBE, NOTIFY Supported: replaces Content-Length: 0
# U +0.000086 192.168.10.1:5060 -> 192.168.10.1:5060 SIP/2.0 404 User Not Found Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.7b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.6b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.5b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.4b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.3b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK6e959f15;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as27bcb902 To: sip:192.168.10.1;tag=36839585464337ac048b06b445c90d99.014e Call-ID: 6a62a8060ad9e10516108f335f2defae@192.168.10.1 CSeq: 102 OPTIONS Server: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.000056 192.168.10.1:5060 -> 192.168.10.1:5060 OPTIONS sip:192.168.10.1 SIP/2.0 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.8b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.7b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.6b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.5b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.4b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.3b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK6e959f15;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as27bcb902 To: sip:192.168.10.1 Contact: sip:asterisk@192.168.10.1:5070 Call-ID: 6a62a8060ad9e10516108f335f2defae@192.168.10.1 CSeq: 102 OPTIONS User-Agent: Asterisk PBX Max-Forwards: 64 Date: Tue, 02 Sep 2008 04:38:35 GMT Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, SUBSCRIBE, NOTIFY Supported: replaces Content-Length: 0
# U +0.000076 192.168.10.1:5060 -> 192.168.10.1:5060 SIP/2.0 404 User Not Found Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.6b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.5b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.4b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.3b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK6e959f15;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as27bcb902 To: sip:192.168.10.1;tag=36839585464337ac048b06b445c90d99.014e Call-ID: 6a62a8060ad9e10516108f335f2defae@192.168.10.1 CSeq: 102 OPTIONS Server: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.000078 192.168.10.1:5060 -> 192.168.10.1:5060 SIP/2.0 404 User Not Found Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.8b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.7b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.6b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.5b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.4b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.3b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK6e959f15;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as27bcb902 To: sip:192.168.10.1;tag=36839585464337ac048b06b445c90d99.cc94 Call-ID: 6a62a8060ad9e10516108f335f2defae@192.168.10.1 CSeq: 102 OPTIONS Server: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.000061 192.168.10.1:5060 -> 192.168.10.1:5060 OPTIONS sip:192.168.10.1 SIP/2.0 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.9b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.8b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.7b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.6b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.5b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.4b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.3b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK6e959f15;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as27bcb902 To: sip:192.168.10.1 Contact: sip:asterisk@192.168.10.1:5070 Call-ID: 6a62a8060ad9e10516108f335f2defae@192.168.10.1 CSeq: 102 OPTIONS User-Agent: Asterisk PBX Max-Forwards: 63 Date: Tue, 02 Sep 2008 04:38:35 GMT Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, SUBSCRIBE, NOTIFY Supported: replaces Content-Length: 0
# U +0.000092 192.168.10.1:5060 -> 192.168.10.1:5060 SIP/2.0 404 User Not Found Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.9b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.8b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.7b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.6b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.5b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.4b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.3b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK6e959f15;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as27bcb902 To: sip:192.168.10.1;tag=36839585464337ac048b06b445c90d99.be56 Call-ID: 6a62a8060ad9e10516108f335f2defae@192.168.10.1 CSeq: 102 OPTIONS Server: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.000068 192.168.10.1:5060 -> 192.168.10.1:5060 OPTIONS sip:192.168.10.1 SIP/2.0 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.ab3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.9b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.8b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.7b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.6b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.5b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.4b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.3b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK6e959f15;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as27bcb902 To: sip:192.168.10.1 Contact: sip:asterisk@192.168.10.1:5070 Call-ID: 6a62a8060ad9e10516108f335f2defae@192.168.10.1 CSeq: 102 OPTIONS User-Agent: Asterisk PBX Max-Forwards: 62 Date: Tue, 02 Sep 2008 04:38:35 GMT Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, SUBSCRIBE, NOTIFY Supported: replaces Content-Length: 0
# U +0.000076 192.168.10.1:5060 -> 192.168.10.1:5060 SIP/2.0 404 User Not Found Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.8b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.7b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.6b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.5b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.4b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.3b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK6e959f15;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as27bcb902 To: sip:192.168.10.1;tag=36839585464337ac048b06b445c90d99.be56 Call-ID: 6a62a8060ad9e10516108f335f2defae@192.168.10.1 CSeq: 102 OPTIONS Server: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.000083 192.168.10.1:5060 -> 192.168.10.1:5060 SIP/2.0 404 User Not Found Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.ab3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.9b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.8b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.7b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.6b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.5b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.4b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.3b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK6e959f15;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as27bcb902 To: sip:192.168.10.1;tag=36839585464337ac048b06b445c90d99.bef8 Call-ID: 6a62a8060ad9e10516108f335f2defae@192.168.10.1 CSeq: 102 OPTIONS Server: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.000056 192.168.10.1:5060 -> 192.168.10.1:5060 OPTIONS sip:192.168.10.1 SIP/2.0 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.bb3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.ab3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.9b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.8b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.7b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.6b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.5b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.4b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.3b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK6e959f15;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as27bcb902 To: sip:192.168.10.1 Contact: sip:asterisk@192.168.10.1:5070 Call-ID: 6a62a8060ad9e10516108f335f2defae@192.168.10.1 CSeq: 102 OPTIONS User-Agent: Asterisk PBX Max-Forwards: 61 Date: Tue, 02 Sep 2008 04:38:35 GMT Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, SUBSCRIBE, NOTIFY Supported: replaces Content-Length: 0
# U +0.000074 192.168.10.1:5060 -> 192.168.10.1:5060 SIP/2.0 404 User Not Found Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.7b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.6b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.5b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.4b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.3b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK6e959f15;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as27bcb902 To: sip:192.168.10.1;tag=36839585464337ac048b06b445c90d99.be56 Call-ID: 6a62a8060ad9e10516108f335f2defae@192.168.10.1 CSeq: 102 OPTIONS Server: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.000067 192.168.10.1:5060 -> 192.168.10.1:5060 SIP/2.0 404 User Not Found Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.9b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.8b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.7b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.6b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.5b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.4b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.3b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK6e959f15;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as27bcb902 To: sip:192.168.10.1;tag=36839585464337ac048b06b445c90d99.bef8 Call-ID: 6a62a8060ad9e10516108f335f2defae@192.168.10.1 CSeq: 102 OPTIONS Server: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.000081 192.168.10.1:5060 -> 192.168.10.1:5060 SIP/2.0 404 User Not Found Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.bb3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.ab3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.9b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.8b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.7b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.6b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.5b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.4b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.3b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK6e959f15;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as27bcb902 To: sip:192.168.10.1;tag=36839585464337ac048b06b445c90d99.28bf Call-ID: 6a62a8060ad9e10516108f335f2defae@192.168.10.1 CSeq: 102 OPTIONS Server: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.000055 192.168.10.1:5060 -> 192.168.10.1:5060 OPTIONS sip:192.168.10.1 SIP/2.0 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.cb3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.bb3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.ab3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.9b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.8b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.7b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.6b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.5b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.4b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.3b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK6e959f15;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as27bcb902 To: sip:192.168.10.1 Contact: sip:asterisk@192.168.10.1:5070 Call-ID: 6a62a8060ad9e10516108f335f2defae@192.168.10.1 CSeq: 102 OPTIONS User-Agent: Asterisk PBX Max-Forwards: 60 Date: Tue, 02 Sep 2008 04:38:35 GMT Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, SUBSCRIBE, NOTIFY Supported: replaces Content-Length: 0
# U +0.000130 192.168.10.1:5060 -> 192.168.10.1:5060 SIP/2.0 404 User Not Found Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.ab3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.9b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.8b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.7b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.6b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.5b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.4b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.3b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK6e959f15;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as27bcb902 To: sip:192.168.10.1;tag=36839585464337ac048b06b445c90d99.28bf Call-ID: 6a62a8060ad9e10516108f335f2defae@192.168.10.1 CSeq: 102 OPTIONS Server: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.000083 192.168.10.1:5060 -> 192.168.10.1:5060 SIP/2.0 404 User Not Found Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.cb3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.bb3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.ab3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.9b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.8b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.7b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.6b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.5b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.4b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.3b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK6e959f15;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as27bcb902 To: sip:192.168.10.1;tag=36839585464337ac048b06b445c90d99.5a7d Call-ID: 6a62a8060ad9e10516108f335f2defae@192.168.10.1 CSeq: 102 OPTIONS Server: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.000060 192.168.10.1:5060 -> 192.168.10.1:5060 OPTIONS sip:192.168.10.1 SIP/2.0 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.db3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.cb3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.bb3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.ab3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.9b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.8b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.7b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.6b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.5b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.4b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.3b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK6e959f15;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as27bcb902 To: sip:192.168.10.1 Contact: sip:asterisk@192.168.10.1:5070 Call-ID: 6a62a8060ad9e10516108f335f2defae@192.168.10.1 CSeq: 102 OPTIONS User-Agent: Asterisk PBX Max-Forwards: 59 Date: Tue, 02 Sep 2008 04:38:35 GMT Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, SUBSCRIBE, NOTIFY Supported: replaces Content-Length: 0
# U +0.000119 192.168.10.1:5060 -> 192.168.10.1:5060 SIP/2.0 404 User Not Found Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.bb3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.ab3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.9b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.8b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.7b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.6b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.5b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.4b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.3b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK6e959f15;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as27bcb902 To: sip:192.168.10.1;tag=36839585464337ac048b06b445c90d99.5a7d Call-ID: 6a62a8060ad9e10516108f335f2defae@192.168.10.1 CSeq: 102 OPTIONS Server: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.000089 192.168.10.1:5060 -> 192.168.10.1:5060 SIP/2.0 404 User Not Found Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.db3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.cb3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.bb3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.ab3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.9b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.8b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.7b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.6b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.5b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.4b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.3b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK6e959f15;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as27bcb902 To: sip:192.168.10.1;tag=36839585464337ac048b06b445c90d99.0531 Call-ID: 6a62a8060ad9e10516108f335f2defae@192.168.10.1 CSeq: 102 OPTIONS Server: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.000077 192.168.10.1:5060 -> 192.168.10.1:5060 OPTIONS sip:192.168.10.1 SIP/2.0 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.eb3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.db3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.cb3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.bb3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.ab3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.9b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.8b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.7b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.6b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.5b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.4b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.3b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK6e959f15;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as27bcb902 To: sip:192.168.10.1 Contact: sip:asterisk@192.168.10.1:5070 Call-ID: 6a62a8060ad9e10516108f335f2defae@192.168.10.1 CSeq: 102 OPTIONS User-Agent: Asterisk PBX Max-Forwards: 58 Date: Tue, 02 Sep 2008 04:38:35 GMT Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, SUBSCRIBE, NOTIFY Supported: replaces Content-Length: 0
# U +0.000114 192.168.10.1:5060 -> 192.168.10.1:5060 SIP/2.0 404 User Not Found Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.cb3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.bb3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.ab3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.9b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.8b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.7b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.6b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.5b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.4b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.3b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK6e959f15;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as27bcb902 To: sip:192.168.10.1;tag=36839585464337ac048b06b445c90d99.0531 Call-ID: 6a62a8060ad9e10516108f335f2defae@192.168.10.1 CSeq: 102 OPTIONS Server: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.000097 192.168.10.1:5060 -> 192.168.10.1:5060 SIP/2.0 404 User Not Found Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.eb3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.db3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.cb3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.bb3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.ab3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.9b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.8b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.7b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.6b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.5b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.4b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.3b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK6e959f15;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as27bcb902 To: sip:192.168.10.1;tag=36839585464337ac048b06b445c90d99.77f3 Call-ID: 6a62a8060ad9e10516108f335f2defae@192.168.10.1 CSeq: 102 OPTIONS Server: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.000059 192.168.10.1:5060 -> 192.168.10.1:5060 OPTIONS sip:192.168.10.1 SIP/2.0 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.fb3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.eb3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.db3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.cb3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.bb3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.ab3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.9b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.8b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.7b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.6b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.5b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.4b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.3b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK6e959f15;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as27bcb902 To: sip:192.168.10.1 Contact: sip:asterisk@192.168.10.1:5070 Call-ID: 6a62a8060ad9e10516108f335f2defae@192.168.10.1 CSeq: 102 OPTIONS User-Agent: Asterisk PBX Max-Forwards: 57 Date: Tue, 02 Sep 2008 04:38:35 GMT Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, SUBSCRIBE, NOTIFY Supported: replaces Content-Length: 0
# U +0.000117 192.168.10.1:5060 -> 192.168.10.1:5060 SIP/2.0 404 User Not Found Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.db3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.cb3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.bb3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.ab3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.9b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.8b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.7b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.6b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.5b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.4b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.3b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK6e959f15;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as27bcb902 To: sip:192.168.10.1;tag=36839585464337ac048b06b445c90d99.77f3 Call-ID: 6a62a8060ad9e10516108f335f2defae@192.168.10.1 CSeq: 102 OPTIONS Server: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.000092 192.168.10.1:5060 -> 192.168.10.1:5060 SIP/2.0 404 User Not Found Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.fb3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.eb3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.db3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.cb3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.bb3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.ab3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.9b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.8b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.7b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.6b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.5b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.4b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.3b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK6e959f15;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as27bcb902 To: sip:192.168.10.1;tag=36839585464337ac048b06b445c90d99.e1b4 Call-ID: 6a62a8060ad9e10516108f335f2defae@192.168.10.1 CSeq: 102 OPTIONS Server: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.000061 192.168.10.1:5060 -> 192.168.10.1:5060 OPTIONS sip:192.168.10.1 SIP/2.0 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.0c3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.fb3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.eb3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.db3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.cb3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.bb3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.ab3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.9b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.8b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.7b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.6b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.5b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.4b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.3b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK6e959f15;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as27bcb902 To: sip:192.168.10.1 Contact: sip:asterisk@192.168.10.1:5070 Call-ID: 6a62a8060ad9e10516108f335f2defae@192.168.10.1 CSeq: 102 OPTIONS User-Agent: Asterisk PBX Max-Forwards: 56 Date: Tue, 02 Sep 2008 04:38:35 GMT Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, SUBSCRIBE, NOTIFY Supported: replaces Content-Length: 0
# U +0.000118 192.168.10.1:5060 -> 192.168.10.1:5060 SIP/2.0 404 User Not Found Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.eb3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.db3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.cb3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.bb3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.ab3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.9b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.8b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.7b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.6b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.5b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.4b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.3b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK6e959f15;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as27bcb902 To: sip:192.168.10.1;tag=36839585464337ac048b06b445c90d99.e1b4 Call-ID: 6a62a8060ad9e10516108f335f2defae@192.168.10.1 CSeq: 102 OPTIONS Server: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.000075 192.168.10.1:5060 -> 192.168.10.1:5060 SIP/2.0 513 Message too big Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.0c3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.fb3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.eb3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.db3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.cb3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.bb3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.ab3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.9b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.8b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.7b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.6b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.5b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.4b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.3b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK6e959f15;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as27bcb902 To: sip:192.168.10.1;tag=36839585464337ac048b06b445c90d99.81d6 Call-ID: 6a62a8060ad9e10516108f335f2defae@192.168.10.1 CSeq: 102 OPTIONS Server: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.000117 192.168.10.1:5060 -> 192.168.10.1:5060 SIP/2.0 513 Message too big Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.fb3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.eb3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.db3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.cb3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.bb3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.ab3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.9b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.8b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.7b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.6b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.5b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.4b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.3b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK6e959f15;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as27bcb902 To: sip:192.168.10.1;tag=36839585464337ac048b06b445c90d99.81d6 Call-ID: 6a62a8060ad9e10516108f335f2defae@192.168.10.1 CSeq: 102 OPTIONS Server: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.449818 192.168.10.1:5060 -> 192.168.10.1:5060 OPTIONS sip:192.168.10.1 SIP/2.0 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Record-Route: sip:192.168.10.1;lr=on;ftag=as27bcb902 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.7b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.6b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.5b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.4b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.3b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK6e959f15;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as27bcb902 To: sip:192.168.10.1 Contact: sip:asterisk@192.168.10.1:5070 Call-ID: 6a62a8060ad9e10516108f335f2defae@192.168.10.1 CSeq: 102 OPTIONS User-Agent: Asterisk PBX Max-Forwards: 65 Date: Tue, 02 Sep 2008 04:38:35 GMT Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, SUBSCRIBE, NOTIFY Supported: replaces Content-Length: 0
# U +0.000163 192.168.10.1:5060 -> 192.168.10.1:5060 SIP/2.0 404 User Not Found Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.7b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.6b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.5b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.4b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.3b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK6e959f15;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as27bcb902 To: sip:192.168.10.1;tag=36839585464337ac048b06b445c90d99.014e Call-ID: 6a62a8060ad9e10516108f335f2defae@192.168.10.1 CSeq: 102 OPTIONS Server: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.000044 192.168.10.1:5060 -> 192.168.10.1:5060 SIP/2.0 404 User Not Found Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.7b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.6b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.5b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.4b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK34b6.3b3fbb64.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK6e959f15;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as27bcb902 To: sip:192.168.10.1;tag=36839585464337ac048b06b445c90d99.be56 Call-ID: 6a62a8060ad9e10516108f335f2defae@192.168.10.1 CSeq: 102 OPTIONS Server: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +1.179682 192.168.10.28:5060 -> 192.168.10.1:5060
( ! c'# # U +0.277806 192.168.10.30:5060 -> 192.168.10.1:5060 INVITE sip:119@192.168.10.1 SIP/2.0 Via: SIP/2.0/UDP 192.168.10.30:5060;branch=z9hG4bKe5b04c74a3647437 From: sip:120@192.168.10.1;tag=9023ad24314618f6 To: sip:119@192.168.10.1 Contact: sip:120@192.168.10.30:5060 Supported: replaces, timer, path Call-ID: 3f438e56a3007653@192.168.10.30 CSeq: 32736 INVITE User-Agent: Grandstream GXV3000 1.1.3.14 Max-Forwards: 70 Allow: INVITE,ACK,CANCEL,BYE,NOTIFY,REFER,OPTIONS,INFO,SUBSCRIBE,UPDATE,PRACK Content-Type: application/sdp Content-Length: 545
v=0 o=120 8000 8000 IN IP4 192.168.10.30 s=SIP Call c=IN IP4 192.168.10.30 t=0 0 m=audio 5004 RTP/AVP 0 18 4 3 2 101 a=sendrecv a=rtpmap:0 PCMU/8000 a=rtpmap:18 G729/8000 a=rtpmap:4 G723/8000 a=rtpmap:3 GSM/8000 a=rtpmap:2 G726-32/8000 a=ptime:20 a=rtpmap:101 telephone-event/8000 a=fmtp:101 0-11 m=video 5006 RTP/AVP 99 34 a=sendrecv a=rtpmap:99 H264/90000 a=fmtp:99 profile-level-id=428014; packetization-mode=0; sprop-parameter-sets=Z0KADJWgUH5A,aM4BryA= a=rtpmap:34 H263/90000 a=fmtp:34 CIF=2 MaxBR=1280 a=framerate:20
# U +0.002125 192.168.10.1:5060 -> 192.168.10.30:5060 SIP/2.0 407 Proxy Authentication Required Via: SIP/2.0/UDP 192.168.10.30:5060;branch=z9hG4bKe5b04c74a3647437 From: sip:120@192.168.10.1;tag=9023ad24314618f6 To: sip:119@192.168.10.1;tag=36839585464337ac048b06b445c90d99.367d Call-ID: 3f438e56a3007653@192.168.10.30 CSeq: 32736 INVITE Proxy-Authenticate: Digest realm="192.168.10.1", nonce="48bcc479000000693b14ecce102e471124a8756ca2a71980" Server: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.001806 192.168.10.30:5060 -> 192.168.10.1:5060 ACK sip:119@192.168.10.1 SIP/2.0 Via: SIP/2.0/UDP 192.168.10.30:5060;branch=z9hG4bKe5b04c74a3647437 From: sip:120@192.168.10.1;tag=9023ad24314618f6 To: sip:119@192.168.10.1;tag=36839585464337ac048b06b445c90d99.367d Contact: sip:120@192.168.10.30:5060 Call-ID: 3f438e56a3007653@192.168.10.30 CSeq: 32736 ACK User-Agent: Grandstream GXV3000 1.1.3.14 Max-Forwards: 70 Allow: INVITE,ACK,CANCEL,BYE,NOTIFY,REFER,OPTIONS,INFO,SUBSCRIBE,UPDATE,PRACK Content-Length: 0
# U +0.001448 192.168.10.30:5060 -> 192.168.10.1:5060 INVITE sip:119@192.168.10.1 SIP/2.0 Via: SIP/2.0/UDP 192.168.10.30:5060;branch=z9hG4bK3c146b274dc2f6a0 From: sip:120@192.168.10.1;tag=9023ad24314618f6 To: sip:119@192.168.10.1 Contact: sip:120@192.168.10.30:5060 Supported: replaces, timer, path Proxy-Authorization: Digest username="120", realm="192.168.10.1", algorithm=MD5, uri="sip:119@192.168.10.1", nonce="48bcc479000000693b14ecce102e471124a8756ca2a71980", response="037ec16aad875b610d2e2a42469b36ba" Call-ID: 3f438e56a3007653@192.168.10.30 CSeq: 32737 INVITE User-Agent: Grandstream GXV3000 1.1.3.14 Max-Forwards: 70 Allow: INVITE,ACK,CANCEL,BYE,NOTIFY,REFER,OPTIONS,INFO,SUBSCRIBE,UPDATE,PRACK Content-Type: application/sdp Content-Length: 545
v=0 o=120 8000 8001 IN IP4 192.168.10.30 s=SIP Call c=IN IP4 192.168.10.30 t=0 0 m=audio 5004 RTP/AVP 0 18 4 3 2 101 a=sendrecv a=rtpmap:0 PCMU/8000 a=rtpmap:18 G729/8000 a=rtpmap:4 G723/8000 a=rtpmap:3 GSM/8000 a=rtpmap:2 G726-32/8000 a=ptime:20 a=rtpmap:101 telephone-event/8000 a=fmtp:101 0-11 m=video 5006 RTP/AVP 99 34 a=sendrecv a=rtpmap:99 H264/90000 a=fmtp:99 profile-level-id=428014; packetization-mode=0; sprop-parameter-sets=Z0KADJWgUH5A,aM4BryA= a=rtpmap:34 H263/90000 a=fmtp:34 CIF=2 MaxBR=1280 a=framerate:20
# U +0.000748 192.168.10.1:5060 -> 192.168.10.30:5060 SIP/2.0 100 Giving a try Via: SIP/2.0/UDP 192.168.10.30:5060;branch=z9hG4bK3c146b274dc2f6a0 From: sip:120@192.168.10.1;tag=9023ad24314618f6 To: sip:119@192.168.10.1 Call-ID: 3f438e56a3007653@192.168.10.30 CSeq: 32737 INVITE Server: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.000070 192.168.10.1:5060 -> 192.168.10.28:5060 INVITE sip:119@192.168.10.28:5060 SIP/2.0 Record-Route: sip:192.168.10.1;lr=on;ftag=9023ad24314618f6 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK7bf1.69425517.0 Via: SIP/2.0/UDP 192.168.10.30:5060;branch=z9hG4bK3c146b274dc2f6a0 From: sip:120@192.168.10.1;tag=9023ad24314618f6 To: sip:119@192.168.10.1 Contact: sip:120@192.168.10.30:5060 Supported: replaces, timer, path Call-ID: 3f438e56a3007653@192.168.10.30 CSeq: 32737 INVITE User-Agent: Grandstream GXV3000 1.1.3.14 Max-Forwards: 69 Allow: INVITE,ACK,CANCEL,BYE,NOTIFY,REFER,OPTIONS,INFO,SUBSCRIBE,UPDATE,PRACK Content-Type: application/sdp Content-Length: 545
v=0 o=120 8000 8001 IN IP4 192.168.10.30 s=SIP Call c=IN IP4 192.168.10.30 t=0 0 m=audio 5004 RTP/AVP 0 18 4 3 2 101 a=sendrecv a=rtpmap:0 PCMU/8000 a=rtpmap:18 G729/8000 a=rtpmap:4 G723/8000 a=rtpmap:3 GSM/8000 a=rtpmap:2 G726-32/8000 a=ptime:20 a=rtpmap:101 telephone-event/8000 a=fmtp:101 0-11 m=video 5006 RTP/AVP 99 34 a=sendrecv a=rtpmap:99 H264/90000 a=fmtp:99 profile-level-id=428014; packetization-mode=0; sprop-parameter-sets=Z0KADJWgUH5A,aM4BryA= a=rtpmap:34 H263/90000 a=fmtp:34 CIF=2 MaxBR=1280 a=framerate:20
# U +0.002455 192.168.10.28:5060 -> 192.168.10.1:5060 SIP/2.0 100 Trying Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK7bf1.69425517.0 Via: SIP/2.0/UDP 192.168.10.30:5060;branch=z9hG4bK3c146b274dc2f6a0 From: sip:120@192.168.10.1;tag=9023ad24314618f6 To: sip:119@192.168.10.1 Call-ID: 3f438e56a3007653@192.168.10.30 CSeq: 32737 INVITE User-Agent: Grandstream GXV3000 1.1.3.14 Content-Length: 0
# U +0.000529 192.168.10.28:5060 -> 192.168.10.1:5060 SIP/2.0 180 Ringing Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK7bf1.69425517.0 Via: SIP/2.0/UDP 192.168.10.30:5060;branch=z9hG4bK3c146b274dc2f6a0 Record-Route: sip:192.168.10.1;lr=on;ftag=9023ad24314618f6 From: sip:120@192.168.10.1;tag=9023ad24314618f6 To: sip:119@192.168.10.1;tag=9f8194f31a06e005 Call-ID: 3f438e56a3007653@192.168.10.30 CSeq: 32737 INVITE User-Agent: Grandstream GXV3000 1.1.3.14 Contact: sip:119@192.168.10.28:5060 Allow: INVITE,ACK,CANCEL,BYE,NOTIFY,REFER,OPTIONS,INFO,SUBSCRIBE,UPDATE,PRACK Content-Length: 0
# U +0.000086 192.168.10.1:5060 -> 192.168.10.30:5060 SIP/2.0 180 Ringing Via: SIP/2.0/UDP 192.168.10.30:5060;branch=z9hG4bK3c146b274dc2f6a0 Record-Route: sip:192.168.10.1;lr=on;ftag=9023ad24314618f6 From: sip:120@192.168.10.1;tag=9023ad24314618f6 To: sip:119@192.168.10.1;tag=9f8194f31a06e005 Call-ID: 3f438e56a3007653@192.168.10.30 CSeq: 32737 INVITE User-Agent: Grandstream GXV3000 1.1.3.14 Contact: sip:119@192.168.10.28:5060 Allow: INVITE,ACK,CANCEL,BYE,NOTIFY,REFER,OPTIONS,INFO,SUBSCRIBE,UPDATE,PRACK Content-Length: 0
# U +1.841001 190.184.35.4:5060 -> 192.168.1.64:5060 OPTIONS sip:130@192.168.1.64:5060 SIP/2.0 Via: SIP/2.0/UDP 190.184.35.4:5060;branch=z9hG4bK67e6c4dd;rport From: "asterisk" sip:asterisk@190.184.35.4;tag=as128f626f To: sip:130@192.168.1.64:5060 Contact: sip:asterisk@190.184.35.4 Call-ID: 18e23ae448d1bb8b40ef9edd1c22bf61@190.184.35.4 CSeq: 102 OPTIONS User-Agent: Asterisk PBX Max-Forwards: 70 Date: Tue, 02 Sep 2008 04:38:38 GMT Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, SUBSCRIBE, NOTIFY Supported: replaces Content-Length: 0
# U +0.000019 190.184.35.4:5060 -> 192.168.10.19:5060 OPTIONS sip:130@192.168.1.64:5060 SIP/2.0 Via: SIP/2.0/UDP 190.184.35.4:5060;branch=z9hG4bK67e6c4dd;rport From: "asterisk" sip:asterisk@190.184.35.4;tag=as128f626f To: sip:130@192.168.1.64:5060 Contact: sip:asterisk@190.184.35.4 Call-ID: 18e23ae448d1bb8b40ef9edd1c22bf61@190.184.35.4 CSeq: 102 OPTIONS User-Agent: Asterisk PBX Max-Forwards: 70 Date: Tue, 02 Sep 2008 04:38:38 GMT Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, SUBSCRIBE, NOTIFY Supported: replaces Content-Length: 0
# U +0.015685 192.168.10.19:5060 -> 190.184.35.4:5060 SIP/2.0 200 OK To: sip:130@192.168.1.64:5060;tag=570b2f6c3d3ff01ei1 From: "asterisk" sip:asterisk@190.184.35.4;tag=as128f626f Call-ID: 18e23ae448d1bb8b40ef9edd1c22bf61@190.184.35.4 CSeq: 102 OPTIONS Via: SIP/2.0/UDP 190.184.35.4:5060;branch=z9hG4bK67e6c4dd Server: Linksys/SPA942-5.2.8 Content-Length: 0 Allow: ACK, BYE, CANCEL, INFO, INVITE, NOTIFY, OPTIONS, REFER Supported: replaces
# U +0.000014 192.168.1.64:5060 -> 190.184.35.4:5060 SIP/2.0 200 OK To: sip:130@192.168.1.64:5060;tag=570b2f6c3d3ff01ei1 From: "asterisk" sip:asterisk@190.184.35.4;tag=as128f626f Call-ID: 18e23ae448d1bb8b40ef9edd1c22bf61@190.184.35.4 CSeq: 102 OPTIONS Via: SIP/2.0/UDP 190.184.35.4:5060;branch=z9hG4bK67e6c4dd Server: Linksys/SPA942-5.2.8 Content-Length: 0 Allow: ACK, BYE, CANCEL, INFO, INVITE, NOTIFY, OPTIONS, REFER Supported: replaces
# U +0.440180 192.168.10.19:5060 -> 190.184.35.4:5060 NOTIFY sip:190.184.35.4 SIP/2.0 Via: SIP/2.0/UDP 192.168.10.19:5060;branch=z9hG4bK-4e92e5f6 From: sip:130@190.184.35.4;tag=abe1d714571d2c96o1 To: sip:190.184.35.4 Call-ID: a0e3f31c-f7fe802e@192.168.10.19 CSeq: 409 NOTIFY Max-Forwards: 70 Event: keep-alive User-Agent: Linksys/SPA942-5.2.8 Content-Length: 0
# U +0.000014 192.168.1.64:5060 -> 190.184.35.4:5060 NOTIFY sip:190.184.35.4 SIP/2.0 Via: SIP/2.0/UDP 192.168.10.19:5060;branch=z9hG4bK-4e92e5f6 From: sip:130@190.184.35.4;tag=abe1d714571d2c96o1 To: sip:190.184.35.4 Call-ID: a0e3f31c-f7fe802e@192.168.10.19 CSeq: 409 NOTIFY Max-Forwards: 70 Event: keep-alive User-Agent: Linksys/SPA942-5.2.8 Content-Length: 0
# U +0.070945 190.184.35.4:5060 -> 192.168.1.64:5060 SIP/2.0 489 Bad event Via: SIP/2.0/UDP 192.168.10.19:5060;branch=z9hG4bK-4e92e5f6;received=192.168.1.64 From: sip:130@190.184.35.4;tag=abe1d714571d2c96o1 To: sip:190.184.35.4;tag=as54fa6e92 Call-ID: a0e3f31c-f7fe802e@192.168.10.19 CSeq: 409 NOTIFY User-Agent: Asterisk PBX Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, SUBSCRIBE, NOTIFY Supported: replaces Content-Length: 0
# U +0.000016 190.184.35.4:5060 -> 192.168.10.19:5060 SIP/2.0 489 Bad event Via: SIP/2.0/UDP 192.168.10.19:5060;branch=z9hG4bK-4e92e5f6;received=192.168.1.64 From: sip:130@190.184.35.4;tag=abe1d714571d2c96o1 To: sip:190.184.35.4;tag=as54fa6e92 Call-ID: a0e3f31c-f7fe802e@192.168.10.19 CSeq: 409 NOTIFY User-Agent: Asterisk PBX Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, SUBSCRIBE, NOTIFY Supported: replaces Content-Length: 0
# U +15.008778 192.168.10.19:5060 -> 190.184.35.4:5060 NOTIFY sip:190.184.35.4 SIP/2.0 Via: SIP/2.0/UDP 192.168.10.19:5060;branch=z9hG4bK-b5543b0f From: sip:130@190.184.35.4;tag=abe1d714571d2c96o1 To: sip:190.184.35.4 Call-ID: a0e3f31c-f7fe802e@192.168.10.19 CSeq: 410 NOTIFY Max-Forwards: 70 Event: keep-alive User-Agent: Linksys/SPA942-5.2.8 Content-Length: 0
# U +0.000020 192.168.1.64:5060 -> 190.184.35.4:5060 NOTIFY sip:190.184.35.4 SIP/2.0 Via: SIP/2.0/UDP 192.168.10.19:5060;branch=z9hG4bK-b5543b0f From: sip:130@190.184.35.4;tag=abe1d714571d2c96o1 To: sip:190.184.35.4 Call-ID: a0e3f31c-f7fe802e@192.168.10.19 CSeq: 410 NOTIFY Max-Forwards: 70 Event: keep-alive User-Agent: Linksys/SPA942-5.2.8 Content-Length: 0
# U +0.058674 190.184.35.4:5060 -> 192.168.1.64:5060 SIP/2.0 489 Bad event Via: SIP/2.0/UDP 192.168.10.19:5060;branch=z9hG4bK-b5543b0f;received=192.168.1.64 From: sip:130@190.184.35.4;tag=abe1d714571d2c96o1 To: sip:190.184.35.4;tag=as59124c00 Call-ID: a0e3f31c-f7fe802e@192.168.10.19 CSeq: 410 NOTIFY User-Agent: Asterisk PBX Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, SUBSCRIBE, NOTIFY Supported: replaces Content-Length: 0
# U +0.000020 190.184.35.4:5060 -> 192.168.10.19:5060 SIP/2.0 489 Bad event Via: SIP/2.0/UDP 192.168.10.19:5060;branch=z9hG4bK-b5543b0f;received=192.168.1.64 From: sip:130@190.184.35.4;tag=abe1d714571d2c96o1 To: sip:190.184.35.4;tag=as59124c00 Call-ID: a0e3f31c-f7fe802e@192.168.10.19 CSeq: 410 NOTIFY User-Agent: Asterisk PBX Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, SUBSCRIBE, NOTIFY Supported: replaces Content-Length: 0
# U +1.996144 192.168.10.1:5060 -> 192.168.10.1:5070 INVITE sip:u119@192.168.10.1:5070 SIP/2.0 Record-Route: sip:192.168.10.1;lr=on;ftag=9023ad24314618f6 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK7bf1.69425517.1 Via: SIP/2.0/UDP 192.168.10.30:5060;branch=z9hG4bK3c146b274dc2f6a0 From: sip:120@192.168.10.1;tag=9023ad24314618f6 To: sip:119@192.168.10.1 Contact: sip:120@192.168.10.30:5060 Supported: replaces, timer, path Call-ID: 3f438e56a3007653@192.168.10.30 CSeq: 32737 INVITE User-Agent: Grandstream GXV3000 1.1.3.14 Max-Forwards: 69 Allow: INVITE,ACK,CANCEL,BYE,NOTIFY,REFER,OPTIONS,INFO,SUBSCRIBE,UPDATE,PRACK Content-Type: application/sdp Content-Length: 545
v=0 o=120 8000 8001 IN IP4 192.168.10.30 s=SIP Call c=IN IP4 192.168.10.30 t=0 0 m=audio 5004 RTP/AVP 0 18 4 3 2 101 a=sendrecv a=rtpmap:0 PCMU/8000 a=rtpmap:18 G729/8000 a=rtpmap:4 G723/8000 a=rtpmap:3 GSM/8000 a=rtpmap:2 G726-32/8000 a=ptime:20 a=rtpmap:101 telephone-event/8000 a=fmtp:101 0-11 m=video 5006 RTP/AVP 99 34 a=sendrecv a=rtpmap:99 H264/90000 a=fmtp:99 profile-level-id=428014; packetization-mode=0; sprop-parameter-sets=Z0KADJWgUH5A,aM4BryA= a=rtpmap:34 H263/90000 a=fmtp:34 CIF=2 MaxBR=1280 a=framerate:20
# U +0.000101 192.168.10.1:5060 -> 192.168.10.28:5060 CANCEL sip:119@192.168.10.28:5060 SIP/2.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK7bf1.69425517.0 From: sip:120@192.168.10.1;tag=9023ad24314618f6 Call-ID: 3f438e56a3007653@192.168.10.30 To: sip:119@192.168.10.1 CSeq: 32737 CANCEL Max-Forwards: 70 User-Agent: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.000376 192.168.10.1:5070 -> 192.168.10.1:5060 SIP/2.0 404 Not Found Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK7bf1.69425517.1;received=192.168.10.1 Via: SIP/2.0/UDP 192.168.10.30:5060;branch=z9hG4bK3c146b274dc2f6a0 From: sip:120@192.168.10.1;tag=9023ad24314618f6 To: sip:119@192.168.10.1;tag=as4eca27d6 Call-ID: 3f438e56a3007653@192.168.10.30 CSeq: 32737 INVITE User-Agent: Asterisk PBX Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, SUBSCRIBE, NOTIFY Supported: replaces Content-Length: 0
# U +0.000165 192.168.10.1:5060 -> 192.168.10.1:5070 ACK sip:u119@192.168.10.1:5070 SIP/2.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK7bf1.69425517.1 From: sip:120@192.168.10.1;tag=9023ad24314618f6 Call-ID: 3f438e56a3007653@192.168.10.30 To: sip:119@192.168.10.1;tag=as4eca27d6 CSeq: 32737 ACK Max-Forwards: 70 User-Agent: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.000081 192.168.10.1:5060 -> 192.168.10.30:5060 SIP/2.0 404 Not Found Via: SIP/2.0/UDP 192.168.10.30:5060;branch=z9hG4bK3c146b274dc2f6a0 From: sip:120@192.168.10.1;tag=9023ad24314618f6 To: sip:119@192.168.10.1;tag=as4eca27d6 Call-ID: 3f438e56a3007653@192.168.10.30 CSeq: 32737 INVITE User-Agent: Asterisk PBX Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, SUBSCRIBE, NOTIFY Supported: replaces Content-Length: 0
# U +0.001228 192.168.10.28:5060 -> 192.168.10.1:5060 SIP/2.0 200 OK Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK7bf1.69425517.0 From: sip:120@192.168.10.1;tag=9023ad24314618f6 To: sip:119@192.168.10.1;tag=9f8194f31a06e005 Call-ID: 3f438e56a3007653@192.168.10.30 CSeq: 32737 CANCEL User-Agent: Grandstream GXV3000 1.1.3.14 Supported: replaces, timer, 100rel, path Content-Length: 0
# U +0.000439 192.168.10.28:5060 -> 192.168.10.1:5060 SIP/2.0 487 Request Cancelled Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK7bf1.69425517.0 Via: SIP/2.0/UDP 192.168.10.30:5060;branch=z9hG4bK3c146b274dc2f6a0 Record-Route: sip:192.168.10.1;lr=on;ftag=9023ad24314618f6 From: sip:120@192.168.10.1;tag=9023ad24314618f6 To: sip:119@192.168.10.1;tag=9f8194f31a06e005 Call-ID: 3f438e56a3007653@192.168.10.30 CSeq: 32737 INVITE User-Agent: Grandstream GXV3000 1.1.3.14 Content-Length: 0
# U +0.000097 192.168.10.1:5060 -> 192.168.10.28:5060 ACK sip:119@192.168.10.28:5060 SIP/2.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK7bf1.69425517.0 From: sip:120@192.168.10.1;tag=9023ad24314618f6 Call-ID: 3f438e56a3007653@192.168.10.30 To: sip:119@192.168.10.1;tag=9f8194f31a06e005 CSeq: 32737 ACK Max-Forwards: 70 User-Agent: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.000386 192.168.10.30:5060 -> 192.168.10.1:5060 ACK sip:119@192.168.10.1 SIP/2.0 Via: SIP/2.0/UDP 192.168.10.30:5060;branch=z9hG4bK3c146b274dc2f6a0 From: sip:120@192.168.10.1;tag=9023ad24314618f6 To: sip:119@192.168.10.1;tag=as4eca27d6 Contact: sip:120@192.168.10.30:5060 Proxy-Authorization: Digest username="120", realm="192.168.10.1", algorithm=MD5, uri="sip:119@192.168.10.1", nonce="48bcc479000000693b14ecce102e471124a8756ca2a71980", response="037ec16aad875b610d2e2a42469b36ba" Call-ID: 3f438e56a3007653@192.168.10.30 CSeq: 32737 ACK User-Agent: Grandstream GXV3000 1.1.3.14 Max-Forwards: 70 Allow: INVITE,ACK,CANCEL,BYE,NOTIFY,REFER,OPTIONS,INFO,SUBSCRIBE,UPDATE,PRACK Content-Length: 0
# U +0.278473 192.168.10.28:5060 -> 192.168.10.1:5060
( % e c # U +2.985659 192.168.10.19:5060 -> 192.168.10.1:5060 BYE sip:119@192.168.10.28:5060 SIP/2.0 Via: SIP/2.0/UDP 192.168.10.19:5060;branch=z9hG4bK-15d9d72 From: sip:110@192.168.10.1;tag=f23780cba3cea626i0 To: sip:119@192.168.10.1;tag=c15633260ef7e270 Call-ID: 7473a731cc64e8b7@192.168.10.28 CSeq: 101 BYE Max-Forwards: 70 Route: sip:192.168.10.1;lr=on;ftag=c15633260ef7e270 User-Agent: Linksys/SPA942-5.2.8 Content-Length: 0
# U +0.000226 192.168.10.1:5060 -> 192.168.10.28:5060 BYE sip:119@192.168.10.28:5060 SIP/2.0 Record-Route: sip:192.168.10.1;lr=on;ftag=f23780cba3cea626i0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bKa249.55073447.0 Via: SIP/2.0/UDP 192.168.10.19:5060;branch=z9hG4bK-15d9d72 From: sip:110@192.168.10.1;tag=f23780cba3cea626i0 To: sip:119@192.168.10.1;tag=c15633260ef7e270 Call-ID: 7473a731cc64e8b7@192.168.10.28 CSeq: 101 BYE Max-Forwards: 69 User-Agent: Linksys/SPA942-5.2.8 Content-Length: 0 P-hint: rr-enforced
# U +0.001672 192.168.10.28:5060 -> 192.168.10.1:5060 SIP/2.0 200 OK Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bKa249.55073447.0 Via: SIP/2.0/UDP 192.168.10.19:5060;branch=z9hG4bK-15d9d72 Record-Route: sip:192.168.10.1;lr=on;ftag=f23780cba3cea626i0 From: sip:110@192.168.10.1;tag=f23780cba3cea626i0 To: sip:119@192.168.10.1;tag=c15633260ef7e270 Call-ID: 7473a731cc64e8b7@192.168.10.28 CSeq: 101 BYE User-Agent: Grandstream GXV3000 1.1.3.14 Contact: sip:119@192.168.10.28:5060 Allow: INVITE,ACK,CANCEL,BYE,NOTIFY,REFER,OPTIONS,INFO,SUBSCRIBE,UPDATE,PRACK Supported: replaces, timer, 100rel, path Content-Length: 0
# U +0.000119 192.168.10.1:5060 -> 192.168.10.19:5060 SIP/2.0 200 OK Via: SIP/2.0/UDP 192.168.10.19:5060;branch=z9hG4bK-15d9d72 Record-Route: sip:192.168.10.1;lr=on;ftag=f23780cba3cea626i0 From: sip:110@192.168.10.1;tag=f23780cba3cea626i0 To: sip:119@192.168.10.1;tag=c15633260ef7e270 Call-ID: 7473a731cc64e8b7@192.168.10.28 CSeq: 101 BYE User-Agent: Grandstream GXV3000 1.1.3.14 Contact: sip:119@192.168.10.28:5060 Allow: INVITE,ACK,CANCEL,BYE,NOTIFY,REFER,OPTIONS,INFO,SUBSCRIBE,UPDATE,PRACK Supported: replaces, timer, 100rel, path Content-Length: 0
exit 242 received, 0 dropped
saludoss
rickygm
El Monday 01 September 2008 14:44:28 troxlinux escribió:
no porque no me funciona el callforward y lo que deseo también es hacer un forward de una extensión a otra, si alguien llama a la extensión 110 esta pase a la 119 , por eso posteaba mi configuración...
En tu post origina comentabas que tenías problemas de que el voicemail no funcionaba ... por eso te dije que no hacía falta tu config de kamailio porque es EVIDENTÍSIMO (solo con ver el log de Asterisk) el porqué no te funciona el voicemail.
Los temas de los forwards son otra cosa a parte ...
El Monday 01 September 2008 14:44:28 troxlinux escribió:
con ese warning , tengo en el asterisk declarado en extension.conf algo asi, entiendo que al detectar el ocupado o no disponible el salta al voicemail
exten=>_u.,1,Voicemail(u${openser}) exten=>_u.,2,hangup() exten=>_b.,1,Voicemail(b${openser}) exten=>_b.,2,hangup()
?
A ver ... sin ánimo de ofender, no tienes ni puta idea de lo que está diciendo el warning, porque si lo relees verás que te dice que no encuentra la aplicación VoiceMail, error que UNICAMENTE se produce si no tienes cargado el soporte de voicemail en asterisk, ni siquiera te está diciendo que el buzón no exista, te está diciendo que estás llamando a una aplicación que no existe. Tienes que revisar la configuración de ese asterisk, porque es evidente que no está bien, luego ya podrás volver a pelearte si te funcionan bien o nó los call-forward.
El Monday 01 September 2008 04:38:06 troxlinux escribió:
No application 'Voicemail' for extension (netsoluciones, u110, 1) == Spawn extension (netsoluciones, u110, 1) exited non-zero on 'SIP/192.168.10.1-b7d011d8'
¿Qué te dice este comando CLI?
CLI> core show application Voicemail
Iñaki pues realmente chk el asterisk , y si tenia problemas al ejecutar el core show application Voicemail me salia en el CLI lo siguiente
"Your application(s) is (are) not registerednot registered "
tuve que recompilar el bendito asterisk y me sale el voicemail cuando no contesto la llamada , pero si esta ocupada no salta al voicemail hasta después me sale como no disponible ..
como es la funcion dentro del t_on_failure
revert_uri(); prefix("b"); xlog("L_ERR","Stepped into the 486 ruri=<$ru>"); rewritehostport("192.168.1.171"); append_branch(); route(1); exit; }
no lo esta tomando , de echo pienso que el cuando esta busy deberia de mandar un ACK ACK sip:b112@192.168.10.1:5070 SIP/2.0
ni ideas , alguien que me corrija
saludos
rickygm
anexo una traza sip de dos UA hablando entre si
######## Traza Sip #############
interface: any filter: (ip) and ( port 5060 ) # U +0.041357 192.168.10.27:5060 -> 192.168.10.1:5060 INVITE sip:116@192.168.10.1 SIP/2.0 Via: SIP/2.0/UDP 192.168.10.27:5060;branch=z9hG4bKc7855175a8d59afa From: "Ventas" sip:112@192.168.10.1;tag=4bb722d336f8d7ae To: sip:116@192.168.10.1 Contact: sip:112@192.168.10.27:5060;transport=udp Supported: replaces, timer, path Call-ID: 1eecac46685a2dfd@192.168.10.27 CSeq: 59093 INVITE User-Agent: Grandstream GXP2020 1.1.6.16 Max-Forwards: 70 Allow: INVITE,ACK,CANCEL,BYE,NOTIFY,REFER,OPTIONS,INFO,SUBSCRIBE,UPDATE,PRACK,MESSAGE Content-Type: application/sdp Content-Length: 358
v=0 o=112 8000 8000 IN IP4 192.168.10.27 s=SIP Call c=IN IP4 192.168.10.27 t=0 0 m=audio 5004 RTP/AVP 0 18 3 97 2 9 101 a=sendrecv a=rtpmap:0 PCMU/8000 a=rtpmap:18 G729/8000 a=rtpmap:3 GSM/8000 a=rtpmap:97 iLBC/8000 a=fmtp:97 mode=20 a=rtpmap:2 G726-32/8000 a=rtpmap:9 G722/16000 a=ptime:20 a=rtpmap:101 telephone-event/8000 a=fmtp:101 0-11
# U +0.000155 192.168.10.1:5060 -> 192.168.10.27:5060 SIP/2.0 407 Proxy Authentication Required Via: SIP/2.0/UDP 192.168.10.27:5060;branch=z9hG4bKc7855175a8d59afa From: "Ventas" sip:112@192.168.10.1;tag=4bb722d336f8d7ae To: sip:116@192.168.10.1;tag=36839585464337ac048b06b445c90d99.0e80 Call-ID: 1eecac46685a2dfd@192.168.10.27 CSeq: 59093 INVITE Proxy-Authenticate: Digest realm="192.168.10.1", nonce="48bee705000000152d0cc74c4b43efc098e1767e19eebb8b" Server: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.020113 192.168.10.27:5060 -> 192.168.10.1:5060 ACK sip:116@192.168.10.1 SIP/2.0 Via: SIP/2.0/UDP 192.168.10.27:5060;branch=z9hG4bKc7855175a8d59afa From: "Ventas" sip:112@192.168.10.1;tag=4bb722d336f8d7ae To: sip:116@192.168.10.1;tag=36839585464337ac048b06b445c90d99.0e80 Contact: sip:112@192.168.10.27:5060;transport=udp Supported: path Call-ID: 1eecac46685a2dfd@192.168.10.27 CSeq: 59093 ACK User-Agent: Grandstream GXP2020 1.1.6.16 Max-Forwards: 70 Allow: INVITE,ACK,CANCEL,BYE,NOTIFY,REFER,OPTIONS,INFO,SUBSCRIBE,UPDATE,PRACK,MESSAGE Content-Length: 0
# U +0.024625 192.168.10.27:5060 -> 192.168.10.1:5060 INVITE sip:116@192.168.10.1 SIP/2.0 Via: SIP/2.0/UDP 192.168.10.27:5060;branch=z9hG4bKd17225261446022b From: "Ventas" sip:112@192.168.10.1;tag=4bb722d336f8d7ae To: sip:116@192.168.10.1 Contact: sip:112@192.168.10.27:5060;transport=udp Supported: replaces, timer, path Proxy-Authorization: Digest username="112", realm="192.168.10.1", algorithm=MD5, uri="sip:116@192.168.10.1", nonce="48bee705000000152d0cc74c4b43efc098e1767e19eebb8b", response="62e15029079383c7c19f24586fbcbc90" Call-ID: 1eecac46685a2dfd@192.168.10.27 CSeq: 59094 INVITE User-Agent: Grandstream GXP2020 1.1.6.16 Max-Forwards: 70 Allow: INVITE,ACK,CANCEL,BYE,NOTIFY,REFER,OPTIONS,INFO,SUBSCRIBE,UPDATE,PRACK,MESSAGE Content-Type: application/sdp Content-Length: 358
v=0 o=112 8000 8001 IN IP4 192.168.10.27 s=SIP Call c=IN IP4 192.168.10.27 t=0 0 m=audio 5004 RTP/AVP 0 18 3 97 2 9 101 a=sendrecv a=rtpmap:0 PCMU/8000 a=rtpmap:18 G729/8000 a=rtpmap:3 GSM/8000 a=rtpmap:97 iLBC/8000 a=fmtp:97 mode=20 a=rtpmap:2 G726-32/8000 a=rtpmap:9 G722/16000 a=ptime:20 a=rtpmap:101 telephone-event/8000 a=fmtp:101 0-11
# U +0.000731 192.168.10.1:5060 -> 192.168.10.27:5060 SIP/2.0 100 Giving a try Via: SIP/2.0/UDP 192.168.10.27:5060;branch=z9hG4bKd17225261446022b From: "Ventas" sip:112@192.168.10.1;tag=4bb722d336f8d7ae To: sip:116@192.168.10.1 Call-ID: 1eecac46685a2dfd@192.168.10.27 CSeq: 59094 INVITE Server: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.000070 192.168.10.1:5060 -> 192.168.10.19:5063 INVITE sip:116@192.168.10.19:5063 SIP/2.0 Record-Route: sip:192.168.10.1;lr=on;ftag=4bb722d336f8d7ae Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bKd896.3420aac4.0 Via: SIP/2.0/UDP 192.168.10.27:5060;branch=z9hG4bKd17225261446022b From: "Ventas" sip:112@192.168.10.1;tag=4bb722d336f8d7ae To: sip:116@192.168.10.1 Contact: sip:112@192.168.10.27:5060;transport=udp Supported: replaces, timer, path Call-ID: 1eecac46685a2dfd@192.168.10.27 CSeq: 59094 INVITE User-Agent: Grandstream GXP2020 1.1.6.16 Max-Forwards: 69 Allow: INVITE,ACK,CANCEL,BYE,NOTIFY,REFER,OPTIONS,INFO,SUBSCRIBE,UPDATE,PRACK,MESSAGE Content-Type: application/sdp Content-Length: 358
v=0 o=112 8000 8001 IN IP4 192.168.10.27 s=SIP Call c=IN IP4 192.168.10.27 t=0 0 m=audio 5004 RTP/AVP 0 18 3 97 2 9 101 a=sendrecv a=rtpmap:0 PCMU/8000 a=rtpmap:18 G729/8000 a=rtpmap:3 GSM/8000 a=rtpmap:97 iLBC/8000 a=fmtp:97 mode=20 a=rtpmap:2 G726-32/8000 a=rtpmap:9 G722/16000 a=ptime:20 a=rtpmap:101 telephone-event/8000 a=fmtp:101 0-11
# U +0.014746 192.168.10.19:5063 -> 192.168.10.1:5060 SIP/2.0 100 Trying To: sip:116@192.168.10.1 From: "Ventas" sip:112@192.168.10.1;tag=4bb722d336f8d7ae Call-ID: 1eecac46685a2dfd@192.168.10.27 CSeq: 59094 INVITE Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bKd896.3420aac4.0 Via: SIP/2.0/UDP 192.168.10.27:5060;branch=z9hG4bKd17225261446022b Record-Route: sip:192.168.10.1;lr=on;ftag=4bb722d336f8d7ae Server: Linksys/SPA942-5.2.8 Content-Length: 0
# U +0.018236 192.168.10.19:5063 -> 192.168.10.1:5060 SIP/2.0 180 Ringing To: sip:116@192.168.10.1;tag=ac0030d286cc8769i3 From: "Ventas" sip:112@192.168.10.1;tag=4bb722d336f8d7ae Call-ID: 1eecac46685a2dfd@192.168.10.27 CSeq: 59094 INVITE Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bKd896.3420aac4.0 Via: SIP/2.0/UDP 192.168.10.27:5060;branch=z9hG4bKd17225261446022b Record-Route: sip:192.168.10.1;lr=on;ftag=4bb722d336f8d7ae Server: Linksys/SPA942-5.2.8 Content-Length: 0
# U +0.000093 192.168.10.1:5060 -> 192.168.10.27:5060 SIP/2.0 180 Ringing To: sip:116@192.168.10.1;tag=ac0030d286cc8769i3 From: "Ventas" sip:112@192.168.10.1;tag=4bb722d336f8d7ae Call-ID: 1eecac46685a2dfd@192.168.10.27 CSeq: 59094 INVITE Via: SIP/2.0/UDP 192.168.10.27:5060;branch=z9hG4bKd17225261446022b Record-Route: sip:192.168.10.1;lr=on;ftag=4bb722d336f8d7ae Server: Linksys/SPA942-5.2.8 Content-Length: 0
# U +7.665628 192.168.10.19:5063 -> 192.168.10.1:5060 SIP/2.0 200 OK To: sip:116@192.168.10.1;tag=ac0030d286cc8769i3 From: "Ventas" sip:112@192.168.10.1;tag=4bb722d336f8d7ae Call-ID: 1eecac46685a2dfd@192.168.10.27 CSeq: 59094 INVITE Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bKd896.3420aac4.0 Via: SIP/2.0/UDP 192.168.10.27:5060;branch=z9hG4bKd17225261446022b Record-Route: sip:192.168.10.1;lr=on;ftag=4bb722d336f8d7ae Contact: sip:116@192.168.10.19:5063 Server: Linksys/SPA942-5.2.8 Content-Length: 208 Allow: ACK, BYE, CANCEL, INFO, INVITE, NOTIFY, OPTIONS, REFER Supported: replaces Content-Type: application/sdp
v=0 o=- 466836 466836 IN IP4 192.168.10.19 s=- c=IN IP4 192.168.10.19 t=0 0 m=audio 16394 RTP/AVP 0 101 a=rtpmap:0 PCMU/8000 a=rtpmap:101 telephone-event/8000 a=fmtp:101 0-15 a=ptime:30 a=sendrecv
# U +0.000132 192.168.10.1:5060 -> 192.168.10.27:5060 SIP/2.0 200 OK To: sip:116@192.168.10.1;tag=ac0030d286cc8769i3 From: "Ventas" sip:112@192.168.10.1;tag=4bb722d336f8d7ae Call-ID: 1eecac46685a2dfd@192.168.10.27 CSeq: 59094 INVITE Via: SIP/2.0/UDP 192.168.10.27:5060;branch=z9hG4bKd17225261446022b Record-Route: sip:192.168.10.1;lr=on;ftag=4bb722d336f8d7ae Contact: sip:116@192.168.10.19:5063 Server: Linksys/SPA942-5.2.8 Content-Length: 208 Allow: ACK, BYE, CANCEL, INFO, INVITE, NOTIFY, OPTIONS, REFER Supported: replaces Content-Type: application/sdp
v=0 o=- 466836 466836 IN IP4 192.168.10.19 s=- c=IN IP4 192.168.10.19 t=0 0 m=audio 16394 RTP/AVP 0 101 a=rtpmap:0 PCMU/8000 a=rtpmap:101 telephone-event/8000 a=fmtp:101 0-15 a=ptime:30 a=sendrecv
# U +0.042577 192.168.10.27:5060 -> 192.168.10.1:5060 ACK sip:116@192.168.10.19:5063 SIP/2.0 Via: SIP/2.0/UDP 192.168.10.27:5060;branch=z9hG4bK504849cf7ebf7d18 Route: sip:192.168.10.1;lr=on;ftag=4bb722d336f8d7ae From: "Ventas" sip:112@192.168.10.1;tag=4bb722d336f8d7ae To: sip:116@192.168.10.1;tag=ac0030d286cc8769i3 Contact: sip:112@192.168.10.27:5060;transport=udp Supported: path Proxy-Authorization: Digest username="112", realm="192.168.10.1", algorithm=MD5, uri="sip:116@192.168.10.1", nonce="48bee705000000152d0cc74c4b43efc098e1767e19eebb8b", response="62e15029079383c7c19f24586fbcbc90" Call-ID: 1eecac46685a2dfd@192.168.10.27 CSeq: 59094 ACK User-Agent: Grandstream GXP2020 1.1.6.16 Max-Forwards: 70 Allow: INVITE,ACK,CANCEL,BYE,NOTIFY,REFER,OPTIONS,INFO,SUBSCRIBE,UPDATE,PRACK,MESSAGE Content-Length: 0
# U +0.000138 192.168.10.1:5060 -> 192.168.10.19:5063 ACK sip:116@192.168.10.19:5063 SIP/2.0 Record-Route: sip:192.168.10.1;lr=on;ftag=4bb722d336f8d7ae Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bKd896.3420aac4.2 Via: SIP/2.0/UDP 192.168.10.27:5060;branch=z9hG4bK504849cf7ebf7d18 From: "Ventas" sip:112@192.168.10.1;tag=4bb722d336f8d7ae To: sip:116@192.168.10.1;tag=ac0030d286cc8769i3 Contact: sip:112@192.168.10.27:5060;transport=udp Supported: path Proxy-Authorization: Digest username="112", realm="192.168.10.1", algorithm=MD5, uri="sip:116@192.168.10.1", nonce="48bee705000000152d0cc74c4b43efc098e1767e19eebb8b", response="62e15029079383c7c19f24586fbcbc90" Call-ID: 1eecac46685a2dfd@192.168.10.27 CSeq: 59094 ACK User-Agent: Grandstream GXP2020 1.1.6.16 Max-Forwards: 69 Allow: INVITE,ACK,CANCEL,BYE,NOTIFY,REFER,OPTIONS,INFO,SUBSCRIBE,UPDATE,PRACK,MESSAGE Content-Length: 0 P-hint: rr-enforced
# U +2.872304 192.168.10.30:5060 -> 192.168.10.1:5060 INVITE sip:112@192.168.10.1 SIP/2.0 Via: SIP/2.0/UDP 192.168.10.30:5060;branch=z9hG4bKfd554d315570d2f4 From: sip:120@192.168.10.1;tag=bef05ab08314d4e6 To: sip:112@192.168.10.1 Contact: sip:120@192.168.10.30:5060 Supported: replaces, timer, path Call-ID: 80e0a2b2c0741cf5@192.168.10.30 CSeq: 9521 INVITE User-Agent: Grandstream GXV3000 1.1.3.14 Max-Forwards: 70 Allow: INVITE,ACK,CANCEL,BYE,NOTIFY,REFER,OPTIONS,INFO,SUBSCRIBE,UPDATE,PRACK Content-Type: application/sdp Content-Length: 545
v=0 o=120 8000 8000 IN IP4 192.168.10.30 s=SIP Call c=IN IP4 192.168.10.30 t=0 0 m=audio 5004 RTP/AVP 0 18 4 3 2 101 a=sendrecv a=rtpmap:0 PCMU/8000 a=rtpmap:18 G729/8000 a=rtpmap:4 G723/8000 a=rtpmap:3 GSM/8000 a=rtpmap:2 G726-32/8000 a=ptime:20 a=rtpmap:101 telephone-event/8000 a=fmtp:101 0-11 m=video 5006 RTP/AVP 99 34 a=sendrecv a=rtpmap:99 H264/90000 a=fmtp:99 profile-level-id=428014; packetization-mode=0; sprop-parameter-sets=Z0KADJWgUH5A,aM4BryA= a=rtpmap:34 H263/90000 a=fmtp:34 CIF=2 MaxBR=1280 a=framerate:20
# U +0.000247 192.168.10.1:5060 -> 192.168.10.30:5060 SIP/2.0 407 Proxy Authentication Required Via: SIP/2.0/UDP 192.168.10.30:5060;branch=z9hG4bKfd554d315570d2f4 From: sip:120@192.168.10.1;tag=bef05ab08314d4e6 To: sip:112@192.168.10.1;tag=36839585464337ac048b06b445c90d99.d084 Call-ID: 80e0a2b2c0741cf5@192.168.10.30 CSeq: 9521 INVITE Proxy-Authenticate: Digest realm="192.168.10.1", nonce="48bee71100000016c0c21b49cc5b55be73e93a492f8d2a04" Server: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.001742 192.168.10.30:5060 -> 192.168.10.1:5060 ACK sip:112@192.168.10.1 SIP/2.0 Via: SIP/2.0/UDP 192.168.10.30:5060;branch=z9hG4bKfd554d315570d2f4 From: sip:120@192.168.10.1;tag=bef05ab08314d4e6 To: sip:112@192.168.10.1;tag=36839585464337ac048b06b445c90d99.d084 Contact: sip:120@192.168.10.30:5060 Call-ID: 80e0a2b2c0741cf5@192.168.10.30 CSeq: 9521 ACK User-Agent: Grandstream GXV3000 1.1.3.14 Max-Forwards: 70 Allow: INVITE,ACK,CANCEL,BYE,NOTIFY,REFER,OPTIONS,INFO,SUBSCRIBE,UPDATE,PRACK Content-Length: 0
# U +0.001427 192.168.10.30:5060 -> 192.168.10.1:5060 INVITE sip:112@192.168.10.1 SIP/2.0 Via: SIP/2.0/UDP 192.168.10.30:5060;branch=z9hG4bK146746a00250f3a2 From: sip:120@192.168.10.1;tag=bef05ab08314d4e6 To: sip:112@192.168.10.1 Contact: sip:120@192.168.10.30:5060 Supported: replaces, timer, path Proxy-Authorization: Digest username="120", realm="192.168.10.1", algorithm=MD5, uri="sip:112@192.168.10.1", nonce="48bee71100000016c0c21b49cc5b55be73e93a492f8d2a04", response="49257640e6a71104f06379c7c945c664" Call-ID: 80e0a2b2c0741cf5@192.168.10.30 CSeq: 9522 INVITE User-Agent: Grandstream GXV3000 1.1.3.14 Max-Forwards: 70 Allow: INVITE,ACK,CANCEL,BYE,NOTIFY,REFER,OPTIONS,INFO,SUBSCRIBE,UPDATE,PRACK Content-Type: application/sdp Content-Length: 545
v=0 o=120 8000 8001 IN IP4 192.168.10.30 s=SIP Call c=IN IP4 192.168.10.30 t=0 0 m=audio 5004 RTP/AVP 0 18 4 3 2 101 a=sendrecv a=rtpmap:0 PCMU/8000 a=rtpmap:18 G729/8000 a=rtpmap:4 G723/8000 a=rtpmap:3 GSM/8000 a=rtpmap:2 G726-32/8000 a=ptime:20 a=rtpmap:101 telephone-event/8000 a=fmtp:101 0-11 m=video 5006 RTP/AVP 99 34 a=sendrecv a=rtpmap:99 H264/90000 a=fmtp:99 profile-level-id=428014; packetization-mode=0; sprop-parameter-sets=Z0KADJWgUH5A,aM4BryA= a=rtpmap:34 H263/90000 a=fmtp:34 CIF=2 MaxBR=1280 a=framerate:20
# U +0.000779 192.168.10.1:5060 -> 192.168.10.30:5060 SIP/2.0 100 Giving a try Via: SIP/2.0/UDP 192.168.10.30:5060;branch=z9hG4bK146746a00250f3a2 From: sip:120@192.168.10.1;tag=bef05ab08314d4e6 To: sip:112@192.168.10.1 Call-ID: 80e0a2b2c0741cf5@192.168.10.30 CSeq: 9522 INVITE Server: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.000062 192.168.10.1:5060 -> 192.168.10.27:5060 INVITE sip:112@192.168.10.27:5060;transport=udp SIP/2.0 Record-Route: sip:192.168.10.1;lr=on;ftag=bef05ab08314d4e6 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bKc929.b4e7f526.0 Via: SIP/2.0/UDP 192.168.10.30:5060;branch=z9hG4bK146746a00250f3a2 From: sip:120@192.168.10.1;tag=bef05ab08314d4e6 To: sip:112@192.168.10.1 Contact: sip:120@192.168.10.30:5060 Supported: replaces, timer, path Call-ID: 80e0a2b2c0741cf5@192.168.10.30 CSeq: 9522 INVITE User-Agent: Grandstream GXV3000 1.1.3.14 Max-Forwards: 69 Allow: INVITE,ACK,CANCEL,BYE,NOTIFY,REFER,OPTIONS,INFO,SUBSCRIBE,UPDATE,PRACK Content-Type: application/sdp Content-Length: 545
v=0 o=120 8000 8001 IN IP4 192.168.10.30 s=SIP Call c=IN IP4 192.168.10.30 t=0 0 m=audio 5004 RTP/AVP 0 18 4 3 2 101 a=sendrecv a=rtpmap:0 PCMU/8000 a=rtpmap:18 G729/8000 a=rtpmap:4 G723/8000 a=rtpmap:3 GSM/8000 a=rtpmap:2 G726-32/8000 a=ptime:20 a=rtpmap:101 telephone-event/8000 a=fmtp:101 0-11 m=video 5006 RTP/AVP 99 34 a=sendrecv a=rtpmap:99 H264/90000 a=fmtp:99 profile-level-id=428014; packetization-mode=0; sprop-parameter-sets=Z0KADJWgUH5A,aM4BryA= a=rtpmap:34 H263/90000 a=fmtp:34 CIF=2 MaxBR=1280 a=framerate:20
# U +0.041133 192.168.10.27:5060 -> 192.168.10.1:5060 SIP/2.0 100 Trying Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bKc929.b4e7f526.0 Via: SIP/2.0/UDP 192.168.10.30:5060;branch=z9hG4bK146746a00250f3a2 From: sip:120@192.168.10.1;tag=bef05ab08314d4e6 To: sip:112@192.168.10.1 Call-ID: 80e0a2b2c0741cf5@192.168.10.30 CSeq: 9522 INVITE User-Agent: Grandstream GXP2020 1.1.6.16 Content-Length: 0
# U +0.016390 192.168.10.27:5060 -> 192.168.10.1:5060 SIP/2.0 180 Ringing Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bKc929.b4e7f526.0 Via: SIP/2.0/UDP 192.168.10.30:5060;branch=z9hG4bK146746a00250f3a2 Record-Route: sip:192.168.10.1;lr=on;ftag=bef05ab08314d4e6 From: sip:120@192.168.10.1;tag=bef05ab08314d4e6 To: sip:112@192.168.10.1;tag=170d2cc08e076daa Call-ID: 80e0a2b2c0741cf5@192.168.10.30 CSeq: 9522 INVITE User-Agent: Grandstream GXP2020 1.1.6.16 Contact: sip:112@192.168.10.27:5060;transport=udp Allow: INVITE,ACK,CANCEL,BYE,NOTIFY,REFER,OPTIONS,INFO,SUBSCRIBE,UPDATE,PRACK,MESSAGE Content-Length: 0
# U +0.000065 192.168.10.1:5060 -> 192.168.10.30:5060 SIP/2.0 180 Ringing Via: SIP/2.0/UDP 192.168.10.30:5060;branch=z9hG4bK146746a00250f3a2 Record-Route: sip:192.168.10.1;lr=on;ftag=bef05ab08314d4e6 From: sip:120@192.168.10.1;tag=bef05ab08314d4e6 To: sip:112@192.168.10.1;tag=170d2cc08e076daa Call-ID: 80e0a2b2c0741cf5@192.168.10.30 CSeq: 9522 INVITE User-Agent: Grandstream GXP2020 1.1.6.16 Contact: sip:112@192.168.10.27:5060;transport=udp Allow: INVITE,ACK,CANCEL,BYE,NOTIFY,REFER,OPTIONS,INFO,SUBSCRIBE,UPDATE,PRACK,MESSAGE Content-Length: 0
# U +7.496569 192.168.10.28:5060 -> 192.168.10.1:5060
s 9 1mT
# U +7.507070 192.168.10.1:5060 -> 192.168.10.1:5070 INVITE sip:u112@192.168.10.1:5070 SIP/2.0 Record-Route: sip:192.168.10.1;lr=on;ftag=bef05ab08314d4e6 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bKc929.b4e7f526.1 Via: SIP/2.0/UDP 192.168.10.30:5060;branch=z9hG4bK146746a00250f3a2 From: sip:120@192.168.10.1;tag=bef05ab08314d4e6 To: sip:112@192.168.10.1 Contact: sip:120@192.168.10.30:5060 Supported: replaces, timer, path Call-ID: 80e0a2b2c0741cf5@192.168.10.30 CSeq: 9522 INVITE User-Agent: Grandstream GXV3000 1.1.3.14 Max-Forwards: 69 Allow: INVITE,ACK,CANCEL,BYE,NOTIFY,REFER,OPTIONS,INFO,SUBSCRIBE,UPDATE,PRACK Content-Type: application/sdp Content-Length: 545
v=0 o=120 8000 8001 IN IP4 192.168.10.30 s=SIP Call c=IN IP4 192.168.10.30 t=0 0 m=audio 5004 RTP/AVP 0 18 4 3 2 101 a=sendrecv a=rtpmap:0 PCMU/8000 a=rtpmap:18 G729/8000 a=rtpmap:4 G723/8000 a=rtpmap:3 GSM/8000 a=rtpmap:2 G726-32/8000 a=ptime:20 a=rtpmap:101 telephone-event/8000 a=fmtp:101 0-11 m=video 5006 RTP/AVP 99 34 a=sendrecv a=rtpmap:99 H264/90000 a=fmtp:99 profile-level-id=428014; packetization-mode=0; sprop-parameter-sets=Z0KADJWgUH5A,aM4BryA= a=rtpmap:34 H263/90000 a=fmtp:34 CIF=2 MaxBR=1280 a=framerate:20
# U +0.000096 192.168.10.1:5060 -> 192.168.10.27:5060 CANCEL sip:112@192.168.10.27:5060;transport=udp SIP/2.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bKc929.b4e7f526.0 From: sip:120@192.168.10.1;tag=bef05ab08314d4e6 Call-ID: 80e0a2b2c0741cf5@192.168.10.30 To: sip:112@192.168.10.1 CSeq: 9522 CANCEL Max-Forwards: 70 User-Agent: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.000471 192.168.10.1:5070 -> 192.168.10.1:5060 SIP/2.0 100 Trying Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bKc929.b4e7f526.1;received=192.168.10.1 Via: SIP/2.0/UDP 192.168.10.30:5060;branch=z9hG4bK146746a00250f3a2 Record-Route: sip:192.168.10.1;lr=on;ftag=bef05ab08314d4e6 From: sip:120@192.168.10.1;tag=bef05ab08314d4e6 To: sip:112@192.168.10.1 Call-ID: 80e0a2b2c0741cf5@192.168.10.30 CSeq: 9522 INVITE User-Agent: Asterisk PBX Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, SUBSCRIBE, NOTIFY Supported: replaces Contact: sip:u112@192.168.10.1:5070 Content-Length: 0
# U +0.000438 192.168.10.1:5070 -> 192.168.10.1:5060 SIP/2.0 200 OK Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bKc929.b4e7f526.1;received=192.168.10.1 Via: SIP/2.0/UDP 192.168.10.30:5060;branch=z9hG4bK146746a00250f3a2 Record-Route: sip:192.168.10.1;lr=on;ftag=bef05ab08314d4e6 From: sip:120@192.168.10.1;tag=bef05ab08314d4e6 To: sip:112@192.168.10.1;tag=as299c38fc Call-ID: 80e0a2b2c0741cf5@192.168.10.30 CSeq: 9522 INVITE User-Agent: Asterisk PBX Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, SUBSCRIBE, NOTIFY Supported: replaces Contact: sip:u112@192.168.10.1:5070 Content-Type: application/sdp Content-Length: 285
v=0 o=root 3516 3516 IN IP4 192.168.10.1 s=session c=IN IP4 192.168.10.1 t=0 0 m=audio 13052 RTP/AVP 0 18 101 a=rtpmap:0 PCMU/8000 a=rtpmap:18 G729/8000 a=fmtp:18 annexb=no a=rtpmap:101 telephone-event/8000 a=fmtp:101 0-16 a=silenceSupp:off - - - - a=ptime:20 a=sendrecv
# U +0.000999 192.168.10.1:5060 -> 192.168.10.30:5060 SIP/2.0 200 OK Via: SIP/2.0/UDP 192.168.10.30:5060;branch=z9hG4bK146746a00250f3a2 Record-Route: sip:192.168.10.1;lr=on;ftag=bef05ab08314d4e6 From: sip:120@192.168.10.1;tag=bef05ab08314d4e6 To: sip:112@192.168.10.1;tag=as299c38fc Call-ID: 80e0a2b2c0741cf5@192.168.10.30 CSeq: 9522 INVITE User-Agent: Asterisk PBX Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, SUBSCRIBE, NOTIFY Supported: replaces Contact: sip:u112@192.168.10.1:5070 Content-Type: application/sdp Content-Length: 285
v=0 o=root 3516 3516 IN IP4 192.168.10.1 s=session c=IN IP4 192.168.10.1 t=0 0 m=audio 13052 RTP/AVP 0 18 101 a=rtpmap:0 PCMU/8000 a=rtpmap:18 G729/8000 a=fmtp:18 annexb=no a=rtpmap:101 telephone-event/8000 a=fmtp:101 0-16 a=silenceSupp:off - - - - a=ptime:20 a=sendrecv
# U +0.003083 192.168.10.30:5060 -> 192.168.10.1:5060 ACK sip:u112@192.168.10.1:5070 SIP/2.0 Via: SIP/2.0/UDP 192.168.10.30:5060;branch=z9hG4bKa89112452755b084 Route: sip:192.168.10.1;lr=on;ftag=bef05ab08314d4e6 From: sip:120@192.168.10.1;tag=bef05ab08314d4e6 To: sip:112@192.168.10.1;tag=as299c38fc Contact: sip:120@192.168.10.30:5060 Proxy-Authorization: Digest username="120", realm="192.168.10.1", algorithm=MD5, uri="sip:112@192.168.10.1", nonce="48bee71100000016c0c21b49cc5b55be73e93a492f8d2a04", response="49257640e6a71104f06379c7c945c664" Call-ID: 80e0a2b2c0741cf5@192.168.10.30 CSeq: 9522 ACK User-Agent: Grandstream GXV3000 1.1.3.14 Max-Forwards: 70 Allow: INVITE,ACK,CANCEL,BYE,NOTIFY,REFER,OPTIONS,INFO,SUBSCRIBE,UPDATE,PRACK Content-Length: 0
# U +0.000139 192.168.10.1:5060 -> 192.168.10.1:5070 ACK sip:u112@192.168.10.1:5070 SIP/2.0 Record-Route: sip:192.168.10.1;lr=on;ftag=bef05ab08314d4e6 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bKc929.b4e7f526.3 Via: SIP/2.0/UDP 192.168.10.30:5060;branch=z9hG4bKa89112452755b084 From: sip:120@192.168.10.1;tag=bef05ab08314d4e6 To: sip:112@192.168.10.1;tag=as299c38fc Contact: sip:120@192.168.10.30:5060 Proxy-Authorization: Digest username="120", realm="192.168.10.1", algorithm=MD5, uri="sip:112@192.168.10.1", nonce="48bee71100000016c0c21b49cc5b55be73e93a492f8d2a04", response="49257640e6a71104f06379c7c945c664" Call-ID: 80e0a2b2c0741cf5@192.168.10.30 CSeq: 9522 ACK User-Agent: Grandstream GXV3000 1.1.3.14 Max-Forwards: 69 Allow: INVITE,ACK,CANCEL,BYE,NOTIFY,REFER,OPTIONS,INFO,SUBSCRIBE,UPDATE,PRACK Content-Length: 0 P-hint: rr-enforced
# U +0.015521 192.168.10.27:5060 -> 192.168.10.1:5060 SIP/2.0 200 OK Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bKc929.b4e7f526.0 From: sip:120@192.168.10.1;tag=bef05ab08314d4e6 To: sip:112@192.168.10.1;tag=170d2cc08e076daa Call-ID: 80e0a2b2c0741cf5@192.168.10.30 CSeq: 9522 CANCEL User-Agent: Grandstream GXP2020 1.1.6.16 Supported: replaces, timer Content-Length: 0
# U +0.009873 192.168.10.27:5060 -> 192.168.10.1:5060 SIP/2.0 487 Request Cancelled Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bKc929.b4e7f526.0 Via: SIP/2.0/UDP 192.168.10.30:5060;branch=z9hG4bK146746a00250f3a2 Record-Route: sip:192.168.10.1;lr=on;ftag=bef05ab08314d4e6 From: sip:120@192.168.10.1;tag=bef05ab08314d4e6 To: sip:112@192.168.10.1;tag=170d2cc08e076daa Call-ID: 80e0a2b2c0741cf5@192.168.10.30 CSeq: 9522 INVITE User-Agent: Grandstream GXP2020 1.1.6.16 Content-Length: 0
# U +0.000083 192.168.10.1:5060 -> 192.168.10.27:5060 ACK sip:112@192.168.10.27:5060;transport=udp SIP/2.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bKc929.b4e7f526.0 From: sip:120@192.168.10.1;tag=bef05ab08314d4e6 Call-ID: 80e0a2b2c0741cf5@192.168.10.30 To: sip:112@192.168.10.1;tag=170d2cc08e076daa CSeq: 9522 ACK Max-Forwards: 70 User-Agent: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
exit 86 received, 0 dropped
2008/9/3 Iñaki Baz Castillo ibc@in.ilimit.es:
¿Qué te dice este comando CLI?
CLI> core show application Voicemail
--
El Miércoles, 3 de Septiembre de 2008, troxlinux escribió:
tuve que recompilar el bendito asterisk y me sale el voicemail cuando no contesto la llamada , pero si esta ocupada no salta al voicemail hasta después me sale como no disponible ..
Eso ya es cosa del dialplan de Asterisk.
como es la funcion dentro del t_on_failure
revert_uri(); prefix("b"); xlog("L_ERR","Stepped into the 486 ruri=<$ru>"); rewritehostport("192.168.1.171"); append_branch(); route(1); exit; }
no lo esta tomando , de echo pienso que el cuando esta busy deberia de mandar un ACK ACK sip:b112@192.168.10.1:5070 SIP/2.0
¿A qué te refieres con ACK ACK?
2008/9/3 Iñaki Baz Castillo ibc@aliax.net:
Eso ya es cosa del dialplan de Asterisk.
bueno tome el ejemplo de integración que saul puso en su web y me ahh funcionado ingreso con clave al voicemail y todo bien , pero dos cosas todavía no me logran jalar , la primera es hacer una redireccion a otra extensión (forward) con el kamailio yo se que muchos me diran que el teléfono ya trae esa opción , casi todos menos el BT 200 de la grandstream ;) y la segunda cuando una extensión esta al habla debería saltar que la extensión esta ocupada y que deje su mensaje .
y esto tengo añadido en mi dial plan de asterisk , si me dicen que tengo que ver algo en el dial plan me rasgo la cabeza ....
exten => _XXX,1,Answer exten => _XXX,n,Voicemail(u${EXTEN}) exten => _XXX,n,Hangup
exten => _XXX,1,Answer exten => _XXX,n,Voicemail(b${EXTEN}) exten => _XXX,n,Hangup
¿A qué te refieres con ACK ACK?
lo escribí mal , lo que me refería es que si una extensión esta ocupada al llegarle una llamada esta devolvería que es un intento de conexión ACK sip:b112@192.168.10.1:5070 , y esto le diría al asterisk que salte con buzón ocupado deje su mensaje
es así , si no corrijanme ?
vere como le agrego el mensaje de buzon, otra paridera ...
Postdata: verdaderamente alguien en la lista a logrado el comportamiento que deseo con el callforward ..
saludoss
rickygm
On Wed, Sep 03, 2008 at 11:02:56PM -0600, troxlinux wrote:
2008/9/3 Iñaki Baz Castillo ibc@aliax.net:
Eso ya es cosa del dialplan de Asterisk.
bueno tome el ejemplo de integración que saul puso en su web y me ahh funcionado ingreso con clave al voicemail y todo bien , pero dos cosas todavía no me logran jalar , la primera es hacer una redireccion a otra extensión (forward) con el kamailio yo se que muchos me diran que el teléfono ya trae esa opción , casi todos menos el BT 200 de la grandstream ;) y la segunda cuando una extensión esta al habla debería saltar que la extensión esta ocupada y que deje su mensaje .
¿que el BT200 no soporta el *72 de forma nativa? .. uy, uy ... no he probado el 200, pero era una función que siempre ha venido en los grandstream, funciona hasta en los BT101, de todas formas es más que deseable que la funcionalidad de forward resida en el proxy/servidor que en el terminal.
y esto tengo añadido en mi dial plan de asterisk , si me dicen que tengo que ver algo en el dial plan me rasgo la cabeza ....
Pues empieza a rasgasterla
exten => _XXX,1,Answer exten => _XXX,n,Voicemail(u${EXTEN}) exten => _XXX,n,Hangup
exten => _XXX,1,Answer exten => _XXX,n,Voicemail(b${EXTEN}) exten => _XXX,n,Hangup
Este dialplan es del todo incorrecto, pero del todo,todo. Para empezar sobran los Answer, segundo la extensión _XXX está repetida y tercero, hacer un Hangup() tampoco es que sea necesario.
lo escribí mal , lo que me refería es que si una extensión esta ocupada al llegarle una llamada esta devolvería que es un intento de conexión ACK sip:b112@192.168.10.1:5070 , y esto le diría al asterisk que salte con buzón ocupado deje su mensaje
es así , si no corrijanme ?
No sé, primero tendré que leer 10 veces más lo que has puesto en el párrafo anterior para intentar comprender que es lo que pretendías "aclarar".
vere como le agrego el mensaje de buzon, otra paridera ...
¿ein? .. ¿que hay de complicado en cambiar el mensaje?
Postdata: verdaderamente alguien en la lista a logrado el comportamiento que deseo con el callforward ..
Sí.
Saludos -- Raúl Alexis Betancor Santana Dimensión Virtual S.L.
El Thursday 04 September 2008 09:52:49 rabs@dimension-virtual.com escribió:
hacer un Hangup() tampoco es que sea necesario.
Sólo un detalle: El "Hangup" es muy recomendable ya que tras un Dial se hace imprescindible, me explico:
exten => kk,1,Dial(SIP/blabla)
Si un usuario llama a "kk" y resulta que "blabla" no está registrado, está ocupado o rechaza la llamada, entonces el dialplan continua y como no hay más a Asterisk no se le ocurre otra cosa que mandar una bestialidad de error "503 Service Unavailable", a lo bestia!
En cambio:
exten => kk,1,Dial(SIP/blabla) exten => kk,n,Hangup
En este caso si el usuario no está registrado Asterisk devuelve "480 User not available", si rechaza la llamada devuelve un "603 Decline" y si está ocupado un "486 Busy".
Saludos.
PD: Aunque en este caso, tras un VoiceMail posiblemente no sea necesario pèro no pasa nada por ponerlo.
El día 4 de septiembre de 2008 1:52, rabs@dimension-virtual.com escribió:
¿que el BT200 no soporta el *72 de forma nativa? .. uy, uy ... no he probado el 200, pero era una función que siempre ha venido en los grandstream, funciona hasta en los BT101, de todas formas es más que deseable que la funcionalidad de forward resida en el proxy/servidor que en el terminal.
pues esa no me la sabia , voy a revisar el manual de bt -200 , pero en el servidor no logro hacer funcionar el call forward
Pues empieza a rasgasterla
exten => _XXX,1,Answer exten => _XXX,n,Voicemail(u${EXTEN}) exten => _XXX,n,Hangup
exten => _XXX,1,Answer exten => _XXX,n,Voicemail(b${EXTEN}) exten => _XXX,n,Hangup
Este dialplan es del todo incorrecto, pero del todo,todo. Para empezar sobran los Answer, segundo la extensión _XXX está repetida y tercero, hacer un Hangup() tampoco es que sea necesario.
ya lo vere ..
lo escribí mal , lo que me refería es que si una extensión esta ocupada al llegarle una llamada esta devolvería que es un intento de conexión ACK sip:b112@192.168.10.1:5070 , y esto le diría al asterisk que salte con buzón ocupado deje su mensaje
es así , si no corrijanme ?
No sé, primero tendré que leer 10 veces más lo que has puesto en el párrafo anterior para intentar comprender que es lo que pretendías "aclarar".
lo que me refiero aqui es que el UA al no contestar manda un intento de conexión que va al asterisk de esta forma sip:u112@192.168.10.1:5070 , y este lo toma al voicemail como un no esta disponible, cuando esta ocupado deberia de mandar un sip:b112@192.168.10.1:5070 al asterisk , cosa que no veo que lo hace , esto si no es así corrijanme ..
teoria de voip-info.org
* u: The letter u, if present, causes the unavailable message to be played. By default, the message says, "The person at extension ... 1234 ... is unavailable," but the mailbox owner may record their own unavailable message with the VoicemailMain command.
* b: The letter b, if present, causes the busy message to be played. By default, the message says, "The person at extension ... 1234 ... is busy."
vere como le agrego el mensaje de buzon, otra paridera ...
¿ein? .. ¿que hay de complicado en cambiar el mensaje?
aquí ya eran casi las 12:00 PM en mi país estaba mas que dormido y cansado escribiendo este mensaje , lo que quise decir es que quiero lograr hacer que el kamailio me tire la lucecita en los teléfonos cuando este un nuevo buzon de voz , osea el checkmwi=10
a esto me refería ...
Postdata: verdaderamente alguien en la lista a logrado el comportamiento que deseo con el callforward ..
Sí.
y porque no me das una ayuda entonces?
saludoss
rickygm
El Thursday 04 September 2008 20:55:33 troxlinux escribió:
El día 4 de septiembre de 2008 1:52, rabs@dimension-virtual.com escribió: pues esa no me la sabia , voy a revisar el manual de bt -200 , pero en el servidor no logro hacer funcionar el call forward
¿Has revisado los logs del kamailio para ver si está o no cargando bien los AVP de la base de datos?
Este dialplan es del todo incorrecto, pero del todo,todo. Para empezar sobran los Answer, segundo la extensión _XXX está repetida y tercero, hacer un Hangup() tampoco es que sea necesario.
ya lo vere ..
Como no revises esta parte, en la vida va a llegar bien al buzón.
lo que me refiero aqui es que el UA al no contestar manda un intento de conexión que va al asterisk de esta forma sip:u112@192.168.10.1:5070 , y este lo toma al voicemail como un no esta disponible, cuando esta ocupado deberia de mandar un sip:b112@192.168.10.1:5070 al asterisk , cosa que no veo que lo hace , esto si no es así corrijanme ..
Eso te pasa porque no les has dicho al kamailio que failure_route tratará las respuestas de ese request.
teoria de voip-info.org
* u: The letter u, if present, causes the unavailable message to
be played. By default, the message says, "The person at extension ... 1234 ... is unavailable," but the mailbox owner may record their own unavailable message with the VoicemailMain command.
* b: The letter b, if present, causes the busy message to be
played. By default, the message says, "The person at extension ... 1234 ... is busy."
Si, la teoría ... de Asterisk, que no tiene nada que ver con Kamailio y su config.
vere como le agrego el mensaje de buzon, otra paridera ...
¿ein? .. ¿que hay de complicado en cambiar el mensaje?
aquí ya eran casi las 12:00 PM en mi país estaba mas que dormido y cansado escribiendo este mensaje , lo que quise decir es que quiero lograr hacer que el kamailio me tire la lucecita en los teléfonos cuando este un nuevo buzon de voz , osea el checkmwi=10
Para que "te tire la lucecita" del mwi lo vas a tener crudo, sobre todo si pretendes que los usuarios registrados en el kamailio reciban NADA de Asterisk que no tiene ni puta idea de donde están registrados los usuarios.
Yo que tú empezaba por algo más sencillo para que cojas los conceptos y luego iba complicando el escenario.
Sí.
y porque no me das una ayuda entonces?
Creo que te estamos ayudando, lo que no creo que nadie de la lista haga sea resolverte el problema, te damos pistas de lo que tienes que mirar y revisar. Arreglartelo entra dentro de los límites de la consultoría y servicios, y eso no se hace gratis.
El día 5 de septiembre de 2008 3:07, Raúl Alexis Betancor Santana rabs@dimension-virtual.com escribió:
¿Has revisado los logs del kamailio para ver si está o no cargando bien los AVP de la base de datos?
los he observado pero no me tira ningún mensaje de los módulos AVPOPS
Este dialplan es del todo incorrecto, pero del todo,todo. Para empezar sobran los Answer, segundo la extensión _XXX está repetida y tercero, hacer un Hangup() tampoco es que sea necesario.
ya lo vere ..
Como no revises esta parte, en la vida va a llegar bien al buzón.
lo que me refiero aqui es que el UA al no contestar manda un intento de conexión que va al asterisk de esta forma sip:u112@192.168.10.1:5070 , y este lo toma al voicemail como un no esta disponible, cuando esta ocupado deberia de mandar un sip:b112@192.168.10.1:5070 al asterisk , cosa que no veo que lo hace , esto si no es así corrijanme ..
Eso te pasa porque no les has dicho al kamailio que failure_route tratará las respuestas de ese request.
se supone según he entendido en la teoría que esto lo hace en el failure_route , hay algo mas ?
teoria de voip-info.org
* u: The letter u, if present, causes the unavailable message to
be played. By default, the message says, "The person at extension ... 1234 ... is unavailable," but the mailbox owner may record their own unavailable message with the VoicemailMain command.
* b: The letter b, if present, causes the busy message to be
played. By default, the message says, "The person at extension ... 1234 ... is busy."
Si, la teoría ... de Asterisk, que no tiene nada que ver con Kamailio y su config.
Para que "te tire la lucecita" del mwi lo vas a tener crudo, sobre todo si pretendes que los usuarios registrados en el kamailio reciban NADA de Asterisk que no tiene ni puta idea de donde están registrados los usuarios.
Yo que tú empezaba por algo más sencillo para que cojas los conceptos y luego iba complicando el escenario.
para mientras me interesa mas hacer el call forward , esa lucecita la dejo para despues
y porque no me das una ayuda entonces?
Creo que te estamos ayudando, lo que no creo que nadie de la lista haga sea resolverte el problema, te damos pistas de lo que tienes que mirar y revisar. Arreglartelo entra dentro de los límites de la consultoría y servicios, y eso no se hace gratis.
la verdad no dispongo de dinero para hacerlo , pero se agradece tu ayuda y tu tiempo ..
saludoss
On Sat, Sep 06, 2008 at 03:21:42PM -0600, troxlinux wrote:
El día 5 de septiembre de 2008 3:07, Raúl Alexis Betancor Santana rabs@dimension-virtual.com escribió:
¿Has revisado los logs del kamailio para ver si está o no cargando bien los AVP de la base de datos?
los he observado pero no me tira ningún mensaje de los módulos AVPOPS
Me refería a que si tienes puesto algún xlog antes o después de procesar los AVP para comprobar en los logs los valores que toman o eso o ejecutar Kamailio en modo depuración para ver como lo procesa.
se supone según he entendido en la teoría que esto lo hace en el failure_route , hay algo mas ?
Resiva el funcionamiento de t_on_failure(), has de indicarle al kamailio que on_failure_route procesará los errores de este request.
para mientras me interesa mas hacer el call forward , esa lucecita la dejo para despues
Pues revisa la parte de activar logs, hay un tutorial que puedes encontrar en la web de kamailio sobre como depurar y solucionar problemas con el script.
Saludos -- Raúl Alexis Betancor Santana Dimensión Virtual S.L.
El día 6 de septiembre de 2008 16:14, rabs@dimension-virtual.com escribió:
Me refería a que si tienes puesto algún xlog antes o después de procesar los AVP para comprobar en los logs los valores que toman o eso o ejecutar Kamailio en modo depuración para ver como lo procesa.
dentro de los avp tengo puesto este xlog
if(avp_db_load("$ru/username","$avp(s:callfwd)")) { avp_pushto("$ru", "$avp(s:callfwd)"); xlog("forwarded to: $avp(s:callfwd)"); route(1); exit;
Resiva el funcionamiento de t_on_failure(), has de indicarle al kamailio que on_failure_route procesará los errores de este request.
pues estoy entendiéndote un poco mas la teoría que he estado revisando en la web de kamailio , quiero que me saquen de este enredo , según la teoría yo puedo utilizar los AVP dentro del invite o del failure route , ojo veo mas que los usan dentro del failure route pero para que se pueda lograr el comportamiento deseado :
1 - si una extensión repica y no contesta que salte al buzón de voz "NO DISPONIBLE" 2 - si una extensión esta ocupada repica y repica después salte al buzon como "ESTA OCUPADA O AL TELEFONO 3 - hacer un callforward de una extensión a otro
ahora el código que tengo arriba puesto esta incompleto según yo para hacer lo que deseo hacer , lo describo de esta manera carga los datos de la base de datos con la función avp_db_load toma el $ru una petición de SIP URI con el username plenamente cargado en la base de datos de kamailio un avp atributo en este caso el mio callfwd el valor avp_pushto dentro del mensaje sip mas el atributo mencionado , pero lo peor de esto es que solo formo el URI no el RURI que realmente debe hacer la comparasion y me podría ejecutar el callfwd ... no se exactamente para que es el append branch ni que función juega dentro del sip message?
creo que mas bien debería quedar así , aunque no me juega
failure_route[1] { if(!t_was_cancelled()) { if (t_check_status("(486)|(408)")) { # cargo mis valores en la table preferences## if (avp_db_load("$ruri/username", "$avp(s:callfwd)")) { avp_pushto("$ruri", "s:callfwd"); xlog("forwarded to: $avp(s:callfwd)"); revert_uri(); rewritehostport("192.168.10.1:5070"); append_branch(); route(1); exit; } }
para mientras me interesa mas hacer el call forward , esa lucecita la dejo para despues
Pues revisa la parte de activar logs, hay un tutorial que puedes encontrar en la web de kamailio sobre como depurar y solucionar problemas con el script.
lo he buscado pero no lo encuentro ...
por cierto si que kamailio te hace pestañar , sudar , .... buff
rickygm
saludoss
El Monday 08 September 2008 07:21:06 troxlinux escribió:
pero lo peor de esto es que solo formo el URI no el RURI que realmente debe hacer la comparasion y me podría ejecutar el callfwd
¿A qué te refieres con eso? No existe una parte "URI" como tal. En un mismo mensaje pueden aparecer varias URI's (la URI del RURI, la URI del From, del To, la(s) URI(s) del Contact.
... no se exactamente para que es el append branch ni que función juega dentro del sip message?
Cuando se llega aun failure route es porque **todos** los branches anteriores han fracasado, por lo que tienes que crear uno nuevo (o más de uno). Cada branch es básicamente un nuevo destino del request.
creo que mas bien debería quedar así , aunque no me juega
failure_route[1] { if(!t_was_cancelled()) { if (t_check_status("(486)|(408)")) { # cargo mis valores en la table preferences## if (avp_db_load("$ruri/username", "$avp(s:callfwd)")) { avp_pushto("$ruri", "s:callfwd"); xlog("forwarded to: $avp(s:callfwd)"); revert_uri(); rewritehostport("192.168.10.1:5070"); append_branch(); route(1); exit; } }
¿Por qué no nos enseñas los resultados de esos XLOG? es que si no vamos a dar vueltas sobre lo mismo una y otra vez.
Y por cierto, primero consigue que te funcione todo el tema del forwarding manejando valores estáticos en vez de consultando la BD; así quitas puntos de fallo.
El día 8 de septiembre de 2008 1:56, Iñaki Baz Castillo ibc@in.ilimit.es escribió: < ¿A qué te refieres con eso? No existe una parte "URI" como tal. En un mismo
mensaje pueden aparecer varias URI's (la URI del RURI, la URI del From, del To, la(s) URI(s) del Contact.
me referia es que al llamar a una extensión que tiene el atributo callfwd esta origina un URI el destino que es a la extensión que deseo redirijir forma el R-URI
eso entiendo yo ;)
Cuando se llega aun failure route es porque **todos** los branches anteriores han fracasado, por lo que tienes que crear uno nuevo (o más de uno). Cada branch es básicamente un nuevo destino del request.
como para que no se pierda
¿Por qué no nos enseñas los resultados de esos XLOG? es que si no vamos a dar vueltas sobre lo mismo una y otra vez.
el problema es que cuando veo el log de openser ni siquiera toma en cuenta el AVP osea no se ejecuta por lo que no veo los log y he agregado estos:
xlog("L_INFO", "-- PRE ru = $ru --\n"); if(avp_db_load("$ru/username", "$avp(s:callfwd)")) { avp_pushto("$ru", "$avp(s:callfwd)"); xlog("L_INFO", "-- POST ru = $ru --\n"); xlog("$avp(s:callfwd)"); route(1); exit; }
openser.log
Sep 8 17:57:38 xserver /sbin/kamailio[10606]: -- PRE ru = sip:110@192.168.10.1 -- Sep 8 17:57:56 xserver /sbin/kamailio[10608]: -- PRE ru = sip:119@192.168.10.1 -- Sep 8 17:58:21 xserver /sbin/kamailio[10613]: Stepped into the 480 ruri=sip:u119@192.168.10.1 Sep 8 17:59:24 xserver /sbin/kamailio[10608]: -- PRE ru = sip:112@192.168.10.1 -- 17:47:21 xserver /sbin/kamailio[10515]: ---> Reenvio a Asterisk si tienes permiso para llamadas locales ---> Sep 8 17:47:34 xserver /sbin/kamailio[10523]: Stepped into the 480 ruri=sip:u119@192.168.10.1 Sep 8 17:47:49 xserver /sbin/kamailio[10517]: Redirigiendo a Asterisk Voicemail
cuando agrego las lineas del failure_route y ejecuto un kamailio -C para comprobar me tira unos ERROR:
Sep 8 18:01:09 [10651] ERROR:core:check_actions: script function "sl_reply_error" (types=1) does not support route type (2) Sep 8 18:01:09 [10651] ERROR:core:check_actions: route stack[0]=0 Sep 8 18:01:09 [10651] ERROR:core:check_actions: script function "sl_reply_error" (types=1) does not support route type (2) Sep 8 18:01:09 [10651] ERROR:core:check_actions: route stack[0]=0 Sep 8 18:01:09 [10651] ERROR:core:main: bad function call in config file
Y por cierto, primero consigue que te funcione todo el tema del forwarding manejando valores estáticos en vez de consultando la BD; así quitas puntos de fallo.
bueno he quitados los AVP del failure_route , pero solo me llegas las llamadas al buzón como no disponible ..
saludoss
rickygm
On Mon, Sep 08, 2008 at 06:33:30PM -0600, troxlinux wrote:
el problema es que cuando veo el log de openser ni siquiera toma en cuenta el AVP osea no se ejecuta por lo que no veo los log y he agregado estos:
No es que no los tome en cuenta, es que seguro que los tienes mal creados en la tabla de usr_preferences. ¿Has comprobado los tipos de los AVP en la tabla usr_preferences? existen 4 tipos de AVP's
xlog("L_INFO", "-- PRE ru = $ru --\n"); if(avp_db_load("$ru/username", "$avp(s:callfwd)")) { avp_pushto("$ru", "$avp(s:callfwd)"); xlog("L_INFO", "-- POST ru = $ru --\n"); xlog("$avp(s:callfwd)"); route(1); exit; }
openser.log
Sep 8 17:57:38 xserver /sbin/kamailio[10606]: -- PRE ru = sip:110@192.168.10.1 -- Sep 8 17:57:56 xserver /sbin/kamailio[10608]: -- PRE ru = sip:119@192.168.10.1 -- Sep 8 17:58:21 xserver /sbin/kamailio[10613]: Stepped into the 480 ruri=sip:u119@192.168.10.1 Sep 8 17:59:24 xserver /sbin/kamailio[10608]: -- PRE ru = sip:112@192.168.10.1 -- 17:47:21 xserver /sbin/kamailio[10515]: ---> Reenvio a Asterisk si tienes permiso para llamadas locales ---> Sep 8 17:47:34 xserver /sbin/kamailio[10523]: Stepped into the 480 ruri=sip:u119@192.168.10.1 Sep 8 17:47:49 xserver /sbin/kamailio[10517]: Redirigiendo a Asterisk Voicemail
Lo que evidencia que el av_db_load no está funcionando, revisa los tipos de los AVP.
cuando agrego las lineas del failure_route y ejecuto un kamailio -C para comprobar me tira unos ERROR:
Sep 8 18:01:09 [10651] ERROR:core:check_actions: script function "sl_reply_error" (types=1) does not support route type (2) Sep 8 18:01:09 [10651] ERROR:core:check_actions: route stack[0]=0 Sep 8 18:01:09 [10651] ERROR:core:check_actions: script function "sl_reply_error" (types=1) does not support route type (2) Sep 8 18:01:09 [10651] ERROR:core:check_actions: route stack[0]=0 Sep 8 18:01:09 [10651] ERROR:core:main: bad function call in config file
¿Que es lo que has puesto en la failure_route? ... es que te explicas a cachos. Pones el log, pero no el código y cuando pones el código no pones los logs .. XD
Saludos -- Raúl Alexis Betancor Santana Dimensión Virtual S.L.
El día 9 de septiembre de 2008 1:15, rabs@dimension-virtual.com escribió:
No es que no los tome en cuenta, es que seguro que los tienes mal creados en la tabla de usr_preferences.
esto tengo en la tabla de usr_preferences
+------+------------------+--------------+-----------+------+------------------+ | uuid | username | domain | attribute | type | value | +------+------------------+--------------+-----------+------+------------------+ | 5 | 112@192.168.10.1 | 192.168.10.1 | callfwd | 0 | 116@192.168.10.1 | +------+------------------+--------------+-----------+------+------------------+
¿Has comprobado los tipos de los AVP en la tabla usr_preferences? existen 4 tipos de AVP's
avp list avp add avp rm avp help
Lo que evidencia que el av_db_load no está funcionando, revisa los tipos de los AVP.
cuando agrego las lineas del failure_route y ejecuto un kamailio -C para comprobar me tira unos ERROR:
Sep 8 18:01:09 [10651] ERROR:core:check_actions: script function "sl_reply_error" (types=1) does not support route type (2) Sep 8 18:01:09 [10651] ERROR:core:check_actions: route stack[0]=0 Sep 8 18:01:09 [10651] ERROR:core:check_actions: script function "sl_reply_error" (types=1) does not support route type (2) Sep 8 18:01:09 [10651] ERROR:core:check_actions: route stack[0]=0 Sep 8 18:01:09 [10651] ERROR:core:main: bad function call in config file
¿Que es lo que has puesto en la failure_route? ... es que te explicas a cachos. Pones el log, pero no el código y cuando pones el código no pones los logs .. XD
esto tengo dentro del failure route , al final del archivo kamailio , cuando agrego este failure route y chk con el comprobador de codigo de kamailio me lanza esos ERROR , agrego tambien el route [1]
route[1] { t_on_failure("1"); if (!t_relay()) { sl_reply_error(); }; exit; }
#### Al final del archivo kamailio.cfg ####
failure_route[1] { if (t_check_status("487")) { exit; };
if (t_check_status("486")) { revert_uri(); prefix("b"); xlog("L_ERR","Stepped into the 486 ruri=<$ru>"); rewritehostport("192.168.10.1:5070"); append_branch(); route(1); exit; }; if (t_check_status("408") || t_check_status("480")) { revert_uri(); prefix("u"); xlog("L_ERR","Stepped into the 480 ruri=<$ru>"); rewritehostport("192.168.10.1:5070"); append_branch(); route(1); exit; }; }
#### otros log ###
WARNING:permissions:parse_config_file: file not found: //etc/kamailio/permissions.allow Sep 9 11:19:12 xserver kamailio[17377]: WARNING:permissions:mod_init: default allow file (//etc/kamailio/permissions.allow) not found => empty rule set Sep 9 11:19:12 xserver kamailio[17377]: WARNING:permissions:parse_config_file: file not found: //etc/kamailio/permissions.deny Sep 9 11:19:12 xserver kamailio[17377]: WARNING:permissions:mod_init: default deny file (//etc/kamailio/permissions.deny) not found => empty rule set Sep 9 11:19:12 xserver kamailio[17377]: INFO:avpops:avpops_init: initializing... Sep 9 11:19:12 xserver kamailio[17377]: INFO:textops:hname_fixup: using hdr type name <X-VM> Sep 9 11:19:12 xserver kamailio[17377]: INFO:textops:hname_fixup: using hdr type name <X-VM> Sep 9 11:19:12 xserver kamailio[17377]: INFO:core:probe_max_receive_buffer: using a UDP receive buffer of 255 kb
#### log cuando una extensión habla con otra , y otra extensión llama a una de las ocupadas #####
Sep 9 11:36:51 xserver /sbin/kamailio[10608]: -- PRE ru = sip:116@192.168.10.1 -- Sep 9 11:37:00 xserver /sbin/kamailio[10607]: -- PRE ru = sip:119@192.168.10.1 -- Sep 9 11:37:25 xserver /sbin/kamailio[10613]: Stepped into the 480 ruri=sip:u119@192.168.10.1
en base a su experiencia como ven esto?
saludoss
rickygm
El Martes, 9 de Septiembre de 2008, troxlinux escribió:
esto tengo en la tabla de usr_preferences
+------+------------------+--------------+-----------+------+-------------- ----+
| uuid | username | domain | attribute | type | value | |
+------+------------------+--------------+-----------+------+-------------- ----+
| 5 | 112@192.168.10.1 | 192.168.10.1 | callfwd | 0 | | 116@192.168.10.1 |
+------+------------------+--------------+-----------+------+-------------- ----+
Está mal. El username es sin el dominio (para eso está el campo domain). Y el value seguramente lo necesitas con "sip:" delante.
2008/9/9 Iñaki Baz Castillo ibc@aliax.net:
Está mal. El username es sin el dominio (para eso está el campo domain). Y el value seguramente lo necesitas con "sip:" delante.
eso me estaba fijando en la guia de ser-gettind star...
voy a arreglarlo
saludoss
rickygm
El Tuesday 09 September 2008 18:40:58 troxlinux escribió:
La tabla la tienes mal, tal como te comenta Iñaki, el campo username solo ha de contener el nombre de usuario, no el dominio, además cuando haces el avp_db_load lo haces por $ru/username, osea que eso lo tienes mal.
¿Has comprobado los tipos de los AVP en la tabla usr_preferences? existen 4 tipos de AVP's
avp list avp add avp rm avp help
¡Jesus vendito! ... tipos, tipos ... no operaciones. A continuación un extracto de la documentación del módulo de avp's que estoy seguro no has leído ...
[...] See below the different types for avps: 0 - AVP with string name and string value 1 - AVP with string name and integer value 2 - AVP with integer name and string value 3 - AVP with integer name and integer value [...]
esto tengo dentro del failure route , al final del archivo kamailio , cuando agrego este failure route y chk con el comprobador de codigo de kamailio me lanza esos ERROR , agrego tambien el route [1]
route[1] { t_on_failure("1"); if (!t_relay()) { sl_reply_error(); }; exit; }
Hombre ... ese sl_reply_error ... ¿Que código de error vas a devolver? .. o ¿pretendes que lo adivine Kamailio?
#### Al final del archivo kamailio.cfg ####
failure_route[1] { if (t_check_status("487")) { exit; };
if (t_check_status("486")) { revert_uri(); prefix("b"); xlog("L_ERR","Stepped into the 486 ruri=<$ru>"); rewritehostport("192.168.10.1:5070"); append_branch(); route(1); exit;
}; if (t_check_status("408") || t_check_status("480")) { revert_uri(); prefix("u"); xlog("L_ERR","Stepped into the 480 ruri=<$ru>"); rewritehostport("192.168.10.1:5070"); append_branch(); route(1); exit; }; }
En principio, no hay nada raro en esta failure_route ... EN PRINCIPIO.
#### otros log ###
#### log cuando una extensión habla con otra , y otra extensión llama a una de las ocupadas #####
Sep 9 11:36:51 xserver /sbin/kamailio[10608]: -- PRE ru = sip:116@192.168.10.1 -- Sep 9 11:37:00 xserver /sbin/kamailio[10607]: -- PRE ru = sip:119@192.168.10.1 -- Sep 9 11:37:25 xserver /sbin/kamailio[10613]: Stepped into the 480 ruri=sip:u119@192.168.10.1
en base a su experiencia como ven esto?
Que este log no vale mientras no arregles el problemas de los AVP.
El Martes, 9 de Septiembre de 2008, Raúl Alexis Betancor Santana escribió:
route[1] { t_on_failure("1"); if (!t_relay()) { sl_reply_error(); }; exit; }
Hombre ... ese sl_reply_error ... ¿Que código de error vas a devolver? .. o ¿pretendes que lo adivine Kamailio?
Nunca lo he usado, pero esa función existe:
http://www.kamailio.org/docs/modules/1.3.x/sl.html#AEN90
1.4.2. sl_reply_error() Sends back an error reply describing the nature of the last internal error. Usually this function should be used after a script function that returned an error code. This function can be used from REQUEST_ROUTE.
Pero sinceramente no tengo claro qué devuelve.
El día 9 de septiembre de 2008 14:16, Raúl Alexis Betancor Santana rabs@dimension-virtual.com escribió:
La tabla la tienes mal, tal como te comenta Iñaki, el campo username solo ha de contener el nombre de usuario, no el dominio, además cuando haces el avp_db_load lo haces por $ru/username, osea que eso lo tienes mal.
¿Has comprobado los tipos de los AVP en la tabla usr_preferences? existen 4 tipos de AVP's
avp list avp add avp rm avp help
¡Jesus vendito! ... tipos, tipos ... no operaciones. A continuación un extracto de la documentación del módulo de avp's que estoy seguro no has leído ...
[...] See below the different types for avps: 0 - AVP with string name and string value 1 - AVP with string name and integer value 2 - AVP with integer name and string value 3 - AVP with integer name and integer value
Dios esas eran , ya las habia pasado por mis narices ....
ta ta ta .. de echo para lo que yo quiero hacer es
.. AVP with string name and string value
esto tengo dentro del failure route , al final del archivo kamailio , cuando agrego este failure route y chk con el comprobador de codigo de kamailio me lanza esos ERROR , agrego tambien el route [1]
route[1] { t_on_failure("1"); if (!t_relay()) { sl_reply_error(); }; exit; }
Hombre ... ese sl_reply_error ... ¿Que código de error vas a devolver? .. o ¿pretendes que lo adivine Kamailio?
#### Al final del archivo kamailio.cfg ####
failure_route[1] { if (t_check_status("487")) { exit; };
if (t_check_status("486")) { revert_uri(); prefix("b"); xlog("L_ERR","Stepped into the 486 ruri=<$ru>"); rewritehostport("192.168.10.1:5070"); append_branch(); route(1); exit;
}; if (t_check_status("408") || t_check_status("480")) { revert_uri(); prefix("u"); xlog("L_ERR","Stepped into the 480 ruri=<$ru>"); rewritehostport("192.168.10.1:5070"); append_branch(); route(1); exit; }; }
En principio, no hay nada raro en esta failure_route ... EN PRINCIPIO.
#### otros log ###
#### log cuando una extensión habla con otra , y otra extensión llama a una de las ocupadas #####
Sep 9 11:36:51 xserver /sbin/kamailio[10608]: -- PRE ru = sip:116@192.168.10.1 -- Sep 9 11:37:00 xserver /sbin/kamailio[10607]: -- PRE ru = sip:119@192.168.10.1 -- Sep 9 11:37:25 xserver /sbin/kamailio[10613]: Stepped into the 480 ruri=sip:u119@192.168.10.1
en base a su experiencia como ven esto?
Que este log no vale mientras no arregles el problemas de los AVP.
estoy en eso ...
salduoss
rickygm
El Tuesday 09 September 2008 02:33:30 troxlinux escribió:
Y por cierto, primero consigue que te funcione todo el tema del forwarding manejando valores estáticos en vez de consultando la BD; así quitas puntos de fallo.
bueno he quitados los AVP del failure_route , pero solo me llegas las llamadas al buzón como no disponible ..
Con el dialplan de Asterisk que tenías al principio es IMPOSIBLE que te funcione bien el voicemail como "busy", imposible. Y tampoco has dicho que lo has corregido.
El día 9 de septiembre de 2008 1:41, Iñaki Baz Castillo ibc@in.ilimit.es escribió:
Con el dialplan de Asterisk que tenías al principio es IMPOSIBLE que te funcione bien el voicemail como "busy", imposible. Y tampoco has dicho que lo has corregido.
iñaki he probado cuanto Dial Plan he visto, y adaptado para mi buzón de voz puesto que asterisk no maneja los usuarios SIP ..
mis pruebas
;exten => _XXX,1,Answer ;exten => _XXX,n,Voicemail(u${EXTEN}) ;exten => _XXX,n,Hangup
;exten => _XXX,1,Answer ;exten => _XXX,n,Voicemail(b${EXTEN}) ;exten => _XXX,n,Hangup
exten=>_u.,1,Voicemail(u${EXTEN}) exten=>_u.,n,hangup()
exten=>_b.,1,Voicemail(b${EXTEN}) exten=>_b.,n,hangup()
;exten => _XXX,1,Ringing ;exten => _XXX,n,Voicemail(u${EXTEN}) ;exten => _XXX,102,Voicemail(b${EXTEN})
;exten=> _XXX,1,Voicemail(u${EXTEN}) ;exten=> _XXX,n,hangup() ;exten=> _XXX,1,Voicemail(b${EXTEN}) ;exten=> _XXX,n,hangup()
a veces tengo la impresion que es el failure route , el cual lo he cambiado un par de veces , pero nelpa ...
saludoss
El Martes, 9 de Septiembre de 2008, troxlinux escribió:
mis pruebas
;exten => _XXX,1,Answer ;exten => _XXX,n,Voicemail(u${EXTEN}) ;exten => _XXX,n,Hangup
;exten => _XXX,1,Answer ;exten => _XXX,n,Voicemail(b${EXTEN}) ;exten => _XXX,n,Hangup
Supongo que ya tienes claro que estas 6 líneas de arriba se chocan entre sí.
exten=>_u.,1,Voicemail(u${EXTEN}) exten=>_u.,n,hangup()
exten=>_b.,1,Voicemail(b${EXTEN}) exten=>_b.,n,hangup()
Tan sólo tienes que comprobar que el RURI que llega a Asterisk empieza por "b". ¿Por qué no lo monitorizas con ngrep a ver?
El día 9 de septiembre de 2008 11:49, Iñaki Baz Castillo ibc@aliax.net escribió:
El Martes, 9 de Septiembre de 2008, troxlinux escribió:
mis pruebas
;exten => _XXX,1,Answer ;exten => _XXX,n,Voicemail(u${EXTEN}) ;exten => _XXX,n,Hangup
;exten => _XXX,1,Answer ;exten => _XXX,n,Voicemail(b${EXTEN}) ;exten => _XXX,n,Hangup
Supongo que ya tienes claro que estas 6 líneas de arriba se chocan entre sí.
si de echo , podria ser así
exten => _XXX,1,Answer exten => _XXX,n,Voicemail(u${EXTEN}) exten => _XXX,n,Voicemail(b${EXTEN}) exten => _XXX,n,Hangup
exten=>_u.,1,Voicemail(u${EXTEN}) exten=>_u.,n,hangup()
exten=>_b.,1,Voicemail(b${EXTEN}) exten=>_b.,n,hangup()
Tan sólo tienes que comprobar que el RURI que llega a Asterisk empieza por "b". ¿Por qué no lo monitorizas con ngrep a ver?
si miras el flujo nunca llega a b o un 486, le doy vueltas al scrip de kamailio.cfg y quedo en las mismas ..
ojo y este es kamailio , porque si dos UA están en medio de una conversacion y un tercer UA llama le pasa un INVITE , kamailio deberia mandarlo a traves del failure route con un 486 busy hereeeeeee..
ta ta ta ta ......... KAMAILIO ..... I hates you
saludosss
#### Llamando a una extension ocupada ###
U +4.700448 192.168.10.19:5063 -> 192.168.10.1:5060 SIP/2.0 200 OK To: sip:116@192.168.10.1;tag=3303cd8eb63c0107i3 From: sip:119@192.168.10.1;tag=911103766947cd50 Call-ID: a224ba32a2866f21@192.168.10.28 CSeq: 13630 INVITE Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bKc425.319686e6.0 Via: SIP/2.0/UDP 192.168.10.28:5060;branch=z9hG4bK4ea38073e7a39530 Contact: sip:116@192.168.10.19:5063 Server: Linksys/SPA942-5.2.8 Content-Length: 233 Allow: ACK, BYE, CANCEL, INFO, INVITE, NOTIFY, OPTIONS, REFER Supported: replaces Content-Type: application/sdp
v=0 o=- 126654 126654 IN IP4 192.168.10.19 s=- c=IN IP4 192.168.10.19 t=0 0 m=audio 16410 RTP/AVP 0 101 a=rtpmap:0 PCMU/8000 a=rtpmap:101 telephone-event/8000 a=fmtp:101 0-15 a=ptime:30 a=sendrecv m=video 0 RTP/AVP 99 34
# U +0.000322 192.168.10.1:5060 -> 192.168.10.28:5060 SIP/2.0 200 OK To: sip:116@192.168.10.1;tag=3303cd8eb63c0107i3 From: sip:119@192.168.10.1;tag=911103766947cd50 Call-ID: a224ba32a2866f21@192.168.10.28 CSeq: 13630 INVITE Via: SIP/2.0/UDP 192.168.10.28:5060;branch=z9hG4bK4ea38073e7a39530 Contact: sip:116@192.168.10.19:5063 Server: Linksys/SPA942-5.2.8 Content-Length: 233 Allow: ACK, BYE, CANCEL, INFO, INVITE, NOTIFY, OPTIONS, REFER Supported: replaces Content-Type: application/sdp
v=0 o=- 126654 126654 IN IP4 192.168.10.19 s=- c=IN IP4 192.168.10.19 t=0 0 m=audio 16410 RTP/AVP 0 101 a=rtpmap:0 PCMU/8000 a=rtpmap:101 telephone-event/8000 a=fmtp:101 0-15 a=ptime:30 a=sendrecv m=video 0 RTP/AVP 99 34
# U +3.291609 192.168.10.30:5060 -> 192.168.10.1:5060 INVITE sip:119@192.168.10.1 SIP/2.0 Via: SIP/2.0/UDP 192.168.10.30:5060;branch=z9hG4bK33c01dc54687f9b1 From: sip:120@192.168.10.1;tag=da3442c6f8c59f63 To: sip:119@192.168.10.1 Contact: sip:120@192.168.10.30:5060 Supported: replaces, timer, path Call-ID: 8fe083c316d4df76@192.168.10.30 CSeq: 25947 INVITE User-Agent: Grandstream GXV3000 1.1.3.14 Max-Forwards: 70 Allow: INVITE,ACK,CANCEL,BYE,NOTIFY,REFER,OPTIONS,INFO,SUBSCRIBE,UPDATE,PRACK Content-Type: application/sdp Content-Length: 545
v=0 o=120 8000 8000 IN IP4 192.168.10.30 s=SIP Call c=IN IP4 192.168.10.30 t=0 0 m=audio 5004 RTP/AVP 0 18 4 3 2 101 a=sendrecv a=rtpmap:0 PCMU/8000 a=rtpmap:18 G729/8000 a=rtpmap:4 G723/8000 a=rtpmap:3 GSM/8000 a=rtpmap:2 G726-32/8000 a=ptime:20 a=rtpmap:101 telephone-event/8000 a=fmtp:101 0-11 m=video 5006 RTP/AVP 99 34 a=sendrecv a=rtpmap:99 H264/90000 a=fmtp:99 profile-level-id=428014; packetization-mode=0; sprop-parameter-sets=Z0KADJWgUH5A,aM4BryA= a=rtpmap:34 H263/90000 a=fmtp:34 CIF=2 MaxBR=1280 a=framerate:20
# U +0.000198 192.168.10.1:5060 -> 192.168.10.30:5060 SIP/2.0 407 Proxy Authentication Required Via: SIP/2.0/UDP 192.168.10.30:5060;branch=z9hG4bK33c01dc54687f9b1 From: sip:120@192.168.10.1;tag=da3442c6f8c59f63 To: sip:119@192.168.10.1;tag=36839585464337ac048b06b445c90d99.ed0a Call-ID: 8fe083c316d4df76@192.168.10.30 CSeq: 25947 INVITE Proxy-Authenticate: Digest realm="192.168.10.1", nonce="48c6d663000000010f56ef36ccc5d4663b354d28b0534e89" Server: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.001792 192.168.10.30:5060 -> 192.168.10.1:5060 ACK sip:119@192.168.10.1 SIP/2.0 Via: SIP/2.0/UDP 192.168.10.30:5060;branch=z9hG4bK33c01dc54687f9b1 From: sip:120@192.168.10.1;tag=da3442c6f8c59f63 To: sip:119@192.168.10.1;tag=36839585464337ac048b06b445c90d99.ed0a Contact: sip:120@192.168.10.30:5060 Call-ID: 8fe083c316d4df76@192.168.10.30 CSeq: 25947 ACK User-Agent: Grandstream GXV3000 1.1.3.14 Max-Forwards: 70 Allow: INVITE,ACK,CANCEL,BYE,NOTIFY,REFER,OPTIONS,INFO,SUBSCRIBE,UPDATE,PRACK Content-Length: 0
# U +0.001423 192.168.10.30:5060 -> 192.168.10.1:5060 INVITE sip:119@192.168.10.1 SIP/2.0 Via: SIP/2.0/UDP 192.168.10.30:5060;branch=z9hG4bK7af61a27aa301b84 From: sip:120@192.168.10.1;tag=da3442c6f8c59f63 To: sip:119@192.168.10.1 Contact: sip:120@192.168.10.30:5060 Supported: replaces, timer, path Proxy-Authorization: Digest username="120", realm="192.168.10.1", algorithm=MD5, uri="sip:119@192.168.10.1", nonce="48c6d663000000010f56ef36ccc5d4663b354d28b0534e89", response="076d06f28d1ebc3400571228e4f594b4" Call-ID: 8fe083c316d4df76@192.168.10.30 CSeq: 25948 INVITE User-Agent: Grandstream GXV3000 1.1.3.14 Max-Forwards: 70 Allow: INVITE,ACK,CANCEL,BYE,NOTIFY,REFER,OPTIONS,INFO,SUBSCRIBE,UPDATE,PRACK Content-Type: application/sdp Content-Length: 545
v=0 o=120 8000 8001 IN IP4 192.168.10.30 s=SIP Call c=IN IP4 192.168.10.30 t=0 0 m=audio 5004 RTP/AVP 0 18 4 3 2 101 a=sendrecv a=rtpmap:0 PCMU/8000 a=rtpmap:18 G729/8000 a=rtpmap:4 G723/8000 a=rtpmap:3 GSM/8000 a=rtpmap:2 G726-32/8000 a=ptime:20 a=rtpmap:101 telephone-event/8000 a=fmtp:101 0-11 m=video 5006 RTP/AVP 99 34 a=sendrecv a=rtpmap:99 H264/90000 a=fmtp:99 profile-level-id=428014; packetization-mode=0; sprop-parameter-sets=Z0KADJWgUH5A,aM4BryA= a=rtpmap:34 H263/90000 a=fmtp:34 CIF=2 MaxBR=1280 a=framerate:20
# U +0.001735 192.168.10.1:5060 -> 192.168.10.30:5060 SIP/2.0 100 Giving a try Via: SIP/2.0/UDP 192.168.10.30:5060;branch=z9hG4bK7af61a27aa301b84 From: sip:120@192.168.10.1;tag=da3442c6f8c59f63 To: sip:119@192.168.10.1 Call-ID: 8fe083c316d4df76@192.168.10.30 CSeq: 25948 INVITE Server: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.000157 192.168.10.1:5060 -> 192.168.10.28:5060 INVITE sip:119@192.168.10.28:5060 SIP/2.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK86e6.c0c23244.0 Via: SIP/2.0/UDP 192.168.10.30:5060;branch=z9hG4bK7af61a27aa301b84 From: sip:120@192.168.10.1;tag=da3442c6f8c59f63 To: sip:119@192.168.10.1 Contact: sip:120@192.168.10.30:5060 Supported: replaces, timer, path Call-ID: 8fe083c316d4df76@192.168.10.30 CSeq: 25948 INVITE User-Agent: Grandstream GXV3000 1.1.3.14 Max-Forwards: 69 Allow: INVITE,ACK,CANCEL,BYE,NOTIFY,REFER,OPTIONS,INFO,SUBSCRIBE,UPDATE,PRACK Content-Type: application/sdp Content-Length: 545
v=0 o=120 8000 8001 IN IP4 192.168.10.30 s=SIP Call c=IN IP4 192.168.10.30 t=0 0 m=audio 5004 RTP/AVP 0 18 4 3 2 101 a=sendrecv a=rtpmap:0 PCMU/8000 a=rtpmap:18 G729/8000 a=rtpmap:4 G723/8000 a=rtpmap:3 GSM/8000 a=rtpmap:2 G726-32/8000 a=ptime:20 a=rtpmap:101 telephone-event/8000 a=fmtp:101 0-11 m=video 5006 RTP/AVP 99 34 a=sendrecv a=rtpmap:99 H264/90000 a=fmtp:99 profile-level-id=428014; packetization-mode=0; sprop-parameter-sets=Z0KADJWgUH5A,aM4BryA= a=rtpmap:34 H263/90000 a=fmtp:34 CIF=2 MaxBR=1280 a=framerate:20
# U +0.002427 192.168.10.28:5060 -> 192.168.10.1:5060 SIP/2.0 100 Trying Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK86e6.c0c23244.0 Via: SIP/2.0/UDP 192.168.10.30:5060;branch=z9hG4bK7af61a27aa301b84 From: sip:120@192.168.10.1;tag=da3442c6f8c59f63 To: sip:119@192.168.10.1 Call-ID: 8fe083c316d4df76@192.168.10.30 CSeq: 25948 INVITE User-Agent: Grandstream GXV3000 1.1.3.14 Content-Length: 0
# U +0.000470 192.168.10.28:5060 -> 192.168.10.1:5060 SIP/2.0 180 Ringing Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK86e6.c0c23244.0 Via: SIP/2.0/UDP 192.168.10.30:5060;branch=z9hG4bK7af61a27aa301b84 From: sip:120@192.168.10.1;tag=da3442c6f8c59f63 To: sip:119@192.168.10.1;tag=5497eea69312cc64 Call-ID: 8fe083c316d4df76@192.168.10.30 CSeq: 25948 INVITE User-Agent: Grandstream GXV3000 1.1.3.14 Contact: sip:119@192.168.10.28:5060 Allow: INVITE,ACK,CANCEL,BYE,NOTIFY,REFER,OPTIONS,INFO,SUBSCRIBE,UPDATE,PRACK Content-Length: 0
# U +0.000104 192.168.10.1:5060 -> 192.168.10.30:5060 SIP/2.0 180 Ringing Via: SIP/2.0/UDP 192.168.10.30:5060;branch=z9hG4bK7af61a27aa301b84 From: sip:120@192.168.10.1;tag=da3442c6f8c59f63 To: sip:119@192.168.10.1;tag=5497eea69312cc64 Call-ID: 8fe083c316d4df76@192.168.10.30 CSeq: 25948 INVITE User-Agent: Grandstream GXV3000 1.1.3.14 Contact: sip:119@192.168.10.28:5060 Allow: INVITE,ACK,CANCEL,BYE,NOTIFY,REFER,OPTIONS,INFO,SUBSCRIBE,UPDATE,PRACK Content-Length: 0
# U +0.121712 192.168.10.19:5060 -> 190.184.35.4:5060 NOTIFY sip:190.184.35.4 SIP/2.0 Via: SIP/2.0/UDP 192.168.10.19:5060;branch=z9hG4bK-34c13b0 From: sip:130@190.184.35.4;tag=2e73251392609e94o1 To: sip:190.184.35.4 Call-ID: 2cf7ae17-e8ac0960@192.168.10.19 CSeq: 167 NOTIFY Max-Forwards: 70 Event: keep-alive User-Agent: Linksys/SPA942-5.2.8 Content-Length: 0
# U +0.000023 192.168.1.64:5060 -> 190.184.35.4:5060 NOTIFY sip:190.184.35.4 SIP/2.0 Via: SIP/2.0/UDP 192.168.10.19:5060;branch=z9hG4bK-34c13b0 From: sip:130@190.184.35.4;tag=2e73251392609e94o1 To: sip:190.184.35.4 Call-ID: 2cf7ae17-e8ac0960@192.168.10.19 CSeq: 167 NOTIFY Max-Forwards: 70 Event: keep-alive User-Agent: Linksys/SPA942-5.2.8 Content-Length: 0
# U +0.020568 192.168.10.19:5060 -> 190.184.35.4:5060 REGISTER sip:190.184.35.4 SIP/2.0 Via: SIP/2.0/UDP 192.168.10.19:5060;branch=z9hG4bK-c05c2a7d From: sip:130@190.184.35.4;tag=2e73251392609e94o1 To: sip:130@190.184.35.4 Call-ID: 9b01d524-1606c170@192.168.10.19 CSeq: 57917 REGISTER Max-Forwards: 70 Contact: sip:130@192.168.10.19:5060;expires=3600 User-Agent: Linksys/SPA942-5.2.8 Content-Length: 0 Allow: ACK, BYE, CANCEL, INFO, INVITE, NOTIFY, OPTIONS, REFER Supported: replaces
# U +0.000012 192.168.1.64:5060 -> 190.184.35.4:5060 REGISTER sip:190.184.35.4 SIP/2.0 Via: SIP/2.0/UDP 192.168.10.19:5060;branch=z9hG4bK-c05c2a7d From: sip:130@190.184.35.4;tag=2e73251392609e94o1 To: sip:130@190.184.35.4 Call-ID: 9b01d524-1606c170@192.168.10.19 CSeq: 57917 REGISTER Max-Forwards: 70 Contact: sip:130@192.168.10.19:5060;expires=3600 User-Agent: Linksys/SPA942-5.2.8 Content-Length: 0 Allow: ACK, BYE, CANCEL, INFO, INVITE, NOTIFY, OPTIONS, REFER Supported: replaces
# U +0.499655 192.168.10.19:5060 -> 190.184.35.4:5060 REGISTER sip:190.184.35.4 SIP/2.0 Via: SIP/2.0/UDP 192.168.10.19:5060;branch=z9hG4bK-c05c2a7d From: sip:130@190.184.35.4;tag=2e73251392609e94o1 To: sip:130@190.184.35.4 Call-ID: 9b01d524-1606c170@192.168.10.19 CSeq: 57917 REGISTER Max-Forwards: 70 Contact: sip:130@192.168.10.19:5060;expires=3600 User-Agent: Linksys/SPA942-5.2.8 Content-Length: 0 Allow: ACK, BYE, CANCEL, INFO, INVITE, NOTIFY, OPTIONS, REFER Supported: replaces
# U +0.000017 192.168.1.64:5060 -> 190.184.35.4:5060 REGISTER sip:190.184.35.4 SIP/2.0 Via: SIP/2.0/UDP 192.168.10.19:5060;branch=z9hG4bK-c05c2a7d From: sip:130@190.184.35.4;tag=2e73251392609e94o1 To: sip:130@190.184.35.4 Call-ID: 9b01d524-1606c170@192.168.10.19 CSeq: 57917 REGISTER Max-Forwards: 70 Contact: sip:130@192.168.10.19:5060;expires=3600 User-Agent: Linksys/SPA942-5.2.8 Content-Length: 0 Allow: ACK, BYE, CANCEL, INFO, INVITE, NOTIFY, OPTIONS, REFER Supported: replaces
# U +0.999996 192.168.10.19:5060 -> 190.184.35.4:5060 REGISTER sip:190.184.35.4 SIP/2.0 Via: SIP/2.0/UDP 192.168.10.19:5060;branch=z9hG4bK-c05c2a7d From: sip:130@190.184.35.4;tag=2e73251392609e94o1 To: sip:130@190.184.35.4 Call-ID: 9b01d524-1606c170@192.168.10.19 CSeq: 57917 REGISTER Max-Forwards: 70 Contact: sip:130@192.168.10.19:5060;expires=3600 User-Agent: Linksys/SPA942-5.2.8 Content-Length: 0 Allow: ACK, BYE, CANCEL, INFO, INVITE, NOTIFY, OPTIONS, REFER Supported: replaces
# U +0.000030 192.168.1.64:5060 -> 190.184.35.4:5060 REGISTER sip:190.184.35.4 SIP/2.0 Via: SIP/2.0/UDP 192.168.10.19:5060;branch=z9hG4bK-c05c2a7d From: sip:130@190.184.35.4;tag=2e73251392609e94o1 To: sip:130@190.184.35.4 Call-ID: 9b01d524-1606c170@192.168.10.19 CSeq: 57917 REGISTER Max-Forwards: 70 Contact: sip:130@192.168.10.19:5060;expires=3600 User-Agent: Linksys/SPA942-5.2.8 Content-Length: 0 Allow: ACK, BYE, CANCEL, INFO, INVITE, NOTIFY, OPTIONS, REFER Supported: replaces
# U +2.000000 192.168.10.19:5060 -> 190.184.35.4:5060 REGISTER sip:190.184.35.4 SIP/2.0 Via: SIP/2.0/UDP 192.168.10.19:5060;branch=z9hG4bK-c05c2a7d From: sip:130@190.184.35.4;tag=2e73251392609e94o1 To: sip:130@190.184.35.4 Call-ID: 9b01d524-1606c170@192.168.10.19 CSeq: 57917 REGISTER Max-Forwards: 70 Contact: sip:130@192.168.10.19:5060;expires=3600 User-Agent: Linksys/SPA942-5.2.8 Content-Length: 0 Allow: ACK, BYE, CANCEL, INFO, INVITE, NOTIFY, OPTIONS, REFER Supported: replaces
# U +0.000022 192.168.1.64:5060 -> 190.184.35.4:5060 REGISTER sip:190.184.35.4 SIP/2.0 Via: SIP/2.0/UDP 192.168.10.19:5060;branch=z9hG4bK-c05c2a7d From: sip:130@190.184.35.4;tag=2e73251392609e94o1 To: sip:130@190.184.35.4 Call-ID: 9b01d524-1606c170@192.168.10.19 CSeq: 57917 REGISTER Max-Forwards: 70 Contact: sip:130@192.168.10.19:5060;expires=3600 User-Agent: Linksys/SPA942-5.2.8 Content-Length: 0 Allow: ACK, BYE, CANCEL, INFO, INVITE, NOTIFY, OPTIONS, REFER Supported: replaces
# U +5.462648 192.168.10.28:5060 -> 192.168.10.1:5060
Q Z e l^^bgo # U +0.691778 192.168.10.1:5070 -> 192.168.10.1:5060 OPTIONS sip:192.168.10.1 SIP/2.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK424233d4;rport From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as105cb73a To: sip:192.168.10.1 Contact: sip:asterisk@192.168.10.1:5070 Call-ID: 139571ad12fd028c35c21c1059437fd7@192.168.10.1 CSeq: 102 OPTIONS User-Agent: Asterisk PBX Max-Forwards: 70 Date: Tue, 09 Sep 2008 19:57:53 GMT Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, SUBSCRIBE, NOTIFY Supported: replaces Content-Length: 0
# U +0.000166 192.168.10.1:5060 -> 192.168.10.1:5070 SIP/2.0 404 User Not Found Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK424233d4;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as105cb73a To: sip:192.168.10.1;tag=36839585464337ac048b06b445c90d99.9c85 Call-ID: 139571ad12fd028c35c21c1059437fd7@192.168.10.1 CSeq: 102 OPTIONS Server: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.000135 192.168.10.1:5060 -> 192.168.10.1:5060 OPTIONS sip:192.168.10.1 SIP/2.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4cf53705.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK424233d4;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as105cb73a To: sip:192.168.10.1 Contact: sip:asterisk@192.168.10.1:5070 Call-ID: 139571ad12fd028c35c21c1059437fd7@192.168.10.1 CSeq: 102 OPTIONS User-Agent: Asterisk PBX Max-Forwards: 69 Date: Tue, 09 Sep 2008 19:57:53 GMT Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, SUBSCRIBE, NOTIFY Supported: replaces Content-Length: 0
# U +0.000080 192.168.10.1:5060 -> 192.168.10.1:5060 SIP/2.0 404 User Not Found Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4cf53705.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK424233d4;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as105cb73a To: sip:192.168.10.1;tag=36839585464337ac048b06b445c90d99.5581 Call-ID: 139571ad12fd028c35c21c1059437fd7@192.168.10.1 CSeq: 102 OPTIONS Server: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.000100 192.168.10.1:5060 -> 192.168.10.1:5060 OPTIONS sip:192.168.10.1 SIP/2.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4cf53705.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK424233d4;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as105cb73a To: sip:192.168.10.1 Contact: sip:asterisk@192.168.10.1:5070 Call-ID: 139571ad12fd028c35c21c1059437fd7@192.168.10.1 CSeq: 102 OPTIONS User-Agent: Asterisk PBX Max-Forwards: 68 Date: Tue, 09 Sep 2008 19:57:53 GMT Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, SUBSCRIBE, NOTIFY Supported: replaces Content-Length: 0
# U +0.000077 192.168.10.1:5060 -> 192.168.10.1:5060 SIP/2.0 404 User Not Found Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4cf53705.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK424233d4;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as105cb73a To: sip:192.168.10.1;tag=36839585464337ac048b06b445c90d99.2743 Call-ID: 139571ad12fd028c35c21c1059437fd7@192.168.10.1 CSeq: 102 OPTIONS Server: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.000062 192.168.10.1:5060 -> 192.168.10.1:5070 SIP/2.0 404 User Not Found Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK424233d4;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as105cb73a To: sip:192.168.10.1;tag=36839585464337ac048b06b445c90d99.5581 Call-ID: 139571ad12fd028c35c21c1059437fd7@192.168.10.1 CSeq: 102 OPTIONS Server: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.000032 192.168.10.1:5060 -> 192.168.10.1:5060 OPTIONS sip:192.168.10.1 SIP/2.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.6cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4cf53705.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK424233d4;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as105cb73a To: sip:192.168.10.1 Contact: sip:asterisk@192.168.10.1:5070 Call-ID: 139571ad12fd028c35c21c1059437fd7@192.168.10.1 CSeq: 102 OPTIONS User-Agent: Asterisk PBX Max-Forwards: 67 Date: Tue, 09 Sep 2008 19:57:53 GMT Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, SUBSCRIBE, NOTIFY Supported: replaces Content-Length: 0
# U +0.000081 192.168.10.1:5060 -> 192.168.10.1:5060 SIP/2.0 404 User Not Found Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.6cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4cf53705.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK424233d4;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as105cb73a To: sip:192.168.10.1;tag=36839585464337ac048b06b445c90d99.b104 Call-ID: 139571ad12fd028c35c21c1059437fd7@192.168.10.1 CSeq: 102 OPTIONS Server: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.000098 192.168.10.1:5060 -> 192.168.10.1:5060 OPTIONS sip:192.168.10.1 SIP/2.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.7cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.6cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4cf53705.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK424233d4;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as105cb73a To: sip:192.168.10.1 Contact: sip:asterisk@192.168.10.1:5070 Call-ID: 139571ad12fd028c35c21c1059437fd7@192.168.10.1 CSeq: 102 OPTIONS User-Agent: Asterisk PBX Max-Forwards: 66 Date: Tue, 09 Sep 2008 19:57:53 GMT Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, SUBSCRIBE, NOTIFY Supported: replaces Content-Length: 0
# U +0.000240 192.168.10.1:5060 -> 192.168.10.1:5060 SIP/2.0 404 User Not Found Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4cf53705.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK424233d4;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as105cb73a To: sip:192.168.10.1;tag=36839585464337ac048b06b445c90d99.b104 Call-ID: 139571ad12fd028c35c21c1059437fd7@192.168.10.1 CSeq: 102 OPTIONS Server: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.000084 192.168.10.1:5060 -> 192.168.10.1:5060 SIP/2.0 404 User Not Found Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.7cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.6cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4cf53705.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK424233d4;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as105cb73a To: sip:192.168.10.1;tag=36839585464337ac048b06b445c90d99.c3c6 Call-ID: 139571ad12fd028c35c21c1059437fd7@192.168.10.1 CSeq: 102 OPTIONS Server: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.000102 192.168.10.1:5060 -> 192.168.10.1:5060 OPTIONS sip:192.168.10.1 SIP/2.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.8cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.7cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.6cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4cf53705.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK424233d4;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as105cb73a To: sip:192.168.10.1 Contact: sip:asterisk@192.168.10.1:5070 Call-ID: 139571ad12fd028c35c21c1059437fd7@192.168.10.1 CSeq: 102 OPTIONS User-Agent: Asterisk PBX Max-Forwards: 65 Date: Tue, 09 Sep 2008 19:57:53 GMT Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, SUBSCRIBE, NOTIFY Supported: replaces Content-Length: 0
# U +0.000088 192.168.10.1:5060 -> 192.168.10.1:5060 SIP/2.0 404 User Not Found Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.6cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4cf53705.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK424233d4;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as105cb73a To: sip:192.168.10.1;tag=36839585464337ac048b06b445c90d99.c3c6 Call-ID: 139571ad12fd028c35c21c1059437fd7@192.168.10.1 CSeq: 102 OPTIONS Server: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.000088 192.168.10.1:5060 -> 192.168.10.1:5060 SIP/2.0 404 User Not Found Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.8cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.7cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.6cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4cf53705.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK424233d4;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as105cb73a To: sip:192.168.10.1;tag=36839585464337ac048b06b445c90d99.0e1c Call-ID: 139571ad12fd028c35c21c1059437fd7@192.168.10.1 CSeq: 102 OPTIONS Server: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.000108 192.168.10.1:5060 -> 192.168.10.1:5060 SIP/2.0 404 User Not Found Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4cf53705.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK424233d4;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as105cb73a To: sip:192.168.10.1;tag=36839585464337ac048b06b445c90d99.b104 Call-ID: 139571ad12fd028c35c21c1059437fd7@192.168.10.1 CSeq: 102 OPTIONS Server: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.000027 192.168.10.1:5060 -> 192.168.10.1:5060 OPTIONS sip:192.168.10.1 SIP/2.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.9cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.8cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.7cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.6cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4cf53705.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK424233d4;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as105cb73a To: sip:192.168.10.1 Contact: sip:asterisk@192.168.10.1:5070 Call-ID: 139571ad12fd028c35c21c1059437fd7@192.168.10.1 CSeq: 102 OPTIONS User-Agent: Asterisk PBX Max-Forwards: 64 Date: Tue, 09 Sep 2008 19:57:53 GMT Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, SUBSCRIBE, NOTIFY Supported: replaces Content-Length: 0
# U +0.000090 192.168.10.1:5060 -> 192.168.10.1:5060 SIP/2.0 404 User Not Found Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.7cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.6cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4cf53705.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK424233d4;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as105cb73a To: sip:192.168.10.1;tag=36839585464337ac048b06b445c90d99.0e1c Call-ID: 139571ad12fd028c35c21c1059437fd7@192.168.10.1 CSeq: 102 OPTIONS Server: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.000113 192.168.10.1:5060 -> 192.168.10.1:5060 SIP/2.0 404 User Not Found Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.9cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.8cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.7cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.6cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4cf53705.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK424233d4;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as105cb73a To: sip:192.168.10.1;tag=36839585464337ac048b06b445c90d99.7cde Call-ID: 139571ad12fd028c35c21c1059437fd7@192.168.10.1 CSeq: 102 OPTIONS Server: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.000139 192.168.10.1:5060 -> 192.168.10.1:5060 OPTIONS sip:192.168.10.1 SIP/2.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.acf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.9cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.8cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.7cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.6cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4cf53705.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK424233d4;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as105cb73a To: sip:192.168.10.1 Contact: sip:asterisk@192.168.10.1:5070 Call-ID: 139571ad12fd028c35c21c1059437fd7@192.168.10.1 CSeq: 102 OPTIONS User-Agent: Asterisk PBX Max-Forwards: 63 Date: Tue, 09 Sep 2008 19:57:53 GMT Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, SUBSCRIBE, NOTIFY Supported: replaces Content-Length: 0
# U +0.000107 192.168.10.1:5060 -> 192.168.10.1:5060 SIP/2.0 404 User Not Found Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.8cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.7cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.6cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4cf53705.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK424233d4;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as105cb73a To: sip:192.168.10.1;tag=36839585464337ac048b06b445c90d99.7cde Call-ID: 139571ad12fd028c35c21c1059437fd7@192.168.10.1 CSeq: 102 OPTIONS Server: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.000081 192.168.10.1:5060 -> 192.168.10.1:5060 SIP/2.0 404 User Not Found Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.acf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.9cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.8cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.7cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.6cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4cf53705.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK424233d4;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as105cb73a To: sip:192.168.10.1;tag=36839585464337ac048b06b445c90d99.7c70 Call-ID: 139571ad12fd028c35c21c1059437fd7@192.168.10.1 CSeq: 102 OPTIONS Server: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.000108 192.168.10.1:5060 -> 192.168.10.1:5060 OPTIONS sip:192.168.10.1 SIP/2.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.bcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.acf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.9cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.8cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.7cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.6cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4cf53705.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK424233d4;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as105cb73a To: sip:192.168.10.1 Contact: sip:asterisk@192.168.10.1:5070 Call-ID: 139571ad12fd028c35c21c1059437fd7@192.168.10.1 CSeq: 102 OPTIONS User-Agent: Asterisk PBX Max-Forwards: 62 Date: Tue, 09 Sep 2008 19:57:53 GMT Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, SUBSCRIBE, NOTIFY Supported: replaces Content-Length: 0
# U +0.000109 192.168.10.1:5060 -> 192.168.10.1:5060 SIP/2.0 404 User Not Found Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.9cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.8cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.7cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.6cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4cf53705.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK424233d4;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as105cb73a To: sip:192.168.10.1;tag=36839585464337ac048b06b445c90d99.7c70 Call-ID: 139571ad12fd028c35c21c1059437fd7@192.168.10.1 CSeq: 102 OPTIONS Server: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.000083 192.168.10.1:5060 -> 192.168.10.1:5060 SIP/2.0 404 User Not Found Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.bcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.acf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.9cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.8cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.7cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.6cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4cf53705.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK424233d4;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as105cb73a To: sip:192.168.10.1;tag=36839585464337ac048b06b445c90d99.ea37 Call-ID: 139571ad12fd028c35c21c1059437fd7@192.168.10.1 CSeq: 102 OPTIONS Server: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.000104 192.168.10.1:5060 -> 192.168.10.1:5060 OPTIONS sip:192.168.10.1 SIP/2.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ccf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.bcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.acf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.9cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.8cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.7cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.6cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4cf53705.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK424233d4;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as105cb73a To: sip:192.168.10.1 Contact: sip:asterisk@192.168.10.1:5070 Call-ID: 139571ad12fd028c35c21c1059437fd7@192.168.10.1 CSeq: 102 OPTIONS User-Agent: Asterisk PBX Max-Forwards: 61 Date: Tue, 09 Sep 2008 19:57:53 GMT Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, SUBSCRIBE, NOTIFY Supported: replaces Content-Length: 0
# U +0.000121 192.168.10.1:5060 -> 192.168.10.1:5060 SIP/2.0 404 User Not Found Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.acf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.9cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.8cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.7cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.6cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4cf53705.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK424233d4;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as105cb73a To: sip:192.168.10.1;tag=36839585464337ac048b06b445c90d99.ea37 Call-ID: 139571ad12fd028c35c21c1059437fd7@192.168.10.1 CSeq: 102 OPTIONS Server: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.000410 192.168.10.1:5060 -> 192.168.10.1:5060 SIP/2.0 404 User Not Found Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ccf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.bcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.acf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.9cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.8cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.7cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.6cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4cf53705.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK424233d4;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as105cb73a To: sip:192.168.10.1;tag=36839585464337ac048b06b445c90d99.98f5 Call-ID: 139571ad12fd028c35c21c1059437fd7@192.168.10.1 CSeq: 102 OPTIONS Server: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.000237 192.168.10.1:5060 -> 192.168.10.1:5060 OPTIONS sip:192.168.10.1 SIP/2.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.dcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ccf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.bcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.acf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.9cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.8cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.7cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.6cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4cf53705.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK424233d4;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as105cb73a To: sip:192.168.10.1 Contact: sip:asterisk@192.168.10.1:5070 Call-ID: 139571ad12fd028c35c21c1059437fd7@192.168.10.1 CSeq: 102 OPTIONS User-Agent: Asterisk PBX Max-Forwards: 60 Date: Tue, 09 Sep 2008 19:57:53 GMT Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, SUBSCRIBE, NOTIFY Supported: replaces Content-Length: 0
# U +0.000148 192.168.10.1:5060 -> 192.168.10.1:5060 SIP/2.0 404 User Not Found Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.bcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.acf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.9cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.8cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.7cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.6cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4cf53705.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK424233d4;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as105cb73a To: sip:192.168.10.1;tag=36839585464337ac048b06b445c90d99.98f5 Call-ID: 139571ad12fd028c35c21c1059437fd7@192.168.10.1 CSeq: 102 OPTIONS Server: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.000110 192.168.10.1:5060 -> 192.168.10.1:5060 SIP/2.0 404 User Not Found Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.dcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ccf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.bcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.acf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.9cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.8cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.7cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.6cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4cf53705.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK424233d4;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as105cb73a To: sip:192.168.10.1;tag=36839585464337ac048b06b445c90d99.c7b9 Call-ID: 139571ad12fd028c35c21c1059437fd7@192.168.10.1 CSeq: 102 OPTIONS Server: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.000189 192.168.10.1:5060 -> 192.168.10.1:5060 OPTIONS sip:192.168.10.1 SIP/2.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ecf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.dcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ccf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.bcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.acf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.9cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.8cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.7cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.6cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4cf53705.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK424233d4;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as105cb73a To: sip:192.168.10.1 Contact: sip:asterisk@192.168.10.1:5070 Call-ID: 139571ad12fd028c35c21c1059437fd7@192.168.10.1 CSeq: 102 OPTIONS User-Agent: Asterisk PBX Max-Forwards: 59 Date: Tue, 09 Sep 2008 19:57:53 GMT Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, SUBSCRIBE, NOTIFY Supported: replaces Content-Length: 0
# U +0.000142 192.168.10.1:5060 -> 192.168.10.1:5060 SIP/2.0 404 User Not Found Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ccf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.bcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.acf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.9cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.8cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.7cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.6cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4cf53705.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK424233d4;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as105cb73a To: sip:192.168.10.1;tag=36839585464337ac048b06b445c90d99.c7b9 Call-ID: 139571ad12fd028c35c21c1059437fd7@192.168.10.1 CSeq: 102 OPTIONS Server: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.000094 192.168.10.1:5060 -> 192.168.10.1:5060 SIP/2.0 404 User Not Found Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ecf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.dcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ccf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.bcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.acf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.9cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.8cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.7cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.6cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4cf53705.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK424233d4;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as105cb73a To: sip:192.168.10.1;tag=36839585464337ac048b06b445c90d99.b57b Call-ID: 139571ad12fd028c35c21c1059437fd7@192.168.10.1 CSeq: 102 OPTIONS Server: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.000121 192.168.10.1:5060 -> 192.168.10.1:5060 OPTIONS sip:192.168.10.1 SIP/2.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.fcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ecf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.dcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ccf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.bcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.acf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.9cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.8cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.7cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.6cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4cf53705.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK424233d4;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as105cb73a To: sip:192.168.10.1 Contact: sip:asterisk@192.168.10.1:5070 Call-ID: 139571ad12fd028c35c21c1059437fd7@192.168.10.1 CSeq: 102 OPTIONS User-Agent: Asterisk PBX Max-Forwards: 58 Date: Tue, 09 Sep 2008 19:57:53 GMT Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, SUBSCRIBE, NOTIFY Supported: replaces Content-Length: 0
# U +0.000105 192.168.10.1:5060 -> 192.168.10.1:5060 SIP/2.0 404 User Not Found Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.fcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ecf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.dcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ccf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.bcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.acf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.9cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.8cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.7cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.6cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4cf53705.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK424233d4;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as105cb73a To: sip:192.168.10.1;tag=36839585464337ac048b06b445c90d99.233c Call-ID: 139571ad12fd028c35c21c1059437fd7@192.168.10.1 CSeq: 102 OPTIONS Server: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.000117 192.168.10.1:5060 -> 192.168.10.1:5060 OPTIONS sip:192.168.10.1 SIP/2.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.0df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.fcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ecf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.dcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ccf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.bcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.acf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.9cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.8cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.7cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.6cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4cf53705.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK424233d4;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as105cb73a To: sip:192.168.10.1 Contact: sip:asterisk@192.168.10.1:5070 Call-ID: 139571ad12fd028c35c21c1059437fd7@192.168.10.1 CSeq: 102 OPTIONS User-Agent: Asterisk PBX Max-Forwards: 57 Date: Tue, 09 Sep 2008 19:57:53 GMT Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, SUBSCRIBE, NOTIFY Supported: replaces Content-Length: 0
# U +0.000096 192.168.10.1:5060 -> 192.168.10.1:5060 SIP/2.0 404 User Not Found Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ecf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.dcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ccf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.bcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.acf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.9cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.8cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.7cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.6cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4cf53705.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK424233d4;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as105cb73a To: sip:192.168.10.1;tag=36839585464337ac048b06b445c90d99.233c Call-ID: 139571ad12fd028c35c21c1059437fd7@192.168.10.1 CSeq: 102 OPTIONS Server: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.000097 192.168.10.1:5060 -> 192.168.10.1:5060 SIP/2.0 404 User Not Found Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.0df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.fcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ecf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.dcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ccf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.bcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.acf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.9cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.8cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.7cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.6cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4cf53705.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK424233d4;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as105cb73a To: sip:192.168.10.1;tag=36839585464337ac048b06b445c90d99.b214 Call-ID: 139571ad12fd028c35c21c1059437fd7@192.168.10.1 CSeq: 102 OPTIONS Server: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.000108 192.168.10.1:5060 -> 192.168.10.1:5060 OPTIONS sip:192.168.10.1 SIP/2.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.1df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.0df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.fcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ecf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.dcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ccf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.bcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.acf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.9cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.8cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.7cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.6cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4cf53705.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK424233d4;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as105cb73a To: sip:192.168.10.1 Contact: sip:asterisk@192.168.10.1:5070 Call-ID: 139571ad12fd028c35c21c1059437fd7@192.168.10.1 CSeq: 102 OPTIONS User-Agent: Asterisk PBX Max-Forwards: 56 Date: Tue, 09 Sep 2008 19:57:53 GMT Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, SUBSCRIBE, NOTIFY Supported: replaces Content-Length: 0
# U +0.000109 192.168.10.1:5060 -> 192.168.10.1:5060 SIP/2.0 404 User Not Found Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.dcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ccf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.bcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.acf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.9cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.8cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.7cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.6cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4cf53705.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK424233d4;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as105cb73a To: sip:192.168.10.1;tag=36839585464337ac048b06b445c90d99.233c Call-ID: 139571ad12fd028c35c21c1059437fd7@192.168.10.1 CSeq: 102 OPTIONS Server: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.000083 192.168.10.1:5060 -> 192.168.10.1:5060 SIP/2.0 404 User Not Found Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.fcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ecf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.dcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ccf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.bcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.acf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.9cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.8cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.7cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.6cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4cf53705.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK424233d4;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as105cb73a To: sip:192.168.10.1;tag=36839585464337ac048b06b445c90d99.b214 Call-ID: 139571ad12fd028c35c21c1059437fd7@192.168.10.1 CSeq: 102 OPTIONS Server: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.000107 192.168.10.1:5060 -> 192.168.10.1:5060 SIP/2.0 404 User Not Found Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.1df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.0df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.fcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ecf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.dcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ccf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.bcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.acf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.9cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.8cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.7cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.6cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4cf53705.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK424233d4;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as105cb73a To: sip:192.168.10.1;tag=36839585464337ac048b06b445c90d99.c0d6 Call-ID: 139571ad12fd028c35c21c1059437fd7@192.168.10.1 CSeq: 102 OPTIONS Server: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.000126 192.168.10.1:5060 -> 192.168.10.1:5060 OPTIONS sip:192.168.10.1 SIP/2.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.2df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.1df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.0df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.fcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ecf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.dcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ccf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.bcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.acf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.9cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.8cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.7cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.6cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4cf53705.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK424233d4;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as105cb73a To: sip:192.168.10.1 Contact: sip:asterisk@192.168.10.1:5070 Call-ID: 139571ad12fd028c35c21c1059437fd7@192.168.10.1 CSeq: 102 OPTIONS User-Agent: Asterisk PBX Max-Forwards: 55 Date: Tue, 09 Sep 2008 19:57:53 GMT Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, SUBSCRIBE, NOTIFY Supported: replaces Content-Length: 0
# U +0.000166 192.168.10.1:5060 -> 192.168.10.1:5060 SIP/2.0 404 User Not Found Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.0df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.fcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ecf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.dcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ccf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.bcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.acf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.9cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.8cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.7cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.6cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4cf53705.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK424233d4;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as105cb73a To: sip:192.168.10.1;tag=36839585464337ac048b06b445c90d99.c0d6 Call-ID: 139571ad12fd028c35c21c1059437fd7@192.168.10.1 CSeq: 102 OPTIONS Server: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.000189 192.168.10.1:5060 -> 192.168.10.1:5060 SIP/2.0 404 User Not Found Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.2df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.1df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.0df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.fcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ecf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.dcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ccf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.bcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.acf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.9cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.8cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.7cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.6cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4cf53705.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK424233d4;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as105cb73a To: sip:192.168.10.1;tag=36839585464337ac048b06b445c90d99.5691 Call-ID: 139571ad12fd028c35c21c1059437fd7@192.168.10.1 CSeq: 102 OPTIONS Server: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.000171 192.168.10.1:5060 -> 192.168.10.1:5060 SIP/2.0 404 User Not Found Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.1df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.0df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.fcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ecf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.dcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ccf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.bcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.acf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.9cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.8cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.7cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.6cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4cf53705.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK424233d4;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as105cb73a To: sip:192.168.10.1;tag=36839585464337ac048b06b445c90d99.5691 Call-ID: 139571ad12fd028c35c21c1059437fd7@192.168.10.1 CSeq: 102 OPTIONS Server: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.000215 192.168.10.1:5060 -> 192.168.10.1:5060 OPTIONS sip:192.168.10.1 SIP/2.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.3df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.2df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.1df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.0df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.fcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ecf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.dcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ccf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.bcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.acf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.9cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.8cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.7cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.6cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4cf53705.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK424233d4;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as105cb73a To: sip:192.168.10.1 Contact: sip:asterisk@192.168.10.1:5070 Call-ID: 139571ad12fd028c35c21c1059437fd7@192.168.10.1 CSeq: 102 OPTIONS User-Agent: Asterisk PBX Max-Forwards: 54 Date: Tue, 09 Sep 2008 19:57:53 GMT Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, SUBSCRIBE, NOTIFY Supported: replaces Content-Length: 0
# U +0.000255 192.168.10.1:5060 -> 192.168.10.1:5060 SIP/2.0 404 User Not Found Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.3df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.2df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.1df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.0df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.fcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ecf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.dcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ccf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.bcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.acf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.9cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.8cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.7cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.6cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4cf53705.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK424233d4;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as105cb73a To: sip:192.168.10.1;tag=36839585464337ac048b06b445c90d99.2453 Call-ID: 139571ad12fd028c35c21c1059437fd7@192.168.10.1 CSeq: 102 OPTIONS Server: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.000209 192.168.10.1:5060 -> 192.168.10.1:5060 OPTIONS sip:192.168.10.1 SIP/2.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.3df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.2df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.1df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.0df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.fcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ecf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.dcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ccf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.bcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.acf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.9cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.8cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.7cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.6cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4cf53705.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK424233d4;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as105cb73a To: sip:192.168.10.1 Contact: sip:asterisk@192.168.10.1:5070 Call-ID: 139571ad12fd028c35c21c1059437fd7@192.168.10.1 CSeq: 102 OPTIONS User-Agent: Asterisk PBX Max-Forwards: 53 Date: Tue, 09 Sep 2008 19:57:53 GMT Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, SUBSCRIBE, NOTIFY Supported: replaces Content-Length: 0
# U +0.000058 192.168.10.1:5060 -> 192.168.10.1:5060 SIP/2.0 404 User Not Found Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.2df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.1df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.0df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.fcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ecf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.dcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ccf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.bcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.acf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.9cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.8cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.7cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.6cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4cf53705.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK424233d4;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as105cb73a To: sip:192.168.10.1;tag=36839585464337ac048b06b445c90d99.2453 Call-ID: 139571ad12fd028c35c21c1059437fd7@192.168.10.1 CSeq: 102 OPTIONS Server: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.000058 192.168.10.1:5060 -> 192.168.10.1:5060 SIP/2.0 404 User Not Found Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.3df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.2df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.1df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.0df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.fcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ecf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.dcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ccf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.bcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.acf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.9cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.8cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.7cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.6cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4cf53705.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK424233d4;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as105cb73a To: sip:192.168.10.1;tag=36839585464337ac048b06b445c90d99.7b1f Call-ID: 139571ad12fd028c35c21c1059437fd7@192.168.10.1 CSeq: 102 OPTIONS Server: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.000131 192.168.10.1:5060 -> 192.168.10.1:5060 OPTIONS sip:192.168.10.1 SIP/2.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.3df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.2df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.1df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.0df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.fcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ecf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.dcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ccf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.bcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.acf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.9cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.8cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.7cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.6cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4cf53705.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK424233d4;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as105cb73a To: sip:192.168.10.1 Contact: sip:asterisk@192.168.10.1:5070 Call-ID: 139571ad12fd028c35c21c1059437fd7@192.168.10.1 CSeq: 102 OPTIONS User-Agent: Asterisk PBX Max-Forwards: 52 Date: Tue, 09 Sep 2008 19:57:53 GMT Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, SUBSCRIBE, NOTIFY Supported: replaces Content-Length: 0
# U +0.000120 192.168.10.1:5060 -> 192.168.10.1:5060 SIP/2.0 404 User Not Found Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.3df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.2df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.1df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.0df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.fcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ecf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.dcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ccf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.bcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.acf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.9cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.8cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.7cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.6cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4cf53705.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK424233d4;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as105cb73a To: sip:192.168.10.1;tag=36839585464337ac048b06b445c90d99.09dd Call-ID: 139571ad12fd028c35c21c1059437fd7@192.168.10.1 CSeq: 102 OPTIONS Server: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.000124 192.168.10.1:5060 -> 192.168.10.1:5060 OPTIONS sip:192.168.10.1 SIP/2.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.6df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.3df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.2df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.1df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.0df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.fcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ecf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.dcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ccf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.bcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.acf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.9cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.8cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.7cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.6cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4cf53705.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK424233d4;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as105cb73a To: sip:192.168.10.1 Contact: sip:asterisk@192.168.10.1:5070 Call-ID: 139571ad12fd028c35c21c1059437fd7@192.168.10.1 CSeq: 102 OPTIONS User-Agent: Asterisk PBX Max-Forwards: 51 Date: Tue, 09 Sep 2008 19:57:53 GMT Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, SUBSCRIBE, NOTIFY Supported: replaces Content-Length: 0
# U +0.000129 192.168.10.1:5060 -> 192.168.10.1:5060 SIP/2.0 404 User Not Found Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.3df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.2df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.1df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.0df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.fcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ecf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.dcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ccf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.bcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.acf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.9cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.8cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.7cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.6cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4cf53705.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK424233d4;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as105cb73a To: sip:192.168.10.1;tag=36839585464337ac048b06b445c90d99.09dd Call-ID: 139571ad12fd028c35c21c1059437fd7@192.168.10.1 CSeq: 102 OPTIONS Server: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.000109 192.168.10.1:5060 -> 192.168.10.1:5060 SIP/2.0 404 User Not Found Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.6df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.3df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.2df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.1df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.0df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.fcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ecf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.dcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ccf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.bcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.acf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.9cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.8cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.7cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.6cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4cf53705.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK424233d4;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as105cb73a To: sip:192.168.10.1;tag=36839585464337ac048b06b445c90d99.9f9a Call-ID: 139571ad12fd028c35c21c1059437fd7@192.168.10.1 CSeq: 102 OPTIONS Server: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.000124 192.168.10.1:5060 -> 192.168.10.1:5060 OPTIONS sip:192.168.10.1 SIP/2.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.7df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.6df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.3df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.2df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.1df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.0df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.fcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ecf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.dcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ccf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.bcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.acf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.9cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.8cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.7cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.6cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4cf53705.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK424233d4;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as105cb73a To: sip:192.168.10.1 Contact: sip:asterisk@192.168.10.1:5070 Call-ID: 139571ad12fd028c35c21c1059437fd7@192.168.10.1 CSeq: 102 OPTIONS User-Agent: Asterisk PBX Max-Forwards: 50 Date: Tue, 09 Sep 2008 19:57:53 GMT Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, SUBSCRIBE, NOTIFY Supported: replaces Content-Length: 0
# U +0.000159 192.168.10.1:5060 -> 192.168.10.1:5060 SIP/2.0 404 User Not Found Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.3df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.2df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.1df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.0df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.fcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ecf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.dcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ccf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.bcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.acf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.9cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.8cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.7cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.6cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4cf53705.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK424233d4;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as105cb73a To: sip:192.168.10.1;tag=36839585464337ac048b06b445c90d99.9f9a Call-ID: 139571ad12fd028c35c21c1059437fd7@192.168.10.1 CSeq: 102 OPTIONS Server: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.000100 192.168.10.1:5060 -> 192.168.10.1:5060 SIP/2.0 404 User Not Found Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.7df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.6df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.3df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.2df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.1df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.0df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.fcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ecf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.dcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ccf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.bcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.acf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.9cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.8cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.7cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.6cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4cf53705.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK424233d4;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as105cb73a To: sip:192.168.10.1;tag=36839585464337ac048b06b445c90d99.ed58 Call-ID: 139571ad12fd028c35c21c1059437fd7@192.168.10.1 CSeq: 102 OPTIONS Server: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.000121 192.168.10.1:5060 -> 192.168.10.1:5060 OPTIONS sip:192.168.10.1 SIP/2.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.8df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.7df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.6df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.3df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.2df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.1df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.0df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.fcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ecf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.dcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ccf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.bcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.acf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.9cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.8cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.7cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.6cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4cf53705.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK424233d4;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as105cb73a To: sip:192.168.10.1 Contact: sip:asterisk@192.168.10.1:5070 Call-ID: 139571ad12fd028c35c21c1059437fd7@192.168.10.1 CSeq: 102 OPTIONS User-Agent: Asterisk PBX Max-Forwards: 49 Date: Tue, 09 Sep 2008 19:57:53 GMT Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, SUBSCRIBE, NOTIFY Supported: replaces Content-Length: 0
# U +0.000146 192.168.10.1:5060 -> 192.168.10.1:5060 SIP/2.0 404 User Not Found Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.6df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.3df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.2df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.1df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.0df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.fcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ecf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.dcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ccf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.bcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.acf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.9cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.8cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.7cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.6cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4cf53705.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK424233d4;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as105cb73a To: sip:192.168.10.1;tag=36839585464337ac048b06b445c90d99.ed58 Call-ID: 139571ad12fd028c35c21c1059437fd7@192.168.10.1 CSeq: 102 OPTIONS Server: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.000110 192.168.10.1:5060 -> 192.168.10.1:5060 SIP/2.0 404 User Not Found Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.8df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.7df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.6df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.3df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.2df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.1df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.0df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.fcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ecf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.dcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ccf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.bcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.acf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.9cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.8cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.7cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.6cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4cf53705.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK424233d4;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as105cb73a To: sip:192.168.10.1;tag=36839585464337ac048b06b445c90d99.2082 Call-ID: 139571ad12fd028c35c21c1059437fd7@192.168.10.1 CSeq: 102 OPTIONS Server: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.000143 192.168.10.1:5060 -> 192.168.10.1:5060 OPTIONS sip:192.168.10.1 SIP/2.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.9df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.8df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.7df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.6df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.3df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.2df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.1df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.0df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.fcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ecf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.dcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ccf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.bcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.acf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.9cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.8cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.7cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.6cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4cf53705.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK424233d4;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as105cb73a To: sip:192.168.10.1 Contact: sip:asterisk@192.168.10.1:5070 Call-ID: 139571ad12fd028c35c21c1059437fd7@192.168.10.1 CSeq: 102 OPTIONS User-Agent: Asterisk PBX Max-Forwards: 48 Date: Tue, 09 Sep 2008 19:57:53 GMT Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, SUBSCRIBE, NOTIFY Supported: replaces Content-Length: 0
# U +0.000126 192.168.10.1:5060 -> 192.168.10.1:5060 SIP/2.0 404 User Not Found Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.7df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.6df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.3df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.2df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.1df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.0df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.fcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ecf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.dcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ccf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.bcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.acf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.9cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.8cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.7cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.6cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4cf53705.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK424233d4;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as105cb73a To: sip:192.168.10.1;tag=36839585464337ac048b06b445c90d99.2082 Call-ID: 139571ad12fd028c35c21c1059437fd7@192.168.10.1 CSeq: 102 OPTIONS Server: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.000106 192.168.10.1:5060 -> 192.168.10.1:5060 SIP/2.0 404 User Not Found Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.9df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.8df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.7df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.6df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.3df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.2df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.1df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.0df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.fcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ecf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.dcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ccf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.bcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.acf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.9cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.8cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.7cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.6cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4cf53705.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK424233d4;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as105cb73a To: sip:192.168.10.1;tag=36839585464337ac048b06b445c90d99.5240 Call-ID: 139571ad12fd028c35c21c1059437fd7@192.168.10.1 CSeq: 102 OPTIONS Server: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.000126 192.168.10.1:5060 -> 192.168.10.1:5060 OPTIONS sip:192.168.10.1 SIP/2.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.adf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.9df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.8df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.7df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.6df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.3df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.2df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.1df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.0df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.fcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ecf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.dcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ccf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.bcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.acf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.9cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.8cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.7cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.6cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4cf53705.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK424233d4;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as105cb73a To: sip:192.168.10.1 Contact: sip:asterisk@192.168.10.1:5070 Call-ID: 139571ad12fd028c35c21c1059437fd7@192.168.10.1 CSeq: 102 OPTIONS User-Agent: Asterisk PBX Max-Forwards: 47 Date: Tue, 09 Sep 2008 19:57:53 GMT Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, SUBSCRIBE, NOTIFY Supported: replaces Content-Length: 0
# U +0.000163 192.168.10.1:5060 -> 192.168.10.1:5060 SIP/2.0 404 User Not Found Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.8df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.7df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.6df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.3df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.2df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.1df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.0df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.fcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ecf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.dcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ccf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.bcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.acf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.9cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.8cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.7cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.6cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4cf53705.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK424233d4;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as105cb73a To: sip:192.168.10.1;tag=36839585464337ac048b06b445c90d99.5240 Call-ID: 139571ad12fd028c35c21c1059437fd7@192.168.10.1 CSeq: 102 OPTIONS Server: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.000113 192.168.10.1:5060 -> 192.168.10.1:5060 SIP/2.0 404 User Not Found Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.adf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.9df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.8df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.7df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.6df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.3df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.2df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.1df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.0df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.fcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ecf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.dcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ccf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.bcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.acf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.9cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.8cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.7cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.6cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4cf53705.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK424233d4;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as105cb73a To: sip:192.168.10.1;tag=36839585464337ac048b06b445c90d99.52ee Call-ID: 139571ad12fd028c35c21c1059437fd7@192.168.10.1 CSeq: 102 OPTIONS Server: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.000123 192.168.10.1:5060 -> 192.168.10.1:5060 OPTIONS sip:192.168.10.1 SIP/2.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.bdf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.adf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.9df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.8df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.7df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.6df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.3df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.2df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.1df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.0df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.fcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ecf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.dcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ccf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.bcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.acf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.9cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.8cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.7cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.6cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4cf53705.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK424233d4;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as105cb73a To: sip:192.168.10.1 Contact: sip:asterisk@192.168.10.1:5070 Call-ID: 139571ad12fd028c35c21c1059437fd7@192.168.10.1 CSeq: 102 OPTIONS User-Agent: Asterisk PBX Max-Forwards: 46 Date: Tue, 09 Sep 2008 19:57:53 GMT Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, SUBSCRIBE, NOTIFY Supported: replaces Content-Length: 0
# U +0.000156 192.168.10.1:5060 -> 192.168.10.1:5060 SIP/2.0 404 User Not Found Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.9df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.8df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.7df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.6df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.3df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.2df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.1df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.0df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.fcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ecf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.dcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ccf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.bcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.acf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.9cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.8cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.7cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.6cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4cf53705.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK424233d4;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as105cb73a To: sip:192.168.10.1;tag=36839585464337ac048b06b445c90d99.52ee Call-ID: 139571ad12fd028c35c21c1059437fd7@192.168.10.1 CSeq: 102 OPTIONS Server: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.000132 192.168.10.1:5060 -> 192.168.10.1:5060 SIP/2.0 404 User Not Found Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.bdf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.adf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.9df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.8df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.7df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.6df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.3df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.2df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.1df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.0df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.fcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ecf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.dcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ccf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.bcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.acf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.9cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.8cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.7cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.6cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4cf53705.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK424233d4;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as105cb73a To: sip:192.168.10.1;tag=36839585464337ac048b06b445c90d99.c4a9 Call-ID: 139571ad12fd028c35c21c1059437fd7@192.168.10.1 CSeq: 102 OPTIONS Server: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.000139 192.168.10.1:5060 -> 192.168.10.1:5060 OPTIONS sip:192.168.10.1 SIP/2.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.cdf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.bdf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.adf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.9df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.8df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.7df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.6df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.3df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.2df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.1df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.0df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.fcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ecf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.dcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ccf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.bcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.acf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.9cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.8cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.7cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.6cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4cf53705.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK424233d4;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as105cb73a To: sip:192.168.10.1 Contact: sip:asterisk@192.168.10.1:5070 Call-ID: 139571ad12fd028c35c21c1059437fd7@192.168.10.1 CSeq: 102 OPTIONS User-Agent: Asterisk PBX Max-Forwards: 45 Date: Tue, 09 Sep 2008 19:57:53 GMT Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, SUBSCRIBE, NOTIFY Supported: replaces Content-Length: 0
# U +0.000164 192.168.10.1:5060 -> 192.168.10.1:5060 SIP/2.0 404 User Not Found Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.adf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.9df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.8df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.7df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.6df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.3df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.2df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.1df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.0df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.fcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ecf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.dcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ccf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.bcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.acf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.9cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.8cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.7cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.6cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4cf53705.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK424233d4;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as105cb73a To: sip:192.168.10.1;tag=36839585464337ac048b06b445c90d99.c4a9 Call-ID: 139571ad12fd028c35c21c1059437fd7@192.168.10.1 CSeq: 102 OPTIONS Server: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.000117 192.168.10.1:5060 -> 192.168.10.1:5060 SIP/2.0 404 User Not Found Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.cdf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.bdf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.adf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.9df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.8df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.7df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.6df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.3df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.2df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.1df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.0df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.fcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ecf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.dcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ccf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.bcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.acf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.9cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.8cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.7cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.6cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4cf53705.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK424233d4;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as105cb73a To: sip:192.168.10.1;tag=36839585464337ac048b06b445c90d99.b66b Call-ID: 139571ad12fd028c35c21c1059437fd7@192.168.10.1 CSeq: 102 OPTIONS Server: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.000134 192.168.10.1:5060 -> 192.168.10.1:5060 OPTIONS sip:192.168.10.1 SIP/2.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ddf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.cdf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.bdf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.adf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.9df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.8df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.7df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.6df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.3df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.2df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.1df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.0df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.fcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ecf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.dcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ccf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.bcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.acf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.9cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.8cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.7cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.6cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4cf53705.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK424233d4;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as105cb73a To: sip:192.168.10.1 Contact: sip:asterisk@192.168.10.1:5070 Call-ID: 139571ad12fd028c35c21c1059437fd7@192.168.10.1 CSeq: 102 OPTIONS User-Agent: Asterisk PBX Max-Forwards: 44 Date: Tue, 09 Sep 2008 19:57:53 GMT Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, SUBSCRIBE, NOTIFY Supported: replaces Content-Length: 0
# U +0.000164 192.168.10.1:5060 -> 192.168.10.1:5060 SIP/2.0 404 User Not Found Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.bdf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.adf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.9df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.8df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.7df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.6df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.3df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.2df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.1df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.0df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.fcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ecf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.dcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ccf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.bcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.acf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.9cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.8cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.7cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.6cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4cf53705.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK424233d4;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as105cb73a To: sip:192.168.10.1;tag=36839585464337ac048b06b445c90d99.b66b Call-ID: 139571ad12fd028c35c21c1059437fd7@192.168.10.1 CSeq: 102 OPTIONS Server: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.000103 192.168.10.1:5060 -> 192.168.10.1:5060 SIP/2.0 513 Message too big Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ddf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.cdf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.bdf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.adf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.9df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.8df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.7df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.6df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.3df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.2df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.1df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.0df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.fcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ecf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.dcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ccf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.bcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.acf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.9cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.8cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.7cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.6cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4cf53705.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK424233d4;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as105cb73a To: sip:192.168.10.1;tag=36839585464337ac048b06b445c90d99.e927 Call-ID: 139571ad12fd028c35c21c1059437fd7@192.168.10.1 CSeq: 102 OPTIONS Server: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.000264 192.168.10.1:5060 -> 192.168.10.1:5060 SIP/2.0 513 Message too big Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.cdf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.bdf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.adf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.9df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.8df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.7df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.6df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.3df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.2df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.1df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.0df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.fcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ecf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.dcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ccf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.bcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.acf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.9cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.8cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.7cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.6cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4cf53705.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK424233d4;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as105cb73a To: sip:192.168.10.1;tag=36839585464337ac048b06b445c90d99.e927 Call-ID: 139571ad12fd028c35c21c1059437fd7@192.168.10.1 CSeq: 102 OPTIONS Server: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.000237 192.168.10.1:5060 -> 192.168.10.1:5060 SIP/2.0 404 User Not Found Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.3df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.2df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.1df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.0df53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.fcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ecf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.dcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ccf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.bcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.acf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.9cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.8cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.7cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.6cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4cf53705.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK424233d4;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as105cb73a To: sip:192.168.10.1;tag=36839585464337ac048b06b445c90d99.7b1f Call-ID: 139571ad12fd028c35c21c1059437fd7@192.168.10.1 CSeq: 102 OPTIONS Server: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.059120 192.168.10.1:5060 -> 192.168.10.1:5070 INVITE sip:u119@192.168.10.1:5070 SIP/2.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK86e6.c0c23244.1 Via: SIP/2.0/UDP 192.168.10.30:5060;branch=z9hG4bK7af61a27aa301b84 From: sip:120@192.168.10.1;tag=da3442c6f8c59f63 To: sip:119@192.168.10.1 Contact: sip:120@192.168.10.30:5060 Supported: replaces, timer, path Call-ID: 8fe083c316d4df76@192.168.10.30 CSeq: 25948 INVITE User-Agent: Grandstream GXV3000 1.1.3.14 Max-Forwards: 69 Allow: INVITE,ACK,CANCEL,BYE,NOTIFY,REFER,OPTIONS,INFO,SUBSCRIBE,UPDATE,PRACK Content-Type: application/sdp Content-Length: 545
v=0 o=120 8000 8001 IN IP4 192.168.10.30 s=SIP Call c=IN IP4 192.168.10.30 t=0 0 m=audio 5004 RTP/AVP 0 18 4 3 2 101 a=sendrecv a=rtpmap:0 PCMU/8000 a=rtpmap:18 G729/8000 a=rtpmap:4 G723/8000 a=rtpmap:3 GSM/8000 a=rtpmap:2 G726-32/8000 a=ptime:20 a=rtpmap:101 telephone-event/8000 a=fmtp:101 0-11 m=video 5006 RTP/AVP 99 34 a=sendrecv a=rtpmap:99 H264/90000 a=fmtp:99 profile-level-id=428014; packetization-mode=0; sprop-parameter-sets=Z0KADJWgUH5A,aM4BryA= a=rtpmap:34 H263/90000 a=fmtp:34 CIF=2 MaxBR=1280 a=framerate:20
# U +0.000173 192.168.10.1:5060 -> 192.168.10.28:5060 CANCEL sip:119@192.168.10.28:5060 SIP/2.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK86e6.c0c23244.0 From: sip:120@192.168.10.1;tag=da3442c6f8c59f63 Call-ID: 8fe083c316d4df76@192.168.10.30 To: sip:119@192.168.10.1 CSeq: 25948 CANCEL Max-Forwards: 70 User-Agent: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.000667 192.168.10.1:5070 -> 192.168.10.1:5060 SIP/2.0 100 Trying Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK86e6.c0c23244.1;received=192.168.10.1 Via: SIP/2.0/UDP 192.168.10.30:5060;branch=z9hG4bK7af61a27aa301b84 From: sip:120@192.168.10.1;tag=da3442c6f8c59f63 To: sip:119@192.168.10.1 Call-ID: 8fe083c316d4df76@192.168.10.30 CSeq: 25948 INVITE User-Agent: Asterisk PBX Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, SUBSCRIBE, NOTIFY Supported: replaces Contact: sip:u119@192.168.10.1:5070 Content-Length: 0
# U +0.000399 192.168.10.1:5070 -> 192.168.10.1:5060 SIP/2.0 200 OK Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK86e6.c0c23244.1;received=192.168.10.1 Via: SIP/2.0/UDP 192.168.10.30:5060;branch=z9hG4bK7af61a27aa301b84 From: sip:120@192.168.10.1;tag=da3442c6f8c59f63 To: sip:119@192.168.10.1;tag=as01dad92b Call-ID: 8fe083c316d4df76@192.168.10.30 CSeq: 25948 INVITE User-Agent: Asterisk PBX Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, SUBSCRIBE, NOTIFY Supported: replaces Contact: sip:u119@192.168.10.1:5070 Content-Type: application/sdp Content-Length: 285
v=0 o=root 3487 3487 IN IP4 192.168.10.1 s=session c=IN IP4 192.168.10.1 t=0 0 m=audio 18284 RTP/AVP 0 18 101 a=rtpmap:0 PCMU/8000 a=rtpmap:18 G729/8000 a=fmtp:18 annexb=no a=rtpmap:101 telephone-event/8000 a=fmtp:101 0-16 a=silenceSupp:off - - - - a=ptime:20 a=sendrecv
# U +0.000122 192.168.10.1:5060 -> 192.168.10.30:5060 SIP/2.0 200 OK Via: SIP/2.0/UDP 192.168.10.30:5060;branch=z9hG4bK7af61a27aa301b84 From: sip:120@192.168.10.1;tag=da3442c6f8c59f63 To: sip:119@192.168.10.1;tag=as01dad92b Call-ID: 8fe083c316d4df76@192.168.10.30 CSeq: 25948 INVITE User-Agent: Asterisk PBX Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, SUBSCRIBE, NOTIFY Supported: replaces Contact: sip:u119@192.168.10.1:5070 Content-Type: application/sdp Content-Length: 285
v=0 o=root 3487 3487 IN IP4 192.168.10.1 s=session c=IN IP4 192.168.10.1 t=0 0 m=audio 18284 RTP/AVP 0 18 101 a=rtpmap:0 PCMU/8000 a=rtpmap:18 G729/8000 a=fmtp:18 annexb=no a=rtpmap:101 telephone-event/8000 a=fmtp:101 0-16 a=silenceSupp:off - - - - a=ptime:20 a=sendrecv
# U +0.000099 192.168.10.28:5060 -> 192.168.10.1:5060 SIP/2.0 200 OK Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK86e6.c0c23244.0 From: sip:120@192.168.10.1;tag=da3442c6f8c59f63 To: sip:119@192.168.10.1;tag=5497eea69312cc64 Call-ID: 8fe083c316d4df76@192.168.10.30 CSeq: 25948 CANCEL User-Agent: Grandstream GXV3000 1.1.3.14 Supported: replaces, timer, 100rel, path Content-Length: 0
# U +0.000375 192.168.10.28:5060 -> 192.168.10.1:5060 SIP/2.0 487 Request Cancelled Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK86e6.c0c23244.0 Via: SIP/2.0/UDP 192.168.10.30:5060;branch=z9hG4bK7af61a27aa301b84 From: sip:120@192.168.10.1;tag=da3442c6f8c59f63 To: sip:119@192.168.10.1;tag=5497eea69312cc64 Call-ID: 8fe083c316d4df76@192.168.10.30 CSeq: 25948 INVITE User-Agent: Grandstream GXV3000 1.1.3.14 Content-Length: 0
# U +0.000158 192.168.10.1:5060 -> 192.168.10.28:5060 ACK sip:119@192.168.10.28:5060 SIP/2.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK86e6.c0c23244.0 From: sip:120@192.168.10.1;tag=da3442c6f8c59f63 Call-ID: 8fe083c316d4df76@192.168.10.30 To: sip:119@192.168.10.1;tag=5497eea69312cc64 CSeq: 25948 ACK Max-Forwards: 70 User-Agent: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.002889 192.168.10.30:5060 -> 192.168.10.1:5070 ACK sip:u119@192.168.10.1:5070 SIP/2.0 Via: SIP/2.0/UDP 192.168.10.30:5060;branch=z9hG4bK8ab00b6775641941 From: sip:120@192.168.10.1;tag=da3442c6f8c59f63 To: sip:119@192.168.10.1;tag=as01dad92b Contact: sip:120@192.168.10.30:5060 Proxy-Authorization: Digest username="120", realm="192.168.10.1", algorithm=MD5, uri="sip:119@192.168.10.1", nonce="48c6d663000000010f56ef36ccc5d4663b354d28b0534e89", response="076d06f28d1ebc3400571228e4f594b4" Call-ID: 8fe083c316d4df76@192.168.10.30 CSeq: 25948 ACK User-Agent: Grandstream GXV3000 1.1.3.14 Max-Forwards: 70 Allow: INVITE,ACK,CANCEL,BYE,NOTIFY,REFER,OPTIONS,INFO,SUBSCRIBE,UPDATE,PRACK Content-Length: 0
# U +0.394634 192.168.10.1:5060 -> 192.168.10.1:5060 OPTIONS sip:192.168.10.1 SIP/2.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.dcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ccf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.bcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.acf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.9cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.8cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.7cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.6cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4cf53705.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK424233d4;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as105cb73a To: sip:192.168.10.1 Contact: sip:asterisk@192.168.10.1:5070 Call-ID: 139571ad12fd028c35c21c1059437fd7@192.168.10.1 CSeq: 102 OPTIONS User-Agent: Asterisk PBX Max-Forwards: 60 Date: Tue, 09 Sep 2008 19:57:53 GMT Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, SUBSCRIBE, NOTIFY Supported: replaces Content-Length: 0
# U +0.000155 192.168.10.1:5060 -> 192.168.10.1:5060 SIP/2.0 404 User Not Found Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.dcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ccf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.bcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.acf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.9cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.8cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.7cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.6cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4cf53705.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK424233d4;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as105cb73a To: sip:192.168.10.1;tag=36839585464337ac048b06b445c90d99.c7b9 Call-ID: 139571ad12fd028c35c21c1059437fd7@192.168.10.1 CSeq: 102 OPTIONS Server: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
# U +0.000047 192.168.10.1:5060 -> 192.168.10.1:5060 SIP/2.0 404 User Not Found Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.dcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.ccf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.bcf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.acf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.9cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.8cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.7cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.6cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.5cf53705.0 Via: SIP/2.0/UDP 192.168.10.1;branch=z9hG4bK912e.4cf53705.0 Via: SIP/2.0/UDP 192.168.10.1:5070;branch=z9hG4bK424233d4;rport=5070 From: "asterisk" sip:asterisk@192.168.10.1:5070;tag=as105cb73a To: sip:192.168.10.1;tag=36839585464337ac048b06b445c90d99.233c Call-ID: 139571ad12fd028c35c21c1059437fd7@192.168.10.1 CSeq: 102 OPTIONS Server: Kamailio (1.4.0-notls (i386/linux)) Content-Length: 0
exit 334 received, 0 dropped
El Martes, 9 de Septiembre de 2008, troxlinux escribió:
;exten => _XXX,1,Answer ;exten => _XXX,n,Voicemail(u${EXTEN}) ;exten => _XXX,n,Hangup
;exten => _XXX,1,Answer ;exten => _XXX,n,Voicemail(b${EXTEN}) ;exten => _XXX,n,Hangup
Supongo que ya tienes claro que estas 6 líneas de arriba se chocan entre sí.
si de echo , podria ser así
exten => _XXX,1,Answer exten => _XXX,n,Voicemail(u${EXTEN}) exten => _XXX,n,Voicemail(b${EXTEN}) exten => _XXX,n,Hangup
Me temo que no. Ahí estás primero enviando la llamada a un buzón con la excusa de "unavailable" y acto seguido al mismo buzón pero con el argumento de "busy". No tiene sentido.
iñaki esto ya me funciono en unos dos hilos mas arriba esta como me quedo ...
también me funciono el callforward , aunque tengo pendiente hacerlo con un numero de la pstn ..
saludoss
rickygm
El 26 de septiembre de 2008 10:03, Iñaki Baz Castillo ibc@aliax.netescribió:
Me temo que no. Ahí estás primero enviando la llamada a un buzón con la excusa de "unavailable" y acto seguido al mismo buzón pero con el argumento de "busy". No tiene sentido.
--
El Tuesday 09 September 2008 18:44:49 troxlinux escribió:
El día 9 de septiembre de 2008 1:41, Iñaki Baz Castillo
mis pruebas
;exten => _XXX,1,Answer ;exten => _XXX,n,Voicemail(u${EXTEN}) ;exten => _XXX,n,Hangup
;exten => _XXX,1,Answer ;exten => _XXX,n,Voicemail(b${EXTEN}) ;exten => _XXX,n,Hangup
¿Tienes claro ya porqué esas 6 lineas no sirven para nada?
exten=>_u.,1,Voicemail(u${EXTEN}) exten=>_u.,n,hangup()
exten=>_b.,1,Voicemail(b${EXTEN}) exten=>_b.,n,hangup()
Esto está cuasi-bien, veamos ... si la extensión empieza por u lo mandas a u${EXTEN} ... y eso está mal, te recomiendo que sustituyas mentalmente el valor de ${EXTEN} y verás porqué está mal. Idem para el de b${EXTEN}
;exten => _XXX,1,Ringing ;exten => _XXX,n,Voicemail(u${EXTEN}) ;exten => _XXX,102,Voicemail(b${EXTEN})
Esto ni lo miro .. el uso de n+101 está deprecated hace bastante
;exten=> _XXX,1,Voicemail(u${EXTEN}) ;exten=> _XXX,n,hangup() ;exten=> _XXX,1,Voicemail(b${EXTEN}) ;exten=> _XXX,n,hangup()
Esto si acaso te manda dos veces al buzón .. XDD
a veces tengo la impresion que es el failure route , el cual lo he cambiado un par de veces , pero nelpa ...
Insisto .. tu problema está en la carga de los AVP, eso para el forward .. y para el tema del buzón .. en el dialplan de Asterisk que no es válido para lo que pretendes conseguir.
El Martes, 9 de Septiembre de 2008, Raúl Alexis Betancor Santana escribió:
exten=>_u.,1,Voicemail(u${EXTEN}) exten=>_u.,n,hangup()
exten=>_b.,1,Voicemail(b${EXTEN}) exten=>_b.,n,hangup()
Esto está cuasi-bien, veamos ... si la extensión empieza por u lo mandas a u${EXTEN} ... y eso está mal, te recomiendo que sustituyas mentalmente el valor de ${EXTEN} y verás porqué está mal. Idem para el de b${EXTEN}
;exten => _XXX,1,Ringing ;exten => _XXX,n,Voicemail(u${EXTEN}) ;exten => _XXX,102,Voicemail(b${EXTEN})
Esto ni lo miro .. el uso de n+101 está deprecated hace bastante
Yo sinceramente creo, que dados estos fallos que te indica Raúl, deberías ir más despacio. No se puede juntar un Kamailio con un Asterisk sin saber bastante de Kamailio o de Asterisk (al menos de uno de los dos para no multiplicar los puntos de fallo).
Te recomiendo que te leas algún libro de Asterisk (los hay en PDF y chulos), que hagas los ejemplos, que entiendas bien como funciona el dialplan (en vez de basarte en ejemplos obviamente obsoletos y "deprecated" que has fusilado de algún howto antiguo).
Así mismo una lectura del RFC 3261, por muy doloroso que sea, viene muy bien. Eso te ayudará mucho más de lo que crees a entender cómo funciona Kamailio (saber de transacciones, de branches, de forking, de loose routing...). El resto es simplemente mirarse la documentación de los módulos y el core de Kamailio y usar sus funciones.
Pero juntar ambos mundos y no saber si un fallo se debe a Kamailio o a Asterisk te garantizo que es un vaticinio de un futuro tenebroso.
Animo ;)
El día 9 de septiembre de 2008 14:32, Iñaki Baz Castillo ibc@aliax.net escribió:
Yo sinceramente creo, que dados estos fallos que te indica Raúl, deberías ir más despacio. No se puede juntar un Kamailio con un Asterisk sin saber bastante de Kamailio o de Asterisk (al menos de uno de los dos para no multiplicar los puntos de fallo).
realmente el failure_route esta bien , el problema era que el teléfono donde realizo las pruebas tiene 4 lineas el spa942 y el 2020 de la GT 6, el GXV 3000 tiene 3 entonces cuando realizaba la llamada nunca me salia ocupado porque se saltaba a la otra linea , me instale un BT200 y vola si que funciona ...
Te recomiendo que te leas algún libro de Asterisk (los hay en PDF y chulos), que hagas los ejemplos, que entiendas bien como funciona el dialplan (en vez de basarte en ejemplos obviamente obsoletos y "deprecated" que has fusilado de algún howto antiguo).
no te creas de ves en cuando le pego mi leidita, viendo cosas nuevas del dialplan , lo que pasa es que de vez en cuando uno anda como atontado , pero si te agradezco ...
Así mismo una lectura del RFC 3261, por muy doloroso que sea, viene muy bien. Eso te ayudará mucho más de lo que crees a entender cómo funciona Kamailio (saber de transacciones, de branches, de forking, de loose routing...). El resto es simplemente mirarse la documentación de los módulos y el core de Kamailio y usar sus funciones.
ahhh esa si va a 100 Millas , pero también le pegare mi leida porque es el pan de kamailio
Pero juntar ambos mundos y no saber si un fallo se debe a Kamailio o a Asterisk te garantizo que es un vaticinio de un futuro tenebroso.
no seas un nostradamus ... ;)
pero te agradezco el consejo ...
Gracias a Dios salí de esta! y las que faltan ..
saludoss
rickygm
Animo ;)
-- Iñaki Baz Castillo
Users-es mailing list Users-es@lists.kamailio.org http://lists.kamailio.org/cgi-bin/mailman/listinfo/users-es
El día 9 de septiembre de 2008 14:21, Raúl Alexis Betancor Santana rabs@dimension-virtual.com escribió:
;exten => _XXX,1,Answer ;exten => _XXX,n,Voicemail(u${EXTEN}) ;exten => _XXX,n,Hangup
;exten => _XXX,1,Answer ;exten => _XXX,n,Voicemail(b${EXTEN}) ;exten => _XXX,n,Hangup
¿Tienes claro ya porqué esas 6 lineas no sirven para nada?
exten=>_u.,1,Voicemail(u${EXTEN}) exten=>_u.,n,hangup()
exten=>_b.,1,Voicemail(b${EXTEN}) exten=>_b.,n,hangup()
Esto está cuasi-bien, veamos ... si la extensión empieza por u lo mandas a u${EXTEN} ... y eso está mal, te recomiendo que sustituyas mentalmente el valor de ${EXTEN} y verás porqué está mal. Idem para el de b${EXTEN}
;exten => _XXX,1,Ringing ;exten => _XXX,n,Voicemail(u${EXTEN}) ;exten => _XXX,102,Voicemail(b${EXTEN})
al final me quedo así y funciona
exten => _b.,1,Voicemail(${EXTEN:1},b) exten => _b.,n,hangup()
exten => _u.,1,Voicemail(${EXTEN:1},u) exten => _u.,n,Hangup()
Esto ni lo miro .. el uso de n+101 está deprecated hace bastante
;exten=> _XXX,1,Voicemail(u${EXTEN}) ;exten=> _XXX,n,hangup() ;exten=> _XXX,1,Voicemail(b${EXTEN}) ;exten=> _XXX,n,hangup()
Esto si acaso te manda dos veces al buzón .. XDD
a veces tengo la impresion que es el failure route , el cual lo he cambiado un par de veces , pero nelpa ...
Insisto .. tu problema está en la carga de los AVP, eso para el forward .. y para el tema del buzón .. en el dialplan de Asterisk que no es válido para lo que pretendes conseguir.
en esto estoy ..
saludoss
rickygm
El Tuesday 09 September 2008 02:33:30 troxlinux escribió:
Sep 8 18:01:09 [10651] ERROR:core:check_actions: script function "sl_reply_error" (types=1) does not support route type (2) Sep 8 18:01:09 [10651] ERROR:core:check_actions: route stack[0]=0 Sep 8 18:01:09 [10651] ERROR:core:check_actions: script function "sl_reply_error" (types=1) does not support route type (2) Sep 8 18:01:09 [10651] ERROR:core:check_actions: route stack[0]=0 Sep 8 18:01:09 [10651] ERROR:core:main: bad function call in config file
¿Y has revisado esos errores?
El Thursday 04 September 2008 07:02:56 troxlinux escribió:
y esto tengo añadido en mi dial plan de asterisk , si me dicen que tengo que ver algo en el dial plan me rasgo la cabeza ....
exten => _XXX,1,Answer exten => _XXX,n,Voicemail(u${EXTEN}) exten => _XXX,n,Hangup
exten => _XXX,1,Answer exten => _XXX,n,Voicemail(b${EXTEN}) exten => _XXX,n,Hangup
Este dialplan es incorrecto. Si ambos son _XXX sólo se ejecutará el primero.
¿A qué te refieres con ACK ACK?
lo escribí mal , lo que me refería es que si una extensión esta ocupada al llegarle una llamada esta devolvería que es un intento de conexión ACK sip:b112@192.168.10.1:5070
No entiendo qué quieres decir con "intento de conexión ACK". ACK sólo lo envía un UAC (el llamante) tras enviar un INVITE y recibir una respuesta final ([23456]XX). Nadie responde un "ACK".
sr-users-es@lists.kamailio.org