Quantcast
Channel: Asterisk Forums
Viewing all 7460 articles
Browse latest View live

[SOLVED] Corrupt .gsm files from MixMonitor?

$
0
0
It could be that the SIP provider is sending audio to that location using a different media gateway than the rest of your boxes. Running briefly "rtp set debug on" -- then very quickly "rtp set debug off" -- would show that gateway's IP address.

Have you tried another file format like wav instead of gsm?

Statistics : Posted by rylan76 • on Wed Dec 03, 2014 7:53 am • Replies 2 • Views 160

[SOLVED] Corrupt .gsm files from MixMonitor?

$
0
0
Hi guys

I'm still using Asterisk 1.8.11.0 across 14 branches of our company. Old, and up to now extremely reliable - been running about three years with no problems. About 80 000 .gsm files per day are Mixmonitor recorded accross the company into .gsm format.

I recently started encountering a situation at one branch where the .gsm files produced by MixMonitor are corrupted and truncated. E. g. you can be talking to a caller, and the eventual duration of the call is five minutes - but the mixmonitor recording length is only 3 minutes 15 seconds long (for example).

The recording transmutes before this 3:15 cutoff point in a weird hiss of audio that sounds like background / white noise on an FM radio that is not properly tuned. The white noise ends a few seconds later, even though the conversation continues in reality. E. g. the audible conversation turns to white noise, then ends, long before the actual call ends.

Anybody encountered this before? I've got more or less identical hardware at all the sites, all using 1.8.11.0 on Centos 6.5 on the 2.6.32-431.23.3.el6.x86_64 kernel.

At the site with the problem, it does not happen to EVERY recording, but about 75% have the issue. My upstream VOIP trunk provider uses G729 with 20ms payload at all the sites.

None of the other sites exhibit the issue, except the problem site.

I have already replaced the particular server at the problem branch with a completely physically new unit, problem still persists. The previous server was running for seven months beforehand without exhibiting this problem. We have not changed the dialplan or any hardware on this machine in that time.

No relevant errors are apparent in the CLI or in the /var/log/asterisk/messages log file. The server's /var/log/messages does not show any errors, no kernel panic logs, etc. Dmesg does not show anything strange either.

The system has a load average of 0.75 according to top, iotop gives a mean disk write utilisation of about 90 kb/s constantly. The system has 8GB of physical RAM which is fully used (7609 MB allocated out of 7748 total according to free), with nothing allocated on swap.

All my calls are made and recorded by passing a telephone number and channel name to

Code: [macro-STDOUT]
;${ARG1} = channel
;${ARG2} = number
exten=>s,1,Macro(WAITCHANNEL)
exten=>s,n,Macro(WAITCDR)
exten=>s,n,Macro(VCRECORD,${MACRO_CONTEXT}X${CALLERID(num)}ACC${CDR(accountcode)},${ARG2})
exten=>s,n(dodial),Macro(VCCALLOUT,${ARG1},${ARG2},${ARG3},${ARG4})
exten=>s,n,NoOp(Setting Userfield after call completion)
exten=>s,n,Set(CDR(userfield)=${MIXMONITOR_FILENAME})
;exten=>s,1(dodial),Dial(${ARG1}/${ARG2},120,TL(300000:60000:30000))
exten=>s,dodial+101,Busy()
exten=>s,n,Hangup()
exten=>s,n,MacroExit

[macro-WAITCHANNEL]
exten=>s,1,Set(trycounter=0)
exten=>s,n,Set(trycounter=${MATH(${trycounter}+1,int)}) ; increment counter
exten=>s,n,GoToIf($[${trycounter} < 5]?testval:showval) ;only try 5 times
exten=>s,n(testval),GoToIf($["${CALLERID(num)}"=""]?2:showval)
exten=>s,n(showval),NoOp(CALLER ID ${CALLERID(num)})
exten=>s,n,MacroExit

[macro-WAITCDR]
exten=>s,1,Set(trycounter=0)
exten=>s,n,Set(trycounter=${MATH(${trycounter}+1,int)})
exten=>s,n,GoToIf($[${trycounter} < 5]?testacc:showacc) ;only try 5 times
exten=>s,n(testacc),GoToIf($["${CDR(accountcode)}"=""]?2:showacc)
exten=>s,n(showacc),NoOp(Account ${CDR(accountcode)})
exten=>s,n,MacroExit

[macro-VCRECORD] ; MACRO To setup Recording
;${ARG1} Description To Save
;${ARG2} Dialed Number
exten=>s,1,NoOp(Start of MixMonitor recording)
exten=>s,n,GotoIf($["${CDR(accountcode)}"=""]?setcdr:setchan)
exten=>s,n(setcdr),Set(${CDR(accountcode)}=${chanacc})
exten=>s,n(setchan),Set(${__chanacc}=${CDR(accountcode)})
exten=>s,n(startrec),Set(recDir=${STRFTIME(${EPOCH},,%y%m/%d)})
exten=>s,n,Set(recFile=${recDir}/${STRFTIME(${EPOCH},,%y%m%d%H%M%S)}D${ARG1}N${ARG2}ID${UNIQUEID}.gsm)
exten=>s,n,GoToIf($["${CDR(accountcode)}" = ""]?makedir:setacc)
exten=>s,n(setacc),set(recFile=${recDir}/${CDR(accountcode)}.gsm)
exten=>s,n(makedir),System(/bin/mkdir -p /var/spool/asterisk/monitor/${recDir})
exten=>s,n,MixMonitor(${recFile},a)
exten=>s,n,Set(AUDIOHOOK_INHERIT(MixMonitor)=yes)
exten=>s,n,Set(CDR(userfield)=${MIXMONITOR_FILENAME})
exten=>s,n,Set(__chanrecording=${recFile})
exten=>s,n(finrec),NoOp(Recording to ${MIXMONITOR_FILENAME})
exten=>s,n,UserEvent(RecordingToFile,Uniqueid: ${UNIQUEID},Channel: ${Channel},Filename: ${MIXMONITOR_FILENAME})
exten=>s,n,MacroExit

[macro-VCCALLOUT] ;macro to dial numbers
; ${ARG1} Channel To Use
; ${ARG2} Number To Dial
; ${ARG3} FailOver Channel
;${ARG4} FailOverNumber
exten=>s,1,set(accsplit=${CUT(CDR(accountcode),-,1)})
exten=>s,n,Set(timeLimit=${DB(AVIS/AGENT/LIMIT/${accsplit})})
exten=>s,n,NoOp(Passed var is ${CallLimit})
exten=>s,n,Set(timeLimit=${CallLimit})
exten=>s,n,NoOp(Passed ${ARG1} ${ARG2} ${ARG3} ${ARG4})
exten=>s,n,Set(callcycle=${DB(AVIS/CYCLE)})
exten=>s,n,NoOp(Changed passed to: ${ARG1} ${ARG2} ${ARG3} ${ARG4})
exten=>s,n,Set(DB(AVIS/CYCLE)=)
exten=>s,n,Goto(setchan)
exten=>s,n(noswap),Set(DB(AVIS/CYCLE)=1)
exten=>s,n(setchan),Set(chantouse=${ARG1})
exten=>s,n,Set(numtodial=${ARG2})
exten=>s,n,Goto(makecall)
exten=>s,n(failover),GoToIf($["${ARG3}" = ""]?endcall:dofailover)
exten=>s,n(dofailover),Set(chantouse=${ARG3})
exten=>s,n,Set(numtodial=${ARG4})
exten=>s,n,Set(ARG3="")
exten=>s,n,NoOp(Attempting Call On ${chantouse} ${numtodial} ARG3 is now ${ARG3})
exten=>s,n(makecall),GotoIf($["${timeLimit}" = ""]?dialNoLimit:dialLimit)
exten=>s,n(dialNoLimit),Dial(${chantouse}/${numtodial},120,jTL(300000:60000:30000))
exten=>s,n,NoOp(Dial Status: ${DIALSTATUS})
exten=>s,n,GoTo(s-${DIALSTATUS},1)
exten=>s,n(dialLimit),Dial(${chantouse}/${numtodial},120,jTL(${MATH(${timelimit}*60000,int)}:60000:30000))
exten=>s,n,NoOp(Dial Status: ${DIALSTATUS})
exten=>s,n,GoTo(s-${DIALSTATUS},1)
exten=>s,dialNoLimit+101,Goto(s-${DIALSTATUS},1)
exten=>s,dialLimit+101,Goto(s-${DIALSTATUS},1)
exten=>s,n(endcall),busy()
exten=>s,n,NoOp(Call Completed - setting userfield to recording)
exten=>s,n,Set(CDR(userfield)=${MIXMONITOR_FILENAME})
exten=>s,n,Hangup()
exten=>s,n,MacroExit


Any ideas or pointers as to why I'm getting corrupt .gsm Mixmonitor recordings?

Thanks

Statistics : Posted by rylan76 • on Wed Dec 03, 2014 7:53 am • Replies 2 • Views 160

Recieve DTMF without answering the call.

$
0
0
Hi,

I need to implement on flow in asterisk Dilaplan i.e to recieve caller input in Playback application(with noanswer option).
It mean recieve user input without answering the call.

Can this be possible with asterisk.I tried Playback with noanswer option but DTMF failed to recieve.
Regards,
Mandeep

Statistics : Posted by msingla • on Fri Dec 05, 2014 6:32 am • Replies 1 • Views 73

Recieve DTMF without answering the call.

$
0
0
Playback does not listen for input.

Try Background with the 'n' option to not answer the channel.

Statistics : Posted by msingla • on Fri Dec 05, 2014 6:32 am • Replies 1 • Views 73

Asterisk WebRTC SipML5 : Remote host can't match request ACK

$
0
0
It means Asterisk received a status 481 response.

I'd be more worried about the 603 which is where the peer starts to go seriously wrong. Whilst it should not have rejected the ACK, as it seems to have all the right identifiers, the 603 looks like an earlier internal failure.

