如何使用 H323 转接应用程序转接呼叫

发布于 2024-11-14 17:37:48 字数 375 浏览 1 评论 0原文

我正在使用星号。我想使用带有 h323 协议的转移应用程序来转移呼叫。但我无法转接电话。

在extensions.conf文件中我添加了以下内容。

exten => 118,1,answer()
exten => 118,n,set(__TRANSFER_CONTEXT=transfer)
exten => 118,n,saynumber(567)
exten => 118,n,wait(1)
exten => 118,n,transfer(H323/119)
exten => 119,1,answer()
exten => 119,n,saynumber(222)
exten => 119,n,hangup()

I am using the asterisks. I want to transfer call using transfer application with h323 protocols. But I am not able to transfer call.

In the extensions.conf file I have added the following content.

exten => 118,1,answer()
exten => 118,n,set(__TRANSFER_CONTEXT=transfer)
exten => 118,n,saynumber(567)
exten => 118,n,wait(1)
exten => 118,n,transfer(H323/119)
exten => 119,1,answer()
exten => 119,n,saynumber(222)
exten => 119,n,hangup()

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

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

发布评论

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

评论(2

岁月苍老的讽刺 2024-11-21 17:37:48

对于有类似问题的人来说,有时如果与通道技术不匹配,则无法进行传输。

如果想要使用传输应用程序,

Transfer([Tech/]dest[|options]):

您必须确保如果使用 TECH(SIP、IAX2、LOCAL 等),则仅
相同信道技术的来电将被转接。如果传入通道是 SIP,但您想转移到 IAX,则不允许这样做。

For anyone with a similar issue, sometimes transfer will not be possible if there is a mismatch with channel technology.

If one wants to use Transfer application

Transfer([Tech/]dest[|options]):

You must ensure that if TECH (SIP, IAX2, LOCAL etc) is used, only
an incoming call with the same channel technology will be transferred. If the incoming channel is SIP but you want to transfer to IAX it won't allow that.

撩人痒 2024-11-21 17:37:48

您想要做的事情可以通过 Goto 命令来实现。转接用于将呼叫转接至真实设备/用户,但如果您想坚持使用,可以尝试:

exten => 118,n,transfer(Local/119@your_context)

或简单地

扩展 => 118,n,转移(本地/119)

What you are trying to do can be achieved with Goto command. Transfer is used to transfer calls to real devices/users but if you want to stick with that you can try:

exten => 118,n,transfer(Local/119@your_context)

or simply

exten => 118,n,transfer(Local/119)

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