Asterisk. Audio en un solo sentido llamadas entrantes. Incoming Calls

Hola.

Sigo con mi implementación de asterisk en gentoo y vengo a contar como solucionar un problemita con este…

Actualmente estoy saliendo a la Red Telefonica Básica (RTB), red de telefonia de toda la vida, por un proveedor voip.
Para enrutar llamadas por este, no hubo más problemas. Registrar nuestro asterisk con el proveedor, añadir un canal para este en sip.conf y crear un dialplan para sacar llamadas por ahi y FIN.

El problema no era ese, el problema era al intentar recibir llamadas. Tengo varios numeros DID asignados a varias extensiones de mi asterisk con lo cual es fundamental que puedan entrar llamadas, y estas lo hacian, pero solo tenia audio en 1 sentido (de dentro hacia fuera), el usuario que me llamaba yo no lo podia escuchar, el a mi perfectamente…

*Problema de NAT no era, ya que estaba trabajando fuera de un entorno con NAT
**por lo menos por mi parte, parece ser que por la del operador de números DID no

Lo primero que hice en este caso fué entrar a la consola de asterik:

asterisk -r

Y hacer un debug del protocolo RTP para ver que es lo que estaba pasando con los paquetes….

rtp set debug on

He aqui el resultado:

Got  RTP packet from    192.168.10.15:16406 (type 08, seq 014191, ts 392580221, len 000160)
Sent RTP packet to      46.19.209.78:17962 (type 08, seq 026450, ts 392580216, len 000160)
Got  RTP packet from    192.168.10.15:16406 (type 08, seq 014192, ts 392580381, len 000160)
Sent RTP packet to      46.19.209.78:17962 (type 08, seq 026451, ts 392580376, len 000160)
Got  RTP packet from    192.168.10.15:16406 (type 08, seq 014193, ts 392580541, len 000160)
Sent RTP packet to      46.19.209.78:17962 (type 08, seq 026452, ts 392580536, len 000160)
Got  RTP packet from    192.168.10.15:16406 (type 08, seq 014194, ts 392580701, len 000160)
Sent RTP packet to      46.19.209.78:17962 (type 08, seq 026453, ts 392580696, len 000160)
Got  RTP packet from    192.168.10.15:16406 (type 08, seq 014195, ts 392580861, len 000160)
Sent RTP packet to      46.19.209.78:17962 (type 08, seq 026454, ts 392580856, len 000160)
Got  RTP packet from    192.168.10.15:16406 (type 08, seq 014196, ts 392581021, len 000160)
Sent RTP packet to      46.19.209.78:17962 (type 08, seq 026455, ts 392581016, len 000160)
Got  RTP packet from    192.168.10.15:16406 (type 08, seq 014197, ts 392581181, len 000160)
Sent RTP packet to      46.19.209.78:17962 (type 08, seq 026456, ts 392581176, len 000160)
Got  RTP packet from    192.168.10.15:16406 (type 08, seq 014198, ts 392581341, len 000160)
Sent RTP packet to      46.19.209.78:17962 (type 08, seq 026457, ts 392581336, len 000160)
Got  RTP packet from    192.168.10.15:16406 (type 08, seq 014199, ts 392581501, len 000160)
Sent RTP packet to      46.19.209.78:17962 (type 08, seq 026458, ts 392581496, len 000160)
Got  RTP packet from    192.168.10.15:16406 (type 08, seq 014200, ts 392581661, len 000160)
Sent RTP packet to      46.19.209.78:17962 (type 08, seq 026459, ts 392581656, len 000160)

Me pusé a leer de cabo a rabo el fichero sip.conf que trae asterisk de ejemplo y me encuentro con:

;directmedia=yes                ; Asterisk by default tries to redirect the
; RTP media stream to go directly from
; the caller to the callee.  Some devices do not
; support this (especially if one of them is behind a NAT).
; The default setting is YES. If you have all clients
; behind a NAT, or for some other reason want Asterisk to
; stay in the audio path, you may want to turn this off.

Nos dice que asterisk querrá establecer una conexión DIRECTA con el usuario que llama y el usuario que contesta a la llamada. Esto no es soportable por algunos dispositivos,especialmente si estan detrás de NAT…….. Esta opción es interesante cuando nos encontramos en un entorno LAN sin dispositivos NAT por enmedio, ya que la comunicación se hará directamente entre los 2 interlocutores. Si hay dispositivos NAT por enmedio es MUY recomendable desactivar dicha opción. (por defecto directmedia esta en YES)

Ahi tenia la respuesta…directmedia estaba en yes por defecto…. fuí al fichero sip.conf y añadí:

[general]
directmedia=off

Reinicio asterisk con:

asterisk -r
core restart now

……..Realizo la llamada desde el exterior, descuelgo el telefono que suena y olalalal!!!!! funcióna el audio en 2 sentidos..
Si ahora hacemos un: debug de rtp observamos lo siguiente….

Sent RTP P2P packet to 46.19.209.76:19818 (type 08, len 000160)
Sent RTP P2P packet to 192.168.10.15:16410 (type 08, len 000160)
Sent RTP P2P packet to 46.19.209.76:19818 (type 08, len 000160)
Sent RTP P2P packet to 192.168.10.15:16410 (type 08, len 000160)
Sent RTP P2P packet to 46.19.209.76:19818 (type 08, len 000160)
Sent RTP P2P packet to 192.168.10.15:16410 (type 08, len 000160)
Sent RTP P2P packet to 46.19.209.76:19818 (type 08, len 000160)
Sent RTP P2P packet to 192.168.10.15:16410 (type 08, len 000160)
Sent RTP P2P packet to 46.19.209.76:19818 (type 08, len 000160)
Sent RTP P2P packet to 192.168.10.15:16410 (type 08, len 000160)
Sent RTP P2P packet to 46.19.209.76:19818 (type 08, len 000160)
Sent RTP P2P packet to 192.168.10.15:16410 (type 08, len 000160)
Sent RTP P2P packet to 46.19.209.76:19818 (type 08, len 000160)
Sent RTP P2P packet to 192.168.10.15:16410 (type 08, len 000160)
Sent RTP P2P packet to 46.19.209.76:19818 (type 08, len 000160)
Sent RTP P2P packet to 192.168.10.15:16410 (type 08, len 000160)
Sent RTP P2P packet to 46.19.209.76:19818 (type 08, len 000160)
Sent RTP P2P packet to 192.168.10.15:16410 (type 08, len 000160)
Sent RTP P2P packet to 46.19.209.76:19818 (type 08, len 000160)
Sent RTP P2P packet to 192.168.10.15:16410 (type 08, len 000160)
Sent RTP P2P packet to 46.19.209.76:19818 (type 08, len 000160)
Sent RTP P2P packet to 192.168.10.15:16410 (type 08, len 000160)
Sent RTP P2P packet to 46.19.209.76:19818 (type 08, len 000160)
Sent RTP P2P packet to 192.168.10.15:16410 (type 08, len 000160)

Esto es todo por hoy, espero que mis cabezazos contra la pared impidan que otros se los de por esto jeje.

Un saludo.

Share

