Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
asterisk:conference-bridge [2006/10/19 13:48] – created admin | asterisk:conference-bridge [2012/03/22 12:29] (current) – removed spam 80.250.1.245 | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ====== Using Asterisk as a Conference Bridge ====== | ||
+ | |||
+ | Using Asterisk as a conference bridge is much simpler than using it as a voicemail system because it does not require you to integrate OpenSER and Asterisk' | ||
+ | |||
+ | ==== Programs Needed ==== | ||
+ | * Latest Asterisk | ||
+ | * app_cbmysql for Asterisk | ||
+ | * Web MeetMe | ||
+ | * Tables for CbMysql | ||
+ | |||
+ | ==== How This Will Work ==== | ||
+ | |||
+ | In OpenSER, add an account for asterisk. Then, set Asterisk up to register to that account. There won't need to be any route modifications because Asterisk will just be another number for users to call. Unfortunately, | ||
+ | |||
+ | ==== Configuration ==== | ||
+ | |||
+ | Be sure to fill in all username, password, and other settings with your details. | ||
+ | |||
+ | === Asterisk' | ||
+ | |||
+ | < | ||
+ | |||
+ | [general] | ||
+ | context=conference | ||
+ | bindport=5060 | ||
+ | bindaddr=0.0.0.0 | ||
+ | srvlookup=yes | ||
+ | tos=184 | ||
+ | disallow=all | ||
+ | allow=ulaw | ||
+ | language=en | ||
+ | relaxdtmf=yes | ||
+ | rtptimeout=60 | ||
+ | useragent=VoIP Conference Bridge | ||
+ | dtmfmode = auto ; Set default dtmfmode for sending DTMF. Default: rfc2833 | ||
+ | register => username: | ||
+ | domain=sip.domain, | ||
+ | fromdomain=sip.domain | ||
+ | |||
+ | [authentication] | ||
+ | auth = username: | ||
+ | |||
+ | [sipproxy] | ||
+ | type=friend | ||
+ | user=phone | ||
+ | host=sip.domain | ||
+ | realm=sip.domain | ||
+ | fromdomain=sip.domain | ||
+ | fromuser=username | ||
+ | secret=password | ||
+ | insecure=very | ||
+ | context=conference | ||
+ | authname=username | ||
+ | dtmfmode=RFC2833 | ||
+ | canreinvite=no | ||
+ | username=username | ||
+ | disallow=all | ||
+ | allow=ulaw | ||
+ | </ | ||
+ | |||
+ | === Asterisk' | ||
+ | |||
+ | < | ||
+ | [mm-announce] | ||
+ | exten => 9999, | ||
+ | exten => 9999, | ||
+ | exten => 9999, | ||
+ | exten => 9999, | ||
+ | exten => 9999, | ||
+ | exten => 9999, | ||
+ | |||
+ | [conference] | ||
+ | ;Used by cbEnd script to play end of conference warning | ||
+ | exten => _mmplay., | ||
+ | exten => _mmplay., | ||
+ | exten => _mmplay., | ||
+ | |||
+ | exten => username, | ||
+ | exten => username, | ||
+ | exten => username, | ||
+ | exten => username, | ||
+ | </ | ||
+ | |||
+ | === Asterisk' | ||
+ | < | ||
+ | [global] | ||
+ | hostname=your_database_server | ||
+ | dbname=meetme_database | ||
+ | password=meetme_password | ||
+ | user=meetme_user | ||
+ | port=3306 | ||
+ | sock=/ | ||
+ | DBOpts=yes | ||
+ | OptsAdm=asdp | ||
+ | OptsUsr=sdp | ||
+ | ConfApp=MeetMe | ||
+ | ConfAppCount=MeetMeCount | ||
+ | ; Choose one of the following to modify early join behaviour | ||
+ | earlyalert=300 | ||
+ | ; | ||
+ | </ | ||
+ | |||
+ | === Database Tables === | ||
+ | |||
+ | Here is an output of what I found online: | ||
+ | |||
+ | < | ||
+ | mysql> show columns from booking; | ||
+ | +-----------+-------------+------+-----+---------------------+----------------+ | ||
+ | | Field | Type | Null | Key | Default | ||
+ | +-----------+-------------+------+-----+---------------------+----------------+ | ||
+ | | bookId | ||
+ | | clientId | ||
+ | | roomNo | ||
+ | | roomPass | ||
+ | | silPass | ||
+ | | startTime | datetime | ||
+ | | endTime | ||
+ | | dateReq | ||
+ | | dateMod | ||
+ | | maxUser | ||
+ | | status | ||
+ | | confOwner | varchar(30) | | | ||
+ | | confDesc | ||
+ | | aFlags | ||
+ | | uFlags | ||
+ | +-----------+-------------+------+-----+---------------------+----------------+ | ||
+ | 13 rows in set (0.00 sec) | ||
+ | |||
+ | mysql> show columns from cdr; | ||
+ | +----------+-------------+------+-----+---------+-------+ | ||
+ | | Field | Type | Null | Key | Default | Extra | | ||
+ | +----------+-------------+------+-----+---------+-------+ | ||
+ | | bookId | ||
+ | | duration | varchar(12) | | | ||
+ | | CIDnum | ||
+ | | CIDname | ||
+ | +----------+-------------+------+-----+---------+-------+ | ||
+ | 4 rows in set (0.00 sec) | ||
+ | |||
+ | </ | ||
+ | |||
+ | I have posted this here because I fear that it will be removed. Here is the original link: | ||
+ | http:// | ||
+ | |||
+ | Unfortunately, | ||
+ | |||
+ | http:// | ||
+ | |||
+ | Mike Williams | ||
+ | mikebwilliams@gmail.com | ||
+ | |||