-
1
- #1
Hi all, just thought I would post a successful dial plan file as a number of the examples I viewed on here didn't work.
-----------------------------------
Calgary Telephone Systems, Avaya LG Asterisk (FreePBX) VOIP & TDM
Code:
I think a number of them were missing the $$ in sip:$$@$n
Code:
/* ------------------------------------------------------------------- */
/* */
/* Avaya 1100-series IP Deskphone Dial Plan */
/* */
/* ------------------------------------------------------------------- */
/* Domain used in the dialed URL of the SIP INVITE message */
$n="192.168.100.10"
$t=300
%%
/* DIGITMAP: 11 digits starting with 1 */
(1[2-9]x{9})|(1[2-9]x{9})# && sip:$$@$n;user=phone && t=300
/* DIGITMAP: 10 digits starting with 555 */
(555[2-9]x{6})|(555[2-9]x{6})# && sip:$$@$n;user=phone && t=300
/* DIGITMAP: Extensions beginning with 2 (Telephone Users)*/
(2x{2})|(2x{2})# && sip:$$@$n;user=phone && t=300
/* DIGITMAP: Extensions beginning with 7 */
(7x{2})|(7x{2})# && sip:$$@$n;user=phone && t=300
/* DIGITMAP: Parking beginning with 10 */
(1[0]x{1})|(1[0]x{1})# && sip:$$@$n;user=phone && t=300
/* DIGITMAP: 911 Emergency */
(911|911)# && sip:$$@$n;user=phone && t=300
/* DIGITMAP: 9911 Emergency */
(9911|9911)# && sip:$$@$n;user=phone && t=300 ***9911 dialing***
/* End of Dial Plan */
-----------------------------------

Calgary Telephone Systems, Avaya LG Asterisk (FreePBX) VOIP & TDM