cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
397
Views
5
Helpful
3
Replies

Choosing different ports in H.323 gateway

Md Saifuddin
Level 1
Level 1

Hi All,

Need to configure two different outgoing dial peers for two different PSTN in same gateway as one port support one DID range and another port on gateway support another DID range.

For example when  a calling number 7xxxx calls it should go the port which support 7xxxx DID range rather the next port in the gateway.

In same way when a a calling number 6xxxx calls it should go the port which supports 6xxxx DID range rather 7xxxxx.

Is it possible to configure on H.323 gateway which allow to route specific one series of extensions only take  port 0/0/0 but not 0/0/1

 

Port 0/0/0 >>> 6xxxx DID range

port 0/0/1 >>> 7xxxx DID range

Please help me with the configuration

Thanks,

SAIF

3 Replies 3

Chris Deren
Hall of Fame
Hall of Fame

Define your dial-peers to match based on "answer-address":

http://www.cisco.com/c/en/us/support/docs/voice/call-routing-dial-plans/14074-in-dial-peer-match.html

Chris

Hi.

Another option to what Chris suggested (+5 Chris), is to duplicate route patterns and placing them within different partitions.

To those route patterns, you can than apply an outgoing prefix that you can strip when configuring dial-peers on VG.

 

Eg.

 

RP 9.! Partition_A , put Partition_A in a CSS_A that you will assign to users that you want to let their calls through port 0/0/0

Apply outgoing prefix 123

RP 9.! Partition_B  , put Partition_B in a CSS_B that you will assign to users that you want to let their calls through port 0/0/1

Apply outgoing prefix 321

 

On VG

 

dial-peer voice 10 pots

destination-pattern 1239T

port 0/0/0:15

 

dial-peer voice 20 pots

destination-pattern 3219T

port 0/0/1:15

 

In this case VG will strip 123 prefix, for dial-peer 10 and 321 for dial-peer 20, and 9 access code.

 

HTH

 

Regards

 

Carlo

Please rate all helpful posts "The more you help the more you learn"

Aditya Gupta
Cisco Employee
Cisco Employee

Hi

 

You can use cor list to your advantage. Some thing like below should work for you

dial-peer cor custom
 name 6xxx
 name 7xxx
dial-peer cor list 6xxx
 member 6xxx
dial-peer cor list 7xxx
 member 7xxx

 

dial-peer voice 10 voip
 corlist incoming 6xxx
 answer-address 6...

 

dial-peer voice 11 voip
 corlist incoming 7xxx
 answer-address 7...

 

dial-peer voice 1 pots
 corlist outgoing 6xxx
 destination-pattern .T
 port 0/0/0


dial-peer voice 2 pots
 corlist outgoing 7xxx
 destination-pattern .T
 port 0/0/1

 

 

 

Regards

Aditya