[mobicents-public] Could not use DTMF at MMS v2.0.0.CR2

59 views
Skip to first unread message

Normandes Jr

unread,
May 7, 2010, 2:45:49 PM5/7/10
to mobicents-public
I could not use DTMF at MMS v2.0.0.CR2.
Look my code:

public void onCreateConnectionResponse(CreateConnectionResponse event,
ActivityContextInterface aci) {
...
MgcpConnectionActivity mgcpConnectionActivity =
(MgcpConnectionActivity) aci.getActivity();
String audioFileUrl = "file:///tmp/8kalaw.wav";
EndpointIdentifier eid = event.getSpecificEndpointIdentifier();
MgcpEndpointActivity eActivity =
mgcpProvider.getEndpointActivity(eid);
play(eActivity, mgcpConnectionActivity, audioFileUrl);
}

public void play(MgcpEndpointActivity eActivity,
MgcpConnectionActivity connectionActivity, String audioFileUrl) {
EndpointIdentifier endpointID = eActivity.getEndpointIdentifier();
ConnectionIdentifier connectionID = new
ConnectionIdentifier(connectionActivity.getConnectionIdentifier());

NotificationRequest notificationRequest = new
NotificationRequest(this, endpointID,
mgcpProvider.getUniqueRequestIdentifier());
RequestedAction[] actions = new RequestedAction[]
{ RequestedAction.NotifyImmediately };
EventName[] signalRequests = null;
signalRequests = new EventName[] { new
EventName(PackageName.Announcement,
MgcpEvent.ann.withParm(audioFileUrl),connectionID) };
notificationRequest.setSignalRequests(signalRequests);
RequestedEvent[] requestedEvents = {
new RequestedEvent(new EventName(PackageName.Announcement,
MgcpEvent.oc,connectionID), actions),
new RequestedEvent(new EventName(PackageName.Announcement,
MgcpEvent.of,connectionID), actions),
new RequestedEvent(new EventName(PackageName.Dtmf,
MgcpEvent.dtmf0,connectionID), actions),
new RequestedEvent(new EventName(PackageName.Dtmf,
MgcpEvent.dtmf1,connectionID), actions),
new RequestedEvent(new EventName(PackageName.Dtmf,
MgcpEvent.dtmf2,connectionID), actions),
new RequestedEvent(new EventName(PackageName.Dtmf,
MgcpEvent.dtmf3,connectionID), actions),
new RequestedEvent(new EventName(PackageName.Dtmf,
MgcpEvent.dtmf4,connectionID), actions),
new RequestedEvent(new EventName(PackageName.Dtmf,
MgcpEvent.dtmf5,connectionID), actions),
new RequestedEvent(new EventName(PackageName.Dtmf,
MgcpEvent.dtmf6,connectionID), actions),
new RequestedEvent(new EventName(PackageName.Dtmf,
MgcpEvent.dtmf7,connectionID), actions),
new RequestedEvent(new EventName(PackageName.Dtmf,
MgcpEvent.dtmf8,connectionID), actions),
new RequestedEvent(new EventName(PackageName.Dtmf,
MgcpEvent.dtmf9,connectionID), actions),
new RequestedEvent(new EventName(PackageName.Dtmf,
MgcpEvent.dtmfA,connectionID), actions),
new RequestedEvent(new EventName(PackageName.Dtmf,
MgcpEvent.dtmfB,connectionID), actions),
new RequestedEvent(new EventName(PackageName.Dtmf,
MgcpEvent.dtmfC,connectionID), actions),
new RequestedEvent(new EventName(PackageName.Dtmf,
MgcpEvent.dtmfD,connectionID), actions),
new RequestedEvent(new EventName(PackageName.Dtmf,
MgcpEvent.dtmfStar,connectionID), actions),
new RequestedEvent(new EventName(PackageName.Dtmf,
MgcpEvent.dtmfHash,connectionID), actions) };

notificationRequest.setRequestedEvents(requestedEvents);

notificationRequest.setTransactionHandle(mgcpProvider.getUniqueTransactionHandler());
NotifiedEntity notifiedEntity = new NotifiedEntity("localhost",
"localhost", 2727);
notificationRequest.setNotifiedEntity(notifiedEntity);
mgcpProvider.sendMgcpEvents(new JainMgcpEvent[]
{ notificationRequest });
}

Follow the MGCP stack:

CRCX 805470346 /mobicents/media/packetrelay/$@localhost:2427 MGCP 1.0
C: 3
M: sendrecv

v=0

o=- 3482245775 3482245775 IN IP4 127.0.0.1

s=SJphone

c=IN IP4 127.0.0.1

t=0 0

a=direction:active

m=audio 49158 RTP/AVP 8 0 3 101

a=rtpmap:8 PCMA/8000

a=rtpmap:0 PCMU/8000

a=rtpmap:3 GSM/8000

a=rtpmap:101 telephone-event/8000

a=fmtp:101 0-11,16



200 805470346 The requested transaction was executed normally.
I: 7
Z: /mobicents/media/packetrelay/4@localhost:2427

v=0
o=- 498937 498937 IN IP4 127.0.0.1
s=Mobicents Media Server
c=IN IP4 127.0.0.1
t=0 0
m=audio 1646 RTP/AVP 8 101
a=rtpmap:8 pcma/8000
a=rtpmap:101 telephone-event/8000
a=fmtp:101 0-15
a=control:audio
a=silenceSupp:off


CRCX 805470347 /mobicents/media/IVR/$@127.0.0.1:2427 MGCP 1.0
C: 3
M: sendrecv
Z2: /mobicents/media/packetrelay/4@localhost:2427


200 805470347 The requested transaction was executed normally.
I: 8
Z: /mobicents/media/IVR/5...@127.0.0.1:2427
I2: 9
Z2: /mobicents/media/packetrelay/4...@127.0.0.1:2427


