Questions tagged [cucm]

Cisco Unified Communications Manager (CUCM), formerly Cisco Unified CallManager and Cisco CallManager (CCM), is a software-based call-processing system developed by Cisco Systems

Cisco Unified Communications Manager (CUCM), formerly Cisco Unified CallManager and Cisco CallManager (CCM), is a software-based call-processing system developed by Cisco Systems.

CUCM tracks all active VoIP network components; these include phones, gateways, conference bridges, transcoding resources, and voicemail boxes among others. CallManager often utilizes the Skinny Client Control Protocol (SCCP) as a communications protocol for signaling the hardware endpoints of the system, such as IP Phones. H.323, Media Gateway Control Protocol (MGCP) or Session Initiation Protocol (SIP) is used to pass call signaling to gateways.

53 questions
8
votes
1 answer

Using Perl to get list of IP addresses from Cisco Call Manager

I need to retrieve a list of IP addresses of phones from Cisco Unified Call Manager, and I'd like to be able to do it using Perl and standard modules as much as possible. I can get the addresses using snmpwalk (we are using SNMP v3) but for some…
WVEagle81
  • 89
  • 4
6
votes
1 answer

CUCM AXL API wrong SoapAction

I want to make SQL query to CUCM DB. I generated Java classes from WSDL with Maven jaxb2 plugin, but Cisco AXL docs advice to use wsdl2java. I've got lot of Java classes with Req/Res endings (request and response as I understand). This is my…
2
votes
1 answer

Get All results without filters in Cisco AXL CUCM

I can't get the entire results of particular function like listPhone or getConferenceBridge, as it requires to provide particular search through searchCriteria. Could anyone propose a solution for that except directly querying the…
youhana
  • 318
  • 2
  • 16
2
votes
1 answer

Combine 3 queries to one in Informix SQL

I have 3 sql queries that I would like to combine in one. I know the value 'UKLN_8945_UDP' that I use in 1st query, that 1st query gives me two values that I can't read so I need to run 2 other queries to return values that I can read. The 1st…
2
votes
3 answers

Python Netmiko error while making SSH connection to cucm server

Just a beginner on python, need some expert advice. I am working on windows machine, have python 2.7 installed , trying to run one script which will connect to one of the cisco call manager CLI and run some commands (example -admin:utils create…
Jogi Singh
  • 49
  • 9
2
votes
1 answer

How to query or calculate port utilization for devices registered with CUCM

I need to query or calculate port utilization for various devices registered with Cisco CUCM, for example, H323 Gateway Port Utilization, FXS Port Utilization, BRI Channel Utilization etc. Are these metrics available from CUCM? If yes, is it…
user3261096
  • 63
  • 1
  • 4
2
votes
2 answers

Cisco CallManager AXL SQL Toolkit - Retrieve directory number and user ID

I have the below SQL query to retrieve the list of userid and their telephonenumber using Cisco CallManager AXL SQL Toolkit: sql query="select d.name as deviceName, e.userid, e.telephonenumber from device d left outer join endUser e on…
user1904221
  • 41
  • 1
  • 4
2
votes
1 answer

Strange SNMP v3 response, report instead of get-response

Strange problem seen while querying a Cisco Call Manager via SNMP v3. SNMP v2 works fine. When using get-next-request, the response is supposed to be a get-response, but from time to time I get a "report" response instead. Reporting on an oid…
skjelland
  • 139
  • 2
  • 6
2
votes
0 answers

How to add new ip phone cisco and new line with Java using AXL API CUCM 6?

I want to add a new ip phone and new line with Java using AXL API of Cisco Call Manager 6. Here is my code: XRoutePartition partition = new XRoutePartition(); partition.setName("PT_INTERNAL"); XNPDirectoryNumber dirn = new…
2
votes
1 answer

Cisco Unified Messenger SOAP (AXL) query, how to return all values?

Using SOAP against CUCM's AXL web service, there are a number of query calls. getLine getDeviceProfile getUser and so on. The WDSL shows:
geoffc
  • 4,030
  • 7
  • 44
  • 51
1
vote
2 answers

AXLAPIService Cisco Unified Communications Manager

Hello I am trying to get a list of calls that were placed to a specific phone number, is this possible using the api? thanks
myaccount
  • 11
  • 1
1
vote
2 answers

ciscoaxl api python errors

I am starting out working on looking into using Python for some Cisco CUCM automation. I found the plugin ciscoaxl here, I installed it and programed the following script: from ciscoaxl import axl cucm = "10.10.20.1" username = "axlusr" password =…
matrix452
  • 21
  • 2
1
vote
0 answers

Given internal directory number, how do you find the External Number that directs to it?

Given an internal directory number, how do you find the External Number that Cisco call manager would direct to it? We have a large spreadsheet of available numbers with associated Externals Masks beside it, but a portion are wrong. I'm looking for…
Daniel
  • 11
  • 3
1
vote
1 answer

Jabber - xmpp conflict

I'm building a custom Jabber connector (desktop app) for a bot developped internaly. I can correctly authenticate my user to my Jabber Server through XMPP. But when i want to perform a bind, the server always send me back a 409 conflict. I've tried…
Tdc
  • 45
  • 6
1
vote
1 answer

SOAP/AXL Request to CUCM Fails with Node.js

All, Thanks for taking a moment to check out this question. Any help is appreciated as I'm a beginner. I am trying to work with Node.js to make a SOAP/AXL call over to a v11.5 Cisco Callmanager. I have copied the code from this person blog which has…
Andrew Petersen
  • 163
  • 1
  • 9
1
2 3 4