return $r; } /** * @param int $page 页数 * @param int $pagesize 每页显示数量 * @return mixed */ function link_find($page = 1, $pagesize = 100) { $arr = link__find($cond = array(), array('rank' => -1), $page, $pagesize); return $arr; } /** * @param $id * @return bool 返回FALSE失败 TRUE成功 */ function link_delete($id) { if (empty($id)) return FALSE; $r = link__delete(array('id' => $id)); link_delete_cache(); return $r; } //--------------------------kv + cache-------------------------- /** * @return mixed 返回全部友情链接 */ function link_get($page = 1, $pagesize = 100) { $g_link = website_get('friends_link'); if (empty($g_link)) { $g_link = link_find($page, $pagesize); $g_link AND website_set('friends_link', $g_link); } return $g_link; } // delete kv and cache function link_delete_cache() { website_set('friends_link', ''); return TRUE; } ?>proxy - Kamailio + FusionPBX: Call Forwarded to FusionPBX via Dispatcher, but Not Being Accepted? - Stack Overflow
最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

proxy - Kamailio + FusionPBX: Call Forwarded to FusionPBX via Dispatcher, but Not Being Accepted? - Stack Overflow

programmeradmin3浏览0评论

I have one Kamailio server and one FusionPBX server.

I have two SIP extensions, 11111 and 22222, registered on Kamailio, and I can successfully make calls between them.

Now, I have configured Kamailio to forward calls to the FusionPBX server. The call is indeed being forwarded to FusionPBX, but FusionPBX is not accepting the call.

When checking sngrep, it shows the call as "unavailable".

My goal is to use Kamailio as a proxy and load balancer so that it can distribute calls across multiple FusionPBX instances.

What I Have Tried So Far: Verified that calls are being forwarded from Kamailio to FusionPBX. Checked sngrep and found that calls are marked as "unavailable." Ensured that FusionPBX extensions are correctly registered. Tested direct calls between Kamailio users, which work fine. Question: Why is FusionPBX not accepting calls from Kamailio? How can I make sure Kamailio properly forwards calls to FusionPBX and gets them accepted? Is there any additional configuration needed in FusionPBX for Kamailio to send calls properly?

与本文相关的文章

发布评论

评论列表(0)

  1. 暂无评论