来自“192.168.xxx.xxx”的连接尝试无法验证?
我正在尝试实现一个 AMI 服务,实际上它工作得很好,我可以添加成员、删除成员等,但每隔 1-5 分钟我就会遇到一个异常。查看星号管理器我发现这个错误。有谁知道如何解决这个问题。
谢谢=)
I'm trying to implement an AMI service, actually it works pretty good, I can add members, remove members etc etc, but every 1-5 minutes I get an exception. Looking in the asterisk manager I find this error. Does anybody knows how to solve this issue.
Thanks =)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您应该尝试在 manager.conf 中将 displayconnects 参数设置为 false
请参阅此链接
You should try setting displayconnects parameter to false in manager.conf
See this link
你的问题很模糊,因为我们没有足够的信息。
根据我的最佳猜测,我认为您的 AMI 客户端代码会断开 TCP 连接并自动重新连接,但在重新连接后无法正确“登录”到星号管理器界面。
您可以通过 TCPDUMP 捕获 AMI 客户端和 asterisk 之间的通信来调试此问题,并查看故障时的跟踪。如果我的猜测是正确的,您应该会看到第二个 TCP 会话打开,缺少登录事件。
Your question is very vague, as we don't have enough information.
At my best guess, i think your AMI client code gets a TCP disconnect and automatically reconnects, but does not correctly "logs in" to the asterisk manager interface after the reconnect.
You can debug this by capturing the communication between your AMI client and asterisk via TCPDUMP and look at the trace at the time of the failure. You should see a second TCP session opening, missing the login event if my guess is right.