Automatic conference call at specific time from server

Hi buddys,
First of all thanks for your supports .
I would like to implement automatic conference call at specific time from asterisk server .
Can you pls guide how

Im using asterisk Asterisk 1.8.26.1 on centos 6.4

No front end application installed like freepbx , trix box etc…

My requirement is

Daily we are taking conference call from mobile . over 20 members . it was really a pain work .

We would like to make it as automate outbound conference call like from asterisk every day 6pm .

list of 20 mobile number should call & all of them must be connected in conference .

Thanks in advance pls . guide me steps how to do

Is that possible ? in asterisk ???

Use a crontab with originate. Google is your friend. If you want step by step move this to the job forum and hire someone.

Hi navaismo,
Thanks for you info . I know how to orignate calls in cmd . dont knw how to convert those calls to a conference mode . can you pls guide

[quote=“14sudharsan”]Hi navaismo,
Thanks for you info . I know how to orignate calls in cmd . dont knw how to convert those calls to a conference mode . can you pls guide[/quote]

Just have the outgoing calls connect to a conference context in the dialplan. Something like

[conference-room]
exten => s,1,NoOp(Conference in room ${ARG1})
exten => s,n,Wait(2)
exten => s,n,Playback(welcome)
exten => s,n,Playback(conf-placeintoconf)
exten => s,n,ConfBridge(${ARG1},bridge,user,user_menu)
etc

should do it.

Ian

Use local channel and do this :

[quote]
Just have the outgoing calls connect to a conference context in the dialplan. Something like

[conference-room]
exten => s,1,NoOp(Conference in room ${ARG1})
exten => s,n,Wait(2)
exten => s,n,Playback(welcome)
exten => s,n,Playback(conf-placeintoconf)
exten => s,n,ConfBridge(${ARG1},bridge,user,user_menu)
etc

should do it.

Ian[/quote]