You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openmeetings.apache.org by so...@apache.org on 2022/06/10 14:30:51 UTC

[openmeetings] branch master updated: [OPENMEETINGS-2737] instructions are updated

This is an automated email from the ASF dual-hosted git repository.

solomax pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/openmeetings.git


The following commit(s) were added to refs/heads/master by this push:
     new ad6290f69 [OPENMEETINGS-2737] instructions are updated
ad6290f69 is described below

commit ad6290f690565cb50f5759ae1027f8b595e09c35
Author: Maxim Solodovnik <so...@gmail.com>
AuthorDate: Fri Jun 10 21:30:40 2022 +0700

    [OPENMEETINGS-2737] instructions are updated
---
 .../src/site/markdown/AsteriskIntegration.md       | 40 ++++++++++++++++++++++
 1 file changed, 40 insertions(+)

diff --git a/openmeetings-server/src/site/markdown/AsteriskIntegration.md b/openmeetings-server/src/site/markdown/AsteriskIntegration.md
index a3f9e0bfe..d0d5a2b0e 100644
--- a/openmeetings-server/src/site/markdown/AsteriskIntegration.md
+++ b/openmeetings-server/src/site/markdown/AsteriskIntegration.md
@@ -280,3 +280,43 @@ protocol=wss
 bind=0.0.0.0
 ; All other transport parameters are ignored for wss transports.
 ```
+
+## Call from room to external number
+Modify `/etc/asterisk/sip.conf`
+
+**Add your external provider**
+
+```
+register => tls://<name>:<password>@sipnet.ru
+
+[SIPNET]
+type=friend
+username=<name>
+secret=<password>
+callerid=<caller id> ; can be commented out
+host=sipnet.ru
+nat=route
+fromuser=<fromuser> ; can be commented out
+fromdomain=sipnet.ru
+dtmfmode=rfc2833
+insecure=very
+context=rooms
+disallow=all
+allow=alaw
+canreinvite=no
+callbackextension=<extension for incoming calls> ; can be commented out
+```
+
+Modify `/etc/asterisk/extensions.conf`
+
+**Add external numbers you are going to call to [rooms-out] section**
+
+```
+[rooms-out]
+; *****************************************************
+; Extensions for outgoing calls from Openmeetings room.
+; *****************************************************
+exten => _00000,1,Answer
+exten => _00000,n,Dial(SIP/00000@SIPNET,30)
+exten => _00000s,n,HangUp
+```