Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
/* ------------------------------------------------------------------- */
/* */
/* 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 */