cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
354
Views
0
Helpful
3
Replies

CME

Jason Aarons
Level 6
Level 6

I haven?t done much with CME, customer is asking how they can setup CME so when a 7960 user dials 4XXX it translates to 9,624-4XXX, sending it out across PSTN to another office.

I would do this with a translation pattern in CallManager.

Any running-config code sample appreciated -jason

3 Replies 3

Aaron Harrison
VIP Alumni
VIP Alumni

Hi

Basically you'd have a h323 dial-peer which has a translation-profile attached to it. This would recognize 4... and translate to 96244...

Like so:

voice translation-rule 1

rule 1 /^4.../ /96244.../

voice translation-profile profile1

translate called 1

dial-peer voice 10 pots

destination-pattern 4...

translation-profile outgoing profile1

port 0/0/0

Regards

Aaron

Please rate helpful posts...

Aaron Please remember to rate helpful posts to identify useful responses, and mark 'Answered' if appropriate!

it should be ;

rule 1 /^4\(...\)/ /96244\1/

Hi Jason,

I like Vikram's suggestion because that rule matches any four-digit number that starts with "4", however you can achieve the same results with the following too:

a) rule 1 /^4+/ /96244/

b) rule 1 /^4/ /96244/

Hope to help, if it does please rate.

Best regards,

-- Adrián.