(It is possible that a router is damaging message IDs or tags, or even sending a bogus 603.

Statistics : Posted by aymen_chetoui • on Fri Dec 05, 2014 11:23 am • Replies 1 • Views 52

Asterisk WebRTC SipML5 : Remote host can't match request ACK

$
0
0
Hi all,
In my scenario, I am using Asterisk 13.0.1, and two SipML5 Clients that are trying to call each other.

Configuration

Asterisk is installed in a Ubuntu VM with an IP address : 192.168.10.109
And the two client are on Chrome in Windows, the IP address is : 192.168.10.102

In sip.conf, I have :

Code: [general]
context=public
allowoverlap=no
realm=doubango.org
udpbindaddr=0.0.0.0:5060
tcpenable=no
tcpbindaddr=0.0.0.0
transport=udp,ws,wss
srvlookup=yes
nat = no
nat = force_rport
encryption=yes
avpf=yes
force_avp=yes

dtlsenable = yes
dtlsverify = no
dtlscertfile=/etc/asterisk/keys/asterisk.pem
dtlsprivatekey=/etc/asterisk/keys/asterisk.pem
dtlssetup = actpass
dtlsfingerprint = sha-1


[1060]
allow=all
dtlsenable = yes
dtlsverify = no
dtlscertfile=/etc/asterisk/keys/asterisk.pem               
dtlsprivatekey=/etc/asterisk/keys/asterisk.pem
dtlssetup = actpass
dtlsfingerprint = sha-1
type=friend
username=1060
host=dynamic
secret=1060
context=default
hasiax = no
hassip = yes
encryption = yes
avpf = yes
icesupport = yes
videosupport=yes
directmedia=no

[1061]
allow=all
dtlsenable = yes
dtlsverify = no
dtlscertfile=/etc/asterisk/keys/asterisk.pem               
dtlsprivatekey=/etc/asterisk/keys/asterisk.pem
dtlssetup = actpass
dtlsfingerprint = sha-1
type=friend
username=1061
host=dynamic
secret=1061
context=default
hasiax = no
hassip = yes
encryption = yes ; this
avpf = yes
icesupport = yes
videosupport=yes
directmedia=no


In the extensions.conf :

Code: [default]
exten => 1060,1,Dial(SIP/1060)
exten => 1061,1,Dial(SIP/1061)


In the http.conf :

Code: [general]
enabled=yes
bindaddr=0.0.0.0
bindport=8088


In the rtp.conf :

Code: [general]
rtpstart=10000
rtpend=20000
stunaddr=stun.l.google.com:19302


As for the SipML5, I used on client at Chrome default mode and the other client on the anonymous mode :
In http://sipml5.org/call.htm?svn=224# :
Display Name, Private Identity, and Password : 1060 / 1061 (as follows for Client 1 and 2)
Public Identity : sip:1060@doubango.org / sip:1061@doubango.org (as follows for Client 1 and 2)
Realm : doubango.org

In the expert mode, http://sipml5.org/expert.htm in both sides I have :
Disable Video : ticked
Enable RTCWeb Breaker : ticked
WebSocket Server URL : ws://192.168.10.109:8088/ws
ICE Servers : [{url:'stun:stun.l.google.com:19302'}]

Test

There is no problem when loging in the two clients, but when I try make a call from 1060 to 1061 for example :
On the client 2 side, Chrome asks to allow the micro. When I do so, the "Call is Rejected".

Here what is happening on Asterisk Side :

Code: <--- SIP read from WS:192.168.10.102:50162 --->
INVITE sip:1061@doubango.org SIP/2.0
Via: SIP/2.0/WS df7jal23ls0d.invalid;branch=z9hG4bKQMKlkFEyIu2fstl3S3DOo30PA7mNmATe;rport
From: "1060"<sip:1060@doubango.org>;tag=8uEBBzWaND7t0A39IcpD
To: <sip:1061@doubango.org>
Contact: "1060"<sip:1060@df7jal23ls0d.invalid;rtcweb-breaker=yes;click2call=no;transport=ws>;impi=1060;ha1=11ae210c967672e2981b38443f193fd4;+g.oma.sip-im;+sip.ice;language="en,fr"
Call-ID: b6dd849a-c20e-c682-0802-7b0edb3365a1
CSeq: 65358 INVITE
Content-Type: application/sdp
Content-Length: 2153
Max-Forwards: 70
User-Agent: IM-client/OMA1.0 sipML5-v1.2014.04.18
Organization: Doubango Telecom

v=0
o=- 8287455714875358000 2 IN IP4 127.0.0.1
s=Doubango Telecom - chrome
t=0 0
a=group:BUNDLE audio
a=msid-semantic: WMS 7Xm9A4y63ZJIvNk5DNkisHLnRkuESOuomh37
m=audio 49927 UDP/TLS/RTP/SAVPF 111 103 104 0 8 106 105 13 126
c=IN IP4 207.162.10.166
a=rtcp:49927 IN IP4 207.162.10.166
a=candidate:2999745851 1 udp 2122260223 192.168.56.1 49926 typ host generation 0
a=candidate:2999745851 2 udp 2122260223 192.168.56.1 49926 typ host generation 0
a=candidate:3782639666 1 udp 2122194687 192.168.10.102 49927 typ host generation 0
a=candidate:3782639666 2 udp 2122194687 192.168.10.102 49927 typ host generation 0
a=candidate:771473313 1 udp 1685987071 207.162.10.166 49927 typ srflx raddr 192.168.10.102 rport 49927 generation 0
a=candidate:771473313 2 udp 1685987071 207.162.10.166 49927 typ srflx raddr 192.168.10.102 rport 49927 generation 0
a=candidate:4233069003 1 tcp 1518280447 192.168.56.1 0 typ host tcptype active generation 0
a=candidate:4233069003 2 tcp 1518280447 192.168.56.1 0 typ host tcptype active generation 0
a=candidate:2952101058 1 tcp 1518214911 192.168.10.102 0 typ host tcptype active generation 0
a=candidate:2952101058 2 tcp 1518214911 192.168.10.102 0 typ host tcptype active generation 0
a=ice-ufrag:MwhBkSFG9Ov3z5qp
a=ice-pwd:rww0LRtT2qTNHirCQ/QNBlWm
a=ice-options:google-ice
a=fingerprint:sha-256 B5:27:21:87:CD:21:BF:E9:92:A9:55:16:AE:FE:5F:8E:5D:7D:4F:3C:B2:EA:CA:51:CB:D2:A1:F4:ED:03:54:E7
a=setup:actpass
a=mid:audio
a=extmap:1 urn:ietf:params:rtp-hdrext:ssrc-audio-level
a=extmap:3 http://www.webrtc.org/experiments/rtp-hdrext/abs-send-time
a=sendrecv
a=rtcp-mux
a=rtpmap:111 opus/48000/2
a=fmtp:111 minptime=10
a=rtpmap:103 ISAC/16000
a=rtpmap:104 ISAC/32000
a=rtpmap:0 PCMU/8000
a=rtpmap:8 PCMA/8000
a=rtpmap:106 CN/32000
a=rtpmap:105 CN/16000
a=rtpmap:13 CN/8000
a=rtpmap:126 telephone-event/8000
a=maxptime:60
a=ssrc:2380123242 cname:BsVHcarYr2rdtCpy
a=ssrc:2380123242 msid:7Xm9A4y63ZJIvNk5DNkisHLnRkuESOuomh37 ab2994c3-e2e3-4903-b147-5eb3be8602db
a=ssrc:2380123242 mslabel:7Xm9A4y63ZJIvNk5DNkisHLnRkuESOuomh37
a=ssrc:2380123242 label:ab2994c3-e2e3-4903-b147-5eb3be8602db
<------------->
--- (12 headers 44 lines) ---
Using INVITE request as basis request - b6dd849a-c20e-c682-0802-7b0edb3365a1
Found peer '1060' for '1060' from 192.168.10.102:50162

<--- Reliably Transmitting (NAT) to 192.168.10.102:50162 --->
SIP/2.0 401 Unauthorized
Via: SIP/2.0/WS df7jal23ls0d.invalid;branch=z9hG4bKQMKlkFEyIu2fstl3S3DOo30PA7mNmATe;received=192.168.10.102;rport=50162
From: "1060"<sip:1060@doubango.org>;tag=8uEBBzWaND7t0A39IcpD
To: <sip:1061@doubango.org>;tag=as4856ab1f
Call-ID: b6dd849a-c20e-c682-0802-7b0edb3365a1
CSeq: 65358 INVITE
Server: Asterisk PBX 13.0.1
Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, SUBSCRIBE, NOTIFY, INFO, PUBLISH, MESSAGE
Supported: replaces, timer
WWW-Authenticate: Digest algorithm=MD5, realm="doubango.org", nonce="0f9f4c90"
Content-Length: 0


<------------>
Scheduling destruction of SIP dialog 'b6dd849a-c20e-c682-0802-7b0edb3365a1' in 32000 ms (Method: INVITE)

<--- SIP read from WS:192.168.10.102:50162 --->
ACK sip:1061@doubango.org SIP/2.0
Via: SIP/2.0/WS df7jal23ls0d.invalid;branch=z9hG4bKQMKlkFEyIu2fstl3S3DOo30PA7mNmATe;rport
From: "1060"<sip:1060@doubango.org>;tag=8uEBBzWaND7t0A39IcpD
To: <sip:1061@doubango.org>;tag=as4856ab1f
Call-ID: b6dd849a-c20e-c682-0802-7b0edb3365a1
CSeq: 65358 ACK
Content-Length: 0
Max-Forwards: 70

<------------->
--- (8 headers 0 lines) ---

<--- SIP read from WS:192.168.10.102:50162 --->
INVITE sip:1061@doubango.org SIP/2.0
Via: SIP/2.0/WS df7jal23ls0d.invalid;branch=z9hG4bKaRHhavVgQhNexGzeicZ856ayuCnXDk7r;rport
From: "1060"<sip:1060@doubango.org>;tag=8uEBBzWaND7t0A39IcpD
To: <sip:1061@doubango.org>
Contact: "1060"<sip:1060@df7jal23ls0d.invalid;rtcweb-breaker=yes;click2call=no;transport=ws>;impi=1060;ha1=11ae210c967672e2981b38443f193fd4;+g.oma.sip-im;+sip.ice;language="en,fr"
Call-ID: b6dd849a-c20e-c682-0802-7b0edb3365a1
CSeq: 65359 INVITE
Content-Type: application/sdp
Content-Length: 2153
Max-Forwards: 70
Authorization: Digest username="1060",realm="doubango.org",nonce="0f9f4c90",uri="sip:1061@doubango.org",response="fad8bc7189034b543fa54058e369b451",algorithm=MD5
User-Agent: IM-client/OMA1.0 sipML5-v1.2014.04.18
Organization: Doubango Telecom

v=0
o=- 8287455714875358000 2 IN IP4 127.0.0.1
s=Doubango Telecom - chrome
t=0 0
a=group:BUNDLE audio
a=msid-semantic: WMS 7Xm9A4y63ZJIvNk5DNkisHLnRkuESOuomh37
m=audio 49927 UDP/TLS/RTP/SAVPF 111 103 104 0 8 106 105 13 126
c=IN IP4 207.162.10.166
a=rtcp:49927 IN IP4 207.162.10.166
a=candidate:2999745851 1 udp 2122260223 192.168.56.1 49926 typ host generation 0
a=candidate:2999745851 2 udp 2122260223 192.168.56.1 49926 typ host generation 0
a=candidate:3782639666 1 udp 2122194687 192.168.10.102 49927 typ host generation 0
a=candidate:3782639666 2 udp 2122194687 192.168.10.102 49927 typ host generation 0
a=candidate:771473313 1 udp 1685987071 207.162.10.166 49927 typ srflx raddr 192.168.10.102 rport 49927 generation 0
a=candidate:771473313 2 udp 1685987071 207.162.10.166 49927 typ srflx raddr 192.168.10.102 rport 49927 generation 0
a=candidate:4233069003 1 tcp 1518280447 192.168.56.1 0 typ host tcptype active generation 0
a=candidate:4233069003 2 tcp 1518280447 192.168.56.1 0 typ host tcptype active generation 0
a=candidate:2952101058 1 tcp 1518214911 192.168.10.102 0 typ host tcptype active generation 0
a=candidate:2952101058 2 tcp 1518214911 192.168.10.102 0 typ host tcptype active generation 0
a=ice-ufrag:MwhBkSFG9Ov3z5qp
a=ice-pwd:rww0LRtT2qTNHirCQ/QNBlWm
a=ice-options:google-ice
a=fingerprint:sha-256 B5:27:21:87:CD:21:BF:E9:92:A9:55:16:AE:FE:5F:8E:5D:7D:4F:3C:B2:EA:CA:51:CB:D2:A1:F4:ED:03:54:E7
a=setup:actpass
a=mid:audio
a=extmap:1 urn:ietf:params:rtp-hdrext:ssrc-audio-level
a=extmap:3 http://www.webrtc.org/experiments/rtp-hdrext/abs-send-time
a=sendrecv
a=rtcp-mux
a=rtpmap:111 opus/48000/2
a=fmtp:111 minptime=10
a=rtpmap:103 ISAC/16000
a=rtpmap:104 ISAC/32000
a=rtpmap:0 PCMU/8000
a=rtpmap:8 PCMA/8000
a=rtpmap:106 CN/32000
a=rtpmap:105 CN/16000
a=rtpmap:13 CN/8000
a=rtpmap:126 telephone-event/8000
a=maxptime:60
a=ssrc:2380123242 cname:BsVHcarYr2rdtCpy
a=ssrc:2380123242 msid:7Xm9A4y63ZJIvNk5DNkisHLnRkuESOuomh37 ab2994c3-e2e3-4903-b147-5eb3be8602db
a=ssrc:2380123242 mslabel:7Xm9A4y63ZJIvNk5DNkisHLnRkuESOuomh37
a=ssrc:2380123242 label:ab2994c3-e2e3-4903-b147-5eb3be8602db
<------------->
--- (13 headers 44 lines) ---
Using INVITE request as basis request - b6dd849a-c20e-c682-0802-7b0edb3365a1
Found peer '1060' for '1060' from 192.168.10.102:50162
Found RTP audio format 111
Found RTP audio format 103
Found RTP audio format 104
Found RTP audio format 0
Found RTP audio format 8
Found RTP audio format 106
Found RTP audio format 105
Found RTP audio format 13
Found RTP audio format 126
Found audio description format opus for ID 111
Found unknown media description format ISAC for ID 103
Found unknown media description format ISAC for ID 104
Found audio description format PCMU for ID 0
Found audio description format PCMA for ID 8
Found unknown media description format CN for ID 106
Found unknown media description format CN for ID 105
Found audio description format CN for ID 13
Found audio description format telephone-event for ID 126
failed to extend from 64 to 98
Capabilities: us - (ulaw|alaw|gsm|h263|g723|g726|g726aal2|adpcm|slin|slin|slin|), peer - audio=(ulaw|alaw)/video=(nothing)/text=(nothing), combined - (ulaw|alaw)
Non-codec capabilities (dtmf): us - 0x1 (telephone-event|), peer - 0x3 (telephone-event|CN|), combined - 0x1 (telephone-event|)
Peer audio RTP is at port 207.162.10.166:49927
Peer doesn't provide video
Looking for 1061 in default (domain doubango.org)
sip_route_dump: route/path hop: <sip:1060@df7jal23ls0d.invalid;rtcweb-breaker=yes;click2call=no;transport=ws>

<--- Transmitting (NAT) to 192.168.10.102:50162 --->
SIP/2.0 100 Trying
Via: SIP/2.0/WS df7jal23ls0d.invalid;branch=z9hG4bKaRHhavVgQhNexGzeicZ856ayuCnXDk7r;received=192.168.10.102;rport=50162
From: "1060"<sip:1060@doubango.org>;tag=8uEBBzWaND7t0A39IcpD
To: <sip:1061@doubango.org>
Call-ID: b6dd849a-c20e-c682-0802-7b0edb3365a1
CSeq: 65359 INVITE
Server: Asterisk PBX 13.0.1
Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, SUBSCRIBE, NOTIFY, INFO, PUBLISH, MESSAGE
Supported: replaces, timer
Contact: <sip:1061@192.168.10.109:5060;transport=WS>
Content-Length: 0


<------------>
We think we can do text
Audio is at 16562
Video is at 192.168.10.109:19038
Adding codec ulaw to SDP
Adding codec alaw to SDP
Adding codec gsm to SDP
Adding video codec h263 to SDP
Adding codec g723 to SDP
Adding codec g726 to SDP
Adding codec g726aal2 to SDP
Adding codec adpcm to SDP
Adding codec slin to SDP
Adding codec slin to SDP
Adding codec slin to SDP
Adding codec slin to SDP
Adding codec slin to SDP
Adding codec slin to SDP
Adding codec slin to SDP
Adding codec slin to SDP
Adding codec slin to SDP
Adding codec lpc10 to SDP
Adding codec g729 to SDP
Adding codec speex to SDP
Adding codec speex to SDP
Adding codec speex to SDP
Adding codec ilbc to SDP
Adding codec g722 to SDP
Adding codec siren7 to SDP
Adding codec siren14 to SDP
Adding codec testlaw to SDP
Adding codec g719 to SDP
Adding codec opus to SDP
Adding video codec h261 to SDP
Adding video codec h263p to SDP
Adding video codec h264 to SDP
Adding video codec mpeg4 to SDP
Adding video codec vp8 to SDP
Adding codec none to SDP
Adding non-codec 0x1 (telephone-event) to SDP
Reliably Transmitting (NAT) to 192.168.10.102:50163:
INVITE sip:1061@df7jal23ls0d.invalid;rtcweb-breaker=yes;transport=ws SIP/2.0
Via: SIP/2.0/WS 192.168.10.109:5060;branch=z9hG4bK67ebe9be;rport
Max-Forwards: 70
From: "1060" <sip:1060@192.168.10.109>;tag=as162314ad
To: <sip:1061@df7jal23ls0d.invalid;rtcweb-breaker=yes;transport=ws>
Contact: <sip:1060@192.168.10.109:5060;transport=WS>
Call-ID: 69af5c6775ff2046095da6a54e22d43b@192.168.10.109:5060
CSeq: 102 INVITE
User-Agent: Asterisk PBX 13.0.1
Date: Fri, 05 Dec 2014 17:13:47 GMT
Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, SUBSCRIBE, NOTIFY, INFO, PUBLISH, MESSAGE
Supported: replaces, timer
Content-Type: application/sdp
Content-Length: 1389

v=0
o=root 85583298 85583298 IN IP4 192.168.10.109
s=Asterisk PBX 13.0.1
c=IN IP4 192.168.10.109
b=CT:384
t=0 0
m=audio 16562 UDP/TLS/RTP/SAVPF 0 8 3 4 111 112 5 10 118 7 18 110 117 119 97 9 102 115 116 107 101
a=rtpmap:0 PCMU/8000
a=rtpmap:8 PCMA/8000
a=rtpmap:3 GSM/8000
a=rtpmap:4 G723/8000
a=fmtp:4 annexa=no
a=rtpmap:111 G726-32/8000
a=rtpmap:112 AAL2-G726-32/8000
a=rtpmap:5 DVI4/8000
a=rtpmap:10 L16/8000
a=rtpmap:118 L16/16000
a=rtpmap:7 LPC/8000
a=rtpmap:18 G729/8000
a=fmtp:18 annexb=no
a=rtpmap:110 speex/8000
a=rtpmap:117 speex/16000
a=rtpmap:119 speex/32000
a=rtpmap:97 iLBC/8000
a=fmtp:97 mode=0
a=rtpmap:9 G722/8000
a=rtpmap:102 G7221/16000
a=fmtp:102 bitrate=32000
a=rtpmap:115 G7221/32000
a=fmtp:115 bitrate=48000
a=rtpmap:116 G719/48000
a=fmtp:116 bitrate=64000
a=rtpmap:107 opus/48000/2
a=rtpmap:101 telephone-event/8000
a=fmtp:101 0-16
a=maxptime:20
a=connection:new
a=setup:actpass
a=fingerprint:SHA-1 C5:4F:EC:21:D8:2A:23:17:02:27:83:F1:6D:D6:BE:83:AF:94:A9:B7
a=sendrecv
m=video 19038 UDP/TLS/RTP/SAVPF 34 31 98 99 104 100
a=connection:new
a=setup:actpass
a=fingerprint:SHA-1 C5:4F:EC:21:D8:2A:23:17:02:27:83:F1:6D:D6:BE:83:AF:94:A9:B7
a=rtpmap:34 H263/90000
a=rtpmap:31 H261/90000
a=rtpmap:98 h263-1998/90000
a=rtpmap:99 H264/90000
a=rtpmap:104 MP4V-ES/90000
a=rtpmap:100 VP8/90000
a=rtcp-fb:* ccm fir
a=sendrecv

---

<--- SIP read from WS:192.168.10.102:50163 --->
SIP/2.0 100 Trying (sent from the Transaction Layer)
Via: SIP/2.0/WS 192.168.10.109:5060;rport=5060;branch=z9hG4bK67ebe9be
From: "1060"<sip:1060@192.168.10.109>;tag=as162314ad
To: <sip:1061@df7jal23ls0d.invalid;rtcweb-breaker=yes;transport=ws>
Call-ID: 69af5c6775ff2046095da6a54e22d43b@192.168.10.109:5060
CSeq: 102 INVITE
Content-Length: 0

<------------->
--- (7 headers 0 lines) ---

<--- SIP read from WS:192.168.10.102:50163 --->
SIP/2.0 180 Ringing
Via: SIP/2.0/WS 192.168.10.109:5060;rport=5060;branch=z9hG4bK67ebe9be
From: "1060"<sip:1060@192.168.10.109>;tag=as162314ad
To: <sip:1061@df7jal23ls0d.invalid;rtcweb-breaker=yes;transport=ws>;tag=Vu3uUh9OTdnaT1vVhcoZ
Contact: <sip:1061@df7jal23ls0d.invalid;transport=ws>
Call-ID: 69af5c6775ff2046095da6a54e22d43b@192.168.10.109:5060
CSeq: 102 INVITE
Content-Length: 0
Allow: ACK, BYE, CANCEL, INVITE, MESSAGE, NOTIFY, OPTIONS, PRACK, REFER, UPDATE

<------------->
--- (9 headers 0 lines) ---
sip_route_dump: route/path hop: <sip:1061@df7jal23ls0d.invalid;transport=ws>

<--- Transmitting (NAT) to 192.168.10.102:50162 --->
SIP/2.0 180 Ringing
Via: SIP/2.0/WS df7jal23ls0d.invalid;branch=z9hG4bKaRHhavVgQhNexGzeicZ856ayuCnXDk7r;received=192.168.10.102;rport=50162
From: "1060"<sip:1060@doubango.org>;tag=8uEBBzWaND7t0A39IcpD
To: <sip:1061@doubango.org>;tag=as4715a5ca
Call-ID: b6dd849a-c20e-c682-0802-7b0edb3365a1
CSeq: 65359 INVITE
Server: Asterisk PBX 13.0.1
Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, SUBSCRIBE, NOTIFY, INFO, PUBLISH, MESSAGE
Supported: replaces, timer
Contact: <sip:1061@192.168.10.109:5060;transport=WS>
Content-Length: 0


<------------>
Really destroying SIP dialog '07b1f055-deeb-64cc-0687-cb841aada377' Method: REGISTER

<--- SIP read from WS:192.168.10.102:50163 --->
SIP/2.0 603 Failed to get local SDP
Via: SIP/2.0/WS 192.168.10.109:5060;rport=5060;branch=z9hG4bK67ebe9be
From: "1060"<sip:1060@192.168.10.109>;tag=as162314ad
To: <sip:1061@df7jal23ls0d.invalid;rtcweb-breaker=yes;transport=ws>;tag=Vu3uUh9OTdnaT1vVhcoZ
Call-ID: 69af5c6775ff2046095da6a54e22d43b@192.168.10.109:5060
CSeq: 102 INVITE
Content-Length: 0
Reason: SIP; cause=603; text="Failed to get local SDP"

<------------->
--- (8 headers 0 lines) ---
Transmitting (NAT) to 192.168.10.102:50163:
ACK sip:1061@df7jal23ls0d.invalid;transport=ws SIP/2.0
Via: SIP/2.0/WS 192.168.10.109:5060;branch=z9hG4bK67ebe9be;rport
Max-Forwards: 70
From: "1060" <sip:1060@192.168.10.109>;tag=as162314ad
To: <sip:1061@df7jal23ls0d.invalid;rtcweb-breaker=yes;transport=ws>;tag=Vu3uUh9OTdnaT1vVhcoZ
Contact: <sip:1060@192.168.10.109:5060;transport=WS>
Call-ID: 69af5c6775ff2046095da6a54e22d43b@192.168.10.109:5060
CSeq: 102 ACK
User-Agent: Asterisk PBX 13.0.1
Content-Length: 0


---

<--- Reliably Transmitting (NAT) to 192.168.10.102:50162 --->
SIP/2.0 486 Busy Here
Via: SIP/2.0/WS df7jal23ls0d.invalid;branch=z9hG4bKaRHhavVgQhNexGzeicZ856ayuCnXDk7r;received=192.168.10.102;rport=50162
From: "1060"<sip:1060@doubango.org>;tag=8uEBBzWaND7t0A39IcpD
To: <sip:1061@doubango.org>;tag=as4715a5ca
Call-ID: b6dd849a-c20e-c682-0802-7b0edb3365a1
CSeq: 65359 INVITE
Server: Asterisk PBX 13.0.1
Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, SUBSCRIBE, NOTIFY, INFO, PUBLISH, MESSAGE
Supported: replaces, timer
X-Asterisk-HangupCause: Call Rejected
X-Asterisk-HangupCauseCode: 21
Content-Length: 0


<------------>

<--- SIP read from WS:192.168.10.102:50163 --->
SIP/2.0 481 Dialog/Transaction Does Not Exist
Via: SIP/2.0/WS 192.168.10.109:5060;rport=5060;branch=z9hG4bK67ebe9be
From: "1060"<sip:1060@192.168.10.109>;tag=as162314ad
To: <sip:1061@df7jal23ls0d.invalid;rtcweb-breaker=yes;transport=ws>;tag=Vu3uUh9OTdnaT1vVhcoZ
Call-ID: 69af5c6775ff2046095da6a54e22d43b@192.168.10.109:5060
CSeq: 102 ACK
Content-Length: 0

<------------->
--- (7 headers 0 lines) ---
[Dec  5 12:13:51] WARNING[2865][C-00000001]: chan_sip.c:24189 handle_response: Remote host can't match request ACK to call '69af5c6775ff2046095da6a54e22d43b@192.168.10.109:5060'. Giving up.

<--- SIP read from WS:192.168.10.102:50162 --->
ACK sip:1061@doubango.org SIP/2.0
Via: SIP/2.0/WS df7jal23ls0d.invalid;branch=z9hG4bKaRHhavVgQhNexGzeicZ856ayuCnXDk7r;rport
From: "1060"<sip:1060@doubango.org>;tag=8uEBBzWaND7t0A39IcpD
To: <sip:1061@doubango.org>;tag=as4715a5ca
Call-ID: b6dd849a-c20e-c682-0802-7b0edb3365a1
CSeq: 65359 ACK
Content-Length: 0
Max-Forwards: 70

<------------->
--- (8 headers 0 lines) ---
Really destroying SIP dialog '69af5c6775ff2046095da6a54e22d43b@192.168.10.109:5060' Method: INVITE
Really destroying SIP dialog 'b6dd849a-c20e-c682-0802-7b0edb3365a1' Method: INVITE
Really destroying SIP dialog '824ee07e-2f1c-e5b4-9ff8-600ba6a2d0a0' Method: REGISTER


Could you, please, help me out what went wrong and how to deal with it ? Image
and explain to me what does it mean :
Quote: Remote host can't match request ACK to call ...


Code: WARNING[2865][C-00000001]: chan_sip.c:24189 handle_response: Remote host can't match request ACK to call '69af5c6775ff2046095da6a54e22d43b@192.168.10.109:5060'. Giving up.


Thanks in advance !

Statistics : Posted by aymen_chetoui • on Fri Dec 05, 2014 11:23 am • Replies 1 • Views 52

Curl function problem

$
0
0
Hi all,

I use curl function to communicate with my tomcat server.
I noticed that curl request are not made concurrent but they are queued (FIFO).
Is there a way to change it?

I explain my problem.
If on a channel a curl will occupy 20 seconds, on any other channel a shortest curl will not be executed until the firs one is finished, so one call block all other calls.

Is there a workaround?
I tried it with asteris 1.8 and 1.11 and they have the same background.

Thanks
Marco

Statistics : Posted by tarmak • on Fri Dec 05, 2014 11:42 am • Replies 0 • Views 41

SIP -> OOH323 Audio Only Segmentation Fault

$
0
0
Any call that I have bridged to the OOH323 channel results in 100% CPU usage and a segmentation fault. I've narrowed it down the OOH323 channel driver using the directions found here:

http://www.moythreads.com/wordpress/2009/05/06/why-does-asterisk-consume-100-cpu/comment-page-1/

Running Asterisk version: SVN-trunk-r428974 on CentOS

Backtrace
Code: (gdb) bt
#0  0x000000070001e501 in ?? ()
#1  0x00007f32a6f05309 in ooClearLogicalChannel (call=0x7f32d8007be8, channelNo=1002) at ooh323c/src/ooLogChan.c:338
#2  0x00007f32a6f05139 in ooClearAllLogicalChannels (call=0x7f32d8007be8) at ooh323c/src/ooLogChan.c:292
#3  0x00007f32a6f3da2f in ooEndCall (call=0x7f32d8007be8) at ooh323c/src/ooCalls.c:238
#4  0x00007f32a6f18d37 in ooProcessCallFDSETsAndTimers (call=0x7f32d8007be8, pfds=0x7f329dd5cc00, nfds=3, pToMin=0x7f329dd5cc30)
    at ooh323c/src/oochannels.c:734
#5  0x00007f32a6f19461 in ooMonitorCallChannels (call=0x7f32d8007be8) at ooh323c/src/oochannels.c:946
#6  0x00007f32a708c6b9 in ooh323c_call_thread (dummy=0x7f32d8002d90) at ooh323cDriver.c:89
#7  0x00000000005ec64b in dummy_start (data=0x7f32d8002e00) at utils.c:1232
#8  0x00007f32e02579d1 in start_thread (arg=0x7f329dd5d700) at pthread_create.c:301
#9  0x00007f32df5df9dd in clone () at .http://forums.asterisk.org/sysdeps/unix/sysv/linux/x86_64/clone.S:115


Full back trace

Code: (gdb) bt full
#0  0x000000070001e501 in ?? ()
No symbol table info available.
#1  0x00007f32a6f05309 in ooClearLogicalChannel (call=0x7f32d8007be8, channelNo=1002) at ooh323c/src/ooLogChan.c:338
        pLogicalChannel = 0x7f32b8011320
        epCap = 0x7f32b800d628
#2  0x00007f32a6f05139 in ooClearAllLogicalChannels (call=0x7f32d8007be8) at ooh323c/src/ooLogChan.c:292
        temp = 0x7f32b80117f0
        prev = 0x7f32b8011320
#3  0x00007f32a6f3da2f in ooEndCall (call=0x7f32d8007be8) at ooh323c/src/ooCalls.c:238
No locals.
#4  0x00007f32a6f18d37 in ooProcessCallFDSETsAndTimers (call=0x7f32d8007be8, pfds=0x7f329dd5cc00, nfds=3, pToMin=0x7f329dd5cc30)
    at ooh323c/src/oochannels.c:734
        toNext = {tv_sec = 12884903988, tv_usec = 139855373126656}
        __PRETTY_FUNCTION__ = "ooProcessCallFDSETsAndTimers"
#5  0x00007f32a6f19461 in ooMonitorCallChannels (call=0x7f32d8007be8) at ooh323c/src/oochannels.c:946
        ret = 1
        nfds = 3
        zeroloops = 1
        toMin = {tv_sec = 2, tv_usec = 100000}
        pfds = {{fd = 33, events = 1, revents = 1}, {fd = 35, events = 1, revents = 0}, {fd = 36, events = 1, revents = 0}, {fd = -1630869088, events = 32562,
            revents = 0}, {fd = -1646929472, events = 32562, revents = 0}}
        pctxt = 0x7f32a70ad5d1
        __PRETTY_FUNCTION__ = "ooMonitorCallChannels"
#6  0x00007f32a708c6b9 in ooh323c_call_thread (dummy=0x7f32d8002d90) at ooh323cDriver.c:89
        mycthread = 0x7f32d8002d90
        pfds = {{fd = 24, events = 1, revents = 1}}
        c = 99 'c'
        res = 1
        __PRETTY_FUNCTION__ = "ooh323c_call_thread"
#7  0x00000000005ec64b in dummy_start (data=0x7f32d8002e00) at utils.c:1232
        __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {0, -8658645025706208028, 139855389190560, 139855373130176, 0, 3, -8658645025748151068,
                8769470750801794276}, __mask_was_saved = 0}}, __pad = {0x7f329dd5ce30, 0x0, 0x0, 0x0}}
        __cancel_routine = 0x44f94c <ast_unregister_thread>
        __cancel_arg = 0x7f329dd5d700
        not_first_call = 0
        ret = 0x0
        a = {start_routine = 0x7f32a708c68e <ooh323c_call_thread>, data = 0x7f32d8002d90,
          name = 0x7f32d8003710 "ooh323c_call_thread  started at [  169] ooh323cDriver.c ooh323c_start_call_thread()"}
