场景是:
- 终端登录在Freeswitch A服务器。
 - 终端呼叫视频会议房间3500。
 - Freeswitch A服务器把视频指令转发到Freeswitch B服务器。
 
修改Freeswitch A服务器配置,文件是freeswitch/dialplan/default.xml。在<context name="default">下增加转发指令:
<extension name="meeting">
        <condition field="destination_number" expression="^(3500)$">
             <action application="bridge" data="sofia/external/sip:$1@192.168.1.111:5080" />
        </condition>
    </extension>其中:
- 3500是视频会议房间
 - 192.168.1.111是Freeswitch B服务器的IP。
 - 5080是默认的一个端口。
 










