NAT穿透服务器STUN Server 的安装使用

核能气质少年 提交于 2020-04-03 18:51:09

我们用SIP 客户端呼叫的时候,经常遇到复杂的网络NAT环境,这个时候需要我们安装STUN Server / Turn Server 做穿透用。
这里简单记录下 STUN Server的安装启动步骤:

yum -y install gcc
yum -y install make
yum -y install boost # For Boost
yum -y install openssl
# For OpenSSL

wget http://www.stunprotocol.org/stunserver-1.2.3.tgz

tar zxvf stunserver-1.2.3.tgz

cd stunserver
make

检查环境 是否OK
./stuntestcode

nohup /usr/local/stunserver/stunserver --mode basic --primaryinterface 172.31.78.132 &

nohup ./stunserver --mode full --primaryinterface eth0 --altinterface eth0 &

全功能模式 需要2个IP

./stunserver --mode full --primaryinterface 47.52.229.136 --altinterface 172.31.78.132

nohup ./stunserver --mode basic --primaryinterface 172.31.78.132

基本模式 1个IP

./stunserver --mode basic --primaryinterface 47.52.229.136 --altinterface 172.31.78.132

./stunserver --help 查看 参数说明!

文档:http://zengqf.gitee.io/ifreeswitchgui/

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