Saturday, January 30, 2010

Call-manager-fallback config for SRST and non-SRST modes

For H323 GW interworking with CUCM cluster, User needs to config dial-peers in order to handle in/out calls from PSTN. For ex:

dial-pee voice 1 pots    ==== to handle incoming calls from PSTN
    incoming called .
    direct-inward
    port 1/0:23
dial-p voice 3120 voip    ==== to forward calls to CUCM
    destination-pat 1312301....$
    session target ipv4:10.1.200.21
    pref 1
dial-p v 900 pots
    desc ==== local  ====    note that this dial-peer does NOT have prefix 9 because CM strips digit 9
    destination-pat [2-9]......$
    port 1/0:23

In SRST mode, any local call with 7 digit would fail if call-manager-fallback is configured with secondary-dialtone 9

To get around this issue configure voice translation-rule to strip out digit 9 when dial-out of PSTN

voice translation-rule 100
        rule 1 /^9\(.*\)$/    /\1/        <<<  strip any string of digit beginning with 9
    voice translation-profile SRST-LOCAL
        translate called 100
call-manager-fallback
    translation-profile incoming SRST-LOCAL

Also, add translation-rule to trim incoming 10 digits to 4 digit
voice translation-rule 1
   rule 1 /^312301\(....\)$/   /\1/   ==== strip out all digits except last 4
voice translation-profile DID
   translate called 1
dial-peer voice 1 pots
   translation-profile incoming DID
   incoming called-number .
   direct-inward-dial
    port 1/0:23

In case SRST still did not work without adding digit 9 in the POTS dial-peer, add CLI  "access-code pri 9 direct-inward-dial" into call-manager-fallback config. Below is full config for call-manager-fallback:

voice translation-rule 1
 rule 1 /^1312301\(....\)/ /\1/
 rule 2 /^312301\(....\)/ /\1/
!
voice translation-profile DID
 translate called 1
!
application
 service alternate default
 !
 global
  service alternate default
 !
dial-peer voice 1 pots
 translation-profile incoming DID
 incoming called-number .
 direct-inward-dial
 port 1/0:23
!
dial-peer voice 911 pots
 description ==== 911
 destination-pattern 911
 port 1/0:23
 forward-digits 3
!
dial-peer voice 1000 pots
 description ==== local
 destination-pattern [2-9]......$
 port 1/0:23
!
dial-peer voice 1001 pots
 description ==== LD
 destination-pattern 1[2-9]..[2-9]......$
 port 1/0:23
 prefix 1
!
dial-peer voice 1002 pots
 description ==== INTL
 destination-pattern 011.T
 port 1/0:23
 prefix 011
!
dial-peer voice 2 voip
 description ==== to CUCM pub
 preference 1
 destination-pattern 312301....$
 session target ipv4:10.1.200.21
!
dial-peer voice 3 voip
 description ==== to CUCM sub
 preference 2
 destination-pattern 312301....$
 session target ipv4:10.1.200.20
!        
!
gateway
 timer receive-rtp 1200
!
!
call-manager-fallback
 secondary-dialtone 9
 max-conferences 12 gain -6
 transfer-system full-consult
 ip source-address 10.10.32.2 port 2000
 max-ephones 2
 max-dn 4
 system message primary SRST@BR1
 dialplan-pattern 1 3123012... extension-length 4
 transfer-pattern .T
 access-code pri 9 direct-inward-dial
 voicemail 917752011500
 call-forward pattern .T
 call-forward busy 917752011500
 call-forward noan 917752011500 timeout 10
!

Single Number Reach - aka SNR in 5 minutes

SNR - single number reach in 5 minutes

1. Config End-user hquser3, choose "Enable Mobility" and associate user with device (phone3)
2. On Menu device/device setting/softkey template, copy standard user template to Mobile user template. Click on "configure softkey layout" link. Add Mobility softkey to on-hook and connected states.
3. Config hqphone3 with Mobility softkey-template, and turn "Device Mobility Mode" ON
4. Add new device/device setting/remote destination profile - ex: hquser3.
        - userid = hquser3
        - DP = DP-HQ
        - CSS = CSS-global
5. Add new DN 1003 on remote destination profile ,
        - PT = PT-USA  (same PT as hqphone3/Line1)
    then save
6. Add Associated Remote Destinations
        - check both Mobile Phone & Enable Mobile Connect
        - destination number = 918005553333
7. Make sure Association Information - Line Association BOX is checked
8. Test by dial 1003, external phone 18005553333 should ring. Otherwise, reset  hqphone3 and recheck config

Tuesday, January 26, 2010

Install CUPC in 10 minutes

    1. on CM create a PresenceSIP trunk with DP-HQ and location.
    2. use same hquser1 (or hqphone1) for Presence, verify that hquser1 is associated to HQphone1 device and belong to Standard CTI enabled group. Also verify HQphone1 device "Owner User ID" is hquser1
    3. add Application User CtiGw with CTI enabled and control of all CTI devices
    4. verify System/Service Parameters/CUP Publish Trunk is set to PresenceSIP trunk name
    5. set CM license capability for users to CUP & CUPC
    6. add presence as an application server in CM
    7. Bring up Presence and add in CM info . Need CM security password
    8. Config CUP system/security/incoming & outgoing ACL to ALL
    9. set CUP system/service parameters  proxy-domain to CUPS.cisco.com
    10. add CM as a Presence gateway under menu Presence/Gateway
    11. configure routing at Presence/Routing to Default Cisco SIP Proxy TCP Listener
    12. set TFTP server under Application/CUPC/Settings with CM IP address and Default Cisco SIP Proxy TCP Listener
    13. under Application/CUPC/User Setting , select hquser1 and sign CTI profile to DP-HQ_cti_tcp_profile_synced_000.  If user hquser1 is not present, verify CM and CUPS sync in previous steps
    14. on Application/Desktop Control/Settings, set status to ON and fill in rest of info for CtiGw user
   
