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

Issues with calling certain International numbers.

arthurbecker
Level 1
Level 1

Issues with calling certain International numbers.

I have call manager sending the calls out via a 2811 router with 2 PRI's. This gateway is only used for outbound calls. Certain numbers when dialed translate to a local number for no reason and other international numbers do not go through.

I have included a SHOW CONFIG of the router.

3 Replies 3

arthurbecker
Level 1
Level 1

This the SHOW CONF.

The only thing that I can see being an issue is the following:

voice translation-rule 1

rule 1 /^011/ //

!

!

voice translation-profile Int

translate called 1

But, i have othr numbers taht are called with no issues.

Hi Arthur,

I'm not sure why you've made this dial peer so complex.

This is what you have now:

dial-peer voice 1 pots

translation-profile outgoing Int

preference 1

destination-pattern T

progress_ind setup enable 3

progress_ind alert enable 8

progress_ind progress enable 8

progress_ind connect enable 8

no digit-strip

port 0/1/0:23

forward-digits all

This will do the same thing:

dial-peer voice 1 pots

preference 1

destination-pattern 011T

progress_ind setup enable 3

progress_ind alert enable 8

progress_ind progress enable 8

progress_ind connect enable 8

port 0/1/0:23

On a pots dial peer, all numbers explicitly matched will automatically be stripped. This means 011 will not be included in the digits sent.

If you do want them sent, you could either use:

forward-digits all

OR

prefix 011

OR

no digit-strip

I wouldn't use all of them.

hth,

nick