强制 Asterisk 通过 401/407 响应质疑所有 SIP 请求
我正在寻找一个配置文件条目来强制 Asterisk 服务器使用 401/407 响应来响应所有 SIP 请求(不包含有效的授权凭据)。
在 sip.conf 中设置“host=dynamic”可用于启用 REGISTER 和 INVITE 的身份验证质询,但似乎不适用于 BYE、SUBSCRIBE 等。Asterisk
有这样的命令吗?也许像“insecure=no”这样的东西适用于所有 SIP 方法?
I am looking for a config file entry to force an Asterisk server to respond to all SIP requests (that do not contain valid Authorization credentials) with a 401/407 response.
Setting "host=dynamic" in sip.conf can be used to enable authentication challenges for REGISTER and INVITE but doesn't seem to apply to BYE, SUBSCRIBE, etc.
Is there such a command for Asterisk? Maybe something like "insecure=no" that applies to all SIP methods?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Asterisk 中没有这方面的配置设置。 Host=dynamic 只是强制您注册,与身份验证无关。
设置 Secret= 启用身份验证。代码决定何时以及为何进行身份验证。订阅应该经过身份验证,如果没有,那就是一个错误,应该报告。
There is no configuration setting for this in Asterisk. Host=dynamic just forces you to REGISTER, it has nothing to do with authentication.
Setting secret= enables authentication. The code decides when and why to authenticate. Subscribe should be authenticated, if not, that is a bug and should be reported.