FreeSWITCH取消Digest校验流程

方法一、通过使用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>

原文地址:https://www.cnblogs.com/yoyotl/p/7891488.html