Hi all, Does anyone know of a way to implement manual ringdown circuits via Asterisk? Thanks, PW -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20031115/63c0f94e/attachment.htm
Yes it can be done. If you are using a T1 interface in your zapata.conf context = ringdown immediate=yes in extension.conf [ringdown] exten => s,1,Answer exten => s,2,Dial(Zap/10) Don Pobanz On Saturday, November 15, 2003 11:34 AM, Paul Wasik [SMTP:pwasik@optonline.net] wrote:> Hi all, > > Does anyone know of a way to implement manual ringdown circuits via > Asterisk? > > Thanks, > > PW > << File: ATT00001.htm >>
Pardon my ignorance but what does manual ringdown meanAt 14:04 15/11/03 -0600, you wrote:>Yes it can be done. If you are using a T1 interface in your zapata.conf >context = ringdown >immediate=yes > >in extension.conf >[ringdown] >exten => s,1,Answer >exten => s,2,Dial(Zap/10) > >Don Pobanz > >On Saturday, November 15, 2003 11:34 AM, Paul Wasik >[SMTP:pwasik@optonline.net] wrote: > > Hi all, > > > > Does anyone know of a way to implement manual ringdown circuits via > > Asterisk? > > > > Thanks, > > > > PW > > << File: ATT00001.htm >> >_______________________________________________ >Asterisk-Users mailing list >Asterisk-Users@lists.digium.com >http://lists.digium.com/mailman/listinfo/asterisk-usersPardon my ignorance but what does manual ringdown mean?? Peter
you can do it with immediate=yes in zapata.conf on your FXO signalled (FXS) interfaces, and then dump them in a context with s extension that dials another phone. extensions.conf: [autodialz1] exten => s,1,Dial(Zap/1) exten => s,2,Congestion [autodialz2] exten => s,1,Dial(Zap/2) exten => s,2,Congestion zapata.conf: signalling = fxo_ks immediate=yes context=autodialz2 channel => 1 context=autodialz1 channel => 2 That (untested) should create an auto ringdown where channel 1 calls channel 2, etc. Mark On Sat, 15 Nov 2003, Paul Wasik wrote:> Hi all, > > Does anyone know of a way to implement manual ringdown circuits via Asterisk? > > Thanks, > > PW >