问题标签 [freeswitch]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
freeswitch - FreeSwitch/FusionPBX 转移到错误的分机
这是我的场景:
主叫拨打 PSTN 线路,该线路连接到 GrandStream GWX4108,注册为 freeswitch 网关。
- 电话被 IVR--Welcome IVR (Exten: 5000) 接听。
- 主叫按 1,转移到另一个 IVR--MainMenu-IVR-NP (Exten: 5001)。
- 主叫按0,转至寻线组--FrontDesk Hunt。(扩展:6500)。
- 分机 6002 的 FrontDesk Hunt 接线员接听电话。然后,她向分机 9999 进行盲转。
分机 9999 不振铃。令我惊讶的是,电话转到了另一个寻线组——支持寻线(Exten 6600)。
以下是用于调查和审查的日志副本。
编辑#1
除上述问题外,所有扩展均正常工作。例如,对于来自任何分机的呼出呼叫,我们可以毫无问题地将呼叫转移到任何分机。
编辑#2
Exten 9999 的拨号方案
/目录/默认/v_9999.xml
freeswitch - 使用 dahdi 和 freeswitch 记录 ISDN 事件
我正在freeswitch
使用dahdi
. freeswitch
我需要为 PBX ( )上的所有呼叫记录 ISDN 事件。有没有办法做到这一点?我衷心感谢您的帮助。
提前致谢。
freeswitch - 如何使用freeswitch
我应该设置一个 VOIP 网络。我在虚拟机上安装了 Virtualbox 并安装了 ubuntu 服务器,并在其上安装了 freeswitch。我还在我的 ubuntu 桌面上安装了 Ekiga 软件电话。现在,我需要一本手册或教程来帮助我如何使用 freeswtich,如何将我的软电话连接到我的 PBX。
sip - 如何使用 sip 或 voip 隔离来电者音频?
我有一个想实施的方案,但不知道从哪里开始。
我想让 3 位参与者通话:A、B 和 C。
A 和 C 应该能够互相交谈和听到对方的声音。
B 应该能听到 A,但不能听到 C。B 不需要和任何人说话
有没有一种方法可以让我使用 SIP 服务器、freeswitch、星号或在线服务(如 twilio/tropo)来实现这一点?
在电话中是否有这样一种场景的名称,您可以隔离一个或多个呼叫者的声音?
谢谢
sip - Freeswitch with Skype Connect external profile keeps timing out and disconnecting
I have a Skype Connect SIP profile set up on a small Freeswitch setup. All seems fine - I can make incoming and outgoing calls. Problem is - if there is no activity for a while, incoming calls time out and drop. That is, the caller hears a long ring and then the call drops without connecting.
If I restart Freeswitch, the problem goes away. If an outgoing call or another incoming call has happened recently, the problem does not occur.
I see frequent messages in my Freeswitch log as follows:
A call immediately after one of these registrations succeeds.
I am off the opinion that the registration is timing out and dropping. Upon detection by Freeswitch it reconnects, but during the window when it is down, incoming calls fail.
I have replaced my router which has not made a big pile of difference.
External Sip Profile is as follows:
username and password have been replaced with XXXXs for obvious reasons. any help would be appreciated.
freeswitch - 如何在 freeswitch 上拨打本地软件电话?
我在 freeswitch 上设置了一个本地软电话,分机号为 1000。它可以连接,我可以播放俄罗斯方块主题等。我想使用 freeswitch 命令呼叫这个软电话。任何人都可以帮忙吗?
我知道这与 sofia 和发起命令有关,但我无法让它们工作
freeswitch - 如何使用带有 freeswitch 的服务器呼叫内部 sip 电话
我想从具有 freeswitch 的服务器向已注册并连接且分机号为 1000 的 sip 电话进行内部呼叫
我相当确定我使用的是origin sofia,并且我一直在尝试几种组合但没有结果。我一直在尝试的那种事情是
我得到了结果
-ERR NO_USER_RESPONSE
freeswitch - 设置freeswitch通话时长
我对freeswitch有点陌生,但我想拨打一个号码,播放声音并在一定时间后挂断。通话持续时间可能比声音文件更长或更短。
我希望用 Javascript 来做到这一点,我做到了
有没有办法可以通过javascript设置自动挂断时间,因为我可以通过循环静音声音文件来保持通话打开。
我正在使用 javascript,因为我想将声音文件和持续时间保留为变量。
sip - 星号 vs freeswitch 配置
下面是一个用lua为freeswitch编写的IVR。我没有复制整个 IVR,只是文件开头的一部分。
我还使用拨号计划为星号服务器编写了 IVR(只是一个示例,不一定相同),如下所示。
现在我的问题是在功能上模拟上面的 lua 代码,我需要一些胶水代码还是上面的 IVR 足够了。如果我在一个 SIP 服务器中编写 IVR 并从 sip 电话拨号到该 sip 服务器,它将播放菜单。我正在尝试理解架构,但似乎遗漏了一些部分。感谢您的帮助。