Re: [OSL | CCIE_Voice] CUE, call forward busy is not working via PSTN Line.

2007-12-07 Thread Mark Snow
]

IPexpert - The Global Leader in Self-Study, Classroom-Based, Video  
On Demand and Audio Certification Training Tools for the Cisco CCIE  
RS Lab, CCIE Security Lab, CCIE Service Provider Lab , CCIE Voice  
Lab and CCIE Storage Lab Certifications.



On Dec 3, 2007, at 9:18 AM, Balamurugan Singaram wrote:


Hi Vik,

I am using the following command as below, so the 10 digit number  
hit CUE as 4 digit number.


dialplan-pattern 1 4085551... extension-length 4

I think it should hit CUE voicemail.

Could please let me know your suggestion.

Thanks,
Bala.

Vik Malhi  [EMAIL PROTECTED] wrote:
I am pretty sure you are using dialplan pattern- the called-number  
will be expanded from 4 digits to 10 digits when the call coming in  
from the PSTN is forwarded. Ensure you have a dial-peer with the  
expanded number (all other settings are the same as the current  
dial-peer pointing to CUE).


Use the debug voip dialpeer command to help troubleshoot.

Vik Malhi
CCIE Voice Instructor / Developer - IPexpert, Inc.
CCIE Voice #13890 CCSI #31584
URL: http://www.IPexpert.com
Toll Free: +1.866.225.8064
International: +1.810.326.1444


From: [EMAIL PROTECTED] [ mailto:[EMAIL PROTECTED] 
] On Behalf Of Balamurugan Singaram

Sent: Saturday, December 01, 2007 7:11 AM
To: ccie_voice@onlinestudylist.com
Subject: [OSL | CCIE_Voice] CUE,call forward busy is not working  
via PSTN Line.



Hi,

The call-forward busy is working when call is called from CCM to  
CME, codec g729.


When I try call from PSTN to CME, call-forward is not working, I  
get busy tone after 3 ring.


Note - I have configured trancoder in CME.


Thanks,
Bala.
Send instant messages to your online friends http://uk.messenger.yahoo.com

Send instant messages to your online friends http://uk.messenger.yahoo.com







--
Write your rules with a pen and your observations with a pencil.



--
Write your rules with a pen and your observations with a pencil.




Re: [OSL | CCIE_Voice] CUE, call forward busy is not working via PSTN Line.

2007-12-05 Thread Mark Snow

Bala,

It will hit CUE using 10 digits as the RDNIS (redirected dnis) to  
which CUE will look for a mailbox with the number 4085551003 for phone  
3 - but will not find one - since phone 3 has an extension in CUE of  
1003 only.


This is due to the ANI or RDNIS being spoofed by the 'destination- 
pattern' command on the auto-generated Dial-Peer that was created by  
the router for phone 1003 (and every other ephone in that 1... range)  
the moment the 'dialplan-pattern' command was entered.

The dial-peer will look something like this:

!
dial-peer voice 20006 pots
 destination-pattern 4085551003
 huntstop
 progress_ind setup enable 3
 port 50/0/3
!

Do a 'sh telephony-service dial-peer' to see these dial-peers that do  
not show up by default in the 'sh run' config.


In order to correct this - you either:
1) Don't use the 'dialplan-pattern' command in telephony service and  
handle incoming 10 digit manipulation down to 4 and outgoing 4 digit  
manipulation up to 10 manually with Voice Translation Rules (this is  
my preference)

or
2) Perform the following voice-translation rules to overcome your  
problems you are having (I modified these to fit what it looks like  
your dialplan is set to with the 408-555-1xxx pattern - but YMMV)


!
voice translation-rule 1
  rule 1 /^408555\(1...\)/ /\1/
!
voice translation-profile VM
  translate calling 1
  translate called 1
  translate redirect-called 1
!
dial-peer voice 3600 voip
  translation-profile outgoing VM
  destination-pattern 1600
  session protocol sipv2
  dtmf-relay sip-notify
  session target ipv4:10.1.202.2
  codec g711ulaw
  no vad
!
!
dial-peer voice 3601 voip
  translation-profile outgoing VM
  destination-pattern 4085551600
  session protocol sipv2
  dtmf-relay sip-notify
  session target ipv4:10.1.202.2
  codec g711ulaw
  no vad
!


HTH Some,

Mark Snow
CCIE #14073 (Voice, Security)
CCSI #31583
Senior Technical Instructor - IPexpert, Inc.
A Cisco Learning Partner - We Accept Learning Credits!
Telephone: +1.810.326.1444
Fax: +1.309.413.4097
Mailto: [EMAIL PROTECTED]

IPexpert - The Global Leader in Self-Study, Classroom-Based, Video On  
Demand and Audio Certification Training Tools for the Cisco CCIE RS  
Lab, CCIE Security Lab, CCIE Service Provider Lab , CCIE Voice Lab and  
CCIE Storage Lab Certifications.



