Overview

For Yealink phones to auto dial when it 'detects' local numbers i.e. like the old PSTN network did, you can use the below text configuration parameters. Save to a .cfg file and import into your handset configuration to test or use with provisioning templates. The file can be imported as is to the phone configuration, it will only update the settings/fields that are in the file and don't affect other settings.


Lines starting with # are comments


Please check this works for your particular environment and edit where necessary.


More information

Dial Plan https://support.yealink.com/en/portal/knowledge/show?id=64995b676a27da76bd071896

Inter Digit Timer: https://support.yealink.com/en/portal/knowledge/show?id=62ce970c286e4c00d7fbd536



#!version:1.0.0.1

# Set dial delay and optional URL to collect dial patterns (e.g. DialPlan.xml)
phone_setting.dialnow_delay = 1

# XML plan see this URL for a template http://downloads.snappernet.co.nz.s3.amazonaws.com/Yealink/DialNowNZ.xml 
dialplan_dialnow.url = 

# Optional. Prepend area code - set dialplan.area_code.code value to appropriate area code
# dialplan.area_code.code = 09
# dialplan.area_code.line_id = 0
# dialplan.area_code.max_len = 7
# dialplan.area_code.min_len = 7

# Dial now rules
dialplan.dialnow.rule.1 = [2-9]xxxxxx
dialplan.dialnow.line_id.1 = 0
dialplan.dialnow.rule.2 = 0[3,4,6,7,9][0-9]xxxxxx
dialplan.dialnow.line_id.2 = 0
dialplan.dialnow.rule.3 = 0210xxxxxxx
dialplan.dialnow.line_id.3 = 0
dialplan.dialnow.rule.4 = 021[1-2]xxxxxx
dialplan.dialnow.line_id.4 = 0
dialplan.dialnow.rule.5 = 021[3-9]xxxxx
dialplan.dialnow.line_id.5 = 0
dialplan.dialnow.rule.6 = 02[0,2,7,9]xxxxxxx
dialplan.dialnow.line_id.6 = 0
dialplan.dialnow.rule.7 = 028[0,1,3,4,5,6,7]xxxxxx
dialplan.dialnow.line_id.7 = 0
dialplan.dialnow.rule.8 = 028[2,8,9]xxxxxxx
dialplan.dialnow.line_id.8 = 0
dialplan.dialnow.rule.9 = 0240xxxxxx
dialplan.dialnow.line_id.9 = 0
dialplan.dialnow.rule.10 = 024[1-9]xxxxxxx
dialplan.dialnow.line_id.10 = 0
dialplan.dialnow.rule.11 = 0508xxxxxx
dialplan.dialnow.line_id.11 = 0
dialplan.dialnow.rule.12 = 0800xxxxxx
dialplan.dialnow.line_id.12 = 0
dialplan.dialnow.rule.13 = 0900xxxxx
dialplan.dialnow.line_id.13 = 0
dialplan.dialnow.rule.14 = 026[1-3]xxxxx
dialplan.dialnow.line_id.14= 0
dialplan.dialnow.rule.15 = 0264xxxxxx
dialplan.dialnow.line_id.15 = 0
dialplan.dialnow.rule.16 = [0,1]xx
dialplan.dialnow.line_id.16 = 0
dialplan.dialnow.rule.17 = 017[0,2]
dialplan.dialnow.line_id.17 = 0



Additional Notes

Basic Regular Expression Syntax for Four Patterns

You need to know the following basic regular expression syntax when creating a dial plan:

Regular ExpressionDescription
.The dot “.” can be used as a placeholder or multiple placeholders for any string.
Example: “12.” would match “123”, “1234”, “12345”, “12abc”, and so on.
xThe “x” can be used as a placeholder for any character.
Example: “12x” would match “121”, “122”, “123”, “12a”, and so on.
-The dash “-” can be used to match a range of characters within the brackets.
Example: “[5-7]” would match the number “5”, ”6” or ”7”.
,The comma “,” can be used as a separator within the bracket.
Example: “[2,5,8]” would match the number ”2”, “5” or “8”.
[]The square bracket "[]" can be used as a placeholder for a single character which matches any of a set of characters.
Example: "91[5-7]1234"would match “9151234”, “9161234”, “9171234”.
()The parenthesis "( )" can be used to group together patterns, for instance, to logically combine two or
more patterns.
Example: "([1-9])([2-7])3" would match “923”, “153”, “673”, and so on.
$The "$" followed by the sequence number of a parenthesis means the characters placed in the parenthesis.
The sequence number stands for the corresponding parenthesis.
Example: A replace rule configuration, Prefix: "001(xxx)45(xx)", Replace: "9001$1$452". When you dial out
"0012354599" on your phone, the phone will replace the number with "90012354599". “$1” means 3 digits in the first parenthesis, that is, “235”. “$2” means 2 digits in the second parenthesis, that is, “99”.