如何使用 FreePbx 在 asterisknow 中进行分叉

发布于 2024-10-01 18:12:35 字数 216 浏览 5 评论 0 原文

我已经用 freePbx 实现了一个 asterisk now 服务器(asterisk 1.6),

创建了 3 个扩展“peers”

并且我用数字 200 201 202

和我每个人都到 x-lite 帐户,

我希望当号码 200 呼叫号码 201 时也按 202 响铃,

换句话说,如果他没有应答,则按响铃 201,然后响铃 202

i have implement an asterisk now server (asterisk 1.6) with freePbx

and i make 3 extension "peers"

with number
200
201
202

and i each of them to x-lite account

i want when number 200 call number 201 also ringing at 202

in other word he ring 201 if he didnot answer , ring 202

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

风流物 2024-10-08 18:12:35

我对你的问题的理解是,你想在一定的超时时间内级联拨号。这是一个潜在的解决方案,每个拨号之间有 15 秒的超时时间。

exten => s,1,Answer() 
exten => s,n,Dial(SIP/200,15,r) 
exten => s,n,Dial(SIP/201,15,r) 
exten => s,n,Dial(SIP/202,15,r) 
exten => s,n,Hangup()

在挂断之前,您还可以使用类似的内容发送到语音邮件。

exten => s,n,VoiceMail(200@default)

有关星号拨号命令的更多信息可以在此处找到:

http://www.voip-info.org/wiki/view/Asterisk+cmd+Dial

祝你好运!

My understanding of your question is that you want to cascade the dials given a certain timeout. Here is a potential solution with a 15s timeout between each dials.

exten => s,1,Answer() 
exten => s,n,Dial(SIP/200,15,r) 
exten => s,n,Dial(SIP/201,15,r) 
exten => s,n,Dial(SIP/202,15,r) 
exten => s,n,Hangup()

Before Hangup, you could also dispatch to the VoiceMail with something like

exten => s,n,VoiceMail(200@default)

More information about asterisk dial command can be found here:

http://www.voip-info.org/wiki/view/Asterisk+cmd+Dial

Good luck!

放赐 2024-10-08 18:12:35

使用响铃组或队列。您可能必须从模块管理安装模块。

Use a Ring Group or a Queue. You may have to install the modules from Module Admin.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文