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

CME call using Dial-peer

sameermunj
Level 1
Level 1

I am in progress to configure the CME setup in the Regulatory restricted site...

due to regulatory restriction we are not able to connect this site to the Central CUCM cluster in that region

This site is with the Cisco 2901 Voice gateway & there are 3 Analog lines for incoming & outgoing call over PSTN

Analog DID are 213 44 17 63 78 - 213 44 17 63 80

Site is with the 10 users , users IP Phone are configure with Extn 8399011201 - 8399011210

is the below dial-peer will ok for outgoing call from any of the IP Phone 

!
dial-peer voice 101 pots
destination-pattern 9T
progress_ind alert enable 8
port 0/0/0
!
dial-peer voice 102 pots
destination-pattern 9T
progress_ind alert enable 8
port 0/0/1
!

1 Reply 1

Brandon Buffin
VIP Alumni
VIP Alumni

Yes, these dial peers will work. A couple of things to be aware of:

1. With a 9T pattern the call will wait for additional digits until the interdigit timeout (10 seconds by default) or until the user presses #.

2. Without the preference command on your dial peers, calls will choose a dial peer (and therefore an outgoing port) randomly. If you want calls to always use port 0/0/0 first and then port 0/0/1 if it is unavailable add a preference to your dial peers. Lower preference = higher priority. The default preference is 0.

dial-peer voice 101 pots
destination-pattern 9T
progress_ind alert enable 8
preference 0 (this is the default)
port 0/0/0
!
dial-peer voice 102 pots
destination-pattern 9T
progress_ind alert enable 8
preference 1
port 0/0/1
!

Brandon