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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

11xxdialplan.txt

Status
Not open for further replies.

dclake

IS-IT--Management
Feb 3, 2009
247
LC
Good Day everyone. Does anyone have any experience editing the 11xxdialplain.txt file for the 1100/1200 series telephones. I have edited the file but still need to press send to allow calls to go out. Please see my file below:


/* ------------------------------------------------------------------- */
/* */
/* Avaya 1100-series IP Deskphone Dial Plan */
/* */
/* ------------------------------------------------------------------- */
/* Domain used in the dialed URL of the SIP INVITE message */
$n="192.168.42.3"
$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: 7 digits starting with 9 */
(9[2-9]x{5})|(9[2-9]x{5})# && sip:$$@$n;user=phone && t=300

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

/* DIGITMAP: 911 Emergency */
(911|911)# && sip:$$@$n;user=phone && t=300 ***911 dialing***

/* DIGITMAP: 9911 Emergency */
(9911|9911)# && sip:$$@$n;user=phone && t=300 ***9911 dialing***


/* End of Dial Plan */
 
it is a SIP phone
that is how they work usually, dial then hit send or call

Joe W.

FHandw, ACSS (SME), ACIS (SME)



“Quality is never an accident; it is always the result of high intention, sincere effort, intelligent direction and skillful execution; it represents the wise choice of many alternatives.”
 
I read somewhere that this file would help to define digits so you wont have to hit the send button. I know when we were SCS we could have done it. We've also done it for polycom phones.
 
This is for SNOM phones in Belgium:
Alarm ( 11x ) fixed length three digits
"|^11([1]{3})$|sip:11\1@\d|d"

Intern (12x t/m 19x) fixed length three digits
"|^12([0-9]{3})$|sip:1\1@\d;phone=yes|d"

National ( 01x t/m 03x en 05 t/m 09) fixed length nine digits
"|^01([0-9]{9})$|sip:01\1@\d|d""|^02([0-9]{9})$|sip:02\1@\d|d""|^03([0-9]{9})$|sip:03\1@\d|d""|^05([0-9]{9})$|sip:05\1@\d|d""|^06([0-9]{9})$|sip:06\1@\d|d""|^07([0-9]{9})$|sip:07\1@\d|d""|^08([0-9]{9})$|sip:08\1@\d|d""|^09([0-9]{9})$|sip:09\1@\d|d"

Mobile ( 04x ) fixed length ten digits
"|^04([0-9]{10})$|sip:04\1@\d|d"

International ( 001 t/m 009 ) variable length with a dial pause
"|^00([0-9]*)$|sip:1\1@\d"


 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top