Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Shaun E on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

11xxdialplan.txt for Australia

Status
Not open for further replies.

Bucky101

IS-IT--Management
Feb 9, 2006
419
AU
Has anyone made an 11xxdialplan.txt file which supports Australia?
ie we use 0 to dial out, 0011 for international, 000 emergency etc etc
 
You could try to change the 9 in the 11xxdialplan from below.


Code:
/* ------------------------------------------------------------------- */
/* */
/* Avaya 1100-series IP Deskphone Dial Plan */
/* */
/* ------------------------------------------------------------------- */
/* Domain used in the dialed URL of the SIP INVITE message */
$n="192.168.99.71"
$t=300
%%
/* DIGITMAP: 12 digits starting with 9 followed by an initial 1 */
(9[1]x{10})|(9[1]x{10})# && sip:$$@$n;user=phone && t=300

/* DIGITMAP: 11 digits starting with 9 */
(9[2-9]x{9})|(9[2-9]x{9})# && sip:$$@$n;user=phone && t=300

/* DIGITMAP: Extensions beginning with 4 (Telephone Users)*/
/* (4x{3})|(4x{3})# && sip:$$@$n;user=phone && t=300*/

/* DIGITMAP: Extensions beginning with 5 (Telephone Users)*/
/* (5x{2})|(5x{2})# && sip:$$@$n;user=phone && t=300*/


/* DIGITMAP: Extensions beginning with 2 (Telephone Users)*/
(2x{3})|(2x{3})# && sip:$$@$n;user=phone && t=300

/* DIGITMAP: Extensions beginning with 8 */
/*(8x{3})|(8x{3})# && sip:$$@$n;user=phone && t=300*/


/* DIGITMAP: Extensions beginning with 1 */
/*(1x{2})|(1x{2})# && 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        


/* End of Dial Plan */


Avaya_Red.gif

___________________________________________
It works! Now if only I could remember what I did...

Dain Bramaged (Avaya Search tool )
______________________________________
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top