(→Limitations) |
(→Limitations) |
||
Line 8: | Line 8: | ||
* On initial releases only voice calls are supported (group and private) | * On initial releases only voice calls are supported (group and private) | ||
− | * Only AMBE encoding (payload type DMRA-AIS) is supported, g.711 is not supported (and will never | + | * Only AMBE encoding (payload type DMRA-AIS) is supported, g.711 is not supported (and will never be supported) |
* AIS Connect configured as a network-type connection, any call will change user's location while routing | * AIS Connect configured as a network-type connection, any call will change user's location while routing | ||
* BrandMeister Core supports multiple calls with each peers (maximum amount of concurrent calls per peer depends on amount of configured RTP ports) | * BrandMeister Core supports multiple calls with each peers (maximum amount of concurrent calls per peer depends on amount of configured RTP ports) |
Since version BrandMeister Core 20211222-205035 has support of DMRA AIS.
DMR Application Interface by DMR Association is a general-use IP-based interface for DMR applications and interworking. It is quite abstract and allows vendor's specific deviations. Also it is a bit slow due to complicated procedures (for example, call setup).
During the implementation we tried to provide flexibility of connector. To follow that approach most of specific procedures, such as registration business-logic are moved to Lua code of Registry. On this way, for example, you are able to register all subscribers of BrandMeister Network in an interconnected DMR Tier 3 network.
AISConnect : { port1 = 5060; // SIP Port port2 = 45000; // Start RTP Port (will use many) count = 20; // Count of ports to receive RTP (equals to amount of allowed concurrent calls per connection) latency = 200; // Latency of jitter buffer (100-800 ms) // Connection profiles connections = [ "AISProfile1" ]; }; AISProfile1 : { // Network ID of remote system number = 25010; // Connection mode: // Bit 0 - Allow to update terminal location in all registries // Bit 1 - Allow to subscribe a group in embedded registry mode = 3; // Address and port of endpoint address = "ais.domain.net"; port = 5060; // Incoming REGISTER request interval = 300; // Registration timeout };
Space AISSubscriptions - used to send registration requests to AIS node: 1 - AIS Profile ID 2 - Group ID 3 - Slot 4 - Expiration Time
To configure access password please use standard way with call setPassword(LINK_TYPE_NETWORK, <profile ID>, '<password>')
Since version BrandMeister Core 20211222-205035 has support of DMRA AIS.
DMR Application Interface by DMR Association is a general-use IP-based interface for DMR applications and interworking. It is quite abstract and allows vendor's specific deviations. Also it is a bit slow due to complicated procedures (for example, call setup).
During the implementation we tried to provide flexibility of connector. To follow that approach most of specific procedures, such as registration business-logic are moved to Lua code of Registry. On this way, for example, you are able to register all subscribers of BrandMeister Network in an interconnected DMR Tier 3 network.
AISConnect : { port1 = 5060; // SIP Port port2 = 45000; // Start RTP Port (will use many) count = 20; // Count of ports to receive RTP (equals to amount of allowed concurrent calls per connection) latency = 200; // Latency of jitter buffer (100-800 ms) // Connection profiles connections = [ "AISProfile1" ]; }; AISProfile1 : { // Network ID of remote system number = 25010; // Connection mode: // Bit 0 - Allow to update terminal location in all registries // Bit 1 - Allow to subscribe a group in embedded registry mode = 3; // Address and port of endpoint address = "ais.domain.net"; port = 5060; // Incoming REGISTER request interval = 300; // Registration timeout };
Space AISSubscriptions - used to send registration requests to AIS node: 1 - AIS Profile ID 2 - Group ID 3 - Slot 4 - Expiration Time
To configure access password please use standard way with call setPassword(LINK_TYPE_NETWORK, <profile ID>, '<password>')