Moderators: gerski, enjay, williamconley, Op3r, Staydog, gardo, mflorell, MJCoate, mcargile, Kumba, Michael_N
Serious Network Trouble
There is a known bug in MeetMeAdmin in Asterisk 13 that can cause crashes when users use the volume and mute controls on the agent screen and not on their phones. Check the screenlog for calls to MeetMeAdmin with the 'T', 't', 'M', or 'm' option specified. If you are seeing a bunch of them, this is the most likely cause for the crash. Please note that there will also be calls with the 'K' option. Those are harmless.
If you are seeing those the simplest solution is to comment out the calls to MeetMeAdmin in extensions.conf. So change this:
; MeetMe Adjustment Extensions
exten => _X48600XXX,1,MeetMeAdmin(${EXTEN:2},T,${EXTEN:0:1})
exten => _X48600XXX,2,Hangup()
exten => _X38600XXX,1,MeetMeAdmin(${EXTEN:2},t,${EXTEN:0:1})
exten => _X38600XXX,2,Hangup()
exten => _X28600XXX,1,MeetMeAdmin(${EXTEN:2},m,${EXTEN:0:1})
exten => _X28600XXX,2,Hangup()
exten => _X18600XXX,1,MeetMeAdmin(${EXTEN:2},M,${EXTEN:0:1})
exten => _X18600XXX,2,Hangup()
to this:
; MeetMe Adjustment Extensions
;exten => _X48600XXX,1,MeetMeAdmin(${EXTEN:2},T,${EXTEN:0:1})
exten => _X48600XXX,1,Hangup()
;exten => _X38600XXX,1,MeetMeAdmin(${EXTEN:2},t,${EXTEN:0:1})
exten => _X38600XXX,1,Hangup()
;exten => _X28600XXX,1,MeetMeAdmin(${EXTEN:2},m,${EXTEN:0:1})
exten => _X28600XXX,1,Hangup()
;exten => _X18600XXX,1,MeetMeAdmin(${EXTEN:2},M,${EXTEN:0:1})
exten => _X18600XXX,1,Hangup()
Be sure to leave the ones with the 'K' option though. You will also want to notify the users that these buttons have been disabled and not to use them.
ERROR[3402]: chan_sip.c:4271 __sip_reliable_xmit: Serious Network Trouble; __sip_xmit returns error for pkt data
VERBOSE[31316][C-00000002] res_srtp.c: SRTCP unprotect failed because of authentication failure
As for those two messages, I have not fully figured out what cause those. They are related to using a webrtc phone, but they do not cause issues so they are safe to ignore.
Users browsing this forum: No registered users and 115 guests