#8  0x00007f32e02579d1 in start_thread (arg=0x7f329dd5d700) at pthread_create.c:301
        __res = <value optimized out>
        pd = 0x7f329dd5d700
        now = <value optimized out>
        unwind_buf = {cancel_jmp_buf = {{jmp_buf = {139855373129472, 8769471178083669220, 139855389190560, 139855373130176, 0, 3, -8658645025699916572,
                -8658544288994159388}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}}
        not_first_call = <value optimized out>
        pagesize_m1 = <value optimized out>
        sp = <value optimized out>
        freesize = <value optimized out>
#9  0x00007f32df5df9dd in clone () at .http://forums.asterisk.org/sysdeps/unix/sysv/linux/x86_64/clone.S:115
No locals.


Thread Apply All BT
Code: (gdb) thread apply all bt

Thread 52 (Thread 0x7f329ddd9700 (LWP 62565)):
#0  __lll_unlock_wake () at .http://forums.asterisk.org/nptl/sysdeps/unix/sysv/linux/x86_64/lowlevellock.S:373
#1  0x00007f32e025a877 in _L_unlock_657 () from /lib64/libpthread-2.12.so
#2  0x00007f32e025a7df in __pthread_mutex_unlock_usercnt (mutex=0x204a180) at pthread_mutex_unlock.c:52
#3  __pthread_mutex_unlock (mutex=0x204a180) at pthread_mutex_unlock.c:290
#4  0x000000000053399f in __ast_pthread_mutex_unlock (filename=0x7f32a7091cee "ooh323c/src/ooCmdChannel.c", lineno=146,
    func=0x7f32a7092010 "ooWriteCallStackCommand", mutex_name=0x7f32a7091d38 "call->CmdChanLock", t=0x204a180) at lock.c:470
