Trixbox:MeetMe配置

2023-11-21 06:40
文章标签 配置 trixbox meetme

本文主要是介绍Trixbox:MeetMe配置,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

1 MeetMe – Teleconference 
Meetme Tele-conference can be configured through FreePBX. 
Meetme is pretty easy to set up, as there is very little to do. However, to set up Meetme, a Zaptel card will be required (at least in my case as I don’t seem to be able to get it working without a Zaptel card installed). There may be a workaround for it and I hope someone will be able to tell me what it is so it can be included in this guide (see Appendix E - user suggestions for work around). 
The Meetme function of Asterisk is similar to a Tele-conference call where multiple callers can call in and participate in a two-way conference like in a party room where everyone can talk and listen to one another or just to listen to a Tele-presentation. 
In TRIXBOX, there are 2 .conf files that relates to conferencing. They are:  
meetme.conf
meetme_additional.conf
 
meetme.conf
Ensure that you have the following 2 lines (only 2 lines in the file): 
[rooms]
#include meetme_additional.conf 
All these lines do is point to the meetme_additional.conf where the conference room extensions are being created when you create a conference room through freePBX conference set-up option. 
 meetme_additional.conf
This is where the extensions for the meeting rooms is created.  One line per room.  You may have just one extension for your meeting room or you may have several meeting rooms.  In my case, I have 1 meeting room and therefore my meetme_additional.conf contains the following extension: 
; Extensions for my meeting rooms
conf => 8200| 
 
1.1 Create Conference 
FreePBX allows you to create one or more conference room through the Setup -> Conference screen. All you have to do is fill in the appropriate fields on the screen and you are on your way to a voice conference. 
Naturally there are some options that you may wish to have for the conference room. They are entirely up to you. The main important things are for you to create the conference room number and the conference name for you to know what that conference room is for. The rest of the fields are optional. 
Below is what my conference configuration page looks like: 
  
  • This conference room number is 8200
  • I call this conference room General Conference
  • Users are required to enter a PIN number of 1234
  • Admin PIN number is 1235 for the conference to wait for the leader to conduct the conference.
  • I have a joining message greeting when someone joins the conference.
  • I have Yes in the leader wait option for the conference to wait for the conference chairman.
  • I require a user count so I have Yes in the user count field.
  • I need to be informed when a user join or leave the conference. I have Yes here.
  • The music on hold is also flagged as Yes as I want music on while waiting. 
Once these are done, from one of your phones dial, 8200 and you will be asked to enter the PIN number and to confirm it. 
You are now in the conference room and every time someone joins or leaves the conference, it will also be announced. 
To test this, go to another phone and also dial 8200. You should hear an announcement (if you are listening on the first phone), indicating that someone has joined the conference. 
If there are 2 (or more) of you, you will be able to talk to each other. If one of you hangs up, you will know about it.
 
1.1.1 /var/spool/asterisk/meetme 
It seems that the meetme directory does not exist in /var/spool/asterisk. 
It will be necessary for this directory to be created otherwise if you have the user join/leave feature enabled, meetme will not function correctly. 
Do the following at root command prompt: 
mkdir /var/spool/asterisk/meetme  
then change the ownership of this directory 
chown asterisk.asterisk /var/spool/asterisk/meetme 
next you need to change the permission, 
chmod 775 /var/spool/asterisk/meetme
 

这篇关于Trixbox:MeetMe配置的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/400536

相关文章

Android开发环境配置避坑指南

《Android开发环境配置避坑指南》本文主要介绍了Android开发环境配置过程中遇到的问题及解决方案,包括VPN注意事项、工具版本统一、Gerrit邮箱配置、Git拉取和提交代码、MergevsR... 目录网络环境:VPN 注意事项工具版本统一:android Studio & JDKGerrit的邮

SpringBoot3.4配置校验新特性的用法详解

《SpringBoot3.4配置校验新特性的用法详解》SpringBoot3.4对配置校验支持进行了全面升级,这篇文章为大家详细介绍了一下它们的具体使用,文中的示例代码讲解详细,感兴趣的小伙伴可以参考... 目录基本用法示例定义配置类配置 application.yml注入使用嵌套对象与集合元素深度校验开发

IntelliJ IDEA 中配置 Spring MVC 环境的详细步骤及问题解决

《IntelliJIDEA中配置SpringMVC环境的详细步骤及问题解决》:本文主要介绍IntelliJIDEA中配置SpringMVC环境的详细步骤及问题解决,本文分步骤结合实例给大... 目录步骤 1:创建 Maven Web 项目步骤 2:添加 Spring MVC 依赖1、保存后执行2、将新的依赖

SpringBoot基于配置实现短信服务策略的动态切换

《SpringBoot基于配置实现短信服务策略的动态切换》这篇文章主要为大家详细介绍了SpringBoot在接入多个短信服务商(如阿里云、腾讯云、华为云)后,如何根据配置或环境切换使用不同的服务商,需... 目录目标功能示例配置(application.yml)配置类绑定短信发送策略接口示例:阿里云 & 腾

如何为Yarn配置国内源的详细教程

《如何为Yarn配置国内源的详细教程》在使用Yarn进行项目开发时,由于网络原因,直接使用官方源可能会导致下载速度慢或连接失败,配置国内源可以显著提高包的下载速度和稳定性,本文将详细介绍如何为Yarn... 目录一、查询当前使用的镜像源二、设置国内源1. 设置为淘宝镜像源2. 设置为其他国内源三、还原为官方

CentOS7更改默认SSH端口与配置指南

《CentOS7更改默认SSH端口与配置指南》SSH是Linux服务器远程管理的核心工具,其默认监听端口为22,由于端口22众所周知,这也使得服务器容易受到自动化扫描和暴力破解攻击,本文将系统性地介绍... 目录引言为什么要更改 SSH 默认端口?步骤详解:如何更改 Centos 7 的 SSH 默认端口1

Maven的使用和配置国内源的保姆级教程

《Maven的使用和配置国内源的保姆级教程》Maven是⼀个项目管理工具,基于POM(ProjectObjectModel,项目对象模型)的概念,Maven可以通过一小段描述信息来管理项目的构建,报告... 目录1. 什么是Maven?2.创建⼀个Maven项目3.Maven 核心功能4.使用Maven H

SpringBoot多数据源配置完整指南

《SpringBoot多数据源配置完整指南》在复杂的企业应用中,经常需要连接多个数据库,SpringBoot提供了灵活的多数据源配置方式,以下是详细的实现方案,需要的朋友可以参考下... 目录一、基础多数据源配置1. 添加依赖2. 配置多个数据源3. 配置数据源Bean二、JPA多数据源配置1. 配置主数据

Spring 基于XML配置 bean管理 Bean-IOC的方法

《Spring基于XML配置bean管理Bean-IOC的方法》:本文主要介绍Spring基于XML配置bean管理Bean-IOC的方法,本文给大家介绍的非常详细,对大家的学习或工作具有一... 目录一. spring学习的核心内容二. 基于 XML 配置 bean1. 通过类型来获取 bean2. 通过

如何使用Nginx配置将80端口重定向到443端口

《如何使用Nginx配置将80端口重定向到443端口》这篇文章主要为大家详细介绍了如何将Nginx配置为将HTTP(80端口)请求重定向到HTTPS(443端口),文中的示例代码讲解详细,有需要的小伙... 目录1. 创建或编辑Nginx配置文件2. 配置HTTP重定向到HTTPS3. 配置HTTPS服务器