my asterisk is working fine, I am just confused why, on the server I see private IP address of an endpoint: WARNING: Retransmission timeout reached on transmission 0_252301488@10.1.3.8 for seqno 2 (Critical Response) the IP 10.1.3.8 is a phone beh..
Author : Fourhundred Thecat
when I call my conference, I see this error in my logs: ERROR: Function DENOISE not registered here is snippet from extensions.conf … same => n,Set(CONFBRIDGE(user,announce_join_leave)=yes) same => n,Set(CONFBRIDGE(bridge,record_conference)=yes) s..
my logs are flooded with: WARNING: The stasis/m:cdr:aggregator-00000005 task processor queue reached 5000 scheduled tasks again. and then, when call came, I got this: ERROR: Oh dear… we couldnt allocate a port for RTP instance 0x6e1e680fd670 WARNI..
in my extensions.conf, I have a custom macro which I use at the beginning of incoming call, and then I turn on cdr recording: exten => 123456789,1,Macro(record) … same => n,Set(CDR_PROP(disable)=0) … the macro is defined later, and sets one filen..
I am using cdr_sqlite3_custom and the file is automatically saved as: /var/log/asterisk/master.db how can I change the location ? If this is not possible to change in the config file, where in the source code would I change that? I am using aster..
I am getting these warnings in the logs when using linphone client: WARNING: Codec opus returned invalid number of samples these are probably harmless warnings (the call works fine), but it just floods the logs unnecessarily any way to fix this probl..
I am trying to understand what these messages mean: ERROR: Problem setting up ssl connection: error:00000005:lib(0):func(0):DH lib, Underlying BIO error: Connection reset by peer ERROR: Unable to set up ssl connection with peer 167.94.146.58:55590 ERR..
when I use the verbose function, ie: exten => _1111,1,Verbose(0,INTERNAL CALL: ${CDR(src)} is calling ${EXTEN}) then, in the logs the line looks like this: VERBOSE[C-00000001]: INTERNAL CALL: 2222 is calling 1111 (ECHO TEST) why is there additional [C-000000..
is there any way to configure, how often these warnings are reported? 04:48:33NOTICE: Peer 8822 is now UNREACHABLE!Last qualify: 30 04:49:02NOTICE: Peer 8822 is now Reachable. (29ms / 2000ms) 04:51:03NOTICE: Peer 8822 is now UNREACHABLE!Last quali..
I have defined macro for recording: [macro-record] exten => s,1,Set(FILE=${CDR(src)}-${CDR(dst)}.wav) same => n,MixMonitor(/tmp/${FILE},b,) same => n,MacroExit and use it in my dialplan as such: exten => 1234,1,Macro(record) …. same => n,Hangup()..