IP VoIP telephone and Configuration Item table
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-18-2020 03:13 AM
Hello everyone,
I have to register on CMDB "CISCO 7940" IP VOIP telephone.
I found the OID to create on ServiceNow platform: http://oidref.com/1.3.6.1.4.1.9.9.439.1.1.1
but, when I create a new record below SNMP System OID, what is the table to be used to record ip voip phones.
I would like to choose "Communication Device" table, but I cannot choose it.
Best regards,
Gaetano
- Labels:
-
Discovery

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-18-2020 07:35 AM
That choice list is managed by the script include "DiscoveryClassificationTables" and will only give you tables extended from Hardware.
I've gotten around this by updating it, starting on line 28:
else if (table == 'discovery_classy_snmp' || table == 'discovery_snmp_oid') {
javaList = dbom.getAllExtensions('cmdb_ci_hardware');
javaList.add("cmdb_ci_ip_phone");
Communication Device is usually more meant for mobile phones and tablets. I'd recommend using IP Phone instead, which is more for VOIP phones and video systems.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-19-2020 11:50 AM
Hi Andrew,
Why using IP Phone table and not Communication Device table?
Best regards,
Gaetano
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-12-2021 06:59 AM
Interestingly, we found that IP Phone does not contain an attribute for phone number.
Any ideas why?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-18-2020 08:17 AM
I could using Hardware Table in System OID Classification and create specific Product model based on IP Phone as Model Category.
Do you agree?