查看“Asterisk”的源代码
←
Asterisk
跳转至:
导航
、
搜索
因为以下原因,你没有权限编辑本页:
您所请求的操作仅限于该用户组的用户使用:用户
您可以查看并复制此页面的源代码:
Background Asterisk has permitted the exchange of device and mailbox state for many versions. This has normally been accomplished using the res_xmpp module for instances across networks or using res_corosync for instances on the same network. This has required, in some cases, an extreme amount of work to setup. In the case of res_xmpp this also adds another point of failure for the exchange in the form of the XMPP server itself. The res_pjsip_publish_asterisk module on the other hand does not suffer from this. Operation The res_pjsip_publish_asterisk module establishes an optionally bidirectional or unidirectional relationship between Asterisk instances. When the device or mailbox state on one Asterisk changes it is sent to the other Asterisk instance using a PUBLISH message containing an Asterisk specific body. This body is comprised of JSON and contains the information required to reflect the remote state change. For situations where you may not want to expose all states or you may not want to allow all states to be received you can optionally filter using a regular expression. This limits the scope of traffic. Configuration Configuring things to exchange state requires a few different objects: endpoint, publish, asterisk-publication, and optionally auth. These all configure a specific part in the exchange. An endpoint must be configured as a fundamental part of PJSIP is that all incoming requests are associated with an endpoint. A publish object tells the res_pjsip_outbound_publish where to send the PUBLISH and what type of PUBLISH message to send. An asterisk-publication object configures handling of PUBLISH messages, including whether they are permitted and from whom. Last you can optionally use authentication so that PUBLISH messages are challenged for credentials. Example Configuration The below configuration is for two Asterisk instances sharing all device and mailbox state between them. Instance #1 (IP Address: 172.16.10.1): [instance2] type=endpoint [instance2-devicestate] type=outbound-publish server_uri=sip:instance1@172.16.10.2 event=asterisk-devicestate [instance2-mwi] type=outbound-publish server_uri=sip:instance1@172.16.10.2 event=asterisk-mwi [instance2] type=inbound-publication event_asterisk-devicestate=instance2 event_asterisk-mwi=instance2 [instance2] type=asterisk-publication devicestate_publish=instance2-devicestate mailboxstate_publish=instance2-mwi device_state=yes mailbox_state=yes This configures the first instance to publish device and mailbox state to 'instance 2' located at 172.16.10.2 using a resource name of 'instance1' without authentication. As no filters exist all state will be published. It also configures the first instance to accept all device and mailbox state messages published to a resource named 'instance2' from 'instance2'. Instance #2 (IP Address: 172.16.10.2): [instance1] type=endpoint [instance1-devicestate] type=outbound-publish server_uri=sip:instance2@172.16.10.1 event=asterisk-devicestate [instance1-mwi] type=outbound-publish server_uri=sip:instance2@172.16.10.1 event=asterisk-mwi [instance1] type=inbound-publication event_asterisk-devicestate=instance1 event_asterisk-mwi=instance1 [instance1] type=asterisk-publication devicestate_publish=instance1-devicestate mailboxstate_publish=instance1-mwi device_state=yes mailbox_state=yes This configures the second instance to publish device and mailbox state to 'instance 1' located at 172.16.10.1 using a resource name of 'instance2' without authentication. As no filters exist all state will be published. It also configures the second instance to accept all device and mailbox state messages published to a resource named 'instance1' from 'instance1'. Filtering As previously mentioned state events can be filtered by the device or mailbox they relate to using a regular expression. This is configured on 'publish' types using '@device_state_filter' and '@mailbox_state_filter' and on 'asterisk-publication' types using 'device_state_filter' and 'mailbox_state_filter'. As each event is sent or received the device or mailbox is given to the regular expression and if it does not match the event is stopped. Example [instance1] type=endpoint [instance1-devicestate] type=outbound-publish server_uri=sip:instance2@172.16.10.1 event=asterisk-devicestate [instance1-mwi] type=outbound-publish server_uri=sip:instance2@172.16.10.1 event=asterisk-mwi [instance1] type=inbound-publication event_asterisk-devicestate=instance1 event_asterisk-mwi=instance1 [instance1] type=asterisk-publication devicestate_publish=instance1-devicestate mailboxstate_publish=instance1-mwi device_state=yes device_state_filter=^PJSIP/ mailbox_state=yes mailbox_state_filter=^1000 This builds upon the initial configuration for instance #2 but adds filtering of received events. Only device state events relating to PJSIP endpoints will be accepted. As well only mailbox state events for mailboxes starting with 1000 will be accepted. This configuration is not ideal as the publishing instance (instance #1) will still send state changes for devices and mailboxes that instance #2 does not care about, thus wasting bandwidth. Fresh Startup When the res_pjsip_publish_asterisk module is loaded it will send its own current states for all applicable devices and mailboxes to all configured 'publish' types. Instances may optionally be configured to send a refresh request to 'publish' types as well by setting the 'devicestate_publish' and/or 'mailboxstate_publish' option in the 'asterisk-publication' type. This refresh request causes the remote instances to send current states for all applicable devices and mailboxes back, bringing the potentially newly started Asterisk up to date with its peers.
返回至
Asterisk
。
导航菜单
个人工具
登录
命名空间
页面
讨论
变种
视图
阅读
查看源代码
查看历史
更多
搜索
导航
首页
最近更改
合作伙伴
FreePBX官方
IPPBX软硬件
SIP 终端话机
SBC
语音网关,Sangoma语音板卡
工具
链入页面
相关更改
特殊页面
页面信息