加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
sip_config.js.template 1.21 KB
一键复制 编辑 原始数据 按行查看 历史
/**
* 配置文件
*/
var config={
authentication:false,
// 设备信息,没有写在这里的将注册不了,不允许匿名注册
registry : {
'34020000001110000001' : { password : '12345678', online:false}, // 测试,这个是设备的account,需要密码
'34020000001320000001' : {} // 测试,这个是通道的account,不需要密码
},
// 在线设备
devices:[],
http:{
// http restful接口端口
port : 8777
},
sip:{
server:{
// sip服务端口号
port : 5060,
// sip 信令服务器域
realm : '3401030000',
// sip信令服务器ip地址,一般是本机ip
ip : '148.70.110.25',
// sip服务端 account
account : '34010300002000002250',
keepalive: 60, //心跳检查周期,单位秒
password : '12345678' // 设备登陆密码
}
},
logger:{
// 日志地址
path:'./sip.log'
},
// 生成Tag使用的函数
rstring:function() { return Math.floor(Math.random()*1e6).toString(); }
};
module.exports=config;
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化