Voice Translation Rules Digit manipulation using translation rules

  • Slides: 21
Download presentation
Voice Translation Rules Digit manipulation using translation rules and voice translation rules in Cisco

Voice Translation Rules Digit manipulation using translation rules and voice translation rules in Cisco IOS

The Goal of this presentation is to provide the team with fundamental understanding of

The Goal of this presentation is to provide the team with fundamental understanding of digit manipulation using Translation rules and Voice Translation rules. Presentation Goal

At the end of the presentation you should be able to: Identify the difference

At the end of the presentation you should be able to: Identify the difference between a translation rule and a voice translation rule. Implement, test and troubleshoot the different methods of digit manipulation outlined in the presentation. Learning objectives

 Automatic Number Identification (ANI) – This is the “Calling Number”. Dialed Number Identification

Automatic Number Identification (ANI) – This is the “Calling Number”. Dialed Number Identification Service (DNIS) – This is the “Called Number”. Translation Rule – A basic method of digit manipulation based on a matched string. Voice Translation Rule – A more advanced method of digit manipulation using regular expressions. Vocabulary

 Digit manipulation is used to help manage our number plans. Different PSTN providers

Digit manipulation is used to help manage our number plans. Different PSTN providers may provide different quantities of digits to different sites. This could lead to overlaps in DN ranges between sites. So we use the various methods of digit manipulation to standardize them. In this presentation we will only cover IOS (Voice) translation rules. Why we need digit manipulation

 How we use translation rules We use them to expand 5 digit extensions

How we use translation rules We use them to expand 5 digit extensions to the full 10 digit extension that is on the phone. We only use them in SRST and H. 323 dial peers. We can only have a max of 10 rules configured for 1 translation rule. IOS Translation Rules

A translation rule consists of 3 parts ü The translation rule itself: Translation-rule 1

A translation rule consists of 3 parts ü The translation rule itself: Translation-rule 1 ü The rules that make up the translation rule: Rule 0 ^7…. 904987 ü Where the translation rule is applied: Voice-port 3/0: 23 Translate called 1 IOS Translation Rules cont.

The rule below takes an inbound 5 digit called number and expands it to

The rule below takes an inbound 5 digit called number and expands it to a full 10 digits Configuration Translation-rule 1 Rule 0 ^7…. 904987 Rule 1 ^4…. 904464 Voice-port 3/0: 23 Translate called 1 Verification – FLJVFB 401 R 1#test translation-rule 1 77486 The replaced number: 9049877486 IOS Translation Rules cont.

Implementing translation rules on our network translation-rule 1 Rule 0 ^3 561393 Rule 1

Implementing translation rules on our network translation-rule 1 Rule 0 ^3 561393 Rule 1 ^15 1002015 Rule 9 ^2 561362 ~config removed~ call-manager-fallback ~config removed~ transfer-pattern 3. . transfer-pattern 561393. . transfer-pattern 100201. . transfer-pattern 9 T transfer-pattern 561362. . transfer-pattern 2. . translate called 1 - defines the translation rule - individual rules that are specified for translation-rule 1 -SRST configuration where the translation rule is applied - applies the translation-rule 1 to the call. ED number and expands it according to the translation rule ~config removed~ IOS Translation Rules cont.

 Voice Translation Rules are used in the same manner as Translation Rules but

Voice Translation Rules are used in the same manner as Translation Rules but they allow for a more granular manner of digit manipulation for the following reasons: They use regular expressions. They allow up to 15 rules to be specified per voice translation rule. Configured in 4 parts similar to translation rules. Voice Translation Rules

Using voice translation rules requires an understanding of regular expressions. Voice Translation Rules cont.

Using voice translation rules requires an understanding of regular expressions. Voice Translation Rules cont.

The 4 parts of a voice translation rule are: Ø The voice translation rule.

The 4 parts of a voice translation rule are: Ø The voice translation rule. Ø The rules that make up the voice translation rule. Ø The profile that defines where the rule manipulates the digits. Ø Lastly where the profile is applied. Voice Translation Rules cont.

 A basic voice translation rule. This will match any 4 digit string that

A basic voice translation rule. This will match any 4 digit string that starts with a 2 and then replace it with 9120212012 Voice translation-rule 1 /^2…/ /912012012/ Voice-translation-profile Outgoing. Called translate called 1 Dial-peer voice 100 pots destination-pattern 2… port 3/0: 23 translation profile outgoing Outgoing. Called -Defining the Voice Translation Rule -The rule that dictates the matches and what to do -Defining the voice translation profile that will be applied -Which voice translation rule to match on and where to apply -Which profile to apply and whether to apply to incoming or outgoing Voice Translation Rules cont.

