cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
417
Views
0
Helpful
2
Replies

Prefix 9 for inbound calls

CHRIS KALETH
Level 5
Level 5

I want to prefix 91 for all inbound PSTN calls so users can redial without having to edit. We currently have the telco send us 4 digits and then we have a translation rule that prefixes the call with a two digit site identifier (i.e we have 6 digit internal dialing). How can I create a rule that accomplishes both?

voice translation-rule 1

rule 1 /^\(....\)$/ /31\1/

!

voice translation-profile InboundVoice

translate called 1

1 Accepted Solution

Accepted Solutions

First of all, are you using CUCM or CME? Second, the two-digit site identifier only applies to the called number, correct?

If you want to/need to do this within the IOS on the VG, you can create a second translation rule and apply it to the calling number. Something like this:

voice translation-rule 2

rule 1 /^/ /91/

voice translation-profile InboundVoice

translate called 1

translate calling 2

View solution in original post

2 Replies 2

First of all, are you using CUCM or CME? Second, the two-digit site identifier only applies to the called number, correct?

If you want to/need to do this within the IOS on the VG, you can create a second translation rule and apply it to the calling number. Something like this:

voice translation-rule 2

rule 1 /^/ /91/

voice translation-profile InboundVoice

translate called 1

translate calling 2

Thanks...that works!