Command ‘module load res_srtp.so’ failed. [Jul 18 17:57:13] ERROR[480298]: loader.c:283 module_load_error: Error loading module ‘res_srtp.so’: /usr/li

    Getting SRTP error. SRTP already install but Seems that the srtp version is older. i am testing with asterisk 18 

    1. Download last version LIBSRTP 2.5 (GitHub – cisco/libsrtp: Library for SRTP (Secure Realtime Transport Protocol) 34)
    2. Build a Shared Library
    ./configure --enable-openssl
    make shared_library
    sudo make install
    
    1. Link the library to the /usr/lib64/, because they will install it in other directory
    ln -s /usr/local/lib/libsrtp2.so.1 /usr/lib64/libsrtp2.so.1
    on July 19, 2023.

    after this , need to configure the asterisk as well

    on July 19, 2023.
    Add Comment
    0 Answer(s)

    Your Answer

    By posting your answer, you agree to the privacy policy and terms of service.