RaspberryPI: Making SIP outbound calls using linphonec or an alternative SIP soft phone

ε祈祈猫儿з 提交于 2019-12-01 00:37:40

I am also working with raspberry pi's and VoIP and also tried out linphone. I had many troubles and switched to PJSIP, which is way better. It has a good documentation and much more functionalitys.

The problem it the setup, because you have to install it by source. I installed it on raspbian jessy like this (run as root or use sudo):

apt−get install build−essential automake autoconf libtool libasound2−dev libpulse−dev libssl−dev libsamplerate0−dev libcommoncpp2−dev libccrtp −dev libzrtpcpp −dev libdbus −1−dev libdbus −c++−dev libyaml −dev libpcre3 −dev libgsm1−dev libspeex−dev libspeexdsp−dev libcelt −dev
cd /home/pi
wget http://www.pjsip.org/release/2.4.5/pjproject −2.4.5.tar.bz2 tar −xvjf pjproject −2.4.5.tar.bz2
cd pjproject −2.4.5.tar.bz2
./configure && make dep && make

Important to say that this is the minimal installation, for video support or more codecs you should visit this getting started guide.

If your problem is really the firewall all this won't help you. What i did is setup my own VoIP-Server called Asterisk. It takes some afford and time but afterwards you will have a nice system which does not depends on online-services. Another solution would be to configure your router right, so he bypasses the calls from free4.voipgateway.org to your raspberry.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!