Verify with CUPC Desktop control on the local PC

Saturday, December 19, 2009

Calls from PSTN to HQ did not went thru

HQ config #
mgcp
mgcp call-agent 10.1.200.21 service-type mgcp version 0.1
mgcp dtmf-relay voip codec all mode out-of-band
mgcp bind control source-interface GigabitEthernet0/0.1
mgcp bind media source-interface GigabitEthernet0/0.1

Something wrong with the above config, perhaps I should have bind mgcp with Loopback0
Anyway, removed following config out of HQ router made it worked.

Did all config with Loopback interface now
 mgcp bind control source-interface Loop0

 mgcp bind media source-interfaceLoop0

Friday, December 18, 2009

IPMA in 10 minutes

- add PT-MANAGER and CSS-MANAGER. CSS-MANAGER = PT-USA + PT-MANAGER

- add CTI RP RP-IPMA, set device-pool to DP-HQ, CSS to CSS-MANAGER

- add new DN for RP-IPMA with 1XXX, partition = PT-USA

- add new phone service IPMA under device/device settings/phone services with URL:

http://10.1.200.21:8080/ma/servlet/MAService?cmd=doPhoneService&Name=#DEVICENAME#

- on System/service parameters, config IP ManagerAssistant app with correct Pub IP add and CTI route point , RP-IPMA

- add new PT under call routing/intercom/intercom route pratition PT-INTERCOM

- add new Phone Button template, with 2 lines + 1 intercom, IPMA-7970-3+3

- change HQ phone1 setting to

phone button template = IPMA-7970-3+3

softkey template = standard manager

- set line1 of HQphone1 to PT-MANAGER

- set intercom line of HQphone1 to *1001, PT-INTERCOM, CSS = PT-INTERCOM-GEN and speed-dial = *1002

- subscribe HQphone1 to IPMA service

- change HQ phone2 setting to

phone button template = IPMA-7970-3+3

softkey template = standard assistant

- set intercom line of HQphone2 to *1002, PT-INTERCOM, CSS = PT-INTERCOM-GEN and speed-dial = *1001

- add new DN to line2, DN = 1011, CSS = CSS-MANAGER, change display to IPMA

- add following users:

manager with "allow control of device from CTI" , User-Group = Standard CCM end user, Standard CTI allow control of all devices, Standard CTI enabled.  Primary Ext = 1001

assistant with "allow control of device from CTI",  User-Group = Standard CCM end user, Standard CTI allow control of all devices, Standard CTI enabled.  Primary Ext = 1002

- associate phones to manager and assistant

- on menu user management/end-user, click on manager user, under Related Links, select manager configuration. Uncheck "automatic configuration" , set intercom line to *1001, select associated assistans = assistant, selected lines = line 1 - 1001 - PT-manager

- perform same tasks with user assistant. available lines = line 2 - 1011, manager name = manager , manager line = line 1 - 1001 - PT-manager

RESTART Cisco IP Manager Assistant VIA CU Serviceability Web page

[Verification]
manager private number = 1001
manager proxy number  = 1011
manager intercom          = *1002

assistant number            = 1002
assistant intercom          = *1001
assistant proxy              = 1011

1) Check that manager’s phone has IPMA softkey set on it’s screen
2) Install the Cisco IPMA Console Application on Windows PC and log in as “assistant”
3) Place a call to 1001, ensure it get’s routed to the assistant phone, and pick it up from the IPMA console. Forward the call back to manager’s primary line
4) Configure from the manager’s phone to accept all calls and place a call to manager’s primary line once again
5) Press intercom line on either manager or assistant phone should ring the other side

Sunday, November 15, 2009

IPMA is giving me the creep - finished first round on Nov16

Spent 4 hours doing IPMA without result. Guess I will read up more docs on IPMA shared and proxy mode.
Onward to last chapter which is Presence integration now.
Finally finished chapter 15 presence on Nov16. However, never get Virtual-template interface & IPMA to run correctly. Will have to TS those on round2. Also, will need 7970 phones to get IPMA done.

Wednesday, November 11, 2009

Nov11, IPCCEx and CUPS installation completed, progressing thru IPCCE chapter 11 now

Following are my notes for creating IPCCEx and CUPS on vmware because previous vmware setup for CUCM and Unity Connection did not worked for cups and ipccex.
- CUPS vmware setup: memory = 1296, disk = 75 GB, SCSI  0.0 flat file system, create disk at once, OS = red hat ent linux 3
 - IPCCEx vmware setup: win 2003 server R2 32bits (64bits wont work), memory = 2048, disk = 80 GB in 2 GB chunks (uncheck create disk at once when creating virtual guest), OS = w2003 32bits.

After windows is up and running, run regedit and enter following keys & strings :
[HKEY_LOCAL_MACHINE\SOFTWARE\Cisco Systems\Model]
"Hardware"="MCS7825H02"
"Speed"="3067"
"Memory"="1024"
@=""
Note that  Cisco Systems and Model are keys while Hardware|Speed|Memory|@ are string
 - Install IIS and FTP servers in w2003 before installing IPCCEx

After that both CUPS and IPCCEx should be installed without a hitch