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

Called Party number type in isdn setup message

vinayjaiswal
Level 3
Level 3

Hi,

How do we set up called party number type in isdn setup message using h323 gateway? Do we do it using Route List in the CCM or using the translation rule on the gateway itself?

Thanks,

Vinay

2 Replies 2

aayyash
Level 1
Level 1

Hey Vinay ,

since this is H323 GW , prefer to do it using Voice translation rule to set the type of the called /calling , you can do this per Dial-peer level if you have profissional dial-peer config for each call type (local, LD,Int) .

or else you can configure it on the route pattern level , if you have route pattern for each call type

my opinion is to do it on your GW using Translation rule ,

Thanks

Ash

Hi Vinay

I suggest you to apply the voice translation rule on the H.323 gateway to change the Called party number in isdn messages. This works perfect in all call scenarios. Here's an example..

In this example, if a number starts with "4" and the type is "national", the rule adds "90" as a prefix. If the type is "international", the rule adds "900" as the prefix.

voice translation-rule 7
 rule 1 /^4/ /904/ type national national
 rule 2 /^4/ /9004/ type international international
router#test voice translation-rule 7 493456567 type national
Matched with rule 1
Original number: 493456567      Translated number: 90493456567
Original number type: national  Translated number type: national
Original number plan: none      Translated number plan: none
     
router#test voice translation-rule 7 493456567 type international
Matched with rule 2
Original number: 493456567              Translated number: 900493456567
Original number type: international     Translated number type: international
Original number plan: none              Translated number plan: none

Pl rate if info is useful !  Thanks.