0
点赞
收藏
分享

微信扫一扫

Freeswitch sofia常用命令

落拓尘嚣 2022-11-01 阅读 149

 

#查看所有已注册用户
sofia status profile internal reg

#查看已注册用户1006
sofia status profile internal reg 1006
sofia status profile internal user 1006

#删除已注册用户1006@10.0.6.10
sofia profile internal flush_inbound_reg 1006@10.0.6.10

#查看所有网关
sofia status gateway

#启停某个Profile
sofia profile internal start/stop/restart

参考:https://www.freesion.com/article/9565997631/

 

#指定外显号拨打电话

res=`fs_cli -x "originate {absolute_codec_string=^^:PCMA,bridge_early_media=true,origination_caller_id_number=1006,origination_uuid=17035221234,origination_caller_id_number=17035221234,effective_caller_id_number=17035221234, effective_caller_id_name=17035221234}user/1006 11_Mogu_551113810916234" 2>&1`
echo $res
if [ ${res: 0: 3} != '+OK' ];then
echo $res
else
echo '===='
fi

 

举报

相关推荐

0 条评论