Table of Contents | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
|
Switchvox Steps
Info |
---|
Notes: In Switchvox, you will need admin level access to the GUI. |
GoTo Server > Advance debugging information
Click on Start Debugging Session
Asterisk Command Line Interface
Select the following Settings
...
Download the file and upload it to the case.
Asterisk Steps:
Info |
---|
Notes: Any instance of '$CASE' should be replaced with the Digium Technical Support Case number, which will be in the format '87654321'. Lines prefixed with a '#' character need to be run as root. |
Take note of the versions of software in use: Asterisk, DAHDI, Libpri, res_fax, res_fax_digium
From the command prompt, create a directory to store the files in.
#mkdir /tmp/$CASE
Modify the /etc/asterisk/logger.conf file and modify the 'console' line to resemble the one below.
console => notice,warning,error,debug,verbose
...
Info |
---|
Note: Make sure there is no ';' character at the beginning of your console line. The ';' character indicates the beginning of a comment, and is ignored for configuration purposes. |
Attach to the Asterisk CLI using the following command:
#asterisk -gnrT | tee /tmp/$CASE/cli-capture.txt
ow in the CLI issue the following commands:
logger reload
core set verbose 10
core set debug 10
sip set debug on
fax set debug on
fax set t38cap on
fax set g711cap on
fax show version
Info |
---|
Note: The format of the above commands may change depending on your Asterisk version. If the above command reports "command not found" or "no such command", you can use the "help" command to identify the correct specification for your Asterisk build. |
Now grab your files and dump them in a tarball to submit
#tar -czvf $CASE_fax-debugging-captures.tar.gz /tmp/$CASE/ /var/log/asterisk/*cap/*
You can now submit the file $CASE_fax-debugging-captures.tar.gz for analysis to the Digium Technical Support Case.
...
Modify '/etc/asterisk/logger.conf' and restore your original console line
console => notice,warning,error
In the CLI run the following commands
logger reload
sip set debug off
core set debug 0
core set verbose 3
fax set debug off
fax set t38cap off
fax set g711cap off