Using voice translation rules requires an understanding of regular expressions. (they use this crazy

Using voice translation rules requires an understanding of regular expressions. (they use this crazy table) Voice Translatio Rule Operators Description ^ Matches the expression at the start of the line. $ Matches the expression at the end of the line. / Delimiter that the marks the start and end of both the matching and replacment strings. - Escapes the meaning of the next character. Indicates a range when not in the first or last position. This is typically used with the [and] to indicate a range. [list] Matches a single character specified in a list. [^list] Does not match a single character specified in a list. . Matches any single character. * Repeats the previous regular expression zero or more times + ? Repeats the previous regular expression one or more time Repeats the previous regular expression zero or one occurrence of the previous expression. (Use Ctrl-V ? To enter in IOS) () Groups digits into sets & Brings all the matched digits into the replacement string Voice Translation Rules cont.

Regular expressions can be complex and confusing. Some things to keep in mind are:

Regular expressions can be complex and confusing. Some things to keep in mind are: Ø Ø Ø Begin and end any match or replacement string with “/” rule 1 /1234/ /5678/ The match string can be made up of an explicitly defined string or wildcards, the replacement string cannot contain any wildcards. Use the “^” to match from the beginning of a string. rule 3 /^7…. / /9048675309/ Use the “$” to match from the end of a string. rule 2 /^4. (4…. $)/ /904461/ The “()” escapes the next character in the string. /^3(…)/ /3451/ Voice Translation Rules cont.

If you want to match a wild card and not change them create a

If you want to match a wild card and not change them create a set. rule 4 /^3(…) /41/ Ø Any digits that are in the match string but are not explicitly matched by the match string are carried over to the match string unchanged. Ø The following slide has examples of some regular expressions used in voice translation rules. Voice Translation Rules cont.

Voice translation-rule 1 Rule 1 /^$/ /8776754345/ - matches a null string and replaces

Voice translation-rule 1 Rule 1 /^$/ /8776754345/ - matches a null string and replaces it with 8776754345 Rule 2 /^987(. +)/ /4641/ - matches 987 something and prepends the set (. +) with 464 Rule 3 /^(770)(…. )/ /6782/ - matches 770 then prepends 678 to the second set (…. ) Rule 4 /(^…)464(…. )/ /19872/ - changes the middle of the number from 464 to 987 Rule 5 /(^. *)7399/ /15309/ - matches on the beginning of a number and replaces the end Voice Translation Rules cont.

How we use Voice Translation rules on our network. Voice translation-rule 1 Rule 1/^105110….

How we use Voice Translation rules on our network. Voice translation-rule 1 Rule 1/^105110…. $/ /9089872345/ - matches the non. DID range and replaces it with the BTN Rule 2 /^904)1. 1(…. )/ /19872/ - matches on the NPA of the site and the first pseudo number range Rule 3 /^. . $/ /9089872345/ - matches on the intercom line if it tries to make an offnet call during SRST These are applied as outgoing to the voice translation-profile then that profile is associated to the SRST config. Voice Translation Rules cont.

How do we verify the Translation Rules and Voice Translation Rules? To test a

How do we verify the Translation Rules and Voice Translation Rules? To test a translation rule from the IOS CLI - test translation-rule 1 77486 the “ 1” specifies which translation rule to test against; 77486 is the number used to test the rule The replaced number: 9049877486 To test a voice translation rule from the IOS CLI test voice translation-rule 3 4642946 - the “ 3” specifies which translation rule to test against; 4642946 is Matched with rule 2 Original number: 4642946 Original number type: none Original number plan: none the number used to test the rule Translated number: 9044642946 Translated number type: none Translated number plan: none Voice Translation Rules cont.

 (Voice) translation rules can be used in the IOS to manipulate the digits

(Voice) translation rules can be used in the IOS to manipulate the digits in a call. Voice translation rules use regular expressions to match digits. Summary

 Regular-expression tutorial. http: //www. regular-expressions. info/ Voice Translation Rules. http: //www. cisco. com/en/US/tech/tk

Regular-expression tutorial. http: //www. regular-expressions. info/ Voice Translation Rules. http: //www. cisco. com/en/US/tech/tk 652/tk 90/technologies_tech_note 09186 a 0080325 e 8 e. sht ml Using IOS Translation Rules - Creating Scalable Dial Plans for Vo. IP Networks. http: //www. ciscosystems. com/en/US/tech/tk 652/tk 90/technologies_configuration_exa mple 09186 a 0080094681. shtml For your reading pleasure