#5  0x00007f32a6f039ec in ooWriteCallStackCommand (call=0x7f32d8007be8, cmd=0x7f329ddd8b30) at ooh323c/src/ooCmdChannel.c:146
#6  0x00007f32a6f3ff42 in ooHangCall (callToken=0x205e830 "ooh323c_o_3", reason=OO_REASON_REMOTE_CLEARED, q931cause=16) at ooh323c/src/ooStackCmds.c:419
#7  0x00007f32a6ef134a in ooh323_hangup (ast=0x204e038) at chan_ooh323.c:1074
#8  0x00000000004b036b in ast_hangup (chan=0x204e038) at channel.c:2701
#9  0x0000000000475c05 in ast_bridge_run_after_goto (chan=0x204e038) at bridge_after.c:544
#10 0x000000000046bba3 in bridge_channel_ind_thread (data=0x20574c8) at bridge.c:1663
#11 0x00000000005ec64b in dummy_start (data=0x20575e0) at utils.c:1232
#12 0x00007f32e02579d1 in start_thread (arg=0x7f329ddd9700) at pthread_create.c:301
#13 0x00007f32df5df9dd in clone () at .http://forums.asterisk.org/sysdeps/unix/sysv/linux/x86_64/clone.S:115

Thread 51 (Thread 0x7f329e789700 (LWP 62538)):
#0  pthread_cond_wait@@GLIBC_2.3.2 () at .http://forums.asterisk.org/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S:183
#1  0x0000000000533a88 in __ast_cond_wait (filename=0x7f32b132ebb4 "chan_iax2.c", lineno=12093, func=0x7f32b1335e80 "iax2_process_thread",
    cond_name=0x7f32b132ef11 "&thread->cond", mutex_name=0x7f32b132ef03 "&thread->lock", cond=0x1ff5f80, t=0x1ff5f48) at lock.c:565
#2  0x00007f32b13125ac in iax2_process_thread (data=0x1ff4e10) at chan_iax2.c:12093
#3  0x00000000005ec64b in dummy_start (data=0x1fe8090) at utils.c:1232
#4  0x00007f32e02579d1 in start_thread (arg=0x7f329e789700) at pthread_create.c:301
#5  0x00007f32df5df9dd in clone () at .http://forums.asterisk.org/sysdeps/unix/sysv/linux/x86_64/clone.S:115

Thread 50 (Thread 0x7f32ddb8c700 (LWP 62520)):
#0  sem_wait () at .http://forums.asterisk.org/nptl/sysdeps/unix/sysv/linux/x86_64/sem_wait.S:86
#1  0x00000000005d73a3 in ast_sem_wait (data=0x1da6bb8) at /usr/src/asterisk/include/asterisk/sem.h:59
#2  default_tps_processing_function (data=0x1da6bb8) at taskprocessor.c:177
#3  0x00000000005ec64b in dummy_start (data=0x1d9e1a0) at utils.c:1232
#4  0x00007f32e02579d1 in start_thread (arg=0x7f32ddb8c700) at pthread_create.c:301
#5  0x00007f32df5df9dd in clone () at .http://forums.asterisk.org/sysdeps/unix/sysv/linux/x86_64/clone.S:115

Thread 49 (Thread 0x7f329de55700 (LWP 62557)):
#0  0x00007f32df5d61b3 in __poll (fds=<value optimized out>, nfds=<value optimized out>, timeout=<value optimized out>) at .http://forums.asterisk.org/sysdeps/unix/sysv/linux/poll.c:87
#1  0x0000000000458575 in monitor_sig_flags (unused=0x0) at asterisk.c:3659
#2  0x00000000005ec64b in dummy_start (data=0x2047dc0) at utils.c:1232
#3  0x00007f32e02579d1 in start_thread (arg=0x7f329de55700) at pthread_create.c:301
#4  0x00007f32df5df9dd in clone () at .http://forums.asterisk.org/sysdeps/unix/sysv/linux/x86_64/clone.S:115

Thread 48 (Thread 0x7f329ded1700 (LWP 62556)):
#0  sem_wait () at .http://forums.asterisk.org/nptl/sysdeps/unix/sysv/linux/x86_64/sem_wait.S:86
#1  0x00000000005d73a3 in ast_sem_wait (data=0x201b828) at /usr/src/asterisk/include/asterisk/sem.h:59
#2  default_tps_processing_function (data=0x201b828) at taskprocessor.c:177
#3  0x00000000005ec64b in dummy_start (data=0x1f04e40) at utils.c:1232
#4  0x00007f32e02579d1 in start_thread (arg=0x7f329ded1700) at pthread_create.c:301
#5  0x00007f32df5df9dd in clone () at .http://forums.asterisk.org/sysdeps/unix/sysv/linux/x86_64/clone.S:115