15 pensamientos en “Asterisk. Audio en un solo sentido llamadas entrantes. Incoming Calls

  1. Gracias…. este detallito me complico pro casi una semana las conferencias entre asterisk…..

    GRacias nuevamente

  2. Buenos días,

    Muchas gracias por compartir esta información. Me he pasado 2 semanas búscando el motivo por el cual en algunas de las llamadas entrantes de nuestra centralita no había audio, como si la llamada se hubiera cortado.

    Hoy por la mañana, he leido este post, he ido atando cabos y aunque el problema no era exactamente el mismo, parece ser que tu solución nos ha servido, ya que desde su implementación no hemos tenido ningún problema.

    No soy un experto en esto del VoIP y lo poco que se, lo he ido aprendiendo gracias a gente como tu, que comparte sus problemas y soluciones.

    Muchas gracias de nuevo por todo.

    Un saludo,

  3. Hola amigo!!

    No sabes como me alegro que te haya servido mi pequeña aportación, al fin y al cabo de eso se trata, de compartir nuestros conocimientos y poder aprender cada dia más.

    Porcierto, muchas gracias por el comentario de agradecimiento. Si deseas alguna ayuda adicional con el tema de vozip para cualquier problema no dudes en enviarme un correo o escribirme por aquí, te ayudaré sin ningún problema en todo lo que pueda.

    Un saludo muy grande 🙂 .

  4. tengo problemas con las llamadas entrantes tengo un router q me entrega ip publica a l asterisk si salen las llamadas desde las extenciones
    marco a mi numero sip desde cualquier numero y sale esto en el cli .
    == Using SIP RTP CoS mark 5

    si marco desde la extencion 200 sale esto:
    == Using SIP RTP CoS mark 5
    — Executing [4147845@default:1] Answer(«SIP/200-0000000a», «») in new stack
    — Executing [4147845@default:2] Set(«SIP/200-0000000a», «CALLERID(num)=10002770853ip») in new stack
    — Executing [4147845@default:3] Dial(«SIP/200-0000000a», «SIP/4147845@10002770853ip») in new stack
    == Using SIP RTP CoS mark 5
    — Called 4147845@10002770853ip
    — SIP/10002770853ip-0000000b is ringing
    == Spawn extension (default, 4147845, 3) exited non-zero on ‘SIP/200-0000000a’
    == Using SIP RTP CoS mark 5
    corro esto en el cli
    localhost*CLI> sip show registry
    Host dnsmgr Username Refresh State Reg.Time
    torxx.axtel.net:5060 N 10002770853i 105 Registered Mon, 08 Oct 2012 19:30:07
    torxx.axtel.net:5060 N 10002770853i 105 Registered Mon, 08 Oct 2012 19:30:07
    2 SIP registrations.

  5. TENGO PROBLEMAS CON LAS LLAMADAS ENTRANTES
    HICE UN DEBUG:

    SIP/2.0 407 Proxy Authentication Required
    From: ;tag=as4dbb1c75
    To: ;tag=395900801
    Call-ID: 6be99778400f3ed7660cde2e08f8b1c2@127.0.0.1
    CSeq: 290 REGISTER
    Via: SIP/2.0/UDP 189.231.57.196:5060;rport=5060;branch=z9hG4bK1bb5556a
    User-Agent: Nortel SESM 12.0.12.2
    Supported: com.nortelnetworks.firewall, p-3rdpartycontrol, nosec, join, x-nortel-sipvc, com.nortelnetworks.im.encryption
    Proxy-Authenticate: Digest realm=»Realm», nonce=»MTM0OTc1MzEyMjc0MzRhNjcxMWExOTM2Zjg0OGVhNWQwNmUwNjMxMWIyZTYz», stale=true, algorithm=MD5, qop=»auth»
    Content-Length: 0

    — (10 headers 0 lines) —

    SIP/2.0 407 Proxy Authentication Required
    From: ;tag=as1bf182f7
    To: ;tag=171328862
    Call-ID: 193bbfcb0c2d8d4776e37477156b4579@127.0.0.1
    CSeq: 290 REGISTER
    Via: SIP/2.0/UDP 189.231.57.196:5060;rport=5060;branch=z9hG4bK657109e7
    User-Agent: Nortel SESM 12.0.12.2
    Supported: com.nortelnetworks.firewall, p-3rdpartycontrol, nosec, join, x-nortel-sipvc, com.nortelnetworks.im.encryption
    Proxy-Authenticate: Digest realm=»Realm», nonce=»MTM0OTc1MzEyMjc0MzRhNjcxMWExOTM2Zjg0OGVhNWQwNmUwNjMxMWIyZTYz», stale=true, algorithm=MD5, qop=»auth»
    Content-Length: 0

    — (10 headers 0 lines) —

    SIP/2.0 407 Proxy Authentication Required
    From: ;tag=as4dbb1c75
    To: ;tag=395900801
    Call-ID: 6be99778400f3ed7660cde2e08f8b1c2@127.0.0.1
    CSeq: 290 REGISTER
    Via: SIP/2.0/UDP 189.231.57.196:5060;rport=5060;branch=z9hG4bK1bb5556a
    User-Agent: Nortel SESM 12.0.12.2
    Supported: com.nortelnetworks.firewall, p-3rdpartycontrol, nosec, join, x-nortel-sipvc, com.nortelnetworks.im.encryption
    Proxy-Authenticate: Digest realm=»Realm», nonce=»MTM0OTc1MzEyMjc0MzRhNjcxMWExOTM2Zjg0OGVhNWQwNmUwNjMxMWIyZTYz», stale=true, algorithm=MD5, qop=»auth»
    Content-Length: 0

    — (10 headers 0 lines) —

    SIP/2.0 407 Proxy Authentication Required
    From: ;tag=as1bf182f7
    To: ;tag=171328862
    Call-ID: 193bbfcb0c2d8d4776e37477156b4579@127.0.0.1
    CSeq: 290 REGISTER
    Via: SIP/2.0/UDP 189.231.57.196:5060;rport=5060;branch=z9hG4bK657109e7
    User-Agent: Nortel SESM 12.0.12.2
    Supported: com.nortelnetworks.firewall, p-3rdpartycontrol, nosec, join, x-nortel-sipvc, com.nortelnetworks.im.encryption
    Proxy-Authenticate: Digest realm=»Realm», nonce=»MTM0OTc1MzEyMjc0MzRhNjcxMWExOTM2Zjg0OGVhNWQwNmUwNjMxMWIyZTYz», stale=true, algorithm=MD5, qop=»auth»
    Content-Length: 0

    — (10 headers 0 lines) —

    SIP/2.0 100 Trying
    From: ;tag=as4dbb1c75
    To:
    Call-ID: 6be99778400f3ed7660cde2e08f8b1c2@127.0.0.1
    CSeq: 290 REGISTER
    Via: SIP/2.0/UDP 189.231.57.196:5060;rport=5060;branch=z9hG4bK1bb5556a
    Content-Length: 0

    — (7 headers 0 lines) —

    SIP/2.0 407 Proxy Authentication Required
    From: ;tag=as4dbb1c75
    To: ;tag=1201437816
    Call-ID: 6be99778400f3ed7660cde2e08f8b1c2@127.0.0.1
    CSeq: 290 REGISTER
    Via: SIP/2.0/UDP 189.231.57.196:5060;rport=5060;branch=z9hG4bK1bb5556a
    User-Agent: Nortel SESM 12.0.12.2
    Supported: com.nortelnetworks.firewall, p-3rdpartycontrol, nosec, join, x-nortel-sipvc, com.nortelnetworks.im.encryption
    Proxy-Authenticate: Digest realm=»Realm», nonce=»MTM0OTc1MzEyMjc0MzRhNjcxMWExOTM2Zjg0OGVhNWQwNmUwNjMxMWIyZTYz», stale=true, algorithm=MD5, qop=»auth»
    Content-Length: 0

    — (10 headers 0 lines) —

    SIP/2.0 100 Trying
    From: ;tag=as1bf182f7
    To:
    Call-ID: 193bbfcb0c2d8d4776e37477156b4579@127.0.0.1
    CSeq: 290 REGISTER
    Via: SIP/2.0/UDP 189.231.57.196:5060;rport=5060;branch=z9hG4bK657109e7
    Content-Length: 0

    — (7 headers 0 lines) —

    SIP/2.0 407 Proxy Authentication Required
    From: ;tag=as1bf182f7
    To: ;tag=604199784
    Call-ID: 193bbfcb0c2d8d4776e37477156b4579@127.0.0.1
    CSeq: 290 REGISTER
    Via: SIP/2.0/UDP 189.231.57.196:5060;rport=5060;branch=z9hG4bK657109e7
    User-Agent: Nortel SESM 12.0.12.2
    Supported: com.nortelnetworks.firewall, p-3rdpartycontrol, nosec, join, x-nortel-sipvc, com.nortelnetworks.im.encryption
    Proxy-Authenticate: Digest realm=»Realm», nonce=»MTM0OTc1MzEyMjc0MzRhNjcxMWExOTM2Zjg0OGVhNWQwNmUwNjMxMWIyZTYz», stale=true, algorithm=MD5, qop=»auth»
    Content-Length: 0

    — (10 headers 0 lines) —
    Reliably Transmitting (NAT) to 187.188.201.226:33612:
    OPTIONS sip:103@187.188.201.226:33612;transport=udp SIP/2.0
    Via: SIP/2.0/UDP 189.231.57.196:5060;branch=z9hG4bK48638d50;rport
    Max-Forwards: 70
    From: «asterisk» ;tag=as2d8d5e73
    To:
    Contact:
    Call-ID: 52dd9b8e5cd10ee91d22d09411562387@189.231.57.196
    CSeq: 102 OPTIONS
    User-Agent: Asterisk PBX 1.6.2.20
    Date: Tue, 09 Oct 2012 00:34:11 GMT
    Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, SUBSCRIBE, NOTIFY, INFO
    Supported: replaces, timer
    Content-Length: 0

    SIP/2.0 302 Moved Temporarily
    Via: SIP/2.0/UDP 189.231.57.196:5060;branch=z9hG4bK48638d50;rport
    From: «asterisk» ;tag=as2d8d5e73
    To: ;tag=as3febd739
    Call-ID: 52dd9b8e5cd10ee91d22d09411562387@189.231.57.196
    CSeq: 102 OPTIONS
    User-Agent: Grandstream GXP280 1.2.2.26
    Contact:
    Diversion: ;reason=unconditional
    Content-Length: 0

    — (10 headers 0 lines) —
    Really destroying SIP dialog ’52dd9b8e5cd10ee91d22d09411562387@189.231.57.196′ Method: OPTIONS
    Really destroying SIP dialog ‘779c5c5c653bbe6e0729aa5b3da6569b@127.0.0.1′ Method: REGISTER

    SIP/2.0 100 Trying
    From: ;tag=as4dbb1c75
    To:
    Call-ID: 6be99778400f3ed7660cde2e08f8b1c2@127.0.0.1
    CSeq: 290 REGISTER
    Via: SIP/2.0/UDP 189.231.57.196:5060;rport=5060;branch=z9hG4bK1bb5556a
    Content-Length: 0

    — (7 headers 0 lines) —

    SIP/2.0 407 Proxy Authentication Required
    From: ;tag=as4dbb1c75
    To: ;tag=823638256
    Call-ID: 6be99778400f3ed7660cde2e08f8b1c2@127.0.0.1
    CSeq: 290 REGISTER
    Via: SIP/2.0/UDP 189.231.57.196:5060;rport=5060;branch=z9hG4bK1bb5556a
    User-Agent: Nortel SESM 12.0.12.2
    Supported: com.nortelnetworks.firewall, p-3rdpartycontrol, nosec, join, x-nortel-sipvc, com.nortelnetworks.im.encryption
    Proxy-Authenticate: Digest realm=»Realm», nonce=»MTM0OTc1MzEyMjc0MzRhNjcxMWExOTM2Zjg0OGVhNWQwNmUwNjMxMWIyZTYz», stale=true, algorithm=MD5, qop=»auth»
    Content-Length: 0

    — (10 headers 0 lines) —
    Really destroying SIP dialog ’17dda4455d22924c29f449c5604aaef9@127.0.0.1’ Method: REGISTER

    SIP/2.0 100 Trying
    From: ;tag=as1bf182f7
    To:
    Call-ID: 193bbfcb0c2d8d4776e37477156b4579@127.0.0.1
    CSeq: 290 REGISTER
    Via: SIP/2.0/UDP 189.231.57.196:5060;rport=5060;branch=z9hG4bK657109e7
    Content-Length: 0

    — (7 headers 0 lines) —

    SIP/2.0 407 Proxy Authentication Required
    From: ;tag=as1bf182f7
    To: ;tag=1567396800
    Call-ID: 193bbfcb0c2d8d4776e37477156b4579@127.0.0.1
    CSeq: 290 REGISTER
    Via: SIP/2.0/UDP 189.231.57.196:5060;rport=5060;branch=z9hG4bK657109e7
    User-Agent: Nortel SESM 12.0.12.2
    Supported: com.nortelnetworks.firewall, p-3rdpartycontrol, nosec, join, x-nortel-sipvc, com.nortelnetworks.im.encryption
    Proxy-Authenticate: Digest realm=»Realm», nonce=»MTM0OTc1MzEyMjc0MzRhNjcxMWExOTM2Zjg0OGVhNWQwNmUwNjMxMWIyZTYz», stale=true, algorithm=MD5, qop=»auth»
    Content-Length: 0

    — (10 headers 0 lines) —

  6. Hola jose.

    En el primer parrafo que pegas parece estar todo correcto. Segun dice el telefono esta sonando. ¿El problema aparece con las llamadas entrantes? ¿No suena la extension que tiene que sonar?.

    Si el problema es que no tienes audio, porfavor, pega el resultado de este comando: rtp set debug on

    Porfavor, se un poco más explicito con el problema y el escenario y te intento hechar una mano.

    Un saludo.

  7. Tengo problemas con asterisk.
    Necesito conectar 2 ciudades. Puedo llamar de A hasta B, pero NO puedo llamar de B hasta A.

    Cual será el problema???.
    Parece ser que no tengo permisos para realizar estas llamadas. Como puedo corregir este problema???

    En que directorio, carpeta ó archivo puedo encontrar el comando «outbound-restricted-custom» ????

  8. Hola Antonio.

    Para poder ayudarte en tu problema, necesito logs de los errores que ocurren al intentar realizar la llamada.

    Tambien, y muy importante, saber si se trata de un sistema asterisk puro o no (elastix,freepbx,etc..)

    Logeate en el terminal con asterisk -vvvvvvvvr y pega aqui los mensajes que muestra al intentar cursar la llamada.

    Un saludo.

  9. Hola!

    Yo tengo este problema con asterisk que no he encontrado la solución y me gustaría mucho que me apoyaran!

    Resulta que baje e instale una aplicación a mi celular android y configure una cuenta SIP de mi asterisk pero al momento de yo realizar una llamada interna a un teléfono ip, si entra la llamada muy bien y el audio se escucha perfectamente.. pero el problema es el siguiente cuando trato de realizar llamada de el teléfono ip a mi celular con android no suena ni se escucha nada.. no entra la llamada.. no se si sea error de RTP.. o de NAT… Realice un rtp set debug on.. y aqui les dejo el resultado a ver si pueden ver que es lo que este causando este problema…

    LLAMADA DE ANDROID a TELEFONO CISCO 7911

    == Using SIP RTP CoS mark 5
    — Executing [201@interno:1] Answer(«SIP/205-00000140», «») in new stack
    [Jan 29 12:37:20] NOTICE[4958]: chan_sip.c:22170 handle_request_subscribe: Received SIP subscribe for peer without mailbox: 205
    — Executing [201@interno:2] Dial(«SIP/205-00000140», «Sip/201,20,Tt») in new stack
    == Using SIP RTP CoS mark 5
    — Called 201
    Got RTP packet from 10.1.2.7:21000 (type 08, seq 000000, ts 000000, len 000160)
    — SIP/201-00000141 is ringing
    Sent RTP packet to 10.1.2.7:21000 (type 08, seq 054517, ts 000160, len 000160)
    Got RTP packet from 10.1.2.7:21000 (type 08, seq 000001, ts 000160, len 000160)
    Got RTP packet from 10.1.2.7:21000 (type 08, seq 000002, ts 000320, len 000160)
    Sent RTP packet to 10.1.2.7:21000 (type 08, seq 054518, ts 000320, len 000160)
    Got RTP packet from 10.1.2.7:21000 (type 08, seq 000003, ts 000480, len 000160)
    Sent RTP packet to 10.1.2.7:21000 (type 08, seq 054519, ts 000480, len 000160)
    Got RTP packet from 10.1.2.7:21000 (type 08, seq 000004, ts 000640, len 000160)
    Sent RTP packet to 10.1.2.7:21000 (type 08, seq 054520, ts 000640, len 000160)
    Got RTP packet from 10.1.2.7:21000 (type 08, seq 000005, ts 000800, len 000160)
    Got RTP packet from 10.1.2.7:21000 (type 08, seq 000006, ts 000960, len 000160)
    Sent RTP packet to 10.1.2.7:21000 (type 08, seq 054521, ts 000800, len 000160)
    Sent RTP packet to 10.1.2.7:21000 (type 08, seq 054522, ts 000960, len 000160)
    Sent RTP packet to 10.1.2.7:21000 (type 08, seq 054523, ts 001120, len 000160)
    Got RTP packet from 10.1.2.7:21000 (type 08, seq 000007, ts 001120, len 000160)
    Got RTP packet from 10.1.2.7:21000 (type 08, seq 000008, ts 001280, len 000160)
    Sent RTP packet to 10.1.2.7:21000 (type 08, seq 054524, ts 001280, len 000160)
    Sent RTP packet to 10.1.2.7:21000 (type 08, seq 054525, ts 001440, len 000160)
    Sent RTP packet to 10.1.2.7:21000 (type 08, seq 054526, ts 001600, len 000160)
    Got RTP packet from 10.1.2.7:21000 (type 08, seq 000009, ts 001440, len 000160)
    Got RTP packet from 10.1.2.7:21000 (type 08, seq 000010, ts 001600, len 000160)
    Sent RTP packet to 10.1.2.7:21000 (type 08, seq 054527, ts 001760, len 000160)
    Sent RTP packet to 10.1.2.7:21000 (type 08, seq 054528, ts 001920, len 000160)
    Got RTP packet from 10.1.2.7:21000 (type 08, seq 000011, ts 001760, len 000160)
    Got RTP packet from 10.1.2.7:21000 (type 08, seq 000012, ts 001920, len 000160)
    Sent RTP packet to 10.1.2.7:21000 (type 08, seq 054529, ts 002080, len 000160)
    Sent RTP packet to 10.1.2.7:21000 (type 08, seq 054530, ts 002240, len 000160)
    Got RTP packet from 10.1.2.7:21000 (type 08, seq 000013, ts 002080, len 000160)
    Sent RTP packet to 10.1.2.7:21000 (type 08, seq 054531, ts 002400, len 000160)
    Got RTP packet from 10.1.2.7:21000 (type 08, seq 000014, ts 002240, len 000160)
    Got RTP packet from 10.1.2.7:21000 (type 08, seq 000015, ts 002400, len 000160)
    Sent RTP packet to 10.1.2.7:21000 (type 08, seq 054532, ts 002560, len 000160)
    Sent RTP packet to 10.1.2.7:21000 (type 08, seq 054533, ts 002720, len 000160)
    Got RTP packet from 10.1.2.7:21000 (type 08, seq 000016, ts 002560, len 000160)
    Sent RTP packet to 10.1.2.7:21000 (type 08, seq 054534, ts 002880, len 000160)
    Got RTP packet from 10.1.2.7:21000 (type 08, seq 000017, ts 002720, len 000160)
    Got RTP packet from 10.1.2.7:21000 (type 08, seq 000018, ts 002880, len 000160)
    Sent RTP packet to 10.1.2.7:21000 (type 08, seq 054535, ts 003040, len 000160)
    Got RTP packet from 10.1.2.7:21000 (type 08, seq 000019, ts 003040, len 000160)
    Sent RTP packet to 10.1.2.7:21000 (type 08, seq 054536, ts 003200, len 000160)
    Got RTP packet from 10.1.2.7:21000 (type 08, seq 000020, ts 003200, len 000160)
    Sent RTP packet to 10.1.2.7:21000 (type 08, seq 054537, ts 003360, len 000160)
    Got RTP packet from 10.1.2.7:21000 (type 08, seq 000021, ts 003360, len 000160)
    Sent RTP packet to 10.1.2.7:21000 (type 08, seq 054538, ts 003520, len 000160)
    Got RTP packet from 10.1.2.7:21000 (type 08, seq 000022, ts 003520, len 000160)
    Got RTP packet from 10.1.2.7:21000 (type 08, seq 000023, ts 003680, len 000160)
    Sent RTP packet to 10.1.2.7:21000 (type 08, seq 054539, ts 003680, len 000160)
    Got RTP packet from 10.1.2.7:21000 (type 08, seq 000024, ts 003840, len 000160)
    Sent RTP packet to 10.1.2.7:21000 (type 08, seq 054540, ts 003840, len 000160)
    Got RTP packet from 10.1.2.7:21000 (type 08, seq 000025, ts 004000, len 000160)
    Sent RTP packet to 10.1.2.7:21000 (type 08, seq 054541, ts 004000, len 000160)
    Got RTP packet from 10.1.2.7:21000 (type 08, seq 000026, ts 004160, len 000160)
    Sent RTP packet to 10.1.2.7:21000 (type 08, seq 054542, ts 004160, len 000160)
    Got RTP packet from 10.1.2.7:21000 (type 08, seq 000027, ts 004320, len 000160)
    Sent RTP packet to 10.1.2.7:21000 (type 08, seq 054543, ts 004320, len 000160)
    — SIP/201-00000141 answered SIP/205-00000140
    Got RTP packet from 10.1.2.7:21000 (type 08, seq 000028, ts 004480, len 000160)
    Sent RTP packet to 10.1.2.117:32100 (type 00, seq 038686, ts 004480, len 000160)
    Got RTP packet from 10.1.2.7:21000 (type 08, seq 000029, ts 004640, len 000160)
    Sent RTP packet to 10.1.2.117:32100 (type 00, seq 038687, ts 004640, len 000160)
    Got RTP packet from 10.1.2.7:21000 (type 08, seq 000030, ts 004800, len 000160)
    Sent RTP packet to 10.1.2.117:32100 (type 00, seq 038688, ts 004800, len 000160)
    Got RTP packet from 10.1.2.117:32100 (type 00, seq 004093, ts 3043082470, len 00016

    LLAMADA DE TELEFONO CISCO 7911 a ANDROID

    == Using SIP RTP CoS mark 5
    — Executing [205@interno:1] Answer(«SIP/201-00000142», «») in new stack
    Got RTP packet from 10.1.2.117:18316 (type 00, seq 004115, ts 1727129910, len 000160)
    — Executing [205@interno:2] Dial(«SIP/201-00000142», «Sip/205,20,Tt») in new stack
    == Using SIP RTP CoS mark 5
    — Called 205
    Got RTP packet from 10.1.2.117:18316 (type 00, seq 004116, ts 1727130070, len 000160)
    Got RTP packet from 10.1.2.117:18316 (type 00, seq 004117, ts 1727130230, len 000160)
    Got RTP packet from 10.1.2.117:18316 (type 00, seq 004118, ts 1727130390, len 000160)
    Got RTP packet from 10.1.2.117:18316 (type 00, seq 004119, ts 1727130550, len 000160)
    Got RTP packet from 10.1.2.117:18316 (type 00, seq 004120, ts 1727130710, len 000160)
    Got RTP packet from 10.1.2.117:18316 (type 00, seq 004121, ts 1727130870, len 000160)
    Got RTP packet from 10.1.2.117:18316 (type 00, seq 004122, ts 1727131030, len 000160)
    Got RTP packet from 10.1.2.117:18316 (type 00, seq 004123, ts 1727131190, len 000160)
    Got RTP packet from 10.1.2.117:18316 (type 00, seq 004124, ts 1727131350, len 000160)
    Got RTP packet from 10.1.2.117:18316 (type 00, seq 004125, ts 1727131510, len 000160)
    Got RTP packet from 10.1.2.117:18316 (type 00, seq 004126, ts 1727131670, len 000160)
    Got RTP packet from 10.1.2.117:18316 (type 00, seq 004127, ts 1727131830, len 000160)
    Got RTP packet from 10.1.2.117:18316 (type 00, seq 004128, ts 1727131990, len 000160)
    Got RTP packet from 10.1.2.117:18316 (type 00, seq 004129, ts 1727132150, len 000160)
    Got RTP packet from 10.1.2.117:18316 (type 00, seq 004130, ts 1727132310, len 000160)
    Got RTP packet from 10.1.2.117:18316 (type 00, seq 004131, ts 1727132470, len 000160)

    Saludos!

  10. Hola amigos… tengo el problema de que recibes una llamada y levantas la linea y en el lado del llamante sigue sonando y sonando y el que contesta pues no oye nanais….. y tengo otro problema con sip provider… todo bien en las salientes y en las entrantes suena el telefono contestas y despues 2 3 o 4 segundos la voz del que recibe se deja de oir en el lado del llamante y el que recibio sigue escuchando el audio..

    Gracias y agradezco la ayuda…. chrisgura aroba hotmail

  11. Tengo el mismo error, tengo una sola centralita en el lugar A, allí tengo extensiones SIP por medio de softphones y uno que otro tel ip fisico, ahora tengo un lugar B donde también tengo extensiones SIP que se conectan a la centralita del lugar A esta conexión se hace por medio de una VPN, el problema se desarrolla en esta parte cuando al tratar de entrar una llamada a un grupo de extensiones que tengo en el lugar B, cuando la llamada entra al grupo de timbrado y se contesta no se obtiene audio desde afuera de la centralita,, es decir el asesor me dice que a el lo escuchan pero el no escucha nada.
    aqui dejo el debug :
    Sent RTP packet to 10.20.30.54:63298 (type 09, seq 062396, ts 2540640, len 000160)
    Sent RTP packet to 10.168.155.117:16454 (type 00, seq 051752, ts 1189440, len 000160)
    Sent RTP packet to 192.168.177.68:59956 (type 00, seq 020968, ts 1475680, len 000160)
    Got RTP packet from 10.20.30.54:63298 (type 09, seq 015909, ts 3979742273, len 000160)
    Got RTP packet from 192.168.177.68:59956 (type 00, seq 009216, ts 683935073, len 000160)
    Got RTP packet from 192.168.177.156:16410 (type 00, seq 001774, ts 271588075, len 000160)
    Got RTP packet from 10.168.155.117:16454 (type 00, seq 017393, ts 173151390, len 000160)
    Sent RTP packet to 10.168.155.51:8028 (type 00, seq 028756, ts 271588072, len 000160)
    Sent RTP packet to 10.20.30.54:63298 (type 09, seq 062397, ts 2540800, len 000160)
    Sent RTP packet to 10.168.155.117:16454 (type 00, seq 051753, ts 1189600, len 000160)
    Sent RTP packet to 192.168.177.68:59956 (type 00, seq 020969, ts 1475840, len 000160)
    Got RTP packet from 192.168.177.68:59956 (type 00, seq 009217, ts 683935233, len 000160)
    Got RTP packet from 192.168.177.156:16410 (type 00, seq 001775, ts 271588235, len 000160)
    Sent RTP packet to 10.168.155.51:8028 (type 00, seq 028757, ts 271588232, len 000160)
    Got RTP packet from 10.168.155.117:16454 (type 00, seq 017394, ts 173151550, len 000160)
    Sent RTP packet to 10.20.30.54:63298 (type 09, seq 062398, ts 2540960, len 000160)
    Sent RTP packet to 10.168.155.117:16454 (type 00, seq 051754, ts 1189760, len 000160)
    Sent RTP packet to 192.168.177.68:59956 (type 00, seq 020970, ts 1476000, len 000160)
    Got RTP packet from 10.168.155.117:16454 (type 00, seq 017395, ts 173151710, len 000160)
    Sent RTP packet to 10.20.30.54:63298 (type 09, seq 062399, ts 2541120, len 000160)
    Sent RTP packet to 10.168.155.117:16454 (type 00, seq 051755, ts 1189920, len 000160)
    Got RTP packet from 192.168.177.68:59956 (type 00, seq 009218, ts 683935393, len 000160)
    Got RTP packet from 192.168.177.156:16410 (type 00, seq 001776, ts 271588395, len 000160)
    Sent RTP packet to 10.168.155.51:8028 (type 00, seq 028758, ts 271588392, len 000160)
    Got RTP packet from 10.20.30.54:63298 (type 09, seq 015910, ts 3979742433, len 000160)
    Sent RTP packet to 192.168.177.68:59956 (type 00, seq 020971, ts 1476160, len 000160)
    Got RTP packet from 10.20.30.54:63298 (type 09, seq 015911, ts 3979742593, len 000160)
    Got RTP packet from 10.168.155.117:16454 (type 00, seq 017396, ts 173151870, len 000160)
    Got RTP packet from 192.168.177.68:59956 (type 00, seq 009219, ts 683935553, len 000160)
    Sent RTP packet to 10.20.30.54:63298 (type 09, seq 062400, ts 2541280, len 000160)
    Sent RTP packet to 10.168.155.117:16454 (type 00, seq 051756, ts 1190080, len 000160)
    Got RTP packet from 10.20.30.54:63298 (type 09, seq 015913, ts 3979742913, len 000160)
    Sent RTP packet to 192.168.177.68:59956 (type 00, seq 020972, ts 1476320, len 000160)
    Got RTP packet from 192.168.177.156:16410 (type 00, seq 001777, ts 271588555, len 000160)
    Sent RTP packet to 10.168.155.51:8028 (type 00, seq 028759, ts 271588552, len 000160)
    Got RTP packet from 10.20.30.54:63298 (type 09, seq 015914, ts 3979743073, len 000160)
    Got RTP packet from 192.168.177.68:59956 (type 00, seq 009220, ts 683935713, len 000160)
    Got RTP packet from 10.168.155.117:16454 (type 00, seq 017397, ts 173152030, len 000160)
    Got RTP packet from 192.168.177.156:16410 (type 00, seq 001778, ts 271588715, len 000160)
    Sent RTP packet to 10.168.155.51:8028 (type 00, seq 028760, ts 271588712, len 000160)
    Sent RTP packet to 10.20.30.54:63298 (type 09, seq 062401, ts 2541440, len 000160)
    Sent RTP packet to 10.168.155.117:16454 (type 00, seq 051757, ts 1190240, len 000160)
    Sent RTP packet to 192.168.177.68:59956 (type 00, seq 020973, ts 1476480, len 000160)
    Got RTP packet from 192.168.177.68:59956 (type 00, seq 009221, ts 683935873, len 000160)
    Got RTP packet from 192.168.177.156:16410 (type 00, seq 001779, ts 271588875, len 000160)
    Sent RTP packet to 10.168.155.51:8028 (type 00, seq 028761, ts 271588872, len 000160)
    Got RTP packet from 10.168.155.117:16454 (type 00, seq 017398, ts 173152190, len 000160)
    Sent RTP packet to 10.20.30.54:63298 (type 09, seq 062402, ts 2541600, len 000160)
    Sent RTP packet to 10.168.155.117:16454 (type 00, seq 051758, ts 1190400, len 000160)
    Sent RTP packet to 192.168.177.68:59956 (type 00, seq 020974, ts 1476640, len 000160)
    Got RTP packet from 192.168.177.68:59956 (type 00, seq 009222, ts 683936033, len 000160)
    Got RTP packet from 10.168.155.117:16454 (type 00, seq 017399, ts 173152350, len 000160)
    Got RTP packet from 192.168.177.156:16410 (type 00, seq 001780, ts 271589035, len 000160)
    Sent RTP packet to 10.168.155.51:8028 (type 00, seq 028762, ts 271589032, len 000160)
    Sent RTP packet to 10.20.30.54:63298 (type 09, seq 062403, ts 2541760, len 000160)
    Sent RTP packet to 10.168.155.117:16454 (type 00, seq 051759, ts 1190560, len 000160)
    Sent RTP packet to 192.168.177.68:59956 (type 00, seq 020975, ts 1476800, len 000160)
    Got RTP packet from 192.168.177.68:59956 (type 00, seq 009223, ts 683936193, len 000160)
    Got RTP packet from 192.168.177.156:16410 (type 00, seq 001781, ts 271589195, len 000160)
    Sent RTP packet to 10.168.155.51:8028 (type 00, seq 028763, ts 271589192, len 000160)
    Got RTP packet from 10.168.155.117:16454 (type 00, seq 017400, ts 173152510, len 000160)
    Sent RTP packet to 10.20.30.54:63298 (type 09, seq 062404, ts 2541920, len 000160)
    Sent RTP packet to 10.168.155.117:16454 (type 00, seq 051760, ts 1190720, len 000160)
    Sent RTP packet to 192.168.177.68:59956 (type 00, seq 020976, ts 1476960, len 000160)
    Got RTP packet from 10.168.155.117:16454 (type 00, seq 017401, ts 173152670, len 000160)
    Got RTP packet from 192.168.177.68:59956 (type 00, seq 009224, ts 683936353, len 000160)
    Sent RTP packet to 10.20.30.54:63298 (type 09, seq 062405, ts 2542080, len 000160)
    Sent RTP packet to 10.168.155.117:16454 (type 00, seq 051761, ts 1190880, len 000160)
    Sent RTP packet to 192.168.177.68:59956 (type 00, seq 020977, ts 1477120, len 000160)
    Got RTP packet from 192.168.177.156:16410 (type 00, seq 001782, ts 271589355, len 000160)
    Sent RTP packet to 10.168.155.51:8028 (type 00, seq 028764, ts 271589352, len 000160)
    Got RTP packet from 192.168.177.68:59956 (type 00, seq 009225, ts 683936513, len 000160)
    Got RTP packet from 10.168.155.117:16454 (type 00, seq 017402, ts 173152830, len 000160)
    Got RTP packet from 192.168.177.156:16410 (type 00, seq 001783, ts 271589515, len 000160)
    Sent RTP packet to 10.168.155.51:8028 (type 00, seq 028765, ts 271589512, len 000160)
    Sent RTP packet to 10.20.30.54:63298 (type 09, seq 062406, ts 2542240, len 000160)
    Sent RTP packet to 10.168.155.117:16454 (type 00, seq 051762, ts 1191040, len 000160)
    Sent RTP packet to 192.168.177.68:59956 (type 00, seq 020978, ts 1477280, len 000160)
    Got RTP packet from 10.20.30.54:63298 (type 09, seq 015915, ts 3979743233, len 000160)
    Got RTP packet from 192.168.177.68:59956 (type 00, seq 009226, ts 683936673, len 000160)
    Got RTP packet from 10.168.155.117:16454 (type 00, seq 017403, ts 173152990, len 000160)
    Got RTP packet from 192.168.177.156:16410 (type 00, seq 001784, ts 271589675, len 000160)
    Sent RTP packet to 10.168.155.51:8028 (type 00, seq 028766, ts 271589672, len 000160)
    Sent RTP packet to 10.20.30.54:63298 (type 09, seq 062407, ts 2542400, len 000160)
    Sent RTP packet to 10.168.155.117:16454 (type 00, seq 051763, ts 1191200, len 000160)
    Got RTP packet from 10.20.30.54:63298 (type 09, seq 015916, ts 3979743393, len 000160)
    Sent RTP packet to 192.168.177.68:59956 (type 00, seq 020979, ts 1477440, len 000160)
    Got RTP packet from 192.168.177.68:59956 (type 00, seq 009227, ts 683936833, len 000160)
    Got RTP packet from 10.20.30.54:63298 (type 09, seq 015918, ts 3979743713, len 000160)
    Got RTP packet from 10.168.155.117:16454 (type 00, seq 017404, ts 173153150, len 000160)
    Got RTP packet from 192.168.177.156:16410 (type 00, seq 001785, ts 271589835, len 000160)
    Sent RTP packet to 10.168.155.51:8028 (type 00, seq 028767, ts 271589832, len 000160)
    Sent RTP packet to 10.20.30.54:63298 (type 09, seq 062408, ts 2542560, len 000160)
    Sent RTP packet to 10.168.155.117:16454 (type 00, seq 051764, ts 1191360, len 000160)
    Sent RTP packet to 192.168.177.68:59956 (type 00, seq 020980, ts 1477600, len 000160)
    Got RTP packet from 10.20.30.54:63298 (type 09, seq 015920, ts 3979744033, len 000160)
    Got RTP packet from 192.168.177.68:59956 (type 00, seq 009228, ts 683936993, len 000160)
    Got RTP packet from 10.20.30.54:63298 (type 09, seq 015921, ts 3979744193, len 000160)
    Got RTP packet from 10.168.155.117:16454 (type 00, seq 017405, ts 173153310, len 000160)
    Sent RTP packet to 10.20.30.54:63298 (type 09, seq 062409, ts 2542720, len 000160)
    Got RTP packet from 192.168.177.156:16410 (type 00, seq 001786, ts 271589995, len 000160)
    Sent RTP packet to 10.168.155.51:8028 (type 00, seq 028768, ts 271589992, len 000160)
    Sent RTP packet to 10.168.155.117:16454 (type 00, seq 051765, ts 1191520, len 000160)
    Sent RTP packet to 192.168.177.68:59956 (type 00, seq 020981, ts 1477760, len 000160)
    Got RTP packet from 10.168.155.117:16454 (type 00, seq 017406, ts 173153470, len 000160)
    Sent RTP packet to 10.20.30.54:63298 (type 09, seq 062410, ts 2542880, len 000160)
    Sent RTP packet to 10.168.155.117:16454 (type 00, seq 051766, ts 1191680, len 000160)
    Sent RTP packet to 192.168.177.68:59956 (type 00, seq 020982, ts 1477920, len 000160)
    Got RTP packet from 10.168.155.117:16454 (type 00, seq 017407, ts 173153630, len 000160)
    Got RTP packet from 10.20.30.54:63298 (type 09, seq 015922, ts 3979744353, len 000160)
    Sent RTP packet to 10.20.30.54:63298 (type 09, seq 062411, ts 2543040, len 000160)
    Sent RTP packet to 10.168.155.117:16454 (type 00, seq 051767, ts 1191840, len 000160)
    Sent RTP packet to 192.168.177.68:59956 (type 00, seq 020983, ts 1478080, len 000160)
    Got RTP packet from 192.168.177.68:59956 (type 00, seq 009229, ts 683937153, len 000160)
    Got RTP packet from 192.168.177.156:16410 (type 00, seq 001787, ts 271590155, len 000160)
    Sent RTP packet to 10.168.155.51:8028 (type 00, seq 028769, ts 271590152, len 000160)
    Got RTP packet from 192.168.177.68:59956 (type 00, seq 009230, ts 683937313, len 000160)
    Got RTP packet from 192.168.177.156:16410 (type 00, seq 001788, ts 271590315, len 000160)
    Sent RTP packet to 10.168.155.51:8028 (type 00, seq 028770, ts 271590312, len 000160)
    Got RTP packet from 192.168.177.68:59956 (type 00, seq 009231, ts 683937473, len 000160)
    Got RTP packet from 10.168.155.117:16454 (type 00, seq 017408, ts 173153790, len 000160)
    Got RTP packet from 192.168.177.156:16410 (type 00, seq 001789, ts 271590475, len 000160)
    Sent RTP packet to 10.168.155.51:8028 (type 00, seq 028771, ts 271590472, len 000160)
    Sent RTP packet to 10.20.30.54:63298 (type 09, seq 062412, ts 2543200, len 000160)
    Sent RTP packet to 10.168.155.117:16454 (type 00, seq 051768, ts 1192000, len 000160)
    Got RTP packet from 10.20.30.54:63298 (type 09, seq 015923, ts 3979744513, len 000160)
    Sent RTP packet to 192.168.177.68:59956 (type 00, seq 020984, ts 1478240, len 000160)
    Got RTP packet from 10.168.155.117:16454 (type 00, seq 017409, ts 173153950, len 000160)
    Got RTP packet from 192.168.177.68:59956 (type 00, seq 009232, ts 683937633, len 000160)
    Got RTP packet from 192.168.177.156:16410 (type 00, seq 001790, ts 271590635, len 000160)
    Sent RTP packet to 10.168.155.51:8028 (type 00, seq 028772, ts 271590632, len 000160)
    Sent RTP packet to 10.20.30.54:63298 (type 09, seq 062413, ts 2543360, len 000160)
    Sent RTP packet to 10.168.155.117:16454 (type 00, seq 051769, ts 1192160, len 000160)
    Sent RTP packet to 192.168.177.68:59956 (type 00, seq 020985, ts 1478400, len 000160)
    Got RTP packet from 192.168.177.68:59956 (type 00, seq 009233, ts 683937793, len 000160)
    Got RTP packet from 10.168.155.117:16454 (type 00, seq 017410, ts 173154110, len 000160)
    Got RTP packet from 192.168.177.156:16410 (type 00, seq 001791, ts 271590795, len 000160)
    Sent RTP packet to 10.168.155.51:8028 (type 00, seq 028773, ts 271590792, len 000160)
    Got RTP packet from 10.20.30.54:63298 (type 09, seq 015925, ts 3979744833, len 000160)
    Sent RTP packet to 10.20.30.54:63298 (type 09, seq 062414, ts 2543520, len 000160)
    Sent RTP packet to 10.168.155.117:16454 (type 00, seq 051770, ts 1192320, len 000160)
    Got RTP packet from 10.20.30.54:63298 (type 09, seq 015926, ts 3979744993, len 000160)
    Sent RTP packet to 192.168.177.68:59956 (type 00, seq 020986, ts 1478560, len 000160)
    Got RTP packet from 192.168.177.68:59956 (type 00, seq 009234, ts 683937953, len 000160)
    Got RTP packet from 192.168.177.156:16410 (type 00, seq 001792, ts 271590955, len 000160)
    Sent RTP packet to 10.168.155.51:8028 (type 00, seq 028774, ts 271590952, len 000160)
    Got RTP packet from 10.168.155.117:16454 (type 00, seq 017411, ts 173154270, len 000160)
    Sent RTP packet to 10.20.30.54:63298 (type 09, seq 062415, ts 2543680, len 000160)
    Sent RTP packet to 10.168.155.117:16454 (type 00, seq 051771, ts 1192480, len 000160)
    Sent RTP packet to 192.168.177.68:59956 (type 00, seq 020987, ts 1478720, len 000160)
    Got RTP packet from 192.168.177.68:59956 (type 00, seq 009235, ts 683938113, len 000160)
    Got RTP packet from 192.168.177.156:16410 (type 00, seq 001793, ts 271591115, len 000160)
    Sent RTP packet to 10.168.155.51:8028 (type 00, seq 028775, ts 271591112, len 000160)
    Got RTP packet from 10.20.30.54:63298 (type 09, seq 015927, ts 3979745153, len 000160)
    Got RTP packet from 10.168.155.117:16454 (type 00, seq 017412, ts 173154430, len 000160)
    Sent RTP packet to 10.20.30.54:63298 (type 09, seq 062416, ts 2543840, len 000160)
    Sent RTP packet to 10.168.155.117:16454 (type 00, seq 051772, ts 1192640, len 000160)
    Sent RTP packet to 192.168.177.68:59956 (type 00, seq 020988, ts 1478880, len 000160)
    Got RTP packet from 192.168.177.68:59956 (type 00, seq 009236, ts 683938273, len 000160)
    Got RTP packet from 10.168.155.117:16454 (type 00, seq 017413, ts 173154590, len 000160)
    Got RTP packet from 192.168.177.156:16410 (type 00, seq 001794, ts 271591275, len 000160)
    Sent RTP packet to 10.168.155.51:8028 (type 00, seq 028776, ts 271591272, len 000160)
    Sent RTP packet to 10.20.30.54:63298 (type 09, seq 062417, ts 2544000, len 000160)
    Sent RTP packet to 10.168.155.117:16454 (type 00, seq 051773, ts 1192800, len 000160)
    Sent RTP packet to 192.168.177.68:59956 (type 00, seq 020989, ts 1479040, len 000160)
    Got RTP packet from 10.168.155.117:16454 (type 00, seq 017414, ts 173154750, len 000160)
    Got RTP packet from 192.168.177.68:59956 (type 00, seq 009237, ts 683938433, len 000160)
    Sent RTP packet to 10.20.30.54:63298 (type 09, seq 062418, ts 2544160, len 000160)
    Sent RTP packet to 10.168.155.117:16454 (type 00, seq 051774, ts 1192960, len 000160)
    Got RTP packet from 10.20.30.54:63298 (type 09, seq 015928, ts 3979745313, len 000160)
    Got RTP packet from 192.168.177.156:16410 (type 00, seq 001795, ts 271591435, len 000160)
    Sent RTP packet to 10.168.155.51:8028 (type 00, seq 028777, ts 271591432, len 000160)
    Sent RTP packet to 192.168.177.68:59956 (type 00, seq 020990, ts 1479200, len 000160)
    Got RTP packet from 192.168.177.68:59956 (type 00, seq 009238, ts 683938593, len 000160)
    Got RTP packet from 10.168.155.117:16454 (type 00, seq 017415, ts 173154910, len 000160)
    Got RTP packet from 192.168.177.156:16410 (type 00, seq 001796, ts 271591595, len 000160)
    Sent RTP packet to 10.168.155.51:8028 (type 00, seq 028778, ts 271591592, len 000160)
    Sent RTP packet to 10.20.30.54:63298 (type 09, seq 062419, ts 2544320, len 000160)
    Sent RTP packet to 10.168.155.117:16454 (type 00, seq 051775, ts 1193120, len 000160)
    Got RTP packet from 10.20.30.54:63298 (type 09, seq 015929, ts 3979745473, len 000160)
    Sent RTP packet to 192.168.177.68:59956 (type 00, seq 020991, ts 1479360, len 000160)
    Got RTP packet from 192.168.177.68:59956 (type 00, seq 009239, ts 683938753, len 000160)
    Got RTP packet from 10.168.155.117:16454 (type 00, seq 017416, ts 173155070, len 000160)
    Sent RTP packet to 10.20.30.54:63298 (type 09, seq 062420, ts 2544480, len 000160)
    Got RTP packet from 192.168.177.156:16410 (type 00, seq 001797, ts 271591755, len 000160)
    Sent RTP packet to 10.168.155.51:8028 (type 00, seq 028779, ts 271591752, len 000160)
    Sent RTP packet to 10.168.155.117:16454 (type 00, seq 051776, ts 1193280, len 000160)
    Sent RTP packet to 192.168.177.68:59956 (type 00, seq 020992, ts 1479520, len 000160)
    Got RTP packet from 192.168.177.68:59956 (type 00, seq 009240, ts 683938913, len 000160)
    Got RTP packet from 10.20.30.54:63298 (type 09, seq 015932, ts 3979745953, len 000160)
    Got RTP packet from 192.168.177.156:16410 (type 00, seq 001798, ts 271591915, len 000160)
    Sent RTP packet to 10.168.155.51:8028 (type 00, seq 028780, ts 271591912, len 000160)
    Got RTP packet from 10.168.155.117:16454 (type 00, seq 017417, ts 173155230, len 000160)
    Sent RTP packet to 10.20.30.54:63298 (type 09, seq 062421, ts 2544640, len 000160)
    Sent RTP packet to 10.168.155.117:16454 (type 00, seq 051777, ts 1193440, len 000160)
    Sent RTP packet to 192.168.177.68:59956 (type 00, seq 020993, ts 1479680, len 000160)
    Got RTP packet from 192.168.177.68:59956 (type 00, seq 009241, ts 683939073, len 000160)
    Got RTP packet from 10.20.30.54:63298 (type 09, seq 015934, ts 3979746273, len 000160)
    Got RTP packet from 192.168.177.156:16410 (type 00, seq 001799, ts 271592075, len 000160)
    Sent RTP packet to 10.168.155.51:8028 (type 00, seq 028781, ts 271592072, len 000160)
    Got RTP packet from 10.168.155.117:16454 (type 00, seq 017418, ts 173155390, len 000160)
    Sent RTP packet to 10.20.30.54:63298 (type 09, seq 062422, ts 2544800, len 000160)
    Sent RTP packet to 10.168.155.117:16454 (type 00, seq 051778, ts 1193600, len 000160)
    Sent RTP packet to 192.168.177.68:59956 (type 00, seq 020994, ts 1479840, len 000160)
    Got RTP packet from 192.168.177.68:59956 (type 00, seq 009242, ts 683939233, len 000160)
    Got RTP packet from 192.168.177.156:16410 (type 00, seq 001800, ts 271592235, len 000160)
    Sent RTP packet to 10.168.155.51:8028 (type 00, seq 028782, ts 271592232, len 000160)
    Got RTP packet from 10.20.30.54:63298 (type 09, seq 015935, ts 3979746433, len 000160)
    Got RTP packet from 10.168.155.117:16454 (type 00, seq 017419, ts 173155550, len 000160)
    Sent RTP packet to 10.20.30.54:63298 (type 09, seq 062423, ts 2544960, len 000160)
    Sent RTP packet to 10.168.155.117:16454 (type 00, seq 051779, ts 1193760, len 000160)
    Sent RTP packet to 192.168.177.68:59956 (type 00, seq 020995, ts 1480000, len 000160)
    Got RTP packet from 10.168.155.117:16454 (type 00, seq 017420, ts 173155710, len 000160)
    Sent RTP packet to 10.20.30.54:63298 (type 09, seq 062424, ts 2545120, len 000160)
    Sent RTP packet to 10.168.155.117:16454 (type 00, seq 051780, ts 1193920, len 000160)
    Got RTP packet from 10.20.30.54:63298 (type 09, seq 015936, ts 3979746593, len 000160)
    Sent RTP packet to 192.168.177.68:59956 (type 00, seq 020996, ts 1480160, len 000160)
    Got RTP packet from 10.168.155.117:16454 (type 00, seq 017421, ts 173155870, len 000160)
    Sent RTP packet to 10.20.30.54:63298 (type 09, seq 062425, ts 2545280, len 000160)
    Sent RTP packet to 10.168.155.117:16454 (type 00, seq 051781, ts 1194080, len 000160)
    Sent RTP packet to 192.168.177.68:59956 (type 00, seq 020997, ts 1480320, len 000160)
    Got RTP packet from 10.20.30.54:63298 (type 09, seq 015937, ts 3979746753, len 000160)
    Got RTP packet from 10.168.155.117:16454 (type 00, seq 017422, ts 173156030, len 000160)
    Got RTP packet from 10.20.30.54:63298 (type 09, seq 015938, ts 3979746913, len 000160)
    Sent RTP packet to 10.20.30.54:63298 (type 09, seq 062426, ts 2545440, len 000160)
    Sent RTP packet to 10.168.155.117:16454 (type 00, seq 051782, ts 1194240, len 000160)
    Got RTP packet from 10.20.30.54:63298 (type 09, seq 015939, ts 3979747073, len 000160)
    Sent RTP packet to 192.168.177.68:59956 (type 00, seq 020998, ts 1480480, len 000160)
    Got RTP packet from 10.20.30.54:63298 (type 09, seq 015940, ts 3979747233, len 000160)
    Got RTP packet from 192.168.177.68:59956 (type 00, seq 009243, ts 683939393, len 000160)
    Got RTP packet from 10.168.155.117:16454 (type 00, seq 017423, ts 173156190, len 000160)
    Sent RTP packet to 10.20.30.54:63298 (type 09, seq 062427, ts 2545600, len 000160)
    Sent RTP packet to 10.168.155.117:16454 (type 00, seq 051783, ts 1194400, len 000160)
    Got RTP packet from 192.168.177.156:16410 (type 00, seq 001801, ts 271592395, len 000160)
    Sent RTP packet to 10.168.155.51:8028 (type 00, seq 028783, ts 271592392, len 000160)
    Got RTP packet from 192.168.177.68:59956 (type 00, seq 009244, ts 683939553, len 000160)
    Got RTP packet from 192.168.177.156:16410 (type 00, seq 001802, ts 271592555, len 000160)
    Sent RTP packet to 10.168.155.51:8028 (type 00, seq 028784, ts 271592552, len 000160)
    Got RTP packet from 192.168.177.68:59956 (type 00, seq 009245, ts 683939713, len 000160)
    Got RTP packet from 192.168.177.156:16410 (type 00, seq 001803, ts 271592715, len 000160)
    Sent RTP packet to 10.168.155.51:8028 (type 00, seq 028785, ts 271592712, len 000160)
    Got RTP packet from 192.168.177.68:59956 (type 00, seq 009246, ts 683939873, len 000160)
    Got RTP packet from 192.168.177.156:16410 (type 00, seq 001804, ts 271592875, len 000160)
    Sent RTP packet to 10.168.155.51:8028 (type 00, seq 028786, ts 271592872, len 000160)
    Sent RTP packet to 192.168.177.68:59956 (type 00, seq 020999, ts 1480640, len 000160)
    Got RTP packet from 10.168.155.117:16454 (type 00, seq 017424, ts 173156350, len 000160)
    Sent RTP packet to 10.20.30.54:63298 (type 09, seq 062428, ts 2545760, len 000160)
    Sent RTP packet to 10.168.155.117:16454 (type 00, seq 051784, ts 1194560, len 000160)
    Sent RTP packet to 192.168.177.68:59956 (type 00, seq 021000, ts 1480800, len 000160)
    Got RTP packet from 10.168.155.117:16454 (type 00, seq 017425, ts 173156510, len 000160)
    Got RTP packet from 192.168.177.68:59956 (type 00, seq 009247, ts 683940033, len 000160)
    Sent RTP packet to 10.20.30.54:63298 (type 09, seq 062429, ts 2545920, len 000160)
    Sent RTP packet to 10.168.155.117:16454 (type 00, seq 051785, ts 1194720, len 000160)
    Got RTP packet from 10.20.30.54:63298 (type 09, seq 015941, ts 3979747393, len 000160)
    Sent RTP packet to 192.168.177.68:59956 (type 00, seq 021001, ts 1480960, len 000160)
    Got RTP packet from 192.168.177.156:16410 (type 00, seq 001805, ts 271593035, len 000160)
    Sent RTP packet to 10.168.155.51:8028 (type 00, seq 028787, ts 271593032, len 000160)
    Got RTP packet from 192.168.177.68:59956 (type 00, seq 009248, ts 683940193, len 000160)
    Got RTP packet from 192.168.177.156:16410 (type 00, seq 001806, ts 271593195, len 000160)
    Sent RTP packet to 10.168.155.51:8028 (type 00, seq 028788, ts 271593192, len 000160)
    Got RTP packet from 192.168.177.68:59956 (type 00, seq 009249, ts 683940353, len 000160)
    Got RTP packet from 10.168.155.117:16454 (type 00, seq 017426, ts 173156670, len 000160)
    Sent RTP packet to 10.20.30.54:63298 (type 09, seq 062430, ts 2546080, len 000160)
    Sent RTP packet to 10.168.155.117:16454 (type 00, seq 051786, ts 1194880, len 000160)
    Got RTP packet from 192.168.177.156:16410 (type 00, seq 001807, ts 271593355, len 000160)
    Sent RTP packet to 10.168.155.51:8028 (type 00, seq 028789, ts 271593352, len 000160)
    Sent RTP packet to 192.168.177.68:59956 (type 00, seq 021002, ts 1481120, len 000160)
    Got RTP packet from 10.20.30.54:63298 (type 09, seq 015942, ts 3979747553, len 000160)
    Got RTP packet from 192.168.177.68:59956 (type 00, seq 009250, ts 683940513, len 000160)
    Got RTP packet from 10.168.155.117:16454 (type 00, seq 017427, ts 173156830, len 000160)
    Got RTP packet from 10.20.30.54:63298 (type 09, seq 015943, ts 3979747713, len 000160)
    Got RTP packet from 192.168.177.156:16410 (type 00, seq 001808, ts 271593515, len 000160)
    Sent RTP packet to 10.168.155.51:8028 (type 00, seq 028790, ts 271593512, len 000160)
    Sent RTP packet to 10.20.30.54:63298 (type 09, seq 062431, ts 2546240, len 000160)
    Got RTP packet from 10.20.30.54:63298 (type 09, seq 015944, ts 3979747873, len 000160)
    Sent RTP packet to 10.168.155.117:16454 (type 00, seq 051787, ts 1195040, len 000160)
    Sent RTP packet to 192.168.177.68:59956 (type 00, seq 021003, ts 1481280, len 000160)
    Got RTP packet from 192.168.177.68:59956 (type 00, seq 009251, ts 683940673, len 000160)
    Got RTP packet from 10.168.155.117:16454 (type 00, seq 017428, ts 173156990, len 000160)
    Got RTP packet from 192.168.177.156:16410 (type 00, seq 001809, ts 271593675, len 000160)
    Sent RTP packet to 10.168.155.51:8028 (type 00, seq 028791, ts 271593672, len 000160)
    Sent RTP packet to 10.20.30.54:63298 (type 09, seq 062432, ts 2546400, len 000160)
    Sent RTP packet to 10.168.155.117:16454 (type 00, seq 051788, ts 1195200, len 000160)
    Sent RTP packet to 192.168.177.68:59956 (type 00, seq 021004, ts 1481440, len 000160)
    Got RTP packet from 192.168.177.68:59956 (type 00, seq 009252, ts 683940833, len 000160)
    Got RTP packet from 10.168.155.117:16454 (type 00, seq 017429, ts 173157150, len 000160)
    Got RTP packet from 192.168.177.156:16410 (type 00, seq 001810, ts 271593835, len 000160)
    Sent RTP packet to 10.168.155.51:8028 (type 00, seq 028792, ts 271593832, len 000160)
    Sent RTP packet to 10.20.30.54:63298 (type 09, seq 062433, ts 2546560, len 000160)
    Sent RTP packet to 10.168.155.117:16454 (type 00, seq 051789, ts 1195360, len 000160)
    Sent RTP packet to 192.168.177.68:59956 (type 00, seq 021005, ts 1481600, len 000160)
    Got RTP packet from 10.168.155.117:16454 (type 00, seq 017430, ts 173157310, len 000160)
    Sent RTP packet to 10.20.30.54:63298 (type 09, seq 062434, ts 2546720, len 000160)
    Sent RTP packet to 10.168.155.117:16454 (type 00, seq 051790, ts 1195520, len 000160)
    Got RTP packet from 192.168.177.68:59956 (type 00, seq 009253, ts 683940993, len 000160)
    Sent RTP packet to 192.168.177.68:59956 (type 00, seq 021006, ts 1481760, len 000160)
    Got RTP packet from 10.168.155.117:16454 (type 00, seq 017431, ts 173157470, len 000160)
    Got RTP packet from 192.168.177.156:16410 (type 00, seq 001811, ts 271593995, len 000160)
    Sent RTP packet to 10.168.155.51:8028 (type 00, seq 028793, ts 271593992, len 000160)
    Got RTP packet from 192.168.177.68:59956 (type 00, seq 009254, ts 683941153, len 000160)
    Sent RTP packet to 10.20.30.54:63298 (type 09, seq 062435, ts 2546880, len 000160)
    Sent RTP packet to 10.168.155.117:16454 (type 00, seq 051791, ts 1195680, len 000160)
    Got RTP packet from 10.20.30.54:63298 (type 09, seq 015945, ts 3979748033, len 000160)
    Sent RTP packet to 192.168.177.68:59956 (type 00, seq 021007, ts 1481920, len 000160)
    Got RTP packet from 192.168.177.156:16410 (type 00, seq 001812, ts 271594155, len 000160)
    Sent RTP packet to 10.168.155.51:8028 (type 00, seq 028794, ts 271594152, len 000160)
    Got RTP packet from 10.20.30.54:63298 (type 09, seq 015946, ts 3979748193, len 000160)
    Got RTP packet from 192.168.177.68:59956 (type 00, seq 009255, ts 683941313, len 000160)
    Got RTP packet from 10.168.155.117:16454 (type 00, seq 017432, ts 173157630, len 000160)
    Got RTP packet from 192.168.177.156:16410 (type 00, seq 001813, ts 271594315, len 000160)
    Sent RTP packet to 10.168.155.51:8028 (type 00, seq 028795, ts 271594312, len 000160)
    Sent RTP packet to 10.20.30.54:63298 (type 09, seq 062436, ts 2547040, len 000160)
    Sent RTP packet to 10.168.155.117:16454 (type 00, seq 051792, ts 1195840, len 000160)
    Sent RTP packet to 192.168.177.68:59956 (type 00, seq 021008, ts 1482080, len 000160)
    Got RTP packet from 10.20.30.54:63298 (type 09, seq 015948, ts 3979748513, len 000160)
    Got RTP packet from 192.168.177.68:59956 (type 00, seq 009256, ts 683941473, len 000160)
    Got RTP packet from 192.168.177.156:16410 (type 00, seq 001814, ts 271594475, len 000160)
    Sent RTP packet to 10.168.155.51:8028 (type 00, seq 028796, ts 271594472, len 000160)
    Got RTP packet from 10.168.155.117:16454 (type 00, seq 017433, ts 173157790, len 000160)
    Sent RTP packet to 10.20.30.54:63298 (type 09, seq 062437, ts 2547200, len 000160)
    Sent RTP packet to 10.168.155.117:16454 (type 00, seq 051793, ts 1196000, len 000160)
    Sent RTP packet to 192.168.177.68:59956 (type 00, seq 021009, ts 1482240, len 000160)
    Got RTP packet from 192.168.177.68:59956 (type 00, seq 009257, ts 683941633, len 000160)
    Got RTP packet from 10.20.30.54:63298 (type 09, seq 015949, ts 3979748673, len 000160)
    Got RTP packet from 10.168.155.117:16454 (type 00, seq 017434, ts 173157950, len 000160)
    Got RTP packet from 192.168.177.156:16410 (type 00, seq 001815, ts 271594635, len 000160)
    Sent RTP packet to 10.168.155.51:8028 (type 00, seq 028797, ts 271594632, len 000160)
    Sent RTP packet to 10.20.30.54:63298 (type 09, seq 062438, ts 2547360, len 000160)
    Sent RTP packet to 10.168.155.117:16454 (type 00, seq 051794, ts 1196160, len 000160)
    Sent RTP packet to 192.168.177.68:59956 (type 00, seq 021010, ts 1482400, len 000160)
    Got RTP packet from 10.168.155.117:16454 (type 00, seq 017435, ts 173158110, len 000160)
    Got RTP packet from 10.20.30.54:63298 (type 09, seq 015950, ts 3979748833, len 000160)
    Sent RTP packet to 10.20.30.54:63298 (type 09, seq 062439, ts 2547520, len 000160)
    Sent RTP packet to 10.168.155.117:16454 (type 00, seq 051795, ts 1196320, len 000160)
    Got RTP packet from 192.168.177.68:59956 (type 00, seq 009258, ts 683941793, len 000160)
    Sent RTP packet to 192.168.177.68:59956 (type 00, seq 021011, ts 1482560, len 000160)
    Got RTP packet from 192.168.177.156:16410 (type 00, seq 001816, ts 271594795, len 000160)
    Sent RTP packet to 10.168.155.51:8028 (type 00, seq 028798, ts 271594792, len 000160)
    Got RTP packet from 192.168.177.68:59956 (type 00, seq 009259, ts 683941953, len 000160)
    Got RTP packet from 192.168.177.156:16410 (type 00, seq 001817, ts 271594955, len 000160)
    Sent RTP packet to 10.168.155.51:8028 (type 00, seq 028799, ts 271594952, len 000160)
    Got RTP packet from 10.20.30.54:63298 (type 09, seq 015951, ts 3979748993, len 000160)
    Got RTP packet from 10.168.155.117:16454 (type 00, seq 017436, ts 173158270, len 000160)
    Sent RTP packet to 10.20.30.54:63298 (type 09, seq 062440, ts 2547680, len 000160)
    Sent RTP packet to 10.168.155.117:16454 (type 00, seq 051796, ts 1196480, len 000160)
    Sent RTP packet to 192.168.177.68:59956 (type 00, seq 021012, ts 1482720, len 000160)
    Got RTP packet from 10.20.30.54:63298 (type 09, seq 015952, ts 3979749153, len 000160)
    Got RTP packet from 10.168.155.117:16454 (type 00, seq 017437, ts 173158430, len 000160)
    Got RTP packet from 10.20.30.54:63298 (type 09, seq 015953, ts 3979749313, len 000160)
    Sent RTP packet to 10.20.30.54:63298 (type 09, seq 062441, ts 2547840, len 000160)
    Sent RTP packet to 10.168.155.117:16454 (type 00, seq 051797, ts 1196640, len 000160)
    Got RTP packet from 192.168.177.68:59956 (type 00, seq 009260, ts 683942113, len 000160)
    Sent RTP packet to 192.168.177.68:59956 (type 00, seq 021013, ts 1482880, len 000160)
    Got RTP packet from 192.168.177.156:16410 (type 00, seq 001818, ts 271595115, len 000160)
    Sent RTP packet to 10.168.155.51:8028 (type 00, seq 028800, ts 271595112, len 000160)
    Got RTP packet from 192.168.177.68:59956 (type 00, seq 009261, ts 683942273, len 000160)
    Got RTP packet from 10.168.155.117:16454 (type 00, seq 017438, ts 173158590, len 000160)
    Got RTP packet from 192.168.177.156:16410 (type 00, seq 001819, ts 271595275, len 000160)
    Sent RTP packet to 10.168.155.51:8028 (type 00, seq 028801, ts 271595272, len 000160)
    Got RTP packet from 10.20.30.54:63298 (type 09, seq 015954, ts 3979749473, len 000160)
    Sent RTP packet to 10.20.30.54:63298 (type 09, seq 062442, ts 2548000, len 000160)
    Sent RTP packet to 10.168.155.117:16454 (type 00, seq 051798, ts 1196800, len 000160)
    Sent RTP packet to 192.168.177.68:59956 (type 00, seq 021014, ts 1483040, len 000160)
    Got RTP packet from 10.20.30.54:63298 (type 09, seq 015955, ts 3979749633, len 000160)
    Got RTP packet from 10.168.155.117:16454 (type 00, seq 017439, ts 173158750, len 000160)
    Sent RTP packet to 10.20.30.54:63298 (type 09, seq 062443, ts 2548160, len 000160)
    Sent RTP packet to 10.168.155.117:16454 (type 00, seq 051799, ts 1196960, len 000160)
    Got RTP packet from 192.168.177.68:59956 (type 00, seq 009262, ts 683942433, len 000160)
    Sent RTP packet to 192.168.177.68:59956 (type 00, seq 021015, ts 1483200, len 000160)
    Got RTP packet from 192.168.177.156:16410 (type 00, seq 001820, ts 271595435, len 000160)
    Sent RTP packet to 10.168.155.51:8028 (type 00, seq 028802, ts 271595432, len 000160)
    Got RTP packet from 192.168.177.68:59956 (type 00, seq 009263, ts 683942593, len 000160)
    Got RTP packet from 192.168.177.156:16410 (type 00, seq 001821, ts 271595595, len 000160)
    Sent RTP packet to 10.168.155.51:8028 (type 00, seq 028803, ts 271595592, len 000160)
    Got RTP packet from 10.168.155.117:16454 (type 00, seq 017440, ts 173158910, len 000160)
    Sent RTP packet to 10.20.30.54:63298 (type 09, seq 062444, ts 2548320, len 000160)
    Sent RTP packet to 10.168.155.117:16454 (type 00, seq 051800, ts 1197120, len 000160)
    Sent RTP packet to 192.168.177.68:59956 (type 00, seq 021016, ts 1483360, len 000160)
    Got RTP packet from 10.168.155.117:16454 (type 00, seq 017441, ts 173159070, len 000160)
    Got RTP packet from 192.168.177.68:59956 (type 00, seq 009264, ts 683942753, len 000160)
    Got RTP packet from 192.168.177.156:16410 (type 00, seq 001822, ts 271595755, len 000160)
    Sent RTP packet to 10.168.155.51:8028 (type 00, seq 028804, ts 271595752, len 000160)
    Got RTP packet from 10.20.30.54:63298 (type 09, seq 015956, ts 3979749793, len 000160)
    Sent RTP packet to 10.20.30.54:63298 (type 09, seq 062445, ts 2548480, len 000160)
    Sent RTP packet to 10.168.155.117:16454 (type 00, seq 051801, ts 1197280, len 000160)
    Sent RTP packet to 192.168.177.68:59956 (type 00, seq 021017, ts 1483520, len 000160)
    Got RTP packet from 10.168.155.117:16454 (type 00, seq 017442, ts 173159230, len 000160)
    Got RTP packet from 192.168.177.68:59956 (type 00, seq 009265, ts 683942913, len 000160)
    Got RTP packet from 10.20.30.54:63298 (type 09, seq 015957, ts 3979749953, len 000160)
    Sent RTP packet to 10.20.30.54:63298 (type 09, seq 062446, ts 2548640, len 000160)
    Sent RTP packet to 10.168.155.117:16454 (type 00, seq 051802, ts 1197440, len 000160)
    Got RTP packet from 192.168.177.156:16410 (type 00, seq 001823, ts 271595915, len 000160)
    Sent RTP packet to 10.168.155.51:8028 (type 00, seq 028805, ts 271595912, len 000160)
    Sent RTP packet to 192.168.177.68:59956 (type 00, seq 021018, ts 1483680, len 000160)
    Got RTP packet from 10.20.30.54:63298 (type 09, seq 015958, ts 3979750113, len 000160)
    Got RTP packet from 192.168.177.68:59956 (type 00, seq 009266, ts 683943073, len 000160)
    Got RTP packet from 10.168.155.117:16454 (type 00, seq 017443, ts 173159390, len 000160)
    Got RTP packet from 192.168.177.156:16410 (type 00, seq 001824, ts 271596075, len 000160)
    Sent RTP packet to 10.168.155.51:8028 (type 00, seq 028806, ts 271596072, len 000160)
    Sent RTP packet to 10.20.30.54:63298 (type 09, seq 062447, ts 2548800, len 000160)
    Got RTP packet from 10.20.30.54:63298 (type 09, seq 015959, ts 3979750273, len 000160)
    Sent RTP packet to 10.168.155.117:16454 (type 00, seq 051803, ts 1197600, len 000160)
    Sent RTP packet to 192.168.177.68:59956 (type 00, seq 021019, ts 1483840, len 000160)
    Got RTP packet from 10.168.155.117:16454 (type 00, seq 017444, ts 173159550, len 000160)
    Got RTP packet from 10.20.30.54:63298 (type 09, seq 015960, ts 3979750433, len 000160)
    Sent RTP packet to 10.20.30.54:63298 (type 09, seq 062448, ts 2548960, len 000160)
    Got RTP packet from 192.168.177.68:59956 (type 00, seq 009267, ts 683943233, len 000160)
    Sent RTP packet to 10.168.155.117:16454 (type 00, seq 051804, ts 1197760, len 000160)
    Sent RTP packet to 192.168.177.68:59956 (type 00, seq 021020, ts 1484000, len 000160)
    Got RTP packet from 192.168.177.156:16410 (type 00, seq 001825, ts 271596235, len 000160)
    Sent RTP packet to 10.168.155.51:8028 (type 00, seq 028807, ts 271596232, len 000160)
    Got RTP packet from 192.168.177.68:59956 (type 00, seq 009268, ts 683943393, len 000160)
    Got RTP packet from 10.168.155.117:16454 (type 00, seq 017445, ts 173159710, len 000160)
    Got RTP packet from 192.168.177.156:16410 (type 00, seq 001826, ts 271596395, len 000160)
    Sent RTP packet to 10.168.155.51:8028 (type 00, seq 028808, ts 271596392, len 000160)
    Sent RTP packet to 10.20.30.54:63298 (type 09, seq 062449, ts 2549120, len 000160)
    Sent RTP packet to 10.168.155.117:16454 (type 00, seq 051805, ts 1197920, len 000160)
    Sent RTP packet to 192.168.177.68:59956 (type 00, seq 021021, ts 1484160, len 000160)
    Got RTP packet from 192.168.177.68:59956 (type 00, seq 009269, ts 683943553, len 000160)
    Got RTP packet from 10.20.30.54:63298 (type 09, seq 015961, ts 3979750593, len 000160)
    Got RTP packet from 192.168.177.156:16410 (type 00, seq 001827, ts 271596555, len 000160)
    Sent RTP packet to 10.168.155.51:8028 (type 00, seq 028809, ts 271596552, len 000160)
    Got RTP packet from 10.168.155.117:16454 (type 00, seq 017446, ts 173159870, len 000160)
    Sent RTP packet to 10.20.30.54:63298 (type 09, seq 062450, ts 2549280, len 000160)
    Sent RTP packet to 10.168.155.117:16454 (type 00, seq 051806, ts 1198080, len 000160)
    Sent RTP packet to 192.168.177.68:59956 (type 00, seq 021022, ts 1484320, len 000160)
    Got RTP packet from 10.168.155.117:16454 (type 00, seq 017447, ts 173160030, len 000160)
    Got RTP packet from 192.168.177.68:59956 (type 00, seq 009270, ts 683943713, len 000160)
    Sent RTP packet to 10.20.30.54:63298 (type 09, seq 062451, ts 2549440, len 000160)
    Sent RTP packet to 10.168.155.117:16454 (type 00, seq 051807, ts 1198240, len 000160)
    Sent RTP packet to 192.168.177.68:59956 (type 00, seq 021023, ts 1484480, len 000160)
    Got RTP packet from 192.168.177.156:16410 (type 00, seq 001828, ts 271596715, len 000160)
    Sent RTP packet to 10.168.155.51:8028 (type 00, seq 028810, ts 271596712, len 000160)
    Got RTP packet from 10.20.30.54:63298 (type 09, seq 015964, ts 3979751073, len 000160)
    Got RTP packet from 192.168.177.68:59956 (type 00, seq 009271, ts 683943873, len 000160)
    Got RTP packet from 10.168.155.117:16454 (type 00, seq 017448, ts 173160190, len 000160)
    Got RTP packet from 192.168.177.156:16410 (type 00, seq 001829, ts 271596875, len 000160)
    Sent RTP packet to 10.168.155.51:8028 (type 00, seq 028811, ts 271596872, len 000160)
    Sent RTP packet to 10.20.30.54:63298 (type 09, seq 062452, ts 2549600, len 000160)
    Sent RTP packet to 10.168.155.117:16454 (type 00, seq 051808, ts 1198400, len 000160)
    Got RTP packet from 10.20.30.54:63298 (type 09, seq 015965, ts 3979751233, len 000160)
    Sent RTP packet to 192.168.177.68:59956 (type 00, seq 021024, ts 1484640, len 000160)
    Got RTP packet from 10.20.30.54:63298 (type 09, seq 015966, ts 3979751393, len 000160)
    Got RTP packet from 192.168.177.68:59956 (type 00, seq 009272, ts 683944033, len 000160)
    Got RTP packet from 10.168.155.117:16454 (type 00, seq 017449, ts 173160350, len 000160)
    Got RTP packet from 192.168.177.156:16410 (type 00, seq 001830, ts 271597035, len 000160)
    Sent RTP packet to 10.168.155.51:8028 (type 00, seq 028812, ts 271597032, len 000160)
    Sent RTP packet to 10.20.30.54:63298 (type 09, seq 062453, ts 2549760, len 000160)
    Sent RTP packet to 10.168.155.117:16454 (type 00, seq 051809, ts 1198560, len 000160)
    Got RTP packet from 10.20.30.54:63298 (type 09, seq 015967, ts 3979751553, len 000160)
    Sent RTP packet to 192.168.177.68:59956 (type 00, seq 021025, ts 1484800, len 000160)
    Got RTP packet from 192.168.177.68:59956 (type 00, seq 009273, ts 683944193, len 000160)
    Got RTP packet from 192.168.177.156:16410 (type 00, seq 001831, ts 271597195, len 000160)
    Sent RTP packet to 10.168.155.51:8028 (type 00, seq 028813, ts 271597192, len 000160)
    Got RTP packet from 10.168.155.117:16454 (type 00, seq 017450, ts 173160510, len 000160)
    Sent RTP packet to 10.20.30.54:63298 (type 09, seq 062454, ts 2549920, len 000160)
    Sent RTP packet to 10.168.155.117:16454 (type 00, seq 051810, ts 1198720, len 000160)
    Sent RTP packet to 192.168.177.68:59956 (type 00, seq 021026, ts 1484960, len 000160)
    Got RTP packet from 192.168.177.68:59956 (type 00, seq 009274, ts 683944353, len 000160)
    Got RTP packet from 10.20.30.54:63298 (type 09, seq 015968, ts 3979751713, len 000160)
    Got RTP packet from 10.168.155.117:16454 (type 00, seq 017451, ts 173160670, len 000160)
    Got RTP packet from 192.168.177.156:16410 (type 00, seq 001832, ts 271597355, len 000160)
    Sent RTP packet to 10.168.155.51:8028 (type 00, seq 028814, ts 271597352, len 000160)
    Sent RTP packet to 10.20.30.54:63298 (type 09, seq 062455, ts 2550080, len 000160)
    Sent RTP packet to 10.168.155.117:16454 (type 00, seq 051811, ts 1198880, len 000160)
    Sent RTP packet to 192.168.177.68:59956 (type 00, seq 021027, ts 1485120, len 000160)
    Got RTP packet from 192.168.177.68:59956 (type 00, seq 009275, ts 683944513, len 000160)
    Got RTP packet from 10.168.155.117:16454 (type 00, seq 017452, ts 173160830, len 000160)
    Got RTP packet from 10.20.30.54:63298 (type 09, seq 015969, ts 3979751873, len 000160)
    Sent RTP packet to 10.20.30.54:63298 (type 09, seq 062456, ts 2550240, len 000160)
    Sent RTP packet to 10.168.155.117:16454 (type 00, seq 051812, ts 1199040, len 000160)
    Got RTP packet from 192.168.177.156:16410 (type 00, seq 001833, ts 271597515, len 000160)
    Sent RTP packet to 10.168.155.51:8028 (type 00, seq 028815, ts 271597512, len 000160)
    Sent RTP packet to 192.168.177.68:59956 (type 00, seq 021028, ts 1485280, len 000160)
    Got RTP packet from 192.168.177.68:59956 (type 00, seq 009276, ts 683944673, len 000160)
    Got RTP packet from 10.20.30.54:63298 (type 09, seq 015970, ts 3979752033, len 000160)
    Got RTP packet from 10.168.155.117:16454 (type 00, seq 017453, ts 173160990, len 000160)
    Got RTP packet from 192.168.177.156:16410 (type 00, seq 001834, ts 271597675, len 000160)
    Sent RTP packet to 10.168.155.51:8028 (type 00, seq 028816, ts 271597672, len 000160)
    Sent RTP packet to 10.20.30.54:63298 (type 09, seq 062457, ts 2550400, len 000160)
    Sent RTP packet to 10.168.155.117:16454 (type 00, seq 051813, ts 1199200, len 000160)
    Sent RTP packet to 192.168.177.68:59956 (type 00, seq 021029, ts 1485440, len 000160)
    Got RTP packet from 10.168.155.117:16454 (type 00, seq 017454, ts 173161150, len 000160)
    Sent RTP packet to 10.20.30.54:63298 (type 09, seq 062458, ts 2550560, len 000160)
    Sent RTP packet to 10.168.155.117:16454 (type 00, seq 051814, ts 1199360, len 000160)
    Got RTP packet from 192.168.177.68:59956 (type 00, seq 009277, ts 683944833, len 000160)
    Sent RTP packet to 192.168.177.68:59956 (type 00, seq 021030, ts 1485600, len 000160)
    Got RTP packet from 192.168.177.156:16410 (type 00, seq 001835, ts 271597835, len 000160)
    Sent RTP packet to 10.168.155.51:8028 (type 00, seq 028817, ts 271597832, len 000160)
    Got RTP packet from 192.168.177.68:59956 (type 00, seq 009278, ts 683944993, len 000160)
    Got RTP packet from 192.168.177.156:16410 (type 00, seq 001836, ts 271597995, len 000160)
    Sent RTP packet to 10.168.155.51:8028 (type 00, seq 028818, ts 271597992, len 000160)
    Got RTP packet from 10.168.155.117:16454 (type 00, seq 017455, ts 173161310, len 000160)
    Sent RTP packet to 10.20.30.54:63298 (type 09, seq 062459, ts 2550720, len 000160)
    Sent RTP packet to 10.168.155.117:16454 (type 00, seq 051815, ts 1199520, len 000160)
    Sent RTP packet to 192.168.177.68:59956 (type 00, seq 021031, ts 1485760, len 000160)
    Got RTP packet from 192.168.177.68:59956 (type 00, seq 009279, ts 683945153, len 000160)
    Got RTP packet from 10.20.30.54:63298 (type 09, seq 015971, ts 3979752193, len 000160)
    Got RTP packet from 10.168.155.117:16454 (type 00, seq 017456, ts 173161470, len 000160)
    Got RTP packet from 192.168.177.156:16410 (type 00, seq 001837, ts 271598155, len 000160)
    Sent RTP packet to 10.168.155.51:8028 (type 00, seq 028819, ts 271598152, len 000160)
    Sent RTP packet to 10.20.30.54:63298 (type 09, seq 062460, ts 2550880, len 000160)
    Sent RTP packet to 10.168.155.117:16454 (type 00, seq 051816, ts 1199680, len 000160)
    Sent RTP packet to 192.168.177.68:59956 (type 00, seq 021032, ts 1485920, len 000160)
    Got RTP packet from 192.168.177.68:59956 (type 00, seq 009280, ts 683945313, len 000160)
    Got RTP packet from 10.168.155.117:16454 (type 00, seq 017457, ts 173161630, len 000160)
    Sent RTP packet to 10.20.30.54:63298 (type 09, seq 062461, ts 2551040, len 000160)
    Sent RTP packet to 10.168.155.117:16454 (type 00, seq 051817, ts 1199840, len 000160)
    Got RTP packet from 192.168.177.156:16410 (type 00, seq 001838, ts 271598315, len 000160)
    Sent RTP packet to 10.168.155.51:8028 (type 00, seq 028820, ts 271598312, len 000160)
    Sent RTP packet to 192.168.177.68:59956 (type 00, seq 021033, ts 1486080, len 000160)
    Got RTP packet from 10.168.155.117:16454 (type 00, seq 017458, ts 173161790, len 000160)
    Got RTP packet from 10.20.30.54:63298 (type 09, seq 015972, ts 3979752353, len 000160)
    Sent RTP packet to 10.20.30.54:63298 (type 09, seq 062462, ts 2551200, len 000160)
    Sent RTP packet to 10.168.155.117:16454 (type 00, seq 051818, ts 1200000, len 000160)
    Got RTP packet from 10.20.30.54:63298 (type 09, seq 015974, ts 3979752673, len 000160)
    Sent RTP packet to 192.168.177.68:59956 (type 00, seq 021034, ts 1486240, len 000160)
    Got RTP packet from 192.168.177.68:59956 (type 00, seq 009281, ts 683945473, len 000160)
    Got RTP packet from 192.168.177.156:16410 (type 00, seq 001839, ts 271598475, len 000160)
    Sent RTP packet to 10.168.155.51:8028 (type 00, seq 028821, ts 271598472, len 000160)
    Got RTP packet from 192.168.177.68:59956 (type 00, seq 009282, ts 683945633, len 000160)
    Got RTP packet from 10.168.155.117:16454 (type 00, seq 017459, ts 173161950, len 000160)
    Got RTP packet from 192.168.177.156:16410 (type 00, seq 001840, ts 271598635, len 000160)
    Sent RTP packet to 10.168.155.51:8028 (type 00, seq 028822, ts 271598632, len 000160)
    Sent RTP packet to 10.20.30.54:63298 (type 09, seq 062463, ts 2551360, len 000160)
    Sent RTP packet to 10.168.155.117:16454 (type 00, seq 051819, ts 1200160, len 000160)
    Sent RTP packet to 192.168.177.68:59956 (type 00, seq 021035, ts 1486400, len 000160)
    Got RTP packet from 192.168.177.68:59956 (type 00, seq 009283, ts 683945793, len 000160)
    Got RTP packet from 10.20.30.54:63298 (type 09, seq 015975, ts 3979752833, len 000160)
    Got RTP packet from 10.168.155.117:16454 (type 00, seq 017460, ts 173162110, len 000160)
    Got RTP packet from 192.168.177.156:16410 (type 00, seq 001841, ts 271598795, len 000160)
    Sent RTP packet to 10.168.155.51:8028 (type 00, seq 028823, ts 271598792, len 000160)
    Sent RTP packet to 10.20.30.54:63298 (type 09, seq 062464, ts 2551520, len 000160)
    Sent RTP packet to 10.168.155.117:16454 (type 00, seq 051820, ts 1200320, len 000160)
    Sent RTP packet to 192.168.177.68:59956 (type 00, seq 021036, ts 1486560, len 000160)
    Got RTP packet from 10.20.30.54:63298 (type 09, seq 015976, ts 3979752993, len 000160)
    Got RTP packet from 192.168.177.68:59956 (type 00, seq 009284, ts 683945953, len 000160)
    Got RTP packet from 192.168.177.156:16410 (type 00, seq 001842, ts 271598955, len 000160)
    Sent RTP packet to 10.168.155.51:8028 (type 00, seq 028824, ts 271598952, len 000160)
    Got RTP packet from 10.168.155.117:16454 (type 00, seq 017461, ts 173162270, len 000160)
    Sent RTP packet to 10.20.30.54:63298 (type 09, seq 062465, ts 2551680, len 000160)
    Sent RTP packet to 10.168.155.117:16454 (type 00, seq 051821, ts 1200480, len 000160)
    Got RTP packet from 10.20.30.54:63298 (type 09, seq 015977, ts 3979753153, len 000160)
    Sent RTP packet to 192.168.177.68:59956 (type 00, seq 021037, ts 1486720, len 000160)
    Got RTP packet from 192.168.177.68:59956 (type 00, seq 009285, ts 683946113, len 000160)
    Got RTP packet from 10.168.155.117:16454 (type 00, seq 017462, ts 173162430, len 000160)
    Got RTP packet from 192.168.177.156:16410 (type 00, seq 001843, ts 271599115, len 000160)
    Sent RTP packet to 10.168.155.51:8028 (type 00, seq 028825, ts 271599112, len 000160)
    Sent RTP packet to 10.20.30.54:63298 (type 09, seq 062466, ts 2551840, len 000160)
    Sent RTP packet to 10.168.155.117:16454 (type 00, seq 051822, ts 1200640, len 000160)
    Sent RTP packet to 192.168.177.68:59956 (type 00, seq 021038, ts 1486880, len 000160)
    Got RTP packet from 192.168.177.68:59956 (type 00, seq 009286, ts 683946273, len 000160)
    Got RTP packet from 192.168.177.156:16410 (type 00, seq 001844, ts 271599275, len 000160)
    Sent RTP packet to 10.168.155.51:8028 (type 00, seq 028826, ts 271599272, len 000160)
    Got RTP packet from 10.168.155.117:16454 (type 00, seq 017463, ts 173162590, len 000160)
    Got RTP packet from 10.20.30.54:63298 (type 09, seq 015978, ts 3979753313, len 000160)
    Sent RTP packet to 10.20.30.54:63298 (type 09, seq 062467, ts 2552000, len 000160)
    Sent RTP packet to 10.168.155.117:16454 (type 00, seq 051823, ts 1200800, len 000160)
    Sent RTP packet to 192.168.177.68:59956 (type 00, seq 021039, ts 1487040, len 000160)
    Got RTP packet from 10.20.30.54:63298 (type 09, seq 015979, ts 3979753473, len 000160)
    Got RTP packet from 10.168.155.117:16454 (type 00, seq 017464, ts 173162750, len 000160)
    Sent RTP packet to 10.20.30.54:63298 (type 09, seq 062468, ts 2552160, len 000160)
    Sent RTP packet to 10.168.155.117:16454 (type 00, seq 051824, ts 1200960, len 000160)
    Got RTP packet from 192.168.177.68:59956 (type 00, seq 009287, ts 683946433, len 000160)
    Sent RTP packet to 192.168.177.68:59956 (type 00, seq 021040, ts 1487200, len 000160)
    Got RTP packet from 192.168.177.156:16410 (type 00, seq 001845, ts 271599435, len 000160)
    Sent RTP packet to 10.168.155.51:8028 (type 00, seq 028827, ts 271599432, len 000160)
    Got RTP packet from 10.168.155.117:16454 (type 00, seq 017465, ts 173162910, len 000160)
    Got RTP packet from 192.168.177.68:59956 (type 00, seq 009288, ts 683946593, len 000160)
    Got RTP packet from 192.168.177.156:16410 (type 00, seq 001846, ts 271599595, len 000160)
    Sent RTP packet to 10.168.155.51:8028 (type 00, seq 028828, ts 271599592, len 000160)
    Sent RTP packet to 10.20.30.54:63298 (type 09, seq 062469, ts 2552320, len 000160)
    Sent RTP packet to 10.168.155.117:16454 (type 00, seq 051825, ts 1201120, len 000160)
    Got RTP packet from 10.20.30.54:63298 (type 09, seq 015980, ts 3979753633, len 000160)
    Sent RTP packet to 192.168.177.68:59956 (type 00, seq 021041, ts 1487360, len 000160)
    Got RTP packet from 10.168.155.117:16454 (type 00, seq 017466, ts 173163070, len 000160)
    Got RTP packet from 192.168.177.68:59956 (type 00, seq 009289, ts 683946753, len 000160)
    Sent RTP packet to 10.20.30.54:63298 (type 09, seq 062470, ts 2552480, len 000160)
    Sent RTP packet to 10.168.155.117:16454 (type 00, seq 051826, ts 1201280, len 000160)
    Got RTP packet from 192.168.177.156:16410 (type 00, seq 001847, ts 271599755, len 000160)
    Sent RTP packet to 10.168.155.51:8028 (type 00, seq 028829, ts 271599752, len 000160)
    Sent RTP packet to 192.168.177.68:59956 (type 00, seq 021042, ts 1487520, len 000160)
    Got RTP packet from 192.168.177.68:59956 (type 00, seq 009290, ts 683946913, len 000160)
    Got RTP packet from 10.168.155.117:16454 (type 00, seq 017467, ts 173163230, len 000160)
    Sent RTP packet to 10.20.30.54:63298 (type 09, seq 062471, ts 2552640, len 000160)
    Sent RTP packet to 10.168.155.117:16454 (type 00, seq 051827, ts 1201440, len 000160)
    Got RTP packet from 192.168.177.156:16410 (type 00, seq 001848, ts 271599915, len 000160)
    Sent RTP packet to 10.168.155.51:8028 (type 00, seq 028830, ts 271599912, len 000160)
    Sent RTP packet to 192.168.177.68:59956 (type 00, seq 021043, ts 1487680, len 000160)
    Got RTP packet from 10.20.30.54:63298 (type 09, seq 015981, ts 3979753793, len 000160)
    Got RTP packet from 10.168.155.117:16454 (type 00, seq 017468, ts 173163390, len 000160)
    Sent RTP packet to 10.20.30.54:63298 (type 09, seq 062472, ts 2552800, len 000160)
    Sent RTP packet to 10.168.155.117:16454 (type 00, seq 051828, ts 1201600, len 000160)
    Sent RTP packet to 192.168.177.68:59956 (type 00, seq 021044, ts 1487840, len 000160)
    Got RTP packet from 192.168.177.68:59956 (type 00, seq 009291, ts 683947073, len 000160)
    Got RTP packet from 10.20.30.54:63298 (type 09, seq 015982, ts 3979753953, len 000160)
    Got RTP packet from 192.168.177.156:16410 (type 00, seq 001849, ts 271600075, len 000160)
    Sent RTP packet to 10.168.155.51:8028 (type 00, seq 028831, ts 271600072, len 000160)
    Got RTP packet from 192.168.177.68:59956 (type 00, seq 009292, ts 683947233, len 000160)
    Got RTP packet from 10.168.155.117:16454 (type 00, seq 017469, ts 173163550, len 000160)
    Got RTP packet from 192.168.177.156:16410 (type 00, seq 001850, ts 271600235, len 000160)
    Sent RTP packet to 10.168.155.51:8028 (type 00, seq 028832, ts 271600232, len 000160)
    Sent RTP packet to 10.20.30.54:63298 (type 09, seq 062473, ts 2552960, len 000160)
    Sent RTP packet to 10.168.155.117:16454 (type 00, seq 051829, ts 1201760, len 000160)
    Sent RTP packet to 192.168.177.68:59956 (type 00, seq 021045, ts 1488000, len 000160)
    Got RTP packet from 192.168.177.68:59956 (type 00, seq 009293, ts 683947393, len 000160)
    Got RTP packet from 10.20.30.54:63298 (type 09, seq 015985, ts 3979754433, len 000160)
    Got RTP packet from 10.168.155.117:16454 (type 00, seq 017470, ts 173163710, len 000160)
    Sent RTP packet to 10.20.30.54:63298 (type 09, seq 062474, ts 2553120, len 000160)
    Got RTP packet from 192.168.177.156:16410 (type 00, seq 001851, ts 271600395, len 000160)
    Sent RTP packet to 10.168.155.51:8028 (type 00, seq 028833, ts 271600392, len 000160)
    Sent RTP packet to 10.168.155.117:16454 (type 00, seq 051830, ts 1201920, len 000160)
    Sent RTP packet to 192.168.177.68:59956 (type 00, seq 021046, ts 1488160, len 000160)
    Got RTP packet from 192.168.177.68:59956 (type 00, seq 009294, ts 683947553, len 000160)
    Got RTP packet from 10.168.155.117:16454 (type 00, seq 017471, ts 173163870, len 000160)
    Sent RTP packet to 10.20.30.54:63298 (type 09, seq 062475, ts 2553280, len 000160)
    Sent RTP packet to 10.168.155.117:16454 (type 00, seq 051831, ts 1202080, len 000160)
    Got RTP packet from 192.168.177.156:16410 (type 00, seq 001852, ts 271600555, len 000160)
    Sent RTP packet to 10.168.155.51:8028 (type 00, seq 028834, ts 271600552, len 000160)
    Got RTP packet from 10.20.30.54:63298 (type 09, seq 015986, ts 3979754593, len 000160)
    Sent RTP packet to 192.168.177.68:59956 (type 00, seq 021047, ts 1488320, len 000160)
    Got RTP packet from 10.168.155.117:16454 (type 00, seq 017472, ts 173164030, len 000160)
    Sent RTP packet to 10.20.30.54:63298 (type 09, seq 062476, ts 2553440, len 000160)
    Sent RTP packet to 10.168.155.117:16454 (type 00, seq 051832, ts 1202240, len 000160)
    Sent RTP packet to 192.168.177.68:59956 (type 00, seq 021048, ts 1488480, len 000160)
    Got RTP packet from 192.168.177.68:59956 (type 00, seq 009295, ts 683947713, len 000160)
    Got RTP packet from 192.168.177.156:16410 (type 00, seq 001853, ts 271600715, len 000160)
    Sent RTP packet to 10.168.155.51:8028 (type 00, seq 028835, ts 271600712, len 000160)
    Got RTP packet from 192.168.177.68:59956 (type 00, seq 009296, ts 683947873, len 000160)
    Got RTP packet from 10.168.155.117:16454 (type 00, seq 017473, ts 173164190, len 000160)
    Got RTP packet from 192.168.177.156:16410 (type 00, seq 001854, ts 271600875, len 000160)
    Sent RTP packet to 10.168.155.51:8028 (type 00, seq 028836, ts 271600872, len 000160)
    Sent RTP packet to 10.20.30.54:63298 (type 09, seq 062477, ts 2553600, len 000160)
    Sent RTP packet to 10.168.155.117:16454 (type 00, seq 051833, ts 1202400, len 000160)
    Got RTP packet from 10.20.30.54:63298 (type 09, seq 015987, ts 3979754753, len 000160)
    Got RTP packet from 10.20.30.54:63298 (type 09, seq 015988, ts 3979754913, len 000160)
    Sent RTP packet to 192.168.177.68:59956 (type 00, seq 021049, ts 1488640, len 000160)
    Got RTP packet from 192.168.177.68:59956 (type 00, seq 009297, ts 683948033, len 000160)
    Got RTP packet from 192.168.177.156:16410 (type 00, seq 001855, ts 271601035, len 000160)
    Sent RTP packet to 10.168.155.51:8028 (type 00, seq 028837, ts 271601032, len 000160)
    Got RTP packet from 10.168.155.117:16454 (type 00, seq 017474, ts 173164350, len 000160)
    Sent RTP packet to 10.20.30.54:63298 (type 09, seq 062478, ts 2553760, len 000160)
    Sent RTP packet to 10.168.155.117:16454 (type 00, seq 051834, ts 1202560, len 000160)
    Sent RTP packet to 192.168.177.68:59956 (type 00, seq 021050, ts 1488800, len 000160)
    Got RTP packet from 192.168.177.68:59956 (type 00, seq 009298, ts 683948193, len 000160)
    Got RTP packet from 10.168.155.117:16454 (type 00, seq 017475, ts 173164510, len 000160)
    Got RTP packet from 192.168.177.156:16410 (type 00, seq 001856, ts 271601195, len 000160)
    Sent RTP packet to 10.168.155.51:8028 (type 00, seq 028838, ts 271601192, len 000160)
    Got RTP packet from 10.20.30.54:63298 (type 09, seq 015990, ts 3979755233, len 000160)
    Sent RTP packet to 10.20.30.54:63298 (type 09, seq 062479, ts 2553920, len 000160)
    Sent RTP packet to 10.168.155.117:16454 (type 00, seq 051835, ts 1202720, len 000160)
    Got RTP packet from 10.20.30.54:63298 (type 09, seq 015992, ts 3979755553, len 000160)
    Sent RTP packet to 192.168.177.68:59956 (type 00, seq 021051, ts 1488960, len 000160)
    Got RTP packet from 10.20.30.54:63298 (type 09, seq 015993, ts 3979755713, len 000160)
    Got RTP packet from 10.168.155.117:16454 (type 00, seq 017476, ts 173164670, len 000160)
    Got RTP packet from 10.20.30.54:63298 (type 09, seq 015994, ts 3979755873, len 000160)
    Got RTP packet from 192.168.177.68:59956 (type 00, seq 009299, ts 683948353, len 000160)
    Sent RTP packet to 10.20.30.54:63298 (type 09, seq 062480, ts 2554080, len 000160)
    Sent RTP packet to 10.168.155.117:16454 (type 00, seq 051836, ts 1202880, len 000160)
    Got RTP packet from 192.168.177.156:16410 (type 00, seq 001857, ts 271601355, len 000160)
    Sent RTP packet to 10.168.155.51:8028 (type 00, seq 028839, ts 271601352, len 000160)
    Sent RTP packet to 192.168.177.68:59956 (type 00, seq 021052, ts 1489120, len 000160)
    Got RTP packet from 192.168.177.68:59956 (type 00, seq 009300, ts 683948513, len 000160)
    Got RTP packet from 10.20.30.54:63298 (type 09, seq 015995, ts 3979756033, len 000160)
    Got RTP packet from 10.168.155.117:16454 (type 00, seq 017477, ts 173164830, len 000160)
    Got RTP packet from 192.168.177.156:16410 (type 00, seq 001858, ts 271601515, len 000160)
    Sent RTP packet to 10.168.155.51:8028 (type 00, seq 028840, ts 271601512, len 000160)
    Sent RTP packet to 10.20.30.54:63298 (type 09, seq 062481, ts 2554240, len 000160)
    Sent RTP packet to 10.168.155.117:16454 (type 00, seq 051837, ts 1203040, len 000160)
    Sent RTP packet to 192.168.177.68:59956 (type 00, seq 021053, ts 1489280, len 000160)
    Got RTP packet from 192.168.177.68:59956 (type 00, seq 009301, ts 683948673, len 000160)
    Got RTP packet from 10.168.155.117:16454 (type 00, seq 017478, ts 173164990, len 000160)
    Got RTP packet from 192.168.177.156:16410 (type 00, seq 001859, ts 271601675, len 000160)
    Sent RTP packet to 10.168.155.51:8028 (type 00, seq 028841, ts 271601672, len 000160)
    Sent RTP packet to 10.20.30.54:63298 (type 09, seq 062482, ts 2554400, len 000160)
    Sent RTP packet to 10.168.155.117:16454 (type 00, seq 051838, ts 1203200, len 000160)
    Sent RTP packet to 192.168.177.68:59956 (type 00, seq 021054, ts 1489440, len 000160)
    Got RTP packet from 10.20.30.54:63298 (type 09, seq 015996, ts 3979756193, len 000160)
    Got RTP packet from 10.168.155.117:16454 (type 00, seq 017479, ts 173165150, len 000160)
    Sent RTP packet to 10.20.30.54:63298 (type 09, seq 062483, ts 2554560, len 000160)
    Sent RTP packet to 10.168.155.117:16454 (type 00, seq 051839, ts 1203360, len 000160)
    Got RTP packet from 192.168.177.68:59956 (type 00, seq 009302, ts 683948833, len 000160)
    Sent RTP packet to 192.168.177.68:59956 (type 00, seq 021055, ts 1489600, len 000160)
    Got RTP packet from 10.20.30.54:63298 (type 09, seq 015997, ts 3979756353, len 000160)
    Got RTP packet from 192.168.177.156:16410 (type 00, seq 001860, ts 271601835, len 000160)
    Sent RTP packet to 10.168.155.51:8028 (type 00, seq 028842, ts 271601832, len 000160)
    Got RTP packet from 10.168.155.117:16454 (type 00, seq 017480, ts 173165310, len 000160)
    Got RTP packet from 192.168.177.68:59956 (type 00, seq 009303, ts 683948993, len 000160)
    Sent RTP packet to 10.20.30.54:63298 (type 09, seq 062484, ts 2554720, len 000160)
    Got RTP packet from 192.168.177.156:16410 (type 00, seq 001861, ts 271601995, len 000160)
    Sent RTP packet to 10.168.155.51:8028 (type 00, seq 028843, ts 271601992, len 000160)
    Sent RTP packet to 10.168.155.117:16454 (type 00, seq 051840, ts 1203520, len 000160)
    Sent RTP packet to 192.168.177.68:59956 (type 00, seq 021056, ts 1489760, len 000160)
    Got RTP packet from 10.20.30.54:63298 (type 09, seq 015998, ts 3979756513, len 000160)
    Got RTP packet from 192.168.177.68:59956 (type 00, seq 009304, ts 683949153, len 000160)
    Got RTP packet from 10.168.155.117:16454 (type 00, seq 017481, ts 173165470, len 000160)
    Got RTP packet from 192.168.177.156:16410 (type 00, seq 001862, ts 271602155, len 000160)
    Sent RTP packet to 10.168.155.51:8028 (type 00, seq 028844, ts 271602152, len 000160)
    Sent RTP packet to 10.20.30.54:63298 (type 09, seq 062485, ts 2554880, len 000160)
    Sent RTP packet to 10.168.155.117:16454 (type 00, seq 051841, ts 1203680, len 000160)
    Sent RTP packet to 192.168.177.68:59956 (type 00, seq 021057, ts 1489920, len 000160)
    Got RTP packet from 10.168.155.117:16454 (type 00, se

  12. Hola, tengo problemas con las llamadas salientes no se escucha en ambos sentidos, los ejecutivos no escuchan al cliente y viceversa

  13. Hola tengo problemas con las llamadas salientes, ni el ejecutivo escucha al cliente ni viceversa, porfa ayuda

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *

*
To prove you're a person (not a spam script), type the security word shown in the picture. Click on the picture to hear an audio file of the word.
Anti-spam image