cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
185
Views
0
Helpful
1
Replies

Route Pattern Question

cplatt01
Level 1
Level 1

I have a site that operates a little stranger than I am used too. Within the 727 area code, there are certain exchanges that require 7 digit dialing,while others require 10 digit dialing, and some even 11 digit dialing.

Is there anyway to create route patterns to recognize this, other than creating specific route patterns for each NXX that requires 11 and 10 digit dialing

1 Reply 1

Chris Deren
Hall of Fame
Hall of Fame

You can use route filters to achive this, where you would have a local RF that would say something like

LOCAL-AREA-CODE == 111 OR LOCAL-AREA-CODE == 222 OR .....

or use wildcard masks in the route patterns, modiffing the following :

9.[2-9][02-9]XXXXX - local 7 digit

9.[2-9]X[02-9]XXXX - local 7 digit

9.[2-9][02-9]X[2-9]XXXXXX - local 10 digit

9.[2-9]X[02-9][2-9]XXXXXX - local 10 digit

9.1[2-9][02-9]X[2-9]XXXXXX - long distance

9.1[2-9]X[02-9][2-9]XXXXXX - long distance

Chris