Hi all. So far this list is proving it's worth, even on my first day using it! I hope that someone might know an easy solution to this one. I would like to create a dial plan which will allow me to have all extensions 6XXX cause a dial-out of my T1 interface (TE110P) to a local number, wait for an answer, wait 2 seconds and then enter the extension. Can I do this in a dial plan somehow? This will allow me to pseudo-integrate a legacy telephone switch (whose extensions are all 6XXX) to my Asterisk system for direct extension dialing. David A. Morrow Technical Systems Lead Autodata Solutions Company David.Morrow@Autodata.Net http://www.autodata.net Tel: (519) 951-6079 Fax: (519) 451-6615 < Poor planning on your part does not necessarily constitute an emergency on my part! > This message has originated from Autodata Solutions. The attached material is the Confidential and Proprietary Information of Autodata Solutions. This email and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error please delete this message and notify the Autodata system administrator at Administrator@autodata.net <mailto:Administrator@autodata.net> -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20051019/6f10a6d7/attachment.htm
On Wed, 19 Oct 2005, Dave Morrow wrote:> Hi all. So far this list is proving it's worth, even on my first day > using it! I hope that someone might know an easy solution to this one. > I would like to create a dial plan which will allow me to have all > extensions 6XXX cause a dial-out of my T1 interface (TE110P) to a local > number, wait for an answer, wait 2 seconds and then enter the extension. > Can I do this in a dial plan somehow? This will allow me to > pseudo-integrate a legacy telephone switch (whose extensions are all > 6XXX) to my Asterisk system for direct extension dialing.exten => _6XXX,1,Dial(Zap/gX/1234567890,60,D(,,,,,,${EXTEN})) where: gX needs to become the group of the channels of your T1, 1234567890 is the number of your legacy system. 60 is the dial timeout You may need to adjust the number of commas to get the right delay. Hope that helps, Steve
Thanks Steve. It almost works, but never dials the extension. Also, is there a way I could mute the line while the remote attendant comes on? David A. Morrow Technical Systems Lead Autodata Solutions Company David.Morrow@Autodata.Net http://www.autodata.net Tel: (519) 951-6079 Fax: (519) 451-6615 < Poor planning on your part does not necessarily constitute an emergency on my part! > This message has originated from Autodata Solutions. The attached material is the Confidential and Proprietary Information of Autodata Solutions. This email and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error please delete this message and notify the Autodata system administrator at Administrator@autodata.net <mailto:Administrator@autodata.net> -----Original Message----- From: asterisk-users-bounces@lists.digium.com [mailto:asterisk-users-bounces@lists.digium.com] On Behalf Of steve@daviesfam.org Sent: Wednesday, October 19, 2005 8:33 AM To: Asterisk Users Mailing List - Non-Commercial Discussion Subject: Re: [Asterisk-Users] Help with Dial Plan On Wed, 19 Oct 2005, Dave Morrow wrote:> Hi all. So far this list is proving it's worth, even on my first day > using it! I hope that someone might know an easy solution to thisone.> I would like to create a dial plan which will allow me to have all > extensions 6XXX cause a dial-out of my T1 interface (TE110P) to a > local number, wait for an answer, wait 2 seconds and then enter theextension.> Can I do this in a dial plan somehow? This will allow me to > pseudo-integrate a legacy telephone switch (whose extensions are all > 6XXX) to my Asterisk system for direct extension dialing.exten => _6XXX,1,Dial(Zap/gX/1234567890,60,D(,,,,,,${EXTEN})) where: gX needs to become the group of the channels of your T1, 1234567890 is the number of your legacy system. 60 is the dial timeout You may need to adjust the number of commas to get the right delay. Hope that helps, Steve _______________________________________________ --Bandwidth and Colocation sponsored by Easynews.com -- 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
On Wed, 19 Oct 2005, Dave Morrow wrote:> Thanks Steve. It almost works, but never dials the extension. Also, is > there a way I could mute the line while the remote attendant comes on?Oops sorry - the dangers of posting without testing. The ","s are wrong - they should be w. Each w is 1/2 second of waiting. So that makes it: exten => _6XXX,1,Dial(Zap/gX/1234567890,60,D(wwww${EXTEN})) As for the muting - bit of a loss about that one. Steve
Thanks Steve, the 'w's worked great. I managed to tune it down to them only hearing a "please wait" out of the greeting...... David A. Morrow Technical Systems Lead Autodata Solutions Company David.Morrow@Autodata.Net http://www.autodata.net Tel: (519) 951-6079 Fax: (519) 451-6615 < Poor planning on your part does not necessarily constitute an emergency on my part! > This message has originated from Autodata Solutions. The attached material is the Confidential and Proprietary Information of Autodata Solutions. This email and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error please delete this message and notify the Autodata system administrator at Administrator@autodata.net <mailto:Administrator@autodata.net> -----Original Message----- From: asterisk-users-bounces@lists.digium.com [mailto:asterisk-users-bounces@lists.digium.com] On Behalf Of steve@daviesfam.org Sent: Wednesday, October 19, 2005 4:02 PM To: Asterisk Users Mailing List - Non-Commercial Discussion Subject: RE: [Asterisk-Users] Help with Dial Plan On Wed, 19 Oct 2005, Dave Morrow wrote:> Thanks Steve. It almost works, but never dials the extension. Also, > is there a way I could mute the line while the remote attendant comeson? Oops sorry - the dangers of posting without testing. The ","s are wrong - they should be w. Each w is 1/2 second of waiting. So that makes it: exten => _6XXX,1,Dial(Zap/gX/1234567890,60,D(wwww${EXTEN})) As for the muting - bit of a loss about that one. Steve _______________________________________________ --Bandwidth and Colocation sponsored by Easynews.com -- 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