呼叫中心中间件-网关配置

本文涉及的产品
Serverless 应用引擎免费试用套餐包,4320000 CU,有效期3个月
服务治理 MSE Sentinel/OpenSergo,Agent数量 不受限
注册配置 MSE Nacos/ZooKeeper,118元/月
简介: 支持给网关指定变量,设置网关的语音编码编码和主叫号码。网关配置编辑后,不能实时生效 ,需要执行sofia命令才可以生效,具体看SIP设置。配置cti_gateway@domain [哈希表]key 网关名字value 网关配置| ```{ "param": { "register": "true", "caller-id-in-from": "true", "realm": "180.76.224.191:35560", "from-user": "", "destination-prefi

支持给网关指定变量,设置网关的语音编码编码和主叫号码。网关配置编辑后,不能实时生效 ,需要执行sofia命令才可以生效,具体看SIP设置。

配置

cti_gateway@domain [哈希表]

  1. key 网关名字
  2. value 网关配置

| ``` {     "param": {         "register": "true",         "caller-id-in-from": "true",         "realm": "180.76.224.191:35560",         "from-user": "",         "destination-prefix": "",         "username": "mytrunk",         "password": "mytrunk@ddt"     },     "variables": {         "sip_sticky_contact": "true"     } }

| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
![gateway_template.png](https://p3-juejin.byteimg.com/tos-cn-i-k3u1fbpfcp/007b00f8310a4e64b98c728f708f31f9~tplv-k3u1fbpfcp-zoom-1.image)
-   param 网关参数
    -   realm 网关服务器IP
    -   username 网关用户名
    -   password 网关密码
    -   register 是否需要注册
    -   destination-prefix 报号前缀,呼叫时被叫号码之前添加这个前缀
    -   from-user 对接IMS时需要,根据IMS要求填写,一般和username设置一样
    -   from-domain 对接IMS时需要,根据IMS要求填写,一般和realm设置一样
    -   caller-id-in-from sip信令from设置为主叫号码
    -   extension extension parameter influence the contents of channel variable Caller-Destination-Number and destination_number. If it is blank, Caller-Destination-Number will always be set to gateway’s username. If it has a value, Caller-Destination-Number will always be set to this value. If it has value auto_to_user, Caller-Destination-Number will be populated with value ${sip_to_user} which means the real dialled number in case of an inbound call.
    -   extension-in-contact Param “extension-in-contact” is used to force what the contact info will be in the registration. If you are having a problem with the default registering as gw+gateway_name@ip you can set this to true to use extension@ip. If extension is blank, it will use username@ip.
    -   auth-username 认证用户名,如果认证用户名和用户名不一样时需要配置
    -   retry-seconds this sets the number of seconds to retry the registration
    -   expire-seconds 注册的过期时间,如果不设置,默认是 3600,建议设置60。
-   variables 网关变量
    -   absolute_codec_string 声音编码
    -   p:caller_id_number 主叫号码
    -   sip_sticky_contact 为了防止NAT环境出问题,都设置为true
## [](http://www.ddrj.com/callcenter/gateway.html#%E7%BD%91%E5%85%B3%E7%9A%84%E6%B3%A8%E5%86%8C%E7%8A%B6%E6%80%81%E5%86%99%E5%85%A5redis "网关的注册状态写入redis")网关的注册状态写入redis
cti.json\
| ```
    "gui": {         /*网关信息推送到redis*/         "gateway": {             "hash": "gateways",             "channel": "",             "list": ""         }     } ` 
``` |
| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
网关注册信息会记录到哈希表gateways\
key:网关名字\
value:注册信息\
没勾选注册的\
| ```
{     "Event-Name": "CUSTOM",     "Core-UUID": "651a086c-4d20-4749-96a4-3eb2cb866ec3",     "FreeSWITCH-Hostname": "ai",     "FreeSWITCH-Switchname": "ai",     "FreeSWITCH-IPv4": "192.168.31.57",     "FreeSWITCH-IPv6": "::1",     "Event-Date-Local": "2022-04-07 23:19:29",     "Event-Date-GMT": "Thu, 07 Apr 2022 15:19:29 GMT",     "Event-Date-Timestamp": "1649344769167507",     "Event-Calling-File": "sofia_reg.c",     "Event-Calling-Function": "sofia_reg_add_gateway",     "Event-Calling-Line-Number": "3740",     "Event-Sequence": "92",     "Event-Subclass": "sofia::gateway_add",     "Gateway": "default",     "profile-name": "external" } ` 
``` |
| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
注册成功的\
| ```
{     "Event-Name": "CUSTOM",     "Core-UUID": "651a086c-4d20-4749-96a4-3eb2cb866ec3",     "FreeSWITCH-Hostname": "ai",     "FreeSWITCH-Switchname": "ai",     "FreeSWITCH-IPv4": "192.168.31.57",     "FreeSWITCH-IPv6": "::1",     "Event-Date-Local": "2022-04-07 23:23:11",     "Event-Date-GMT": "Thu, 07 Apr 2022 15:23:11 GMT",     "Event-Date-Timestamp": "1649344991284944",     "Event-Calling-File": "sofia_reg.c",     "Event-Calling-Function": "sofia_reg_fire_custom_gateway_state_event",     "Event-Calling-Line-Number": "156",     "Event-Sequence": "680",     "Event-Subclass": "sofia::gateway_state",     "Gateway": "default",     "State": "REGED",     "Ping-Status": "UP",     "Register-Network-IP": "49.235.127.246",     "Register-Network-Port": "39468" }
``` |
| -----------------------------------------------------------------------------------------------------------


作者:AI科技WX_kelaile520

链接:https://juejin.cn/post/7084050314717823006

来源:稀土掘金

著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。

相关文章
|
7月前
|
开发框架 JavaScript 中间件
配置中间件
【5月更文挑战第19天】
84 4
|
1月前
|
监控 网络协议 数据安全/隐私保护
vos3000外呼系统如何检查落地网关配置正常,路由分析
使用VOS3000外呼系统时,确保呼叫畅通的关键在于检查落地网关配置和进行路由分析。具体步骤包括:登录管理界面,检查网关状态和配置,配置外呼规则,测试拨打电话,以及分析日志和报告。通过这些步骤,可以确保系统稳定运行,提高外呼成功率和通话质量。
|
4月前
|
安全 前端开发 Java
微服务网关及其配置
微服务网关及其配置
131 4
|
4月前
|
存储 容器
【Azure 事件中心】为应用程序网关(Application Gateway with WAF) 配置诊断日志,发送到事件中心
【Azure 事件中心】为应用程序网关(Application Gateway with WAF) 配置诊断日志,发送到事件中心
|
5月前
|
缓存 监控 中间件
中间件配置和管理问题
【7月更文挑战第14天】
79 1
|
4月前
|
微服务 应用服务中间件
微服务跨域(通过网关配置进行跨域)
在单体架构中,我们通常通过SpringMVC配置类实现CORS跨域支持,设置允许的来源、请求头、方法及凭证等。然而,在微服务架构下,因浏览器首先访问网关再进行服务路由,需在网关配置跨域。对于无SpringMVC环境的网关(如使用Gateway组件),我们可在YAML文件中配置`spring.cloud.gateway.globalcors`属性,以实现全局跨域支持。
94 0
|
5月前
|
Kubernetes 监控 Java
有了k8s还需要gateway网关,nacos配置中心吗
在Kubernetes环境中,服务网关(如Spring Cloud Gateway)和Nacos配置中心补充了k8s的不足。Nacos提供灵活服务路由和动态配置更新,超越k8s基础服务发现。它还支持更复杂的配置管理和实时推送,以及环境隔离和版本控制。作为服务注册中心,Nacos增强k8s服务治理能力,保持技术一致性,并提供额外的安全层及监控功能。
330 0
|
7月前
|
存储 监控 安全
中间件应用优化持久化配置
【5月更文挑战第4天】中间件应用优化持久化配置
94 2
中间件应用优化持久化配置
|
7月前
|
消息中间件 监控 NoSQL
中间件应用合理配置内存
【5月更文挑战第4天】中间件应用合理配置内存
109 2
中间件应用合理配置内存
|
6月前
|
Linux
centos bond多网关配置 bond多网关路由
centos bond多网关配置 bond多网关路由
87 2

热门文章

最新文章