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

Need Help with corlist

muratg7777
Level 1
Level 1

Hi;

I am stuck with corlists. I want to configure;

When user "murat" dials 1..  he must use port 0/1/0

when user "muratc" dials 1..  he must use port 0/1/1

and goes on

My configuration seems correct but it is not working. Am I missing someting?


dial-peer cor custom
name murat
name ahmet
name zafer
name muratc

dial-peer cor list murat
member ahmet
member zafer
member muratc
!
dial-peer cor list zafer
member murat
member ahmet
member muratc
!
dial-peer cor list ahmet
member murat
member zafer
member muratc
!
dial-peer cor list muratc
member murat
member ahmet
member zafer

dial-peer voice 104 pots
corlist outgoing murat
destination-pattern 1..
port 0/1/0
forward-digits 0
!
dial-peer voice 105 pots
corlist outgoing muratc
destination-pattern 1..
port 0/1/1
forward-digits all

dial-peer voice 106 pots
corlist outgoing ahmet
destination-pattern 1..
port 0/1/2
forward-digits all
!
dial-peer voice 107 pots
corlist outgoing zafer
destination-pattern 1..
port 0/1/3
forward-digits all

1 Accepted Solution

Accepted Solutions

Brandon Buffin
VIP Alumni
VIP Alumni

Do you have a cor applied to the ephone-dn for these users? If either incoming or outgoing dial peer (or ephone-dn in this case) does not have a cor applied, there will be no restriction on the call. You would need something like:

dial-peer cor custom
port010
port011
port012
port013

!
dial-peer cor list murat
member port010
!
dial-peer cor list zafer
member port013
!
dial-peer cor list ahmet
member port012
!
dial-peer cor list muratc
member port011


dial-peer voice 104 pots
corlist outgoing murat
destination-pattern 1..
port 0/1/0
forward-digits 0
!
dial-peer voice 105 pots
corlist outgoing muratc
destination-pattern 1..
port 0/1/1
forward-digits all


dial-peer voice 106 pots
corlist outgoing ahmet
destination-pattern 1..
port 0/1/2
forward-digits all
!
dial-peer voice 107 pots
corlist outgoing zafer
destination-pattern 1..
port 0/1/3
forward-digits all
!
ephone-dn 1
number 1234
cor incoming murat
!
ephone-dn 2
number 5678
cor incoming zafer
!
ephone-dn 3
number 2345
cor incoming ahmet
!
ephone-dn 4
number 6789
cor incoming zafer

See this link:

http://www.cisco.com/en/US/tech/tk652/tk90/technologies_configuration_example09186a008019d649.shtml

You can also accomplish this with a combination of "answer-address" and voice translation rules. I think this solution is a little less complicated. See this link.

http://www.cisco.com/en/US/tech/tk652/tk90/technologies_configuration_example09186a00801bc341.shtml

Hope this helps.

Brandon

View solution in original post

2 Replies 2

Brandon Buffin
VIP Alumni
VIP Alumni

Do you have a cor applied to the ephone-dn for these users? If either incoming or outgoing dial peer (or ephone-dn in this case) does not have a cor applied, there will be no restriction on the call. You would need something like:

dial-peer cor custom
port010
port011
port012
port013

!
dial-peer cor list murat
member port010
!
dial-peer cor list zafer
member port013
!
dial-peer cor list ahmet
member port012
!
dial-peer cor list muratc
member port011


dial-peer voice 104 pots
corlist outgoing murat
destination-pattern 1..
port 0/1/0
forward-digits 0
!
dial-peer voice 105 pots
corlist outgoing muratc
destination-pattern 1..
port 0/1/1
forward-digits all


dial-peer voice 106 pots
corlist outgoing ahmet
destination-pattern 1..
port 0/1/2
forward-digits all
!
dial-peer voice 107 pots
corlist outgoing zafer
destination-pattern 1..
port 0/1/3
forward-digits all
!
ephone-dn 1
number 1234
cor incoming murat
!
ephone-dn 2
number 5678
cor incoming zafer
!
ephone-dn 3
number 2345
cor incoming ahmet
!
ephone-dn 4
number 6789
cor incoming zafer

See this link:

http://www.cisco.com/en/US/tech/tk652/tk90/technologies_configuration_example09186a008019d649.shtml

You can also accomplish this with a combination of "answer-address" and voice translation rules. I think this solution is a little less complicated. See this link.

http://www.cisco.com/en/US/tech/tk652/tk90/technologies_configuration_example09186a00801bc341.shtml

Hope this helps.

Brandon

No I didn't assign corlist to ephone.

It worked now. Thanks