Find answers to your technical questions and learn how to use our products
Search suggestions:
Ensure that openssl is installed on the server where the encrypted files are stored.
If the remote log server is configured, the encrypted files are stored in the configured remote log server. Else, they are stored in Avaya SBC.
openssl enc -d -aes-256-cbc -pbkdf2 -iter 100000 -salt -in <ENCRYPTED_FILENAME> -out <DECRYPTED_FILENAME> -pass pass:<PASS_PHRASE>
Where:
<ENCRYPTED_FILENAME> is the encrypted compressed file name with relative path.
<DECRYPTED_FILENAME> is the decrypted compressed file name with relative path.
<PASS_PHRASE> is the passphrase configured for encryption. For more information, see Enabling or disabling GDPR.
For example:
openssl enc -d -aes-256-cbc -pbkdf2 -iter 100000 -salt -in tracesbc_sip_1702994829_1702994834_1.gz.enc -out tracesbc_sip_1702994829_1702994834_1.gz -pass pass:SIPera_123
On successful decryption, a compressed file is generated.
gunzip <DECRYPTED_FILENAME>
gunzip tracesbc_sip_1702994829_1702994834_1.gz
On successful uncompressing, the required file is generated.
Previous Topic
Next Topic