首页 > 其他 > 详细

FreeSWITCH取消Digest校验流程

时间:2017-12-07 23:10:32      阅读:593      评论:0      收藏:0      [点我收藏+]

方法一、通过使用acl配置
<list name="domains" default="deny">
<!-- domain= is special it scans the domain from the directory to build the ACL -->
<node type="allow" domain="$${domain}"/>
<!-- use cidr= if you wish to allow ip ranges to this domains acl. -->
<node type="allow" cidr="172.18.4.0/24"/>

1 <node type="deny" cidr="172.29.1.129/32"/> //加上deny选项,此时从172.29.1.129发过来的呼叫需要407鉴权。
2 <node type="allow" cidr="172.29.1.129/32"/> //加上allow选项,此时从172.29.1.129发过来的呼叫不需要407鉴权。
3 <node type="allow" cidr="0.0.0.0/32"/> //放行所有的IP地址

</list>

FreeSWITCH取消Digest校验流程

原文:http://www.cnblogs.com/yoyotl/p/7891488.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!