On Dec 3, 2007, at 9:18 AM, Balamurugan Singaram wrote:


Hi Vik,

I am using the following command as below, so the 10 digit number  
hit CUE as 4 digit number.


dialplan-pattern 1 4085551... extension-length 4

I think it should hit CUE voicemail.

Could please let me know your suggestion.

Thanks,
Bala.

Vik Malhi [EMAIL PROTECTED] wrote:
I am pretty sure you are using dialplan pattern- the called-number  
will be expanded from 4 digits to 10 digits when the call coming in  
from the PSTN is forwarded. Ensure you have a dial-peer with the  
expanded number (all other settings are the same as the current dial- 
peer pointing to CUE).


Use the debug voip dialpeer command to help troubleshoot.

Vik Malhi
CCIE Voice Instructor / Developer - IPexpert, Inc.
CCIE Voice #13890 CCSI #31584
URL: http://www.IPexpert.com
Toll Free: +1.866.225.8064
International: +1.810.326.1444


From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
] On Behalf Of Balamurugan Singaram

Sent: Saturday, December 01, 2007 7:11 AM
To: ccie_voice@onlinestudylist.com
Subject: [OSL | CCIE_Voice] CUE,call forward busy is not working via  
PSTN Line.


Hi,

The call-forward busy is working when call is called from CCM to  
CME, codec g729.


When I try call from PSTN to CME, call-forward is not working, I get  
busy tone after 3 ring.


Note - I have configured trancoder in CME.


Thanks,
Bala.
Send instant messages to your online friends http://uk.messenger.yahoo.com

Send instant messages to your online friends http://uk.messenger.yahoo.com





Re: [OSL | CCIE_Voice] CUE, call forward busy is not working via PSTN Line.

2007-12-05 Thread Jasan Mundur
Hi
My 2 cents.
Expanding on the Mark's method of using trans-profilehow about applying
the TP on the voice-port itself. Sort of correcting at the source itself. ?
?  But ,correct me if I am wrong.

So based on our assumed config that Bala has 4085551003 it would look like
this. voice-port 0/n/0:nn is created as soon as the time slots are defined
at the controller T1.Just like the s 0/n/0:nn gets created.

!
!
isdn switch-type primary-ni
network-clock-participate wic 1
network-clock-select 5 T1 0/1/0
!
controller T1 0/1/0
framing esf
linecode b8zs
pri-group timeslots 1-2,24

interface Serial0/1/0:23

 isdn outgoing display-ie

voice translation-rule VPIN

  rule 1 /^408555/ //

voice-port 0/1/0:23

translation-profile in VPIN

## End of Message.

Jasan Mundur






