Posted On March 31, 2019

Dial Plans Decoded

kimconnect 0 comments
blog.KimConnect.com >> Windows >> Dial Plans Decoded
()
parenthesis enclose the dial plan
|
pipe means OR
x
represents a digit between 0 and 9
.
period means that the preceding element can be repeated many times
[]
signifies a subset
e.g. ([2-9]xx[2-9]xxxxxx) = only numerical values between 2 and 9 are allowed to precede the two digits and the following six digits
!
Item blocked!
e.g. (411!|xxx|1900xxxxxxx!|1[2-9]xx[2-9]xxxxxx) = no 411 or 1900 numbers allowed in the dial plan
< : >
< “optional value” : “substitution element” > “sequence to be matched”
Example: adding 714 to a 7-digit sequence – < :714>xxxxxxx
S0
Send preceded value(s) immediately when a pattern is matched, bypassing the default Interdigit Short Timer delay 

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

Microsoft Management Console Snap-in Shortcuts

Admin Snap-in Command Quality of Service Control Management ACSsnap.msc ADSI Edit ADSIedit.msc Authorization manager AZman.msc…

File Access Control

System Engineers must follow the security principle of authentication, authorization, and accounting (AAA) as the…

PowerShell: Get Available RAM Slots

# getRamSlotsAvailable.ps1 $computername=$env:computername function getRamSlotsAvailable{ param($computername=$env:computername) write-host "Computer name: $computerName" $slots = Get-WmiObject -Class "win32_PhysicalMemoryArray"…