RQNT 805470348 /mobicents/media/IVR/5...@127.0.0.1:2427 MGCP 1.0
N:loca...@127.0.0.1:2727
X:3
S:A/ann@8(file:///tmp/8kalaw.wav)
R:A/oc@8 (N),A/of@8 (N),D/dtmf0@8 (N),D/dtmf1@8 (N),D/dtmf2@8 (N),D/
dtmf3@8 (N),D/dtmf4@8 (N),D/dtmf5@8 (N),D/dtmf6@8 (N),D/dtmf7@8 (N),D/
dtmf8@8 (N),D/dtmf9@8 (N),D/dtmfA@8 (N),D/dtmfB@8 (N),D/dtmfC@8 (N),D/
dtmfD@8 (N),D/dtmfStar@8 (N),D/dtmfHash@8 (N)
200 805470348 The requested transaction was executed normally.
NTFY 805470370 /mobicents/media/IVR/5...@127.0.0.1:2427 MGCP 1.0
N: loca...@127.0.0.1:2727
X: 3
O: A/oc@8


200 805470370 The requested transaction was executed normally.
DLCX 805470350 /mobicents/media/packetrelay/4@localhost:2427 MGCP 1.0
C:7
DLCX 805470351 /mobicents/media/IVR/5...@127.0.0.1:2427 MGCP 1.0
C:8


200 805470350 The requested transaction was executed normally.
200 805470351 The requested transaction was executed normally.


What I am doing wrong?

Thanks,

Normandes Junior.

Vladimir Ralev

unread,
May 7, 2010, 2:52:44 PM5/7/10
to mobicent...@googlegroups.com
What phone do you use? Can you make a wireshark recording. Note that there is a known problem with some phones (linphone) - if the DTMF duration is shorter than 80ms it is not detected (both inband and RTP DTMF).

Normandes Jr

unread,
May 7, 2010, 3:10:58 PM5/7/10
to mobicents-public
I am using SJphone for linux. The configuration for RFC 2833 is:
* Signal duration (ms): 270
* RTP payload type: 101
* Signal volume (-dBm0): 10

This message appears many times at MMS log:
WARN [JitterBuffer] Packet RTP Packet[marker=false, seq=21314,
timestamp=424160, payload_size=160, payload=8] is discarded by jitter
buffer( packet time=53020, current time 53058

Thanks,

Normandes Junior.



On May 7, 3:52 pm, Vladimir Ralev <vladimir.ra...@gmail.com> wrote:
> What phone do you use? Can you make a wireshark recording. Note that there
> is a known problem with some phones (linphone) - if the DTMF duration is
> shorter than 80ms it is not detected (both inband and RTP DTMF).
>
> > CRCX 805470347 /mobicents/media/IV...@127.0.0.1:2427 MGCP 1.0
> > C: 3
> > M: sendrecv
> > Z2: /mobicents/media/packetrelay/4@localhost:2427
>
> > 200 805470347 The requested transaction was executed normally.
> > I: 8
> > Z: /mobicents/media/IV...@127.0.0.1:2427
> > I2: 9
> > Z2: /mobicents/media/packetrela...@127.0.0.1:2427
>
> > RQNT 805470348 /mobicents/media/IV...@127.0.0.1:2427  MGCP 1.0
> > N:localh...@127.0.0.1:2727
> > X:3
> > S:A/ann@8(file:///tmp/8kalaw.wav)
> > R:A/oc@8 (N),A/of@8 (N),D/dtmf0@8 (N),D/dtmf1@8 (N),D/dtmf2@8 (N),D/
> > dtmf3@8 (N),D/dtmf4@8 (N),D/dtmf5@8 (N),D/dtmf6@8 (N),D/dtmf7@8 (N),D/
> > dtmf8@8 (N),D/dtmf9@8 (N),D/dtmfA@8 (N),D/dtmfB@8 (N),D/dtmfC@8 (N),D/
> > dtmfD@8 (N),D/dtmfStar@8 (N),D/dtmfHash@8 (N)
> > 200 805470348 The requested transaction was executed normally.
> > NTFY 805470370 /mobicents/media/IV...@127.0.0.1:2427 MGCP 1.0
> > N: localh...@127.0.0.1:2727
> > X: 3
> > O: A/oc@8
>
> > 200 805470370 The requested transaction was executed normally.
> > DLCX 805470350 /mobicents/media/packetrelay/4@localhost:2427  MGCP 1.0
> > C:7
> > DLCX 805470351 /mobicents/media/IV...@127.0.0.1:2427  MGCP 1.0

Vladimir Ralev

unread,
May 7, 2010, 3:27:12 PM5/7/10
to mobicent...@googlegroups.com
Same with linphone, but this one doesn'r happen regularly.

Normandes Jr

unread,
May 7, 2010, 3:28:27 PM5/7/10
to mobicents-public
I can change the configuration of SJphone, what should I configure to
solve this issue?



On May 7, 4:27 pm, Vladimir Ralev <vladimir.ra...@gmail.com> wrote:
> Same with linphone, but this one doesn'r happen regularly.
>

Vladimir Ralev

unread,
May 7, 2010, 3:45:17 PM5/7/10
to mobicent...@googlegroups.com
Don't know about sj. See if there are settings for shifting the timestamps. But i guess you can also try to increase the jitter buffer in MMS to some big value. It does have some effect with linphone.

Vladimir Ralev

unread,
May 7, 2010, 3:46:03 PM5/7/10
to mobicent...@googlegroups.com
Oleg or Amit should comment on this. Last time I heard, these packets are just arriving too late for some reason.

Normandes Jr

unread,
May 7, 2010, 3:51:37 PM5/7/10
to mobicents-public
I did some changes here. The message about Jitter stop, but the SBB
still not receiving the DTMF... :(

What softphone do you use?



On May 7, 4:45 pm, Vladimir Ralev <vladimir.ra...@gmail.com> wrote:
> Don't know about sj. See if there are settings for shifting the timestamps.
> But i guess you can also try to increase the jitter buffer in MMS to some
> big value. It does have some effect with linphone.
>

Vladimir Ralev

unread,
May 7, 2010, 3:55:21 PM5/7/10
to mobicent...@googlegroups.com
Twinkle works fine, and older linphones (2) work too

Normandes Jr

unread,
May 8, 2010, 8:07:49 AM5/8/10
to mobicents-public
With twinkle works fine. I will try with NGN, and I update here to let
you know about the results.

Thanks.

On May 7, 4:55 pm, Vladimir Ralev <vladimir.ra...@gmail.com> wrote:
> Twinkle works fine, and older linphones (2) work too
>
> ...
>
> read more »

Amit Bhayani

unread,
May 8, 2010, 9:38:54 AM5/8/10
to mobicent...@googlegroups.com
can you please pass the wireshark trace.

Also is the silence suppression on? If yes can you disable it once and try?

Oleg Kulikov

unread,
May 9, 2010, 11:06:21 PM5/9/10
to mobicent...@googlegroups.com
You need to increase duration of the tone. Keep your finger on the button more time.

2010/5/8 Amit Bhayani <amit.b...@gmail.com>

Normandes Jr

unread,
May 11, 2010, 10:16:33 AM5/11/10
to mobicents-public
Amit,

What part of wireshark do you want to see? How could I identify
just the RTP that has the DTMF?

At our NGN mobicents media server could not recognize all the time.

Thanks,

Normandes Junior.


On May 8, 10:38 am, Amit Bhayani <amit.bhay...@gmail.com> wrote:
> can you please pass the wireshark trace.
>
> Also is the silence suppression on? If yes can you disable it once and try?
>
> ...
>
> read more »

Vladimir Ralev

unread,
May 11, 2010, 10:20:37 AM5/11/10
to mobicent...@googlegroups.com
The best would be a complete wireshark trace of the SIP, RTP and MGCP. But most likely just the RTP will suffice. I am pretty sure your phone sends the DTMF, but may be something is off and unexpected in MMS.

Normandes Jr

unread,
May 11, 2010, 1:29:49 PM5/11/10
to mobicents-public
OK, follow the wireshark trace. (I erased some RTP parts)

I pressed the digits: 5,6,7 and 8 but at SBB I just received the digit
7.

Where should be the problem? I really need this funcionality at my
system, if it is simple to solve, please give a direction that I
compile MMS here. If I didn't solve this issue, I will have to migrate
the media server.

Thanks very much.


1 0.000000 ***.***.***197 -> ***.***.***251 SIP/SDP Request:
INVITE sip:012343225****@***.***.***251:5060;user=phone, with session
description
2 0.014396 ***.***.***251 -> ***.***.***197 SIP Status: 100 Trying
3 0.045060 ***.***.***251 -> ***.***.***197 SIP/SDP Status: 200
OK, with session description
4 0.208330 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=28602, Time=3422000192
5 0.227697 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=28603, Time=3422000352
6 0.248332 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=28604, Time=3422000512
7 0.268369 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=28605, Time=3422000672
8 0.287803 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=28606, Time=3422000832
9 0.307788 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=28607, Time=3422000992
10 0.328153 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=28608, Time=3422001152
11 0.338823 ***.***.***197 -> ***.***.***251 SIP Request: ACK sip:
343225****@***.***.***251:5060
12 0.352270 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=28609, Time=3422001312
13 0.368254 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=28610, Time=3422001472
14 0.387808 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=28611, Time=3422001632
15 0.407738 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=28612, Time=3422001792
16 0.427772 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=28613, Time=3422001952
17 0.447758 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=28614, Time=3422002112
18 0.467751 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=28615, Time=3422002272
19 0.487739 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=28616, Time=3422002432
20 0.508238 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=28617, Time=3422002592
21 0.528079 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=28618, Time=3422002752
22 0.547766 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=28619, Time=3422002912
23 0.568393 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=28620, Time=3422003072
24 0.587756 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=28621, Time=3422003232
25 0.607754 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=28622, Time=3422003392
26 0.627717 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=28623, Time=3422003552
27 0.647738 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=28624, Time=3422003712
28 0.667761 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=28625, Time=3422003872
29 0.687715 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=28626, Time=3422004032
30 0.707641 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=28627, Time=3422004192
31 0.728338 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=28628, Time=3422004352
32 0.747715 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=28629, Time=3422004512
33 0.767802 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=28630, Time=3422004672
34 0.787726 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=28631, Time=3422004832
35 0.807740 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=28632, Time=3422004992
36 0.808427 ***.***.***251 -> ***.***.***197 RTP PT=ITU-T G.711
PCMA, SSRC=0x13B77901, Seq=911, Time=0
37 0.827655 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=28633, Time=3422005152
38 0.828907 ***.***.***251 -> ***.***.***197 RTP PT=ITU-T G.711
PCMA, SSRC=0x13B77901, Seq=912, Time=160
39 0.847626 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=28634, Time=3422005312
40 0.848898 ***.***.***251 -> ***.***.***197 RTP PT=ITU-T G.711
PCMA, SSRC=0x13B77901, Seq=913, Time=320
41 0.867658 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=28635, Time=3422005472
42 0.868895 ***.***.***251 -> ***.***.***197 RTP PT=ITU-T G.711
PCMA, SSRC=0x13B77901, Seq=914, Time=480
43 0.887647 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=28636, Time=3422005632
44 0.888920 ***.***.***251 -> ***.***.***197 RTP PT=ITU-T G.711
PCMA, SSRC=0x13B77901, Seq=915, Time=640
45 0.907639 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=28637, Time=3422005792
46 0.908888 ***.***.***251 -> ***.***.***197 RTP PT=ITU-T G.711
PCMA, SSRC=0x13B77901, Seq=916, Time=800
47 0.928038 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=28638, Time=3422005952
451 4.975223 ***.***.***251 -> ***.***.***197 RTP PT=ITU-T G.711
PCMA, SSRC=0x13B77901, Seq=1119, Time=33280
452 4.986871 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=28841, Time=3422038432
453 4.996081 ***.***.***251 -> ***.***.***197 RTP PT=ITU-T G.711
PCMA, SSRC=0x13B77901, Seq=1120, Time=33440
454 5.008113 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=28842, Time=3422038592
455 5.016046 ***.***.***251 -> ***.***.***197 RTP PT=ITU-T G.711
PCMA, SSRC=0x13B77901, Seq=1121, Time=33600
456 5.026969 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=28843, Time=3422038752
457 5.034996 ***.***.***251 -> ***.***.***197 RTP PT=ITU-T G.711
PCMA, SSRC=0x13B77901, Seq=1122, Time=33760
458 5.046824 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=28844, Time=3422038912
459 5.055016 ***.***.***251 -> ***.***.***197 RTP PT=ITU-T G.711
PCMA, SSRC=0x13B77901, Seq=1123, Time=33920
460 5.066711 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=28845, Time=3422039072
461 5.074560 ***.***.***251 -> ***.***.***197 RTP PT=ITU-T G.711
PCMA, SSRC=0x13B77901, Seq=1124, Time=34080
462 5.077774 ***.***.***197 -> ***.***.***251 RTCP Sender Report
Source description
463 5.077871 ***.***.***251 -> ***.***.***197 ICMP Destination
unreachable (Port unreachable)
464 5.086805 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=28846, Time=3422039232
465 5.095387 ***.***.***251 -> ***.***.***197 RTP PT=ITU-T G.711
PCMA, SSRC=0x13B77901, Seq=1125, Time=34240
944 9.905899 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=29087, Time=3422077792
945 9.918040 ***.***.***251 -> ***.***.***197 RTP PT=ITU-T G.711
PCMA, SSRC=0x13B77901, Seq=1365, Time=72640
946 9.926323 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=29088, Time=3422077952
947 9.937852 ***.***.***251 -> ***.***.***197 RTP PT=ITU-T G.711
PCMA, SSRC=0x13B77901, Seq=1366, Time=72800
948 9.945976 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=29089, Time=3422078112
949 9.960146 ***.***.***251 -> ***.***.***197 RTP PT=ITU-T G.711
PCMA, SSRC=0x13B77901, Seq=1367, Time=72960
950 9.965774 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=29090, Time=3422078272
951 9.980207 ***.***.***251 -> ***.***.***197 RTP PT=ITU-T G.711
PCMA, SSRC=0x13B77901, Seq=1368, Time=73120
952 9.986811 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=29091, Time=3422078432
953 9.999808 ***.***.***251 -> ***.***.***197 RTP PT=ITU-T G.711
PCMA, SSRC=0x13B77901, Seq=1369, Time=73280
954 10.007772 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=29092, Time=3422078592
955 10.019619 ***.***.***251 -> ***.***.***197 RTP PT=ITU-T G.711
PCMA, SSRC=0x13B77901, Seq=1370, Time=73440
956 10.025780 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=29093, Time=3422078752
957 10.040206 ***.***.***251 -> ***.***.***197 RTP PT=ITU-T G.711
PCMA, SSRC=0x13B77901, Seq=1371, Time=73600
958 10.045952 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=29094, Time=3422078912
959 10.058762 ***.***.***251 -> ***.***.***197 RTP PT=ITU-T G.711
PCMA, SSRC=0x13B77901, Seq=1372, Time=73760
960 10.065795 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=29095, Time=3422079072
961 10.075799 ***.***.***197 -> ***.***.***251 RTCP Sender Report
Source description
962 10.075858 ***.***.***251 -> ***.***.***197 ICMP Destination
unreachable (Port unreachable)
963 10.079075 ***.***.***251 -> ***.***.***197 RTP PT=ITU-T G.711
PCMA, SSRC=0x13B77901, Seq=1373, Time=73920
964 10.085736 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=29096, Time=3422079232
965 10.098681 ***.***.***251 -> ***.***.***197 RTP PT=ITU-T G.711
PCMA, SSRC=0x13B77901, Seq=1374, Time=74080
966 10.105829 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=29097, Time=3422079392
1444 15.007191 ***.***.***251 -> ***.***.***197 RTP PT=ITU-T G.711
PCMA, SSRC=0x13B77901, Seq=1618, Time=113120
1445 15.025119 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=29343, Time=3422118752
1446 15.027020 ***.***.***251 -> ***.***.***197 RTP PT=ITU-T G.711
PCMA, SSRC=0x13B77901, Seq=1619, Time=113280
1447 15.044773 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=29344, Time=3422118912
1448 15.047127 ***.***.***251 -> ***.***.***197 RTP PT=ITU-T G.711
PCMA, SSRC=0x13B77901, Seq=1620, Time=113440
1449 15.064747 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=29345, Time=3422119072
1450 15.067010 ***.***.***251 -> ***.***.***197 RTP PT=ITU-T G.711
PCMA, SSRC=0x13B77901, Seq=1621, Time=113600
1451 15.084756 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=29346, Time=3422119232
1452 15.087057 ***.***.***251 -> ***.***.***197 RTP PT=ITU-T G.711
PCMA, SSRC=0x13B77901, Seq=1622, Time=113760
1453 15.102960 ***.***.***197 -> ***.***.***251 RTCP Sender Report
Source description
1454 15.103004 ***.***.***251 -> ***.***.***197 ICMP Destination
unreachable (Port unreachable)
1455 15.105839 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=29347, Time=3422119392
1456 15.106592 ***.***.***251 -> ***.***.***197 RTP PT=ITU-T G.711
PCMA, SSRC=0x13B77901, Seq=1623, Time=113920
1764 18.193027 ***.***.***251 -> ***.***.***197 RTP PT=ITU-T G.711
PCMA, SSRC=0x13B77901, Seq=1777, Time=138560
1765 18.204153 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=29502, Time=3422144192
1766 18.213120 ***.***.***251 -> ***.***.***197 RTP PT=ITU-T G.711
PCMA, SSRC=0x13B77901, Seq=1778, Time=138720
1767 18.224393 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=29503, Time=3422144352
1768 18.232991 ***.***.***251 -> ***.***.***197 RTP PT=ITU-T G.711
PCMA, SSRC=0x13B77901, Seq=1779, Time=138880
1769 18.246877 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=29504, Time=3422144512
1770 18.253047 ***.***.***251 -> ***.***.***197 RTP PT=ITU-T G.711
PCMA, SSRC=0x13B77901, Seq=1780, Time=139040
1771 18.264509 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=29505, Time=3422144672
1772 18.274069 ***.***.***251 -> ***.***.***197 RTP PT=ITU-T G.711
PCMA, SSRC=0x13B77901, Seq=1781, Time=139200
1773 18.284362 ***.***.***197 -> ***.***.***251 RTP EVENT Payload
type=RTP Event, DTMF Five 5
1774 18.284723 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=29507, Time=3422144832
1775 18.294262 ***.***.***251 -> ***.***.***197 RTP PT=ITU-T G.711
PCMA, SSRC=0x13B77901, Seq=1782, Time=139360
1776 18.304211 ***.***.***197 -> ***.***.***251 RTP EVENT Payload
type=RTP Event, DTMF Five 5
1777 18.304615 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=29509, Time=3422144992
1778 18.315064 ***.***.***251 -> ***.***.***197 RTP PT=ITU-T G.711
PCMA, SSRC=0x13B77901, Seq=1783, Time=139520
1779 18.324259 ***.***.***197 -> ***.***.***251 RTP EVENT Payload
type=RTP Event, DTMF Five 5
1780 18.324492 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=29511, Time=3422145152
1781 18.335010 ***.***.***251 -> ***.***.***197 RTP PT=ITU-T G.711
PCMA, SSRC=0x13B77901, Seq=1784, Time=139680
1782 18.346630 ***.***.***197 -> ***.***.***251 RTP EVENT Payload
type=RTP Event, DTMF Five 5
1783 18.348273 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=29513, Time=3422145312
1784 18.355059 ***.***.***251 -> ***.***.***197 RTP PT=ITU-T G.711
PCMA, SSRC=0x13B77901, Seq=1785, Time=139840
1785 18.365239 ***.***.***197 -> ***.***.***251 RTP EVENT Payload
type=RTP Event, DTMF Five 5 (end)
1786 18.365336 ***.***.***197 -> ***.***.***251 RTP EVENT Payload
type=RTP Event, DTMF Five 5 (end)
1787 18.365446 ***.***.***197 -> ***.***.***251 RTP EVENT Payload
type=RTP Event, DTMF Five 5 (end)
1788 18.365740 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=29517, Time=3422145472
1789 18.375024 ***.***.***251 -> ***.***.***197 RTP PT=ITU-T G.711
PCMA, SSRC=0x13B77901, Seq=1786, Time=140000
1790 18.384383 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=29518, Time=3422145632
1791 18.395117 ***.***.***251 -> ***.***.***197 RTP PT=ITU-T G.711
PCMA, SSRC=0x13B77901, Seq=1787, Time=140160
1938 19.864319 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=29592, Time=3422157472
1939 19.874032 ***.***.***251 -> ***.***.***197 RTP PT=ITU-T G.711
PCMA, SSRC=0x13B77901, Seq=1861, Time=152000
1940 19.884770 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=29593, Time=3422157632
1941 19.893994 ***.***.***251 -> ***.***.***197 RTP PT=ITU-T G.711
PCMA, SSRC=0x13B77901, Seq=1862, Time=152160
1942 19.903915 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=29594, Time=3422157792
1943 19.914056 ***.***.***251 -> ***.***.***197 RTP PT=ITU-T G.711
PCMA, SSRC=0x13B77901, Seq=1863, Time=152320
1944 19.924467 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=29595, Time=3422157952
1945 19.933924 ***.***.***251 -> ***.***.***197 RTP PT=ITU-T G.711
PCMA, SSRC=0x13B77901, Seq=1864, Time=152480
1946 19.944943 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=29596, Time=3422158112
1947 19.954021 ***.***.***251 -> ***.***.***197 RTP PT=ITU-T G.711
PCMA, SSRC=0x13B77901, Seq=1865, Time=152640
1948 19.964013 ***.***.***197 -> ***.***.***251 RTP EVENT Payload
type=RTP Event, DTMF Six 6
1949 19.964288 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=29598, Time=3422158272
1950 19.974003 ***.***.***251 -> ***.***.***197 RTP PT=ITU-T G.711
PCMA, SSRC=0x13B77901, Seq=1866, Time=152800
1951 19.983843 ***.***.***197 -> ***.***.***251 RTP EVENT Payload
type=RTP Event, DTMF Six 6
1952 19.984077 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=29600, Time=3422158432
1953 19.993993 ***.***.***251 -> ***.***.***197 RTP PT=ITU-T G.711
PCMA, SSRC=0x13B77901, Seq=1867, Time=152960
1954 20.004770 ***.***.***197 -> ***.***.***251 RTP EVENT Payload
type=RTP Event, DTMF Six 6
1955 20.006411 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=29602, Time=3422158592
1956 20.014173 ***.***.***251 -> ***.***.***197 RTP PT=ITU-T G.711
PCMA, SSRC=0x13B77901, Seq=1868, Time=153120
1957 20.023808 ***.***.***197 -> ***.***.***251 RTP EVENT Payload
type=RTP Event, DTMF Six 6
1958 20.024066 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=29604, Time=3422158752
1959 20.034034 ***.***.***251 -> ***.***.***197 RTP PT=ITU-T G.711
PCMA, SSRC=0x13B77901, Seq=1869, Time=153280
1960 20.043963 ***.***.***197 -> ***.***.***251 RTP EVENT Payload
type=RTP Event, DTMF Six 6
1961 20.044410 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=29606, Time=3422158912
1962 20.054040 ***.***.***251 -> ***.***.***197 RTP PT=ITU-T G.711
PCMA, SSRC=0x13B77901, Seq=1870, Time=153440
1963 20.063795 ***.***.***197 -> ***.***.***251 RTP EVENT Payload
type=RTP Event, DTMF Six 6
1964 20.064538 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=29608, Time=3422159072
1965 20.073983 ***.***.***251 -> ***.***.***197 RTP PT=ITU-T G.711
PCMA, SSRC=0x13B77901, Seq=1871, Time=153600
1966 20.082466 ***.***.***197 -> ***.***.***251 RTP EVENT Payload
type=RTP Event, DTMF Six 6 (end)
1967 20.082557 ***.***.***197 -> ***.***.***251 RTP EVENT Payload
type=RTP Event, DTMF Six 6 (end)
1968 20.082654 ***.***.***197 -> ***.***.***251 RTP EVENT Payload
type=RTP Event, DTMF Six 6 (end)
1969 20.085695 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=29612, Time=3422159232
1970 20.094009 ***.***.***251 -> ***.***.***197 RTP PT=ITU-T G.711
PCMA, SSRC=0x13B77901, Seq=1872, Time=153760
1971 20.105092 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=29613, Time=3422159392
1972 20.114023 ***.***.***251 -> ***.***.***197 RTP PT=ITU-T G.711
PCMA, SSRC=0x13B77901, Seq=1873, Time=153920
1973 20.117202 ***.***.***197 -> ***.***.***251 RTCP Sender Report
Source description
1974 20.117245 ***.***.***251 -> ***.***.***197 ICMP Destination
unreachable (Port unreachable)
1975 20.124664 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=29614, Time=3422159552
1976 20.133993 ***.***.***251 -> ***.***.***197 RTP PT=ITU-T G.711
PCMA, SSRC=0x13B77901, Seq=1874, Time=154080
1977 20.144012 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=29615, Time=3422159712
1978 20.154026 ***.***.***251 -> ***.***.***197 RTP PT=ITU-T G.711
PCMA, SSRC=0x13B77901, Seq=1875, Time=154240
1979 20.164023 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=29616, Time=3422159872
1980 20.174150 ***.***.***251 -> ***.***.***197 RTP PT=ITU-T G.711
PCMA, SSRC=0x13B77901, Seq=1876, Time=154400
1981 20.184034 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=29617, Time=3422160032
2109 21.463609 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=29681, Time=3422170272
2110 21.474918 ***.***.***251 -> ***.***.***197 RTP PT=ITU-T G.711
PCMA, SSRC=0x13B77901, Seq=1941, Time=164800
2111 21.483525 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=29682, Time=3422170432
2112 21.494893 ***.***.***251 -> ***.***.***197 RTP PT=ITU-T G.711
PCMA, SSRC=0x13B77901, Seq=1942, Time=164960
2113 21.505743 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=29683, Time=3422170592
2114 21.514964 ***.***.***251 -> ***.***.***197 RTP PT=ITU-T G.711
PCMA, SSRC=0x13B77901, Seq=1943, Time=165120
2115 21.525746 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=29684, Time=3422170752
2116 21.534893 ***.***.***251 -> ***.***.***197 RTP PT=ITU-T G.711
PCMA, SSRC=0x13B77901, Seq=1944, Time=165280
2117 21.543688 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=29685, Time=3422170912
2118 21.554941 ***.***.***251 -> ***.***.***197 RTP PT=ITU-T G.711
PCMA, SSRC=0x13B77901, Seq=1945, Time=165440
2119 21.563638 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=29686, Time=3422171072
2120 21.574884 ***.***.***251 -> ***.***.***197 RTP PT=ITU-T G.711
PCMA, SSRC=0x13B77901, Seq=1946, Time=165600
2121 21.583613 ***.***.***197 -> ***.***.***251 RTP EVENT Payload
type=RTP Event, DTMF Seven 7
2122 21.583969 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=29688, Time=3422171232
2123 21.595194 ***.***.***251 -> ***.***.***197 RTP PT=ITU-T G.711
PCMA, SSRC=0x13B77901, Seq=1947, Time=165760
2124 21.603575 ***.***.***197 -> ***.***.***251 RTP EVENT Payload
type=RTP Event, DTMF Seven 7
2125 21.603885 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=29690, Time=3422171392
2126 21.615067 ***.***.***251 -> ***.***.***197 RTP PT=ITU-T G.711
PCMA, SSRC=0x13B77901, Seq=1948, Time=165920
2127 21.623577 ***.***.***197 -> ***.***.***251 RTP EVENT Payload
type=RTP Event, DTMF Seven 7
2128 21.623861 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=29692, Time=3422171552
2129 21.634932 ***.***.***251 -> ***.***.***197 RTP PT=ITU-T G.711
PCMA, SSRC=0x13B77901, Seq=1949, Time=166080
2130 21.643498 ***.***.***197 -> ***.***.***251 RTP EVENT Payload
type=RTP Event, DTMF Seven 7
2131 21.643776 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=29694, Time=3422171712
2132 21.655019 ***.***.***251 -> ***.***.***197 RTP PT=ITU-T G.711
PCMA, SSRC=0x13B77901, Seq=1950, Time=166240
2133 21.663691 ***.***.***197 -> ***.***.***251 RTP EVENT Payload
type=RTP Event, DTMF Seven 7 (end)
2134 21.663812 ***.***.***197 -> ***.***.***251 RTP EVENT Payload
type=RTP Event, DTMF Seven 7 (end)
2135 21.663915 ***.***.***197 -> ***.***.***251 RTP EVENT Payload
type=RTP Event, DTMF Seven 7 (end)
2136 21.664189 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=29698, Time=3422171872
2137 21.674955 ***.***.***251 -> ***.***.***197 RTP PT=ITU-T G.711
PCMA, SSRC=0x13B77901, Seq=1951, Time=166400
2138 21.683857 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=29699, Time=3422172032
2139 21.695003 ***.***.***251 -> ***.***.***197 RTP PT=ITU-T G.711
PCMA, SSRC=0x13B77901, Seq=1952, Time=166560
2331 23.587995 ***.***.***251 -> ***.***.***197 RTP PT=ITU-T G.711
PCMA, SSRC=0x13B77901, Seq=2049, Time=182080
2332 23.603137 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=29795, Time=3422187392
2333 23.606945 ***.***.***251 -> ***.***.***197 RTP PT=ITU-T G.711
PCMA, SSRC=0x13B77901, Seq=2050, Time=182240
2334 23.625290 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=29796, Time=3422187552
2335 23.625487 ***.***.***251 -> ***.***.***197 RTP PT=ITU-T G.711
PCMA, SSRC=0x13B77901, Seq=2051, Time=182400
2336 23.643133 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=29797, Time=3422187712
2337 23.644207 ***.***.***251 -> ***.***.***197 RTP PT=ITU-T G.711
PCMA, SSRC=0x13B77901, Seq=2052, Time=182560
2338 23.662956 ***.***.***251 -> ***.***.***197 RTP PT=ITU-T G.711
PCMA, SSRC=0x13B77901, Seq=2053, Time=182720
2339 23.663123 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=29798, Time=3422187872
2340 23.682084 ***.***.***251 -> ***.***.***197 RTP PT=ITU-T G.711
PCMA, SSRC=0x13B77901, Seq=2054, Time=182880
2341 23.683409 ***.***.***197 -> ***.***.***251 RTP EVENT Payload
type=RTP Event, DTMF Eight 8
2342 23.683735 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=29800, Time=3422188032
2343 23.700998 ***.***.***251 -> ***.***.***197 RTP PT=ITU-T G.711
PCMA, SSRC=0x13B77901, Seq=2055, Time=183040
2344 23.703492 ***.***.***197 -> ***.***.***251 RTP EVENT Payload
type=RTP Event, DTMF Eight 8
2345 23.703769 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=29802, Time=3422188192
2346 23.720025 ***.***.***251 -> ***.***.***197 RTP PT=ITU-T G.711
PCMA, SSRC=0x13B77901, Seq=2056, Time=183200
2347 23.723612 ***.***.***197 -> ***.***.***251 RTP EVENT Payload
type=RTP Event, DTMF Eight 8
2348 23.723882 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=29804, Time=3422188352
2349 23.738943 ***.***.***251 -> ***.***.***197 RTP PT=ITU-T G.711
PCMA, SSRC=0x13B77901, Seq=2057, Time=183360
2350 23.740732 ***.***.***197 -> ***.***.***251 RTP EVENT Payload
type=RTP Event, DTMF Eight 8
2351 23.744268 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=29806, Time=3422188512
2352 23.757040 ***.***.***251 -> ***.***.***197 RTP PT=ITU-T G.711
PCMA, SSRC=0x13B77901, Seq=2058, Time=183520
2353 23.766230 ***.***.***197 -> ***.***.***251 RTP EVENT Payload
type=RTP Event, DTMF Eight 8 (end)
2354 23.766331 ***.***.***197 -> ***.***.***251 RTP EVENT Payload
type=RTP Event, DTMF Eight 8 (end)
2355 23.766824 ***.***.***197 -> ***.***.***251 RTP EVENT Payload
type=RTP Event, DTMF Eight 8 (end)
2356 23.768230 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=29810, Time=3422188672
2357 23.776430 ***.***.***251 -> ***.***.***197 RTP PT=ITU-T G.711
PCMA, SSRC=0x13B77901, Seq=2059, Time=183680
2358 23.783146 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=29811, Time=3422188832
2359 23.796004 ***.***.***251 -> ***.***.***197 RTP PT=ITU-T G.711
PCMA, SSRC=0x13B77901, Seq=2060, Time=183840
2360 23.803184 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=29812, Time=3422188992
2361 23.814932 ***.***.***251 -> ***.***.***197 RTP PT=ITU-T G.711
PCMA, SSRC=0x13B77901, Seq=2061, Time=184000
2362 23.823208 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=29813, Time=3422189152
2363 23.833974 ***.***.***251 -> ***.***.***197 RTP PT=ITU-T G.711
PCMA, SSRC=0x13B77901, Seq=2062, Time=184160
2364 23.843105 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=29814, Time=3422189312

2757 27.483437 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=30005, Time=3422218432
2758 27.497940 ***.***.***251 -> ***.***.***197 RTP PT=ITU-T G.711
PCMA, SSRC=0x13B77901, Seq=2264, Time=216480
2759 27.505107 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=30006, Time=3422218592
2760 27.516087 ***.***.***251 -> ***.***.***197 RTP PT=ITU-T G.711
PCMA, SSRC=0x13B77901, Seq=2265, Time=216640
2761 27.523038 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=30007, Time=3422218752
2762 27.533916 ***.***.***251 -> ***.***.***197 RTP PT=ITU-T G.711
PCMA, SSRC=0x13B77901, Seq=2266, Time=216800
2763 27.542544 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=30008, Time=3422218912
2764 27.552006 ***.***.***251 -> ***.***.***197 RTP PT=ITU-T G.711
PCMA, SSRC=0x13B77901, Seq=2267, Time=216960
2765 27.562534 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=30009, Time=3422219072
2766 27.569973 ***.***.***251 -> ***.***.***197 RTP PT=ITU-T G.711
PCMA, SSRC=0x13B77901, Seq=2268, Time=217120
2767 27.582425 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=30010, Time=3422219232
2768 27.587925 ***.***.***251 -> ***.***.***197 RTP PT=ITU-T G.711
PCMA, SSRC=0x13B77901, Seq=2269, Time=217280
2769 27.602429 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=30011, Time=3422219392
2770 27.606968 ***.***.***251 -> ***.***.***197 RTP PT=ITU-T G.711
PCMA, SSRC=0x13B77901, Seq=2270, Time=217440
2771 27.623528 ***.***.***197 -> ***.***.***251 SIP Request: BYE sip:
343225****@***.***.***251:5060
2772 27.623705 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=30012, Time=3422219552
2773 27.624432 ***.***.***251 -> ***.***.***197 RTP PT=ITU-T G.711
PCMA, SSRC=0x13B77901, Seq=2271, Time=217600
2774 27.631777 ***.***.***251 -> ***.***.***197 SIP Status: 200 OK
2775 27.637026 ***.***.***251 -> ***.***.***197 RTP PT=ITU-T G.711
PCMA, SSRC=0x13B77901, Seq=2272, Time=217760
2776 27.643819 ***.***.***197 -> ***.***.***251 RTP PT=ITU-T G.711
PCMA, SSRC=0x50906FB7, Seq=30013, Time=3422219712




Vladimir Ralev

unread,
May 11, 2010, 1:36:53 PM5/11/10
to mobicent...@googlegroups.com
Well, it seems the DTMF duration is about 80ms which might not be cought by MMS. Exactly the same problem with linphone. Oleg or Amit may give you some advice if this is fixable. AFAIK they are planning on addressing this in next release anyway.

Normandes Jr

unread,
May 11, 2010, 3:58:37 PM5/11/10
to mobicents-public
I hope this should be possible to fix. My boss give me a time to solve
or we really have to move out from Mobicents. :(

I don't understand the bug, because at other versions this worked, at
version 1 for example, I didn't have this kind of problem. And I can't
say to my future clients to keep their fingers at phone, and depending
of the phone, this kind of workaround is not possible.

Thanks,

Normandes Junior



On May 11, 2:36 pm, Vladimir Ralev <vladimir.ra...@gmail.com> wrote:
> Well, it seems the DTMF duration is about 80ms which might not be cought by
> MMS. Exactly the same problem with linphone. Oleg or Amit may give you some
> advice if this is fixable. AFAIK they are planning on addressing this in
> next release anyway.
>
> ...
>
> read more »

Vladimir Ralev

unread,
May 11, 2010, 5:42:55 PM5/11/10
to mobicent...@googlegroups.com
OK, I debugged this issue a bit and found it is actually a silent negotiation bug. You should be able to fix it by applying this patch to media/core/servlet-impl

### Eclipse Workspace Patch 1.0
#P mms-impl
Index: src/main/java/org/mobicents/media/server/impl/AbstractSink.java
===================================================================
--- src/main/java/org/mobicents/media/server/impl/AbstractSink.java (revision 11689)
+++ src/main/java/org/mobicents/media/server/impl/AbstractSink.java (working copy)
@@ -93,6 +93,11 @@
      * @return preffered format or null if sink can not determine it
      */
     protected Format selectPreffered(Collection<Format> set) {
+     if(set != null) {
+     for(Format f : set) {
+     if(!"LINEAR".equals(f.getEncoding())) return f;
+     }
+     }
         return set != null ? set.iterator().next() : null;
     }
 

This patch is sub-optimal, but should work. Oleg and Amit can take a closer look, basically DtmfConverter is trying to find a codec that convert from linear to linear which doesn't result in anything and thus the DtmfConverter.codec is null, nothing is called. Twinkle avoids this by using speex as prefered codec by default it seems.

Amit Bhayani

unread,
May 11, 2010, 11:27:26 PM5/11/10
to mobicent...@googlegroups.com
This doesn't look like DTMFDetector problem to me but more of silence.
The wireshark trace is not giving clear idea but definitely I see some timegap between packets. Would it be possible for you to submit trace that I can open @wireshark and analyse?

One more thing to make sure that this could be silence problem, can you disable silence from your phone? If there is no way to do it, keep talking on your phone to make sure your phone sends RTP continuously 

Vladimir Ralev

unread,
May 12, 2010, 12:55:48 AM5/12/10
to mobicent...@googlegroups.com
I am almost sure it is negotiation problem. I tested a couple of different settings. DtmfConverter.codec is set to null at the time the CRCX is processed. It doesn't depend on RTP content at all, becuse codec is null from the begining. My patch just forces the negoation to find any codec wheere it is somthing to linear, instead of linear to linear. But I don't know if this causes other problems or performance issues.

Oleg Kulikov

unread,
May 12, 2010, 1:00:15 AM5/12/10
to mobicent...@googlegroups.com
Codec is null because the negotiated format is LINEAR. So no need in additional encoding/decoding of generated tone signal. Duration of tone is only one problem. We will try to handle last packets of DTMF event to generate more long signal. The problem is that ending packets have same time parameters what cause silence generation after short tone signal

2010/5/12 Vladimir Ralev <vladimi...@gmail.com>

Vladimir Ralev

unread,
May 12, 2010, 1:33:31 AM5/12/10
to mobicent...@googlegroups.com
I just retested after clean reboot and got random results, so you are probably right. Not sure why I got different result with the patch before.

Normandes Jr

unread,
May 12, 2010, 7:48:03 AM5/12/10
to mobicents-public
I couldn't disable silence from my phone, so I continued talking while
press some digits. I didn't get success.

Another thing about silence, I have to change the SDP of Mobicents
Media Server to be able to complete the negotiation with my NGN, I
have to change this parameter: "a=silenceSupp:off" for this:
"a=silenceSupp:off - - - -". I don't know why, actually for me
discover this problem, I had to compare the MMS SDP with Asterisk SDP,
I saw this difference and after I changed, works fine.

Do you think that this could be a problem?

Normandes Junior




On May 12, 2:33 am, Vladimir Ralev <vladimir.ra...@gmail.com> wrote:
> I just retested after clean reboot and got random results, so you are
> probably right. Not sure why I got different result with the patch before.
>
> On Wed, May 12, 2010 at 8:00 AM, Oleg Kulikov <oleg.kulik...@gmail.com>wrote:
>
> > Codec is null because the negotiated format is LINEAR. So no need in
> > additional encoding/decoding of generated tone signal. Duration of tone is
> > only one problem. We will try to handle last packets of DTMF event to
> > generate more long signal. The problem is that ending packets have same time
> > parameters what cause silence generation after short tone signal
>
> > 2010/5/12 Vladimir Ralev <vladimir.ra...@gmail.com>
>
> > I am almost sure it is negotiation problem. I tested a couple of different
> >> settings. DtmfConverter.codec is set to null at the time the CRCX is
> >> processed. It doesn't depend on RTP content at all, becuse codec is null
> >> from the begining. My patch just forces the negoation to find any codec
> >> wheere it is somthing to linear, instead of linear to linear. But I don't
> >> know if this causes other problems or performance issues.
>
> ...
>
> read more »

Amit Bhayani

unread,
May 12, 2010, 8:07:33 AM5/12/10
to mobicent...@googlegroups.com
This parameter just informs far end that silence should not be suppressed. Actually I didn't find any standard way (RFC) for this and found that few uses a=silenceSupp:off and asterisk uses a=silenceSupp:off - - - -

Really I don't know why there is such difference.


So with a=silenceSupp:off - - - - even DTMF detection is fine?

The wireshark trace sent by you doesn't have the MGCP traces. Looking into it

Normandes Jr

unread,
May 12, 2010, 8:34:39 AM5/12/10
to mobicents-public
No, even with a=silenceSupp:off - - - - DTMF detection is not
working.

I sent to you another version of wireshark trace, now with MGCP.

Thanks a lot.

Normandes Junior.



On May 12, 9:07 am, Amit Bhayani <amit.bhay...@gmail.com> wrote:
> This parameter just informs far end that silence should not be suppressed.
> Actually I didn't find any standard way (RFC) for this and found that few
> uses a=silenceSupp:off and asterisk uses a=silenceSupp:off - - - -
>
> Really I don't know why there is such difference.
>
> So with a=silenceSupp:off - - - - even DTMF detection is fine?
>
> The wireshark trace sent by you doesn't have the MGCP traces. Looking into
> it
>
> ...
>
> read more »

Oleg Kulikov

unread,
May 12, 2010, 10:50:18 AM5/12/10
to mobicent...@googlegroups.com
use duration property to adjust detection (components-beans.xml)

    <bean name="dtmf.detector" class="org.mobicents.media.server.impl.resource.dtmf.DetectorFactory">
        <property name="name">dtmf.detector</property>
        <property name="duration">40</property>
    </bean>


2010/5/12 Normandes Jr <norma...@gmail.com>

Normandes Jr

unread,
May 12, 2010, 4:39:10 PM5/12/10
to mobicents-public
Setting this property MMS v2 doesn't start.



On May 12, 11:50 am, Oleg Kulikov <oleg.kulik...@gmail.com> wrote:
> use duration property to adjust detection (components-beans.xml)
>
>     <bean name="dtmf.detector"
> class="org.mobicents.media.server.impl.resource.dtmf.DetectorFactory">
>         <property name="name">dtmf.detector</property>
>         <property name="duration">40</property>
>     </bean>
>
> 2010/5/12 Normandes Jr <normande...@gmail.com>

Amit Bhayani

unread,
May 12, 2010, 10:16:56 PM5/12/10
to mobicent...@googlegroups.com
Because this property is not yet exposed in DetectorFactory. Its TODO and we will make it configurable before next release

In the mean time to achieve same result can you pls change
private final static int TONE_DURATION = 50;

to

private final static int TONE_DURATION = 40;

in DetectorImpl and try.

Oleg Kulikov

unread,
May 13, 2010, 2:16:54 AM5/13/10
to mobicent...@googlegroups.com
Commited factory with configured property

2010/5/13 Amit Bhayani <amit.b...@gmail.com>

Normandes Jr

unread,
May 13, 2010, 9:33:44 AM5/13/10
to mobicents-public
Not working yet. MMS v2 doesn't start.

I download http://mobicents.googlecode.com/svn/trunk/servers/media/core/server-impl
and I changed the variable private final static int TONE_DURATION to
value 40.

I complied it, and then I changed the file mms-impl-2.0.0.CR2.jar for
the mms-impl-2.0.0.CR3-SNAPSHOT.jar

MMS v2 doesn't start. Am I downloading from wrong svn path?

Normandes Junior.


On May 13, 3:16 am, Oleg Kulikov <oleg.kulik...@gmail.com> wrote:
> Commited factory with configured property
>
> 2010/5/13 Amit Bhayani <amit.bhay...@gmail.com>
>
> > Because this property is not yet exposed in DetectorFactory. Its TODO and
> > we will make it configurable before next release
>
> > In the mean time to achieve same result can you pls change
> > private final static int TONE_DURATION = 50;
>
> > to
>
> > private final static int TONE_DURATION = 40;
>
> > in DetectorImpl and try.
>
> ...
>
> read more »

Oleg Kulikov

unread,
May 13, 2010, 9:53:17 AM5/13/10
to mobicent...@googlegroups.com
Path is correct. what is the error message?

2010/5/13 Normandes Jr <norma...@gmail.com>

Oleg Kulikov

unread,
May 13, 2010, 9:57:25 AM5/13/10
to mobicent...@googlegroups.com
You also need to synchronize with server-standalone and rebuild it too

2010/5/13 Oleg Kulikov <oleg.k...@gmail.com>

Normandes Jr

unread,
May 13, 2010, 1:29:30 PM5/13/10
to mobicents-public
OK, now I compiled from: http://mobicents.googlecode.com/svn/trunk/servers/media/core
and I got this error:

14:23:01,552 INFO [InnerNamingService] Started endpoint: /mobicents/
media/aap/10
Exception in thread "main" java.lang.IllegalStateException:
Incompletely deployed:

DEPLOYMENTS IN ERROR:
Deployment "IVREndpoint" is in error due to:
java.lang.IllegalArgumentException: Duration cannot be less than 40ms

at
org.jboss.kernel.plugins.deployment.AbstractKernelDeployer.internalValidate(AbstractKernelDeployer.java:
278)
at
org.jboss.kernel.plugins.deployment.AbstractKernelDeployer.validate(AbstractKernelDeployer.java:
174)
at
org.mobicents.media.server.bootstrap.MainDeployer.start(MainDeployer.java:
122)
at org.mobicents.media.server.bootstrap.Main.start(Main.java:219)
at org.mobicents.media.server.bootstrap.Main.boot(Main.java:212)
at org.mobicents.media.server.bootstrap.Main.main(Main.java:73)


On May 13, 10:57 am, Oleg Kulikov <oleg.kulik...@gmail.com> wrote:
> You also need to synchronize with server-standalone and rebuild it too
>
> 2010/5/13 Oleg Kulikov <oleg.kulik...@gmail.com>
>
> > Path is correct. what is the error message?
>
> > 2010/5/13 Normandes Jr <normande...@gmail.com>
> ...
>
> read more »

Normandes Jr

unread,
May 13, 2010, 1:38:02 PM5/13/10
to mobicents-public
Sorry, I forgot to add the property at comp-beans.xml

I will test now.

Normandes Jr

unread,
May 13, 2010, 1:57:05 PM5/13/10
to mobicents-public
I am sorry, but even with duration 40 I couldn't receive the
digits... :(
> ...
>
> read more »

Vladimir Ralev

unread,
May 13, 2010, 2:07:40 PM5/13/10
to mobicent...@googlegroups.com
It shouldn't be hard for MMS guys to reproduce the issue. Linphone 3 and SJ phone have that problem and are available for lin/win/mac. Do these work for you? I still think it may be some negotiation problem. Chaning the codec appears to make some difference.

Normandes Jr

unread,
May 14, 2010, 4:44:26 PM5/14/10
to mobicents-public
How could I choose the codec?

I would like to test with other codec instead pcma.

Normandes Junior.


On May 13, 3:07 pm, Vladimir Ralev <vladimir.ra...@gmail.com> wrote:
> It shouldn't be hard for MMS guys to reproduce the issue. Linphone 3 and SJ
> phone have that problem and are available for lin/win/mac. Do these work for
> you? I still think it may be some negotiation problem. Chaning the codec
> appears to make some difference.http://www.linphone.org/index.php/eng/download
> <http://www.linphone.org/index.php/eng/download>http://www.sjlabs.com/sjp.html
>
> ...
>
> read more »

Vladimir Ralev

unread,
May 14, 2010, 5:12:51 PM5/14/10
to mobicent...@googlegroups.com
Disable the pcma/pcmu codecs from the list in sjphone. It is in the advanced mode settings. Preferences->Audio->Compression Settings. Similarly for linphone.

Normandes Jr

unread,
May 14, 2010, 5:26:07 PM5/14/10
to mobicents-public
I would like to disable from MMS v2 and not from phone, I will test
with my NGN and I can't change the its codecs. I am testing with my
real mobile.

Normandes Junior.


On May 14, 6:12 pm, Vladimir Ralev <vladimir.ra...@gmail.com> wrote:
> Disable the pcma/pcmu codecs from the list in sjphone. It is in the advanced
> mode settings. Preferences->Audio->Compression Settings. Similarly for
> linphone.
>
> ...
>
> read more »

Vladimir Ralev

unread,
May 14, 2010, 5:29:58 PM5/14/10
to mobicent...@googlegroups.com
In MMS deploy directory edit rtp-beans.xml and comp-beans.xml. Remove all entries related to g711.

Normandes Jr

unread,
May 18, 2010, 7:45:17 PM5/18/10
to mobicents-public
I added a log at class:
org.mobicents.media.server.impl.resource.dtmf.DtmfEvent at method:
public static int getId(String evt) {
logger.info(">>>>>>>>> evt: " + evt);
...

And I realized that all digits are recognized here. I think that the
problem could be related with the transmission to SLEE.

Do you have some tips at what class could I modify to force the
transmission?

Thanks,

Normandes Junior.

On May 14, 6:29 pm, Vladimir Ralev <vladimir.ra...@gmail.com> wrote:
> In MMS deploy directory edit rtp-beans.xml and comp-beans.xml. Remove all
> entries related to g711.
>
> ...
>
> read more »
Reply all
Reply to author
Forward
0 new messages