共计 3733 个字符,预计需要花费 10 分钟才能阅读完成。
背景
最近在钻研 sip 代理服务,国内大部分举荐应用 opensips,第一工夫装置 opensips 来学习,理论在应用中发现 opensips 3.x 的坑很多,很多性能在 2.x 版本上有,然而在 3.x 上还未实现。光是 sip 做代理服务转发申请到 freeswitch 上,3.x 版本配置上就没有一个能胜利应用的示例,配置都是 2.x 的,很多参数还不适配。整了 2 天都没搞明确,果决弃坑,选用 kamailio,此时才发现kamailio 是如许敌对。
装置 kamailio
本次应用 centos7.9 零碎,kamailio 的版本是 5.6。
装置步骤比较简单,依照网上流程都能装置胜利。我抉择的是源码装置,须要留神的是 make cfg
时,要抉择装置一些模块 既能够 make include_modules="db_mysql xxx" cfg
抉择装置的模块,也能够关上 ./src/modules.list 找到 exclude_modules, 把须要装置的模块从这里删除。之后就 make && make install。
配置 sip 代理服务
-
运行 kamailio
kamailio 的配置文件地位: /usr/local/etc/kamailio/改 kamactlrc 的 mysql 连贯,和 kamailio.cfg 里的 DBURL,之后
kamctl start
运行服务. 如果报错:ERROR: PID file /run/kamailio/kamailio.pid does not exist -- Kamailio start failed
查看 /var/log/message 日志,看看报错日志。
-
配置 dispatcher 代理
官网文档配置参考: https://github.com/kamailio/kamailio/blob/master/src/modules/dispatcher/doc/dispatcher.cfg
kamailio 代理服务应用的是 dispatcher 模块,配置形式有两种: - 应用 dispatcher.list
在 kamailio 的配置地位下,新建 dispatcher.list, 写入须要代理的 fs 服务:
# $Id$
# dispatcher destination sets
# setit(int) destination(sip uri) flags(int,opt) priority(int,opt) attributes(str,opt)
# Freeswitch IPS
1 sip:192.168.40.143:5080
1 sip:192.168.30.100:5080
full example:
1 sip:127.0.0.1:5080 0 0 duid=abc;socket=udp:192.168.0.125:5060;my=xyz;ping_from=sip:myproxy.com
flags:
1: inactive destination
2: temprary trying destination
4: admin disabled destination
8: probing destination (sending keep alives)
16: skip DNS A/AAAA resolve at startup
attributes:
duid: It must be an unique value to identify a destination
maxload: defining the upper limit of active calls per destination
weight: beteen 1 and 100
rweight: between 1 and 100
socket: used to set the sending socket for the gateway
sockname:
ping_from:
而后在 kamailio.cfg 配置中,退出 dispatcher 应用
loadmodule "dispatcher.so"
modparam("dispatcher", "list_file", "/usr/local/etc/kamailio/dispatcher.list")
modparam("dispatcher", "table_name", "dispatcher")
modparam("dispatcher", "flags", 2)
modparam("dispatcher", "xavp_dst", "_dsdst_")
modparam("dispatcher", "xavp_ctx", "_dsctx_")
modparam("dispatcher", "ds_ping_from", "sip:dispatcher@192.168.40.45")
modparam("dispatcher", "ds_ping_interval", 60)
modparam("dispatcher", "ds_probing_mode", 1)
modparam("dispatcher", "ds_timer_mode", 1)
- 应用 mysql
#!ifndef DBURL
#!define DBURL "mysql://kamailio:kamailiorw@localhost/kamailio"
#!endif
loadmodule "dispatcher.so"
modparam("dispatcher", "db_url", DBURL)
modparam("dispatcher", "table_name", "dispatcher")
modparam("dispatcher", "flags", 2)
modparam("dispatcher", "xavp_dst", "_dsdst_")
modparam("dispatcher", "xavp_ctx", "_dsctx_")
modparam("dispatcher", "ds_ping_from", "sip:dispatcher@192.168.40.45")
modparam("dispatcher", "ds_ping_interval", 60)
modparam("dispatcher", "ds_probing_mode", 1)
modparam("dispatcher", "ds_timer_mode", 1)
参数解释:
ds_ping_method:能够自定义 ping 办法, 默认 INFO
ds_hash_expire: 如果在指定工夫内(默认 7200s)BYE 未收到,就删掉这个路由。
ds_hash_initexpire: 如果在指定工夫内(默认 7200s)INVITE 的 200ok 未收到,就删掉这个路由。
-
配置转发
request_route
最初增加route(DISPATCH)
route(REGISTRAR); if ($rU==$null) { # request with no Username in RURI sl_send_reply("484","Address Incomplete"); exit; } # dispatch destinations route(DISPATCH);
# Dispatch requests
route[DISPATCH] {
# round robin dispatching on gateways group '1'
if(!ds_select_dst("1", "4")) {send_reply("404", "No destination");
exit;
}
xdbg("--- SCRIPT: going to <$ru> via <$du> (attrs: $xavp(_dsdst_=>attrs))\n");
t_on_failure("RTF_DISPATCH");
route(RELAY);
exit;
}
# Try next destionations in failure route
failure_route[RTF_DISPATCH] {if (t_is_canceled()) {exit;}
# next DST - only for 500 or local timeout
if (t_check_status("500")
or (t_branch_timeout() and !t_branch_replied())) {if(ds_next_dst()) {xdbg("--- SCRIPT: retrying to <$ru> via <$du> (attrs: $xavp(_dsdst_=>attrs))\n");
t_on_failure("RTF_DISPATCH");
route(RELAY);
exit;
}
}
}
在 route[DISPATCH]
中ds_select_dst("1", "4")
“1”: 代表配置的 freeswitch 中的 setid
“4”:round-robin 轮询抉择。
ds_select_dst 轮询配置 参考文档:https://kamailio.org/docs/modules/5.6.x/modules/dispatcher.ht…
论断
通过配置两个 freeswitch, 抉择适当的调配形式能够把申请依照肯定的比例散发到两个 freeswitch 上。另外如果其中一个freeswitch 服务死掉,kamailio 检测到之后,会把之后的申请全都转到另外的一个 freeswitch 服务上。