呼叫sip web端 会自动发送BYE switch_core_media.c:4158 NO candidate ACL defined, Defaulting to wan.auto

解决方法

  • switch.conf.xml中添加这句<param name="rtp-autofix" value="true"/>,配置大致如下
<configuration name="switch.conf" description="Core Configuration">
  
  <settings>

  
  <param name="rtp-autofix" value="true"/>

此外 还要注意ACL配置

  • acl.conf.xml 中 配置 <node type="allow" cidr="0.0.0.0/0"/>
<list name="wan" default="allow">
    <node type="allow" cidr="172.28.78.0/24"/>
    <node type="allow" cidr="0.0.0.0/0"/>
  </list>

注意这样配置是不安全的,只是方便测试才这样配置