转载请注明来自:似曾相识燕归来的博客
1.前言
版本信息:opensips-2.2.2
2.安装rtpproxy
git clone -b master https://github.com/sippy/rtpproxy.git
cd rtpproxy
git -C rtpproxy submodule update --init --recursive
./configure
make
可能会出现的问题
cc1: error: unrecognized command line option "-Werror=implicit-function-declaration"
解决办法:
修改/rtpproxy/src下的Makefile文件,去掉 "-Werror=implicit-function-declaration"所在的句子
make无问题后继续。
make install
即可完成安装。
启动:
rtpproxy -F -l 1xx.xx.xx.xx4 -s udp:1xx.xx.xx.xx4:12221 -d DBUG:LOG_LOCAL5
说明:
- ip地址为本机的外网地址;
- 选择一个未被占用的端口,这里选择12221端口。
3.将rtpproxy与opensips整合
1.修改/usr/local/etc/opensips/ 下的 opensips.cfg
文件。
在#### NAT modules"
整块完成后增加如下内容
loadmodule "rtpproxy.so"
modparam("rtpproxy", "rtpproxy_sock", "udp:1xx.xx.xx.xx4:12221") # CUSTOMIZE ME
2.重启opensips即可。
4.注意
- 需要先启动rtpproxy,再启动opensips
- 出现问题可查看日志文件:
/var/log/messages