On 12/5/07, Mark Snow [EMAIL PROTECTED] wrote:

 Bala,

 It will hit CUE using 10 digits as the RDNIS (redirected dnis) to which
 CUE will look for a mailbox with the number 4085551003 for phone 3 - but
 will not find one - since phone 3 has an extension in CUE of 1003 only.

 This is due to the ANI or RDNIS being spoofed by the 'destination-pattern'
 command on the auto-generated Dial-Peer that was created by the router for
 phone 1003 (and every other ephone in that 1... range) the moment the
 'dialplan-pattern' command was entered.
 The dial-peer will look something like this:


 !
  dial-peer voice 20006 pots
  destination-pattern 4085551003
  huntstop
  progress_ind setup enable 3
  port 50/0/3
 !


 Do a 'sh telephony-service dial-peer' to see these dial-peers that do not
 show up by default in the 'sh run' config.


 In order to correct this - you either:
 1) Don't use the 'dialplan-pattern' command in telephony service and
 handle incoming 10 digit manipulation down to 4 and outgoing 4
 digit manipulation up to 10 manually with Voice Translation Rules (this is
 my preference)
 or
 2) Perform the following voice-translation rules to overcome your problems
 you are having (I modified these to fit what it looks like your dialplan
 is set to with the 408-555-1xxx pattern - but YMMV)


 !
  voice translation-rule 1
   rule 1 /^408555\(1...\)/ /\1/
 !
 voice translation-profile VM
   translate calling 1
   translate called 1
   translate redirect-called 1
 !
 dial-peer voice 3600 voip
   translation-profile outgoing VM
   destination-pattern 1600
   session protocol sipv2
   dtmf-relay sip-notify
   session target ipv4:10.1.202.2
   codec g711ulaw
   no vad
 !
 !
 dial-peer voice 3601 voip
   translation-profile outgoing VM
   destination-pattern 4085551600
   session protocol sipv2
   dtmf-relay sip-notify
   session target ipv4:10.1.202.2
   codec g711ulaw
   no vad
 !




 HTH Some,

  Mark Snow
 CCIE #14073 (Voice, Security)
 CCSI #31583
 Senior Technical Instructor - IPexpert, Inc.
 A Cisco Learning Partner - We Accept Learning Credits!
 Telephone: +1.810.326.1444
 Fax: +1.309.413.4097
 Mailto: [EMAIL PROTECTED]

 IPexpert - The Global Leader in Self-Study, Classroom-Based, Video On
 Demand and Audio Certification Training Tools for the Cisco CCIE RS Lab,
 CCIE Security Lab, CCIE Service Provider Lab , CCIE Voice Lab and CCIE
 Storage Lab Certifications.


  On Dec 3, 2007, at 9:18 AM, Balamurugan Singaram wrote:

  Hi Vik,

 I am using the following command as below, so the 10 digit number hit CUE
 as 4 digit number.

 dialplan-pattern 1 4085551... extension-length 4

 I think it should hit CUE voicemail.

 Could please let me know your suggestion.

 Thanks,
 Bala.

 *Vik Malhi [EMAIL PROTECTED]* wrote:

 I am pretty sure you are using dialplan pattern- the called-number will be
 expanded from 4 digits to 10 digits when the call coming in from the PSTN is
 forwarded. Ensure you have a dial-peer with the expanded number (all other
 settings are the same as the current dial-peer pointing to CUE).

 Use the debug voip dialpeer command to help troubleshoot.

 Vik Malhi
 CCIE Voice Instructor / Developer - IPexpert, Inc.
 CCIE Voice #13890 CCSI #31584
 URL: http://www.IPexpert.com http://www.ipexpert.com/
 Toll Free: +1.866.225.8064
 International: +1.810.326.1444


  --
 *From:* [EMAIL PROTECTED] [
 mailto:[EMAIL PROTECTED][EMAIL PROTECTED]]
 *On Behalf Of *Balamurugan Singaram
 *Sent:* Saturday, December 01, 2007 7:11 AM
 *To:* ccie_voice@onlinestudylist.com
 *Subject:* [OSL | CCIE_Voice] CUE,call forward busy is not working via
 PSTN Line.


  Hi,

 The call-forward busy is working when call is called from CCM to CME,
 codec g729.

 When I try call from PSTN to CME, call-forward is not working, I get busy
 tone after 3 ring.

 Note - I have configured trancoder in CME.


 Thanks,
 Bala.
 Send instant messages to your online friends http://uk.messenger.yahoo.com


 Send instant messages to your online friends http://uk.messenger.yahoo.com







-- 
Write your rules with a pen and your observations with a pencil.


Re: [OSL | CCIE_Voice] CUE, call forward busy is not working via PSTN Line.

2007-12-03 Thread Balamurugan Singaram
Hi Vik,
   
  I am using the following command as below, so the 10 digit number hit CUE as 
4 digit number.
   
  dialplan-pattern 1 4085551... extension-length 4 
   
  I think it should hit CUE voicemail.
   
  Could please let me know your suggestion.
   
  Thanks,
  Bala.

Vik Malhi [EMAIL PROTECTED] wrote:
  I am pretty sure you are using dialplan pattern- the called-number will 
be expanded from 4 digits to 10 digits when the call coming in from the PSTN is 
forwarded. Ensure you have a dial-peer with the expanded number (all other 
settings are the same as the current dial-peer pointing to CUE).
   
  Use the debug voip dialpeer command to help troubleshoot.
   
  Vik Malhi
CCIE Voice Instructor / Developer - IPexpert, Inc.
CCIE Voice #13890 CCSI #31584
URL: http://www.IPexpert.com
Toll Free: +1.866.225.8064
International: +1.810.326.1444

   


-
  From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Balamurugan 
Singaram
Sent: Saturday, December 01, 2007 7:11 AM
To: ccie_voice@onlinestudylist.com
Subject: [OSL | CCIE_Voice] CUE,call forward busy is not working via PSTN Line.


  
  Hi,
   
  The call-forward busy is working when call is called from CCM to CME, codec 
g729.
   
  When I try call from PSTN to CME, call-forward is not working, I get busy 
tone after 3 ring.
   
  Note - I have configured trancoder in CME.
   
   
  Thanks,
  Bala.
  Send instant messages to your online friends http://uk.messenger.yahoo.com 


 Send instant messages to your online friends http://uk.messenger.yahoo.com 

[OSL | CCIE_Voice] CUE, call forward busy is not working via PSTN Line.

2007-12-01 Thread Balamurugan Singaram
Hi,
   
  The call-forward busy is working when call is called from CCM to CME, codec 
g729.
   
  When I try call from PSTN to CME, call-forward is not working, I get busy 
tone after 3 ring.
   
  Note - I have configured trancoder in CME.
   
   
  Thanks,
  Bala.

 Send instant messages to your online friends http://uk.messenger.yahoo.com