VoIP Mailing List Archives
Mailing list archives for the VoIP community |
|
View previous topic :: View next topic |
Author |
Message |
jcolp at digium.com Guest
|
Posted: Fri Aug 12, 2016 9:39 am Post subject: [asterisk-users] Asterisk 11.23.0 on CentOS6 : how to get IC |
|
|
Jonas Kellens wrote:
Quote: | Question : I noticed I received an error when installing pjproject
--with-external-srtp
I do not seems to have the srtp capability.
(However I can easily install with "yum install libsrtp-devel")
Can this have anything to do with the no-audio-problems that I'm having ??
|
WebRTC requires SRTP and Asterisk has to be built with it enabled. It's
okay if pjproject doesn't as we don't use their media layer. Do you have
the res_srtp module in Asterisk?
--
Joshua Colp
Digium, Inc. | Senior Software Developer
445 Jan Davis Drive NW - Huntsville, AL 35806 - US
Check us out at: www.digium.com & www.asterisk.org
--
_____________________________________________________________________
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
http://www.asterisk.org/hello
asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
http://lists.digium.com/mailman/listinfo/asterisk-users |
|
Back to top |
|
|
jonas.kellens at telen... Guest
|
Posted: Fri Aug 12, 2016 9:58 am Post subject: [asterisk-users] Asterisk 11.23.0 on CentOS6 : how to get IC |
|
|
On 12-08-16 16:38, Joshua Colp wrote:
Quote: | Jonas Kellens wrote:
Quote: | Question : I noticed I received an error when installing pjproject
--with-external-srtp
I do not seems to have the srtp capability.
(However I can easily install with "yum install libsrtp-devel")
Can this have anything to do with the no-audio-problems that I'm
having ??
|
WebRTC requires SRTP and Asterisk has to be built with it enabled.
It's okay if pjproject doesn't as we don't use their media layer. Do
you have the res_srtp module in Asterisk?
|
Hello
Package libsrtp-devel-1.5.4-3.el6.x86_64 already installed and latest
version
Package libsrtp-1.5.4-3.el6.x86_64 already installed and latest version
However, I am not able to select res_srtp module in menuselect. It says
XXX res_srtp module
Kind regards.
--
_____________________________________________________________________
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
http://www.asterisk.org/hello
asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
http://lists.digium.com/mailman/listinfo/asterisk-users |
|
Back to top |
|
|
jonas.kellens at telen... Guest
|
Posted: Fri Aug 12, 2016 10:23 am Post subject: [asterisk-users] Asterisk 11.23.0 on CentOS6 : how to get IC |
|
|
Hello
running into several problems when installing
asterisk-certified-13.8-cert1 (more then I ever had in Asterisk 11 and 12).
I compile : ./configure --libdir=/usr/lib64 --with-pjproject-bundled
First, I do not seem to have res_srtp module available, although all
necessary libs are present on the system
Second, I am not able to start Asterisk with following error :
"/usr/sbin/asterisk: error while loading shared libraries: libpj.so.2:
cannot open shared object file: No such file or directory"
Help appreciated.
Kind regards.
On 12-08-16 16:58, Jonas Kellens wrote:
Quote: |
On 12-08-16 16:38, Joshua Colp wrote:
Quote: | Jonas Kellens wrote:
Quote: | Question : I noticed I received an error when installing pjproject
--with-external-srtp
I do not seems to have the srtp capability.
(However I can easily install with "yum install libsrtp-devel")
Can this have anything to do with the no-audio-problems that I'm
having ??
|
WebRTC requires SRTP and Asterisk has to be built with it enabled.
It's okay if pjproject doesn't as we don't use their media layer. Do
you have the res_srtp module in Asterisk?
|
Hello
Package libsrtp-devel-1.5.4-3.el6.x86_64 already installed and latest
version
Package libsrtp-1.5.4-3.el6.x86_64 already installed and latest version
However, I am not able to select res_srtp module in menuselect. It
says XXX res_srtp module
Kind regards.
|
--
_____________________________________________________________________
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
http://www.asterisk.org/hello
asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
http://lists.digium.com/mailman/listinfo/asterisk-users |
|
Back to top |
|
|
jonas.kellens at telen... Guest
|
Posted: Sun Aug 14, 2016 5:16 am Post subject: [asterisk-users] Asterisk 11.23.0 on CentOS6 : how to get IC |
|
|
Hello
I've succeeded in installing Asterisk 13 and more important : I can make webRTC call and I have audio !!
For those on the search like myself, I want to spare some weeks of headache.
My steps (CentOS 6. :
yum install uuid-devel libuuid-devel autoconf patch automake libcurl-devel libogg-devel libvorbis-devel speex-devel popt-devel libtool-ltdl-devel libresample-devel gsm-devel libedit-devel python-devel jansson-devel binutils-devel
wget http://www.pjsip.org/release/2.5.5/pjproject-2.5.5.tar.bz2
tar -xjvf pjproject-2.5.5.tar.bz2
./configure CFLAGS="-DNDEBUG -DPJ_HAS_IPV6=1" --prefix=/usr --libdir=/usr/lib64 --enable-shared --disable-video --disable-sound --disable-opencore-amr
make dep
make
make install
ldconfig -p | grep pj
ldconfig
wget http://downloads.asterisk.org/pub/telephony/certified-asterisk/asterisk-certified-13.8-current.tar.gz
[root@siptest asterisk-certified-13.8-cert1]# ./configure --libdir=/usr/lib64
[root@siptest asterisk-certified-13.8-cert1]# make menuselect
[root@siptest asterisk-certified-13.8-cert1]# make && make install
Forget the option "--with-pjproject-bundled" I would say. Did not work for me on : CentOS release 6.8 (Final)
Kind regards.
On 12-08-16 17:22, Jonas Kellens wrote:
Quote: | Hello
running into several problems when installing asterisk-certified-13.8-cert1 (more then I ever had in Asterisk 11 and 12).
I compile : ./configure --libdir=/usr/lib64 --with-pjproject-bundled
First, I do not seem to have res_srtp module available, although all necessary libs are present on the system
Second, I am not able to start Asterisk with following error : "/usr/sbin/asterisk: error while loading shared libraries: libpj.so.2: cannot open shared object file: No such file or directory"
Help appreciated.
Kind regards.
On 12-08-16 16:58, Jonas Kellens wrote:
Quote: |
On 12-08-16 16:38, Joshua Colp wrote:
Quote: | Jonas Kellens wrote:
Quote: | Question : I noticed I received an error when installing pjproject
--with-external-srtp
I do not seems to have the srtp capability.
(However I can easily install with "yum install libsrtp-devel")
Can this have anything to do with the no-audio-problems that I'm having ??
|
WebRTC requires SRTP and Asterisk has to be built with it enabled. It's okay if pjproject doesn't as we don't use their media layer. Do you have the res_srtp module in Asterisk?
|
Hello
Package libsrtp-devel-1.5.4-3.el6.x86_64 already installed and latest version
Package libsrtp-1.5.4-3.el6.x86_64 already installed and latest version
However, I am not able to select res_srtp module in menuselect. It says XXX res_srtp module
Kind regards.
|
|
|
|
Back to top |
|
|
|
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
Powered by phpBB © 2001, 2005 phpBB Group
|