2017-03-23 150 views
0

我是kamailio的新用户。我正尝试使用fork.cfg将SIP注册发送到2个目的地。我得到以下错误,但我添加了loadmodule tm.so,为什么我仍然收到此错误?无法找到命令append_branch

Mar 22 15:53:48 emps116 kamailio[14065]: ERROR: <core> [cfg.y:3295]: yyparse(): cfg. parser: failed to find command append_branch (params 1) 
Mar 22 15:53:48 emps116 kamailio[14065]: : <core> [cfg.y:3435]: yyerror_at(): parse error in config file /etc/kamailio/fork.cfg, line 45, column 43: unknown command, mi 
Mar 22 15:53:48 emps116 kamailio[14065]: ERROR: bad config file (1 errors) 
Mar 22 15:53:48 emps116 kamailio[14065]: loading modules under config path: /usr/lib/x86_64-linux-gnu/kamailio/modules 
Mar 22 15:53:48 emps116 kamailio[14065]: loading modules under config path: /usr/lib/x86_64-linux-gnu/kamailio/modules/ 
Mar 22 15:53:48 emps116 kamailio[14065]: INFO: <core> [sctp_core.c:53]: sctp_core_destroy(): SCTP API not initialized 
Mar 22 15:53:48 emps116 systemd[1]: kamailio.service: Control process exited, code=exited status=255 
Mar 22 15:53:48 emps116 systemd[1]: Failed to start Kamailio (OpenSER) - the Open Source SIP Server. 

我的剧本是这样的(默认的):

mpath="/usr/lib/x86_64-linux-gnu/kamailio/modules" 


loadmodule "sl.so" 
loadmodule "tm.so" 
. 
. 
. 
. 
route{ 
     # for testing purposes, simply okay all REGISTERs 
     if (method=="REGISTER") { 
       log("REGISTER"); 
       sl_send_reply("200", "ok"); 
       exit; 
     }; 
     # try these two destinations first in parallel; the second 
     # destination is targeted to sink port -- that will make ser 
     # wait until timer hits 
     seturi("sip:[email protected]"); 
     append_branch("sip:[email protected]"); 
     # if we do not get a positive reply, continue at reply_route[1] 
     #t_on_failure("1"); 
     # forward the request to all destinations in destination set now 
     t_relay(); 
} 

哪个模块我正好需要得到append_branch工作?

感谢任何帮助!

+0

没关系..我发现corex模块是一个:) – anu

回答

相关问题