Thread 47 (Thread 0x7f329df4d700 (LWP 62555)):
#0  0x00007f32df5d61b3 in __poll (fds=<value optimized out>, nfds=<value optimized out>, timeout=<value optimized out>) at .http://forums.asterisk.org/sysdeps/unix/sysv/linux/poll.c:87
#1  0x00007f32b73f311e in scan_thread (unused=0x0) at pbx_spool.c:712
#2  0x00000000005ec64b in dummy_start (data=0x1edebc0) at utils.c:1232
#3  0x00007f32e02579d1 in start_thread (arg=0x7f329df4d700) at pthread_create.c:301
#4  0x00007f32df5df9dd in clone () at .http://forums.asterisk.org/sysdeps/unix/sysv/linux/x86_64/clone.S:115

Thread 46 (Thread 0x7f329dfc9700 (LWP 62554)):
#0  0x00007f32e025ef3d in nanosleep () at .http://forums.asterisk.org/sysdeps/unix/syscall-template.S:82
#1  0x00007f32abddcd71 in cleanup (unused=0x0) at pbx_realtime.c:134
#2  0x00000000005ec64b in dummy_start (data=0x1eb4ad0) at utils.c:1232
#3  0x00007f32e02579d1 in start_thread (arg=0x7f329dfc9700) at pthread_create.c:301
#4  0x00007f32df5df9dd in clone () at .http://forums.asterisk.org/sysdeps/unix/sysv/linux/x86_64/clone.S:115

Thread 45 (Thread 0x7f329e045700 (LWP 62553)):
#0  0x00007f32df5d61b3 in __poll (fds=<value optimized out>, nfds=<value optimized out>, timeout=<value optimized out>) at .http://forums.asterisk.org/sysdeps/unix/sysv/linux/poll.c:87
#1  0x00007f32a8d41a11 in do_monitor (data=0x0) at chan_phone.c:1102
#2  0x00000000005ec64b in dummy_start (data=0x20133f0) at utils.c:1232
#3  0x00007f32e02579d1 in start_thread (arg=0x7f329e045700) at pthread_create.c:301
#4  0x00007f32df5df9dd in clone () at .http://forums.asterisk.org/sysdeps/unix/sysv/linux/x86_64/clone.S:115

Thread 44 (Thread 0x7f329e0c1700 (LWP 62552)):
#0  0x00007f32e025ef3d in nanosleep () at .http://forums.asterisk.org/sysdeps/unix/syscall-template.S:82
#1  0x00007f32b53b795d in lock_broker (unused=0x0) at func_lock.c:211
#2  0x00000000005ec64b in dummy_start (data=0x1e8d0e0) at utils.c:1232
#3  0x00007f32e02579d1 in start_thread (arg=0x7f329e0c1700) at pthread_create.c:301
#4  0x00007f32df5df9dd in clone () at .http://forums.asterisk.org/sysdeps/unix/sysv/linux/x86_64/clone.S:115

Thread 43 (Thread 0x7f329e13d700 (LWP 62551)):
#0  sem_wait () at .http://forums.asterisk.org/nptl/sysdeps/unix/sysv/linux/x86_64/sem_wait.S:86
#1  0x00000000005d73a3 in ast_sem_wait (data=0x200d728) at /usr/src/asterisk/include/asterisk/sem.h:59
#2  default_tps_processing_function (data=0x200d728) at taskprocessor.c:177
#3  0x00000000005ec64b in dummy_start (data=0x1e8d0e0) at utils.c:1232
#4  0x00007f32e02579d1 in start_thread (arg=0x7f329e13d700) at pthread_create.c:301
#5  0x00007f32df5df9dd in clone () at .http://forums.asterisk.org/sysdeps/unix/sysv/linux/x86_64/clone.S:115

Thread 42 (Thread 0x7f329e1b9700 (LWP 62550)):
#0  sem_wait () at .http://forums.asterisk.org/nptl/sysdeps/unix/sysv/linux/x86_64/sem_wait.S:86
#1  0x00000000005d73a3 in ast_sem_wait (data=0x1e87ea8) at /usr/src/asterisk/include/asterisk/sem.h:59
#2  default_tps_processing_function (data=0x1e87ea8) at taskprocessor.c:177
#3  0x00000000005ec64b in dummy_start (data=0x1e88010) at utils.c:1232
#4  0x00007f32e02579d1 in start_thread (arg=0x7f329e1b9700) at pthread_create.c:301
#5  0x00007f32df5df9dd in clone () at .http://forums.asterisk.org/sysdeps/unix/sysv/linux/x86_64/clone.S:115

Thread 41 (Thread 0x7f329e235700 (LWP 62549)):
#0  sem_wait () at .http://forums.asterisk.org/nptl/sysdeps/unix/sysv/linux/x86_64/sem_wait.S:86
#1  0x00000000005d73a3 in ast_sem_wait (data=0x1e874e8) at /usr/src/asterisk/include/asterisk/sem.h:59
#2  default_tps_processing_function (data=0x1e874e8) at taskprocessor.c:177
#3  0x00000000005ec64b in dummy_start (data=0x1e85ef0) at utils.c:1232
#4  0x00007f32e02579d1 in start_thread (arg=0x7f329e235700) at pthread_create.c:301
#5  0x00007f32df5df9dd in clone () at .http://forums.asterisk.org/sysdeps/unix/sysv/linux/x86_64/clone.S:115

Thread 40 (Thread 0x7f329e2b1700 (LWP 62548)):
#0  0x00007f32df5d61b3 in __poll (fds=<value optimized out>, nfds=<value optimized out>, timeout=<value optimized out>) at .http://forums.asterisk.org/sysdeps/unix/sysv/linux/poll.c:87
#1  0x000000000052bde5 in ast_io_wait (ioc=0x1fcf440, howlong=1000) at io.c:279
#2  0x00007f32b1314d89 in network_thread (ignore=0x0) at chan_iax2.c:12605
#3  0x00000000005ec64b in dummy_start (data=0x1fea840) at utils.c:1232
#4  0x00007f32e02579d1 in start_thread (arg=0x7f329e2b1700) at pthread_create.c:301
#5  0x00007f32df5df9dd in clone () at .http://forums.asterisk.org/sysdeps/unix/sysv/linux/x86_64/clone.S:115

Thread 39 (Thread 0x7f329e32d700 (LWP 62547)):
#0  pthread_cond_wait@@GLIBC_2.3.2 () at .http://forums.asterisk.org/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S:183
#1  0x0000000000533a88 in __ast_cond_wait (filename=0x7f32b132ebb4 "chan_iax2.c", lineno=12093, func=0x7f32b1335e80 "iax2_process_thread",
    cond_name=0x7f32b132ef11 "&thread->cond", mutex_name=0x7f32b132ef03 "&thread->lock", cond=0x2001660, t=0x2001628) at lock.c:565
#2  0x00007f32b13125ac in iax2_process_thread (data=0x20004f0) at chan_iax2.c:12093
#3  0x00000000005ec64b in dummy_start (data=0x1fea840) at utils.c:1232
#4  0x00007f32e02579d1 in start_thread (arg=0x7f329e32d700) at pthread_create.c:301
#5  0x00007f32df5df9dd in clone () at .http://forums.asterisk.org/sysdeps/unix/sysv/linux/x86_64/clone.S:115

Thread 38 (Thread 0x7f329e3a9700 (LWP 62546)):
#0  pthread_cond_wait@@GLIBC_2.3.2 () at .http://forums.asterisk.org/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S:183
#1  0x0000000000533a88 in __ast_cond_wait (filename=0x7f32b132ebb4 "chan_iax2.c", lineno=12093, func=0x7f32b1335e80 "iax2_process_thread",
    cond_name=0x7f32b132ef11 "&thread->cond", mutex_name=0x7f32b132ef03 "&thread->lock", cond=0x20001d0, t=0x2000198) at lock.c:565
#2  0x00007f32b13125ac in iax2_process_thread (data=0x1fff060) at chan_iax2.c:12093
#3  0x00000000005ec64b in dummy_start (data=0x1fe8090) at utils.c:1232
#4  0x00007f32e02579d1 in start_thread (arg=0x7f329e3a9700) at pthread_create.c:301
#5  0x00007f32df5df9dd in clone () at .http://forums.asterisk.org/sysdeps/unix/sysv/linux/x86_64/clone.S:115

Thread 37 (Thread 0x7f329e425700 (LWP 62545)):
#0  pthread_cond_wait@@GLIBC_2.3.2 () at .http://forums.asterisk.org/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S:183
#1  0x0000000000533a88 in __ast_cond_wait (filename=0x7f32b132ebb4 "chan_iax2.c", lineno=12093, func=0x7f32b1335e80 "iax2_process_thread",
    cond_name=0x7f32b132ef11 "&thread->cond", mutex_name=0x7f32b132ef03 "&thread->lock", cond=0x1ffed40, t=0x1ffed08) at lock.c:565
#2  0x00007f32b13125ac in iax2_process_thread (data=0x1ffdbd0) at chan_iax2.c:12093
#3  0x00000000005ec64b in dummy_start (data=0x1ff3b40) at utils.c:1232
#4  0x00007f32e02579d1 in start_thread (arg=0x7f329e425700) at pthread_create.c:301
#5  0x00007f32df5df9dd in clone () at .http://forums.asterisk.org/sysdeps/unix/sysv/linux/x86_64/clone.S:115

Thread 36 (Thread 0x7f329e4a1700 (LWP 62544)):
#0  pthread_cond_wait@@GLIBC_2.3.2 () at .http://forums.asterisk.org/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S:183
#1  0x0000000000533a88 in __ast_cond_wait (filename=0x7f32b132ebb4 "chan_iax2.c", lineno=12093, func=0x7f32b1335e80 "iax2_process_thread",
    cond_name=0x7f32b132ef11 "&thread->cond", mutex_name=0x7f32b132ef03 "&thread->lock", cond=0x1ffd8b0, t=0x1ffd878) at lock.c:565
#2  0x00007f32b13125ac in iax2_process_thread (data=0x1ffc740) at chan_iax2.c:12093
#3  0x00000000005ec64b in dummy_start (data=0x1fea840) at utils.c:1232
#4  0x00007f32e02579d1 in start_thread (arg=0x7f329e4a1700) at pthread_create.c:301
#5  0x00007f32df5df9dd in clone () at .http://forums.asterisk.org/sysdeps/unix/sysv/linux/x86_64/clone.S:115

Thread 35 (Thread 0x7f329e51d700 (LWP 62543)):
#0  pthread_cond_wait@@GLIBC_2.3.2 () at .http://forums.asterisk.org/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S:183
#1  0x0000000000533a88 in __ast_cond_wait (filename=0x7f32b132ebb4 "chan_iax2.c", lineno=12093, func=0x7f32b1335e80 "iax2_process_thread",
    cond_name=0x7f32b132ef11 "&thread->cond", mutex_name=0x7f32b132ef03 "&thread->lock", cond=0x1ffc420, t=0x1ffc3e8) at lock.c:565
#2  0x00007f32b13125ac in iax2_process_thread (data=0x1ffb2b0) at chan_iax2.c:12093
#3  0x00000000005ec64b in dummy_start (data=0x1fe8090) at utils.c:1232
#4  0x00007f32e02579d1 in start_thread (arg=0x7f329e51d700) at pthread_create.c:301
#5  0x00007f32df5df9dd in clone () at .http://forums.asterisk.org/sysdeps/unix/sysv/linux/x86_64/clone.S:115

Thread 34 (Thread 0x7f329e599700 (LWP 62542)):
#0  pthread_cond_wait@@GLIBC_2.3.2 () at .http://forums.asterisk.org/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S:183
#1  0x0000000000533a88 in __ast_cond_wait (filename=0x7f32b132ebb4 "chan_iax2.c", lineno=12093, func=0x7f32b1335e80 "iax2_process_thread",
    cond_name=0x7f32b132ef11 "&thread->cond", mutex_name=0x7f32b132ef03 "&thread->lock", cond=0x1ffb000, t=0x1ffafc8) at lock.c:565
#2  0x00007f32b13125ac in iax2_process_thread (data=0x1ff9e90) at chan_iax2.c:12093
#3  0x00000000005ec64b in dummy_start (data=0x1ff3b40) at utils.c:1232
#4  0x00007f32e02579d1 in start_thread (arg=0x7f329e599700) at pthread_create.c:301
#5  0x00007f32df5df9dd in clone () at .http://forums.asterisk.org/sysdeps/unix/sysv/linux/x86_64/clone.S:115

Thread 33 (Thread 0x7f329e615700 (LWP 62541)):
#0  pthread_cond_wait@@GLIBC_2.3.2 () at .http://forums.asterisk.org/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S:183
#1  0x0000000000533a88 in __ast_cond_wait (filename=0x7f32b132ebb4 "chan_iax2.c", lineno=12093, func=0x7f32b1335e80 "iax2_process_thread",
    cond_name=0x7f32b132ef11 "&thread->cond", mutex_name=0x7f32b132ef03 "&thread->lock", cond=0x1ff9be0, t=0x1ff9ba8) at lock.c:565
#2  0x00007f32b13125ac in iax2_process_thread (data=0x1ff8a70) at chan_iax2.c:12093
#3  0x00000000005ec64b in dummy_start (data=0x1fea840) at utils.c:1232
#4  0x00007f32e02579d1 in start_thread (arg=0x7f329e615700) at pthread_create.c:301
#5  0x00007f32df5df9dd in clone () at .http://forums.asterisk.org/sysdeps/unix/sysv/linux/x86_64/clone.S:115

Thread 32 (Thread 0x7f329e691700 (LWP 62540)):
#0  pthread_cond_wait@@GLIBC_2.3.2 () at .http://forums.asterisk.org/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S:183
#1  0x0000000000533a88 in __ast_cond_wait (filename=0x7f32b132ebb4 "chan_iax2.c", lineno=12093, func=0x7f32b1335e80 "iax2_process_thread",
    cond_name=0x7f32b132ef11 "&thread->cond", mutex_name=0x7f32b132ef03 "&thread->lock", cond=0x1ff87c0, t=0x1ff8788) at lock.c:565
#2  0x00007f32b13125ac in iax2_process_thread (data=0x1ff7650) at chan_iax2.c:12093
#3  0x00000000005ec64b in dummy_start (data=0x1fe8090) at utils.c:1232
#4  0x00007f32e02579d1 in start_thread (arg=0x7f329e691700) at pthread_create.c:301
#5  0x00007f32df5df9dd in clone () at .http://forums.asterisk.org/sysdeps/unix/sysv/linux/x86_64/clone.S:115

Thread 31 (Thread 0x7f329e70d700 (LWP 62539)):
#0  pthread_cond_wait@@GLIBC_2.3.2 () at .http://forums.asterisk.org/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S:183
#1  0x0000000000533a88 in __ast_cond_wait (filename=0x7f32b132ebb4 "chan_iax2.c", lineno=12093, func=0x7f32b1335e80 "iax2_process_thread",
    cond_name=0x7f32b132ef11 "&thread->cond", mutex_name=0x7f32b132ef03 "&thread->lock", cond=0x1ff73a0, t=0x1ff7368) at lock.c:565
#2  0x00007f32b13125ac in iax2_process_thread (data=0x1ff6230) at chan_iax2.c:12093
#3  0x00000000005ec64b in dummy_start (data=0x1fea840) at utils.c:1232
#4  0x00007f32e02579d1 in start_thread (arg=0x7f329e70d700) at pthread_create.c:301
#5  0x00007f32df5df9dd in clone () at .http://forums.asterisk.org/sysdeps/unix/sysv/linux/x86_64/clone.S:115

Thread 30 (Thread 0x7f329e805700 (LWP 62537)):
#0  sem_wait () at .http://forums.asterisk.org/nptl/sysdeps/unix/sysv/linux/x86_64/sem_wait.S:86
#1  0x00000000005d73a3 in ast_sem_wait (data=0x1fea238) at /usr/src/asterisk/include/asterisk/sem.h:59
#2  default_tps_processing_function (data=0x1fea238) at taskprocessor.c:177
#3  0x00000000005ec64b in dummy_start (data=0x1fe8090) at utils.c:1232
#4  0x00007f32e02579d1 in start_thread (arg=0x7f329e805700) at pthread_create.c:301
#5  0x00007f32df5df9dd in clone () at .http://forums.asterisk.org/sysdeps/unix/sysv/linux/x86_64/clone.S:115

Thread 29 (Thread 0x7f329e881700 (LWP 62536)):
#0  pthread_cond_timedwait@@GLIBC_2.3.2 () at .http://forums.asterisk.org/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_timedwait.S:239
#1  0x0000000000533ac6 in __ast_cond_timedwait (filename=0x6d6bd4 "sched.c", lineno=130, func=0x6d7075 "sched_run",
    cond_name=0x6d6be7 "&con->sched_thread->cond", mutex_name=0x6d6bdc "&con->lock", cond=0x1fe4868, t=0x1fe3f60, abstime=0x7f329e880c70) at lock.c:646
#2  0x00000000005b268b in sched_run (data=0x1fe3f60) at sched.c:130
#3  0x00000000005ec64b in dummy_start (data=0x1fd7140) at utils.c:1232
#4  0x00007f32e02579d1 in start_thread (arg=0x7f329e881700) at pthread_create.c:301
#5  0x00007f32df5df9dd in clone () at .http://forums.asterisk.org/sysdeps/unix/sysv/linux/x86_64/clone.S:115

Thread 28 (Thread 0x7f329e8fd700 (LWP 62535)):
#0  sem_wait () at .http://forums.asterisk.org/nptl/sysdeps/unix/sysv/linux/x86_64/sem_wait.S:86
#1  0x00000000005d73a3 in ast_sem_wait (data=0x1fe3c58) at /usr/src/asterisk/include/asterisk/sem.h:59
#2  default_tps_processing_function (data=0x1fe3c58) at taskprocessor.c:177
#3  0x00000000005ec64b in dummy_start (data=0x1fd5c00) at utils.c:1232
#4  0x00007f32e02579d1 in start_thread (arg=0x7f329e8fd700) at pthread_create.c:301
#5  0x00007f32df5df9dd in clone () at .http://forums.asterisk.org/sysdeps/unix/sysv/linux/x86_64/clone.S:115

Thread 27 (Thread 0x7f329ea7b700 (LWP 62534)):
#0  0x00007f32df5d61b3 in __poll (fds=<value optimized out>, nfds=<value optimized out>, timeout=<value optimized out>) at .http://forums.asterisk.org/sysdeps/unix/sysv/linux/poll.c:87
#1  0x000000000052bde5 in ast_io_wait (ioc=0x1fb3970, howlong=1000) at io.c:279
#2  0x00007f32a098ee8d in do_monitor (data=0x0) at chan_sip.c:28790
#3  0x00000000005ec64b in dummy_start (data=0x1fd2ae0) at utils.c:1232
#4  0x00007f32e02579d1 in start_thread (arg=0x7f329ea7b700) at pthread_create.c:301
#5  0x00007f32df5df9dd in clone () at .http://forums.asterisk.org/sysdeps/unix/sysv/linux/x86_64/clone.S:115

Thread 26 (Thread 0x7f329eaf7700 (LWP 62533)):
#0  sem_wait () at .http://forums.asterisk.org/nptl/sysdeps/unix/sysv/linux/x86_64/sem_wait.S:86
#1  0x00000000005d73a3 in ast_sem_wait (data=0x1fce648) at /usr/src/asterisk/include/asterisk/sem.h:59
#2  default_tps_processing_function (data=0x1fce648) at taskprocessor.c:177
#3  0x00000000005ec64b in dummy_start (data=0x1fce780) at utils.c:1232
#4  0x00007f32e02579d1 in start_thread (arg=0x7f329eaf7700) at pthread_create.c:301
#5  0x00007f32df5df9dd in clone () at .http://forums.asterisk.org/sysdeps/unix/sysv/linux/x86_64/clone.S:115

Thread 25 (Thread 0x7f329eb73700 (LWP 62532)):
#0  0x00007f32df5d61b3 in __poll (fds=<value optimized out>, nfds=<value optimized out>, timeout=<value optimized out>) at .http://forums.asterisk.org/sysdeps/unix/sysv/linux/poll.c:87
#1  0x00007f32b2ed9932 in do_monitor (data=0x0) at chan_dahdi.c:11392
#2  0x00000000005ec64b in dummy_start (data=0x1fb54b0) at utils.c:1232
#3  0x00007f32e02579d1 in start_thread (arg=0x7f329eb73700) at pthread_create.c:301
#4  0x00007f32df5df9dd in clone () at .http://forums.asterisk.org/sysdeps/unix/sysv/linux/x86_64/clone.S:115

Thread 24 (Thread 0x7f329ebef700 (LWP 62531)):
#0  0x00007f32df5d61b3 in __poll (fds=<value optimized out>, nfds=<value optimized out>, timeout=<value optimized out>) at .http://forums.asterisk.org/sysdeps/unix/sysv/linux/poll.c:87
#1  0x000000000052bde5 in ast_io_wait (ioc=0x1faed00, howlong=1000) at io.c:279
#2  0x00007f32a6efe184 in do_monitor (data=0x0) at chan_ooh323.c:4016
#3  0x00000000005ec64b in dummy_start (data=0x1fb1270) at utils.c:1232
#4  0x00007f32e02579d1 in start_thread (arg=0x7f329ebef700) at pthread_create.c:301
#5  0x00007f32df5df9dd in clone () at .http://forums.asterisk.org/sysdeps/unix/sysv/linux/x86_64/clone.S:115

Thread 23 (Thread 0x7f329ecb0700 (LWP 62530)):
#0  0x00007f32df5d61b3 in __poll (fds=<value optimized out>, nfds=<value optimized out>, timeout=<value optimized out>) at .http://forums.asterisk.org/sysdeps/unix/sysv/linux/poll.c:87
#1  0x00007f32a6f3b9ba in ooSocketPoll (pfds=0x7f329ecafc60, nfds=1, timeout=2100) at ooh323c/src/ooSocket.c:514
#2  0x00007f32a6f18f06 in ooMonitorCmdChannels () at ooh323c/src/oochannels.c:782
#3  0x00007f32a708c688 in ooh323c_cmd_thread (dummy=0x0) at ooh323cDriver.c:76
#4  0x00000000005ec64b in dummy_start (data=0x1fb1080) at utils.c:1232
#5  0x00007f32e02579d1 in start_thread (arg=0x7f329ecb0700) at pthread_create.c:301
#6  0x00007f32df5df9dd in clone () at .http://forums.asterisk.org/sysdeps/unix/sysv/linux/x86_64/clone.S:115

Thread 22 (Thread 0x7f32bc101700 (LWP 62529)):
#0  0x00007f32df5d61b3 in __poll (fds=<value optimized out>, nfds=<value optimized out>, timeout=<value optimized out>) at .http://forums.asterisk.org/sysdeps/unix/sysv/linux/poll.c:87
#1  0x00007f32a6f3b9ba in ooSocketPoll (pfds=0x7f32bc100c50, nfds=1, timeout=2100) at ooh323c/src/ooSocket.c:514
#2  0x00007f32a6f1914e in ooMonitorChannels () at ooh323c/src/oochannels.c:852
#3  0x00007f32a708c671 in ooh323c_stack_thread (dummy=0x0) at ooh323cDriver.c:69
#4  0x00000000005ec64b in dummy_start (data=0x1fb0f00) at utils.c:1232
#5  0x00007f32e02579d1 in start_thread (arg=0x7f32bc101700) at pthread_create.c:301
#6  0x00007f32df5df9dd in clone () at .http://forums.asterisk.org/sysdeps/unix/sysv/linux/x86_64/clone.S:115

Thread 21 (Thread 0x7f32bc17d700 (LWP 62528)):
#0  pthread_cond_wait@@GLIBC_2.3.2 () at .http://forums.asterisk.org/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S:183
#1  0x0000000000533a88 in __ast_cond_wait (filename=0x7f32ace000b4 "res_timing_pthread.c", lineno=422, func=0x7f32ace00483 "do_timing",
    cond_name=0x7f32ace000f4 "&timing_thread.cond", mutex_name=0x7f32ace000e0 "&timing_thread.lock", cond=0x7f32ad000e80, t=0x7f32ad000e48) at lock.c:565
#2  0x00007f32acdffd72 in do_timing (arg=0x0) at res_timing_pthread.c:422
#3  0x00000000005ec64b in dummy_start (data=0x1e27610) at utils.c:1232
#4  0x00007f32e02579d1 in start_thread (arg=0x7f32bc17d700) at pthread_create.c:301
#5  0x00007f32df5df9dd in clone () at .http://forums.asterisk.org/sysdeps/unix/sysv/linux/x86_64/clone.S:115

Thread 20 (Thread 0x7f32bdc39700 (LWP 62527)):
#0  pthread_cond_timedwait@@GLIBC_2.3.2 () at .http://forums.asterisk.org/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_timedwait.S:239
#1  0x0000000000533ac6 in __ast_cond_timedwait (filename=0x7f32bfdfbfe4 "res_calendar.c", lineno=1817, func=0x7f32bfdfd34c "do_refresh",
    cond_name=0x7f32bfdfc702 "&refresh_condition", mutex_name=0x7f32bfdfc5cd "&refreshlock", cond=0x7f32bffff0c0, t=0x7f32bffff080, abstime=0x7f32bdc38c80)
    at lock.c:646
#2  0x00007f32bfdfba51 in do_refresh (data=0x0) at res_calendar.c:1817
#3  0x00000000005ec64b in dummy_start (data=0x1f43700) at utils.c:1232
#4  0x00007f32e02579d1 in start_thread (arg=0x7f32bdc39700) at pthread_create.c:301
#5  0x00007f32df5df9dd in clone () at .http://forums.asterisk.org/sysdeps/unix/sysv/linux/x86_64/clone.S:115

Thread 19 (Thread 0x7f32bdcb5700 (LWP 62526)):
#0  sem_wait () at .http://forums.asterisk.org/nptl/sysdeps/unix/sysv/linux/x86_64/sem_wait.S:86
#1  0x00000000005d73a3 in ast_sem_wait (data=0x1f294a8) at /usr/src/asterisk/include/asterisk/sem.h:59
#2  default_tps_processing_function (data=0x1f294a8) at taskprocessor.c:177
#3  0x00000000005ec64b in dummy_start (data=0x1f257e0) at utils.c:1232
#4  0x00007f32e02579d1 in start_thread (arg=0x7f32bdcb5700) at pthread_create.c:301
#5  0x00007f32df5df9dd in clone () at .http://forums.asterisk.org/sysdeps/unix/sysv/linux/x86_64/clone.S:115

Thread 18 (Thread 0x7f32dd920700 (LWP 62525)):
#0  sem_wait () at .http://forums.asterisk.org/nptl/sysdeps/unix/sysv/linux/x86_64/sem_wait.S:86
#1  0x00000000005d73a3 in ast_sem_wait (data=0x1e44d08) at /usr/src/asterisk/include/asterisk/sem.h:59
#2  default_tps_processing_function (data=0x1e44d08) at taskprocessor.c:177
#3  0x00000000005ec64b in dummy_start (data=0x1e37cd0) at utils.c:1232
#4  0x00007f32e02579d1 in start_thread (arg=0x7f32dd920700) at pthread_create.c:301
#5  0x00007f32df5df9dd in clone () at .http://forums.asterisk.org/sysdeps/unix/sysv/linux/x86_64/clone.S:115

Thread 17 (Thread 0x7f32dd99c700 (LWP 62524)):
#0  pthread_cond_wait@@GLIBC_2.3.2 () at .http://forums.asterisk.org/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S:183
#1  0x0000000000533a88 in __ast_cond_wait (filename=0x6d6bd4 "sched.c", lineno=124, func=0x6d7075 "sched_run", cond_name=0x6d6be7 "&con->sched_thread->cond",
    mutex_name=0x6d6bdc "&con->lock", cond=0x1df6258, t=0x1e32ce0) at lock.c:565
#2  0x00000000005b25a7 in sched_run (data=0x1e32ce0) at sched.c:124
#3  0x00000000005ec64b in dummy_start (data=0x1df76f0) at utils.c:1232
#4  0x00007f32e02579d1 in start_thread (arg=0x7f32dd99c700) at pthread_create.c:301
#5  0x00007f32df5df9dd in clone () at .http://forums.asterisk.org/sysdeps/unix/sysv/linux/x86_64/clone.S:115

Thread 16 (Thread 0x7f32dda18700 (LWP 62523)):
#0  sem_wait () at .http://forums.asterisk.org/nptl/sysdeps/unix/sysv/linux/x86_64/sem_wait.S:86
#1  0x00000000005d73a3 in ast_sem_wait (data=0x1e24a98) at /usr/src/asterisk/include/asterisk/sem.h:59
#2  default_tps_processing_function (data=0x1e24a98) at taskprocessor.c:177
#3  0x00000000005ec64b in dummy_start (data=0x1e04170) at utils.c:1232
#4  0x00007f32e02579d1 in start_thread (arg=0x7f32dda18700) at pthread_create.c:301
#5  0x00007f32df5df9dd in clone () at .http://forums.asterisk.org/sysdeps/unix/sysv/linux/x86_64/clone.S:115

Thread 15 (Thread 0x7f32dda94700 (LWP 62522)):
#0  sem_wait () at .http://forums.asterisk.org/nptl/sysdeps/unix/sysv/linux/x86_64/sem_wait.S:86
#1  0x00000000005d73a3 in ast_sem_wait (data=0x1dcba08) at /usr/src/asterisk/include/asterisk/sem.h:59
#2  default_tps_processing_function (data=0x1dcba08) at taskprocessor.c:177
#3  0x00000000005ec64b in dummy_start (data=0x1da4260) at utils.c:1232
#4  0x00007f32e02579d1 in start_thread (arg=0x7f32dda94700) at pthread_create.c:301
#5  0x00007f32df5df9dd in clone () at .http://forums.asterisk.org/sysdeps/unix/sysv/linux/x86_64/clone.S:115

Thread 14 (Thread 0x7f32ddb10700 (LWP 62521)):
#0  sem_wait () at .http://forums.asterisk.org/nptl/sysdeps/unix/sysv/linux/x86_64/sem_wait.S:86
#1  0x00000000005d73a3 in ast_sem_wait (data=0x1dca308) at /usr/src/asterisk/include/asterisk/sem.h:59
#2  default_tps_processing_function (data=0x1dca308) at taskprocessor.c:177
#3  0x00000000005ec64b in dummy_start (data=0x1dc9b70) at utils.c:1232
#4  0x00007f32e02579d1 in start_thread (arg=0x7f32ddb10700) at pthread_create.c:301
#5  0x00007f32df5df9dd in clone () at .http://forums.asterisk.org/sysdeps/unix/sysv/linux/x86_64/clone.S:115

Thread 13 (Thread 0x7f32ddc08700 (LWP 62519)):
#0  pthread_cond_wait@@GLIBC_2.3.2 () at .http://forums.asterisk.org/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S:183
#1  0x0000000000533a88 in __ast_cond_wait (filename=0x6b5914 "devicestate.c", lineno=546, func=0x6b5d10 "do_devstate_changes",
    cond_name=0x6b5bc7 "&change_pending", mutex_name=0x6b5bd7 "&state_changes.lock", cond=0x9851a0, t=0x967730) at lock.c:565
#2  0x00000000004f5ef4 in do_devstate_changes (data=0x0) at devicestate.c:546
#3  0x00000000005ec64b in dummy_start (data=0x1d67790) at utils.c:1232
#4  0x00007f32e02579d1 in start_thread (arg=0x7f32ddc08700) at pthread_create.c:301
#5  0x00007f32df5df9dd in clone () at .http://forums.asterisk.org/sysdeps/unix/sysv/linux/x86_64/clone.S:115

Thread 12 (Thread 0x7f32ddc84700 (LWP 62518)):
#0  pthread_cond_wait@@GLIBC_2.3.2 () at .http://forums.asterisk.org/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S:183
#1  0x0000000000533a88 in __ast_cond_wait (filename=0x699794 "bridge.c", lineno=4584, func=0x69b5c0 "bridge_manager_thread",
    cond_name=0x69ac29 "&manager->cond", mutex_name=0x69ac08 "ao2_object_get_lockaddr(manager)", cond=0x1d63fa8, t=0x1d63f50) at lock.c:565
#2  0x0000000000472fdb in bridge_manager_thread (data=0x1d63fa8) at bridge.c:4584
#3  0x00000000005ec64b in dummy_start (data=0x1d64000) at utils.c:1232
#4  0x00007f32e02579d1 in start_thread (arg=0x7f32ddc84700) at pthread_create.c:301
#5  0x00007f32df5df9dd in clone () at .http://forums.asterisk.org/sysdeps/unix/sysv/linux/x86_64/clone.S:115

Thread 11 (Thread 0x7f32ddd00700 (LWP 62517)):
#0  sem_wait () at .http://forums.asterisk.org/nptl/sysdeps/unix/sysv/linux/x86_64/sem_wait.S:86
#1  0x00000000005d73a3 in ast_sem_wait (data=0x1d3ae98) at /usr/src/asterisk/include/asterisk/sem.h:59
#2  default_tps_processing_function (data=0x1d3ae98) at taskprocessor.c:177
#3  0x00000000005ec64b in dummy_start (data=0x1d3ac50) at utils.c:1232
#4  0x00007f32e02579d1 in start_thread (arg=0x7f32ddd00700) at pthread_create.c:301
#5  0x00007f32df5df9dd in clone () at .http://forums.asterisk.org/sysdeps/unix/sysv/linux/x86_64/clone.S:115

Thread 10 (Thread 0x7f32ddf6c700 (LWP 62512)):
#0  pthread_cond_timedwait@@GLIBC_2.3.2 () at .http://forums.asterisk.org/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_timedwait.S:239
#1  0x0000000000533ac6 in __ast_cond_timedwait (filename=0x6de043 "threadpool.c", lineno=1101, func=0x6de30c "worker_idle",
    cond_name=0x6de287 "&worker->cond", mutex_name=0x6de279 "&worker->lock", cond=0x7f32c0000950, t=0x7f32c0000980, abstime=0x7f32ddf6bc70) at lock.c:646
#2  0x00000000005e0ee5 in worker_idle (worker=0x7f32c0000948) at threadpool.c:1101
#3  0x00000000005e0c00 in worker_start (arg=0x7f32c0000948) at threadpool.c:993
#4  0x00000000005ec64b in dummy_start (data=0x7f32c0000a60) at utils.c:1232
#5  0x00007f32e02579d1 in start_thread (arg=0x7f32ddf6c700) at pthread_create.c:301
#6  0x00007f32df5df9dd in clone () at .http://forums.asterisk.org/sysdeps/unix/sysv/linux/x86_64/clone.S:115

Thread 9 (Thread 0x7f32ddfe8700 (LWP 62511)):
#0  pthread_cond_wait@@GLIBC_2.3.2 () at .http://forums.asterisk.org/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S:183
#1  0x0000000000533a88 in __ast_cond_wait (filename=0x6b4834 "db.c", lineno=967, func=0x6b57d6 "db_sync_thread", cond_name=0x6b5780 "&dbcond",
    mutex_name=0x6b4a99 "&dblock", cond=0x985100, t=0x967100) at lock.c:565
#2  0x00000000004f4f06 in db_sync_thread (data=0x0) at db.c:967
#3  0x00000000005ec64b in dummy_start (data=0x1d4e080) at utils.c:1232
#4  0x00007f32e02579d1 in start_thread (arg=0x7f32ddfe8700) at pthread_create.c:301
#5  0x00007f32df5df9dd in clone () at .http://forums.asterisk.org/sysdeps/unix/sysv/linux/x86_64/clone.S:115

Thread 8 (Thread 0x7f32de064700 (LWP 62510)):
#0  sem_wait () at .http://forums.asterisk.org/nptl/sysdeps/unix/sysv/linux/x86_64/sem_wait.S:86
#1  0x00000000005d73a3 in ast_sem_wait (data=0x1d3ab18) at /usr/src/asterisk/include/asterisk/sem.h:59
#2  default_tps_processing_function (data=0x1d3ab18) at taskprocessor.c:177
#3  0x00000000005ec64b in dummy_start (data=0x1d3ac50) at utils.c:1232
#4  0x00007f32e02579d1 in start_thread (arg=0x7f32de064700) at pthread_create.c:301
#5  0x00007f32df5df9dd in clone () at .http://forums.asterisk.org/sysdeps/unix/sysv/linux/x86_64/clone.S:115

Thread 7 (Thread 0x7f32de0e0700 (LWP 62509)):
#0  pthread_cond_wait@@GLIBC_2.3.2 () at .http://forums.asterisk.org/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S:183
#1  0x0000000000533a88 in __ast_cond_wait (filename=0x6bfff4 "logger.c", lineno=1345, func=0x6c1312 "logger_thread", cond_name=0x6c0dbd "&logcond",
    mutex_name=0x6c0daf "&logmsgs.lock", cond=0x9854c0, t=0x969a70) at lock.c:565
#2  0x0000000000537806 in logger_thread (data=0x0) at logger.c:1345
#3  0x00000000005ec64b in dummy_start (data=0x1d28300) at utils.c:1232
#4  0x00007f32e02579d1 in start_thread (arg=0x7f32de0e0700) at pthread_create.c:301
#5  0x00007f32df5df9dd in clone () at .http://forums.asterisk.org/sysdeps/unix/sysv/linux/x86_64/clone.S:115

Thread 6 (Thread 0x7f32e1e10700 (LWP 62508)):
#0  0x00007f32df5d61b3 in __poll (fds=<value optimized out>, nfds=<value optimized out>, timeout=<value optimized out>) at .http://forums.asterisk.org/sysdeps/unix/sysv/linux/poll.c:87
#1  0x0000000000452534 in listener (unused=0x0) at asterisk.c:1582
#2  0x00000000005ec64b in dummy_start (data=0x1d28290) at utils.c:1232
#3  0x00007f32e02579d1 in start_thread (arg=0x7f32e1e10700) at pthread_create.c:301
#4  0x00007f32df5df9dd in clone () at .http://forums.asterisk.org/sysdeps/unix/sysv/linux/x86_64/clone.S:115

Thread 5 (Thread 0x7f32e1e8c700 (LWP 62507)):
#0  sem_wait () at .http://forums.asterisk.org/nptl/sysdeps/unix/sysv/linux/x86_64/sem_wait.S:86
#1  0x00000000005d73a3 in ast_sem_wait (data=0x1d23828) at /usr/src/asterisk/include/asterisk/sem.h:59
#2  default_tps_processing_function (data=0x1d23828) at taskprocessor.c:177
#3  0x00000000005ec64b in dummy_start (data=0x1d11790) at utils.c:1232
#4  0x00007f32e02579d1 in start_thread (arg=0x7f32e1e8c700) at pthread_create.c:301
#5  0x00007f32df5df9dd in clone () at .http://forums.asterisk.org/sysdeps/unix/sysv/linux/x86_64/clone.S:115

Thread 4 (Thread 0x7f32e1f08700 (LWP 62506)):
#0  sem_wait () at .http://forums.asterisk.org/nptl/sysdeps/unix/sysv/linux/x86_64/sem_wait.S:86
#1  0x00000000005d73a3 in ast_sem_wait (data=0x12bdc88) at /usr/src/asterisk/include/asterisk/sem.h:59
#2  default_tps_processing_function (data=0x12bdc88) at taskprocessor.c:177
#3  0x00000000005ec64b in dummy_start (data=0x12bde00) at utils.c:1232
#4  0x00007f32e02579d1 in start_thread (arg=0x7f32e1f08700) at pthread_create.c:301
#5  0x00007f32df5df9dd in clone () at .http://forums.asterisk.org/sysdeps/unix/sysv/linux/x86_64/clone.S:115

Thread 3 (Thread 0x7f32e1f0a820 (LWP 62505)):
#0  0x00007f32df5d61b3 in __poll (fds=<value optimized out>, nfds=<value optimized out>, timeout=<value optimized out>) at .http://forums.asterisk.org/sysdeps/unix/sysv/linux/poll.c:87
#1  0x0000000000454cbf in ast_el_read_char (editline=0x12a61f0, cp=0x7fffef8b2a1f "") at asterisk.c:2663
#2  0x00000000005fbc73 in el_getc (el=0x12a61f0, cp=0x7fffef8b2a1f "") at read.c:350
#3  0x00000000005fbeb4 in read_getcmd (el=0x12a61f0, nread=0x7fffef8b3c7c) at read.c:243
#4  el_gets (el=0x12a61f0, nread=0x7fffef8b3c7c) at read.c:446
#5  0x000000000045b1c0 in main (argc=4, argv=0x7fffef8b3f88) at asterisk.c:4613

Thread 2 (Thread 0x7f32ddef0700 (LWP 62561)):
#0  0x00007f32e025e75d in read () at .http://forums.asterisk.org/sysdeps/unix/syscall-template.S:82
#1  0x00000000005cfdcd in inotify_daemon (data=0x0) at stdtime/localtime.c:310
#2  0x00000000005ec64b in dummy_start (data=0x7f32d4006ae0) at utils.c:1232
#3  0x00007f32e02579d1 in start_thread (arg=0x7f32ddef0700) at pthread_create.c:301
#4  0x00007f32df5df9dd in clone () at .http://forums.asterisk.org/sysdeps/unix/sysv/linux/x86_64/clone.S:115

Thread 1 (Thread 0x7f329dd5d700 (LWP 62559)):
#0  0x000000070001e501 in ?? ()
#1  0x00007f32a6f05309 in ooClearLogicalChannel (call=0x7f32d8007be8, channelNo=1002) at ooh323c/src/ooLogChan.c:338
#2  0x00007f32a6f05139 in ooClearAllLogicalChannels (call=0x7f32d8007be8) at ooh323c/src/ooLogChan.c:292
#3  0x00007f32a6f3da2f in ooEndCall (call=0x7f32d8007be8) at ooh323c/src/ooCalls.c:238
#4  0x00007f32a6f18d37 in ooProcessCallFDSETsAndTimers (call=0x7f32d8007be8, pfds=0x7f329dd5cc00, nfds=3, pToMin=0x7f329dd5cc30)
    at ooh323c/src/oochannels.c:734
#5  0x00007f32a6f19461 in ooMonitorCallChannels (call=0x7f32d8007be8) at ooh323c/src/oochannels.c:946
#6  0x00007f32a708c6b9 in ooh323c_call_thread (dummy=0x7f32d8002d90) at ooh323cDriver.c:89
#7  0x00000000005ec64b in dummy_start (data=0x7f32d8002e00) at utils.c:1232
#8  0x00007f32e02579d1 in start_thread (arg=0x7f329dd5d700) at pthread_create.c:301
#9  0x00007f32df5df9dd in clone () at .http://forums.asterisk.org/sysdeps/unix/sysv/linux/x86_64/clone.S:115


Any help would be greatly appreciated! Just one call can cause this issue to happen.

Statistics : Posted by emdk • on Fri Dec 05, 2014 12:27 pm • Replies 0 • Views 44

Asterisk AMI gives multiple messages for one UserEvent

$
0
0
Im having UserEvent in my asterisk dialplan.Its like this

Code: exten => s,n,UserEvent(TESTEVENT,Testmessage)

So when this line is executed once i'm getting same multiple messages to my AMI(more than 50 messages).What is the cause of this?.Below is my ami event

Code: Event: UserEvent|Privilege: user,all|Timestamp: 1417872745.735382|Channel: SIP/trunk-loopbackA-00000006|ChannelState: 6|ChannelStateDesc: Up|CallerIDNum: 6|CallerIDName: |ConnectedLineNum: 6|ConnectedLineName: |AccountCode: |Context:default|Exten: 0011111111|Priority: 5|Uniqueid: 1417872745.10|UserEvent: TESTEVENT|


more than 50 of these for a one execution of code

Statistics : Posted by lak1357 • on Fri Dec 05, 2014 10:27 pm • Replies 0 • Views 14

Calling cards for United States

$
0
0
For US and from US to most countries AlloMama.com is really good site, for calling cards, very good customer service, and pinless phone cards, all best calling options pretty much. You can also buy att refills with discounts online, and pc to phone call, once you register at allomama phone cards website and log in you will find lots of good calling options.

Statistics : Posted by johnwilson • on Sat May 12, 2007 11:42 am • Replies 8 • Views 8451

Calling cards for United States

$
0
0
I signed up and got $3 free and called my BEST friend Carmen in Brazil with it for maybe.. I want to say.. 2 cents a minute? I think? Whatever I forget but we talked for super long and it was great hearing her voice. Her accent is SOO adorable you wouldn't believe. I mean the awesome thing was that I could just use it from my cell phone, and since I have unlimited calling time (thanks T-Mobile!) I almost felt like I was stealing... HAHA.

If anyone wants to try it out, they give away $3 in credit for first time users so that's pretty awesome. It meant I had about an hour and a half to talk to her for free. This would be great for you guys with family overseas or if your kids are going to study abroad or an extended vacation for the summer.

http://www.pureminutes.com/lnd/pmv2/

As far as I can see there's no obligation and the promotion doesn't require a credit card or anything. It's not a bad service. HOWEVER this is only a promotion they give to people within the United States.

http://www.pureminutes.com/lnd/loudpm/index.aspx

With this page you can see they give away $3 free to all new users who sign up and make a purchase, so either way you get $3 for free.

It's like a virtual calling card that you can recharge online. You can use this anywhere in the world to be able to call to the United States, but since I live here and you didn't tell us where you live.. I can only assume they'll have good rates. Whatever the case, can't hurt for free calling credit right?

Statistics : Posted by johnwilson • on Sat May 12, 2007 11:42 am • Replies 8 • Views 8451

Calling cards for United States

$
0
0
Unlimited North America, CiCi calling card, Freedom calling card, Calling Card calling card, Lyca Plan calling card are the best phone cards to call United States, offered by Ontario phone cards store. These cards are lowest in price and make your international calls cheap with no extra fees. These all calling cards are used from mobile phones and have the same rates as when using from landline phones (no extra charges). The proper way of using calling card from mobile phone is to enter calling card toll free access or local number and press "call" button, enter your PIN and destination number without pressing "call" button on your phone.

Statistics : Posted by johnwilson • on Sat May 12, 2007 11:42 am • Replies 8 • Views 8451

Calling cards for United States

$
0
0
When people started buying calling cards online people started to saving money, you need trusted company to buy online phone cards and the good thing is you don't have to go to store or drive to buy calling cards, EpinCall sells phone cards 24/7. Visit EpinCall and find the best international calling rates.
http://www.epincall.com/

Statistics : Posted by johnwilson • on Sat May 12, 2007 11:42 am • Replies 8 • Views 8451

Calling cards for United States

$
0
0
If you are located in Canada or UK (toll free access numbers provided) then Connect Card is the best option because of its low call rates (1.9cents) and good customer services along with this you can track your call record online. You will enjoy crystal clear voice quality with this pinless calling card.

Statistics : Posted by johnwilson • on Sat May 12, 2007 11:42 am • Replies 8 • Views 8451

Calling cards for United States

$
0
0
Utalkprepaid calling cards and phone cards are among the lowest in price. no connection fees, pinless dialing, speed dialing, call details.



Visit us at http://utalkprepaid.com to try it for free for yourself.

Statistics : Posted by johnwilson • on Sat May 12, 2007 11:42 am • Replies 8 • Views 8451

Calling cards for United States

$
0
0
Hi

Does anyone know about a better calling card to call United States?

I don't want a landline as I have a cell phone and never really home during daytime to answer the land phone.

I will greatly appreciate your input.

Statistics : Posted by johnwilson • on Sat May 12, 2007 11:42 am • Replies 8 • Views 8451

Predictive dialer - Asterisk 13

$
0
0
Hi,

One of the new features in Asterisk 13 is a predictive dialer. I am not able to find any details for this feature, can you please point me in the right direction?

Thanks

Ben

Statistics : Posted by benalicea • on Sat Dec 06, 2014 5:47 am • Replies 0 • Views 70

send sms

$
0
0
Hi all,

i have in my server asterisk11 centos6.5 sangoma crad w400 ip phone yealink

how i can config to send sms ?
same body can help me ?


regards,

Statistics : Posted by RDouro • on Sat Dec 06, 2014 7:04 pm • Replies 0 • Views 36

IAX not registering

$
0
0
hi,

I have a strange problem. IAX clients can not register with my asterisk server. If I restart the server (core restart now) and try within 2-3 second client get registered. But if I disconnect the client and try again it doesnt get registered. From tcpdump trace in server end I can see iax requests are coming from client and hitting the right port, but if I set iax debugging on (iax2 set debug on) i see nothing. I can see Asterisk is listening to port 4569 from netstat,
Code: netstat --listen | grep iax
udp    13056      0 *:iax                       *:*


Below is my iax configuration:

Code: [general]
bindport = 4569
bindaddr = 0.0.0.0
;bandwidth = low
disallow = all
allow = g729,g723.1
trunkmtu = 1240
trunkfreq = 20
trunktimestamps = yes
iaxthreadcount = 30
iaxmaxthreadcount = 100
minregexpire = 60
maxregexpire = 2000
;autokill = yes
codecpriority = caller
requirecalltoken = no

[anat]
callerid=Anat
username=anat
secret=anat
type=friend
host=dynamic
context=test
disallow=all
allow=ulaw
allow=alaw
allow=gsm


Im totally clueless on what the issue is. Any help will be highly appreciated.

Thanks in advanced!

Statistics : Posted by kamrul.khan • on Sat Dec 06, 2014 8:30 pm • Replies 0 • Views 34

Cannot make an external call

$
0
0
The Dial command in your earlier post shows the failure to go out a peer named "out" however no such peer appears in your "sip show peers" output. Unless "trunk" = "out" and you are just masking the names before pasting in the forum?

Masking the names would be a good decision, but if those are the actual names, then you should consider changing them, because they are too generic and might even conflict with other variables in the namespace of your particular GUI's code. (Something like "big-sip-provider" would be a better option.)

Running "sip set debug peer big-sip-provider" may provide more helpful output as well.

Statistics : Posted by cafe6 • on Fri Nov 28, 2014 9:23 pm • Replies 7 • Views 480
Viewing all 7460 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>