Anil agrahari
Anil agrahari

Reputation: 340

Join two conferences in asterisk

I want to join two conferences (confbridge). Suppose there is a conference room c1 and then there is another conf room c2, now i want that participant of c1 can also join participants of c2 but the condition is that c1 participant don't have to leave their room.

How can I implement this using confbridge and asterisk?

Upvotes: 1

Views: 4300

Answers (2)

olivecoder
olivecoder

Reputation: 2914

considering you have two conferences rooms named 1 and 2 then add to your extensions.conf:

[join-conference]
exten => s,1,ConfBridge(2)
exten => s,n,Hangup
exten => h,1,Hangip

and do it in shell:

asterisk -rx "channel originate local/s@join-conference application ConfBridge 1"

Basically you are making a call with two legs: one to conference 1 and another to conference 2. It is not a big deal and works perfectly. let me know if you cant understand something.

You can learn more here: http://www.voip-info.org/wiki/view/Asterisk+local+channels

Upvotes: 2

olivecoder
olivecoder

Reputation: 2914

you have an implementation here: Connecting two conferences on initial join

Upvotes: 1

Related Questions