Jess Coburn
2005-Jan-18 12:10 UTC
[Asterisk-Users] What's the easiest way to call two people at same time and bridge them?
Anyone have a suggestion on how I can have my asterisk box make two SIP or IAX calls and bridge the two together? It seems like it would be easy to setup but the only way I'm finding seems to be setting up meetme rooms. Jess
Tony Mountifield
2005-Jan-18 12:36 UTC
[Asterisk-Users] Re: What's the easiest way to call two people at same time and bridge them?
In article <94b3c51f05011811107de1f992@mail.gmail.com>, Jess Coburn <jess.coburn@gmail.com> wrote:> Anyone have a suggestion on how I can have my asterisk box make two > SIP or IAX calls and bridge the two together? It seems like it would > be easy to setup but the only way I'm finding seems to be setting up > meetme rooms.Use the "Local" channel type. Let's say you have a context called "phones" with some extensions defined that go to the places you want to connect, e.g. [phones] exten => 2000,1,Dial(SIP/2000) exten => 2100,1,Dial(SIP/2100) Then you can ring them both and make them talk to each other by making a .call file as follows, and putting it into /var/spool/asterisk/outgoing: Channel: Local/2000@phones Context: phones Extension: 2100 Priority: 1 That will ring extension 2000, and then when it answers it will ring extension 2100 and connect them together. Hope this helps Cheers Tony -- Tony Mountifield Work: tony@softins.co.uk - http://www.softins.co.uk Play: tony@mountifield.org - http://tony.mountifield.org
lonnie@outstep.com
2005-Jan-18 13:21 UTC
[Asterisk-Users] What's the easiest way to call two people at same time and bridge them?
Hi Jess, Although I am still VERY new to this list and VoIP, if I understand your question correctly, I would say that there is a great example of how to do this at: http://www.onlamp.com/lpt/a/3956 Its a GREAT article. How that this helps, -Lonnie> Anyone have a suggestion on how I can have my asterisk box make two > SIP or IAX calls and bridge the two together? It seems like it would > be easy to setup but the only way I'm finding seems to be setting up > meetme rooms. > > Jess > _______________________________________________ > Asterisk-Users mailing list > Asterisk-Users@lists.digium.com > http://lists.digium.com/mailman/listinfo/asterisk-users > To UNSUBSCRIBE or update options visit: > http://lists.digium.com/mailman/listinfo/asterisk-users > >