Is there a way to make the Cisco 7960 SIP phone dial out automatically without having to press the dial button, once the numbers that you have entered match a specific pattern? This feature is present when the phone is working with a Cisco CallManager. For example, if all of my internal extensions begin with a '5' and are four digits long, if I dialed '5123' on the phone, the call would initiate once I pressed the '3'. Any help would be appreciated. Jose
Take a look at dialplan.xml on your tftp server. <DIALTEMPLATE> <TEMPLATE MATCH="0" Timeout="1" User="IP"/> <!-- Local operator--> <TEMPLATE MATCH="8,011*" Timeout="6" User="IP"/> <!-- International calls--> <TEMPLATE MATCH="8,1.........." Timeout="0" User="IP"/> <!-- Long Distance --> <TEMPLATE MATCH="9,1.........." Timeout="0" User="IP"/> <!-- Toll Free --> <TEMPLATE MATCH="9,11" Timeout="0" User="IP" Route="Emergency" Rewrite="9911"/> <TEMPLATE MATCH="9,.........." Timeout="0" User="IP"/> <!-- Local numbers --> <TEMPLATE MATCH="9,.11" Timeout="0" User="IP"/> <!-- Service numbers --> <TEMPLATE MATCH="78.." Timeout="1" User="IP"/> <!-- Corporate Dial plan--> <TEMPLATE MATCH="52.." Timeout="1" User="IP"/> <!-- Corporate Dial plan--> <TEMPLATE MATCH="87.." Timeout="1" User="IP"/> <!-- Corporate Dial plan--> <TEMPLATE MATCH="5000" Timeout="1" User="IP"/> <!-- Voicemail --> <TEMPLATE MATCH="4..." Timeout="1" User="IP"/> <!-- Meetme --> <TEMPLATE MATCH="11.." Timeout="1" User="IP"/> <!-- Parking --> <TEMPLATE MATCH="*" Timeout="15"/> <!-- Anything else --> <TEMPLATE MATCH="123#45#6" Timeout="0" User="IP"/> <!-- Match `#' --> <TEMPLATE MATCH="12\*345" Timeout="0" User="IP"/> <!-- Match * Char --> </DIALTEMPLATE> -----Original Message----- From: asterisk-users-admin@lists.digium.com [mailto:asterisk-users-admin@lists.digium.com]On Behalf Of Jose Inzunza/YM/RWDOE Sent: Tuesday, February 03, 2004 11:21 AM To: asterisk-users@lists.digium.com Subject: [Asterisk-Users] Cisco 7960 quick dial Is there a way to make the Cisco 7960 SIP phone dial out automatically without having to press the dial button, once the numbers that you have entered match a specific pattern? This feature is present when the phone is working with a Cisco CallManager. For example, if all of my internal extensions begin with a '5' and are four digits long, if I dialed '5123' on the phone, the call would initiate once I pressed the '3'. Any help would be appreciated. Jose _______________________________________________ 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
> Is there a way to make the Cisco 7960 SIP phone dial out automatically > without having to press the dial button, once the numbers that you have > entered match a specific pattern? This feature is present when the phone > is working with a Cisco CallManager. For example, if all of my internal > extensions begin with a '5' and are four digits long, if I dialed '5123' on > the phone, the call would initiate once I pressed the '3'. Any help would > be appreciated.Yes, the phone will do what you want. One of the files the phone downloads at boot time is "dialplan.xml". In it are entries like: <TEMPLATE MATCH = "0" Timeout="1" User="Phone"/> <TEMPLATE MATCH = "3..." Timeout="0" User="Phone"/> etc. I do not have any documents handy that describe the different options, but the options have much of the same functionality as * exten -> statements have. Rich
Out of interest, does anyone know if it's possible to get the 7960 to start accepting a number while on-hook, without having to press "NewCall", the line button, or speaker button? This is just something I was used to with the Norstar extensions, I could immediately start dialing the numbers for an internal extension and it'd work.> -----Original Message----- > From: asterisk-users-admin@lists.digium.com [mailto:asterisk-users- > admin@lists.digium.com] On Behalf Of Jose Inzunza/YM/RWDOE > Sent: Wednesday, 4 February 2004 2:21 AM > To: asterisk-users@lists.digium.com > Subject: [Asterisk-Users] Cisco 7960 quick dial > > Is there a way to make the Cisco 7960 SIP phone dial out automatically > without having to press the dial button, once the numbers that you have > entered match a specific pattern? This feature is present when the phone > is working with a Cisco CallManager. For example, if all of my internal > extensions begin with a '5' and are four digits long, if I dialed '5123' > on > the phone, the call would initiate once I pressed the '3'. Any help would > be appreciated. > > Jose > > > _______________________________________________ > 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