1. 程式人生 > >FreeSWITCH取消Digest校驗流程

FreeSWITCH取消Digest校驗流程

deny 通過 color range type ip地址 rect 流程 需要

方法一、通過使用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校驗流程