Can we add an outgoing call in a conference bridge

Hi All,

I am using asterisk 11 on Cent OS 6.8 64 bit.

How can we add an outgoing call in a conference bridge.

Please share a sample dialplan for it.

Thanks,

You’ll need to add a dialplan_exec to the bridge menu.

http://www.voip-info.org/wiki/view/Asterisk+cmd+ConfBridge+10

This is an example from the book:

[ConferenceRooms]
; standard participant
exten => 602,1,NoOp()
same => n,Goto(conference,1)
exten => conference,1,NoOp()
same => n,Set(thisBridge=primary)
same => n,ConfBridge(${thisBridge},,,volume_ctrl_menu)
exten => conference_joiner,1,NoOp()
same => n,Read(numberToDial,vm-enter-num-to-call)
same => n,Originate(SIP/my_itsp/${numberToDial},exten,ConferenceRooms,602,1)

confbridge.conf
[volume_ctrl_menu]
type=menu
*5=toggle_mute
1=increase_listening_volume
4=decrease_listening_volume
7=reset_listening_volume
3=increase_talking_volume
6=decrease_talking_volume
9=reset_talking_volume
0=dialplan_exec(ConferenceRooms,conference_joiner,1)

*CLI> dialplan reload
*CLI> module reload app_confbridge.so
2 Likes