From CSR 12.7+/14+, Concept of TRC is not moving forward. Use below mentioned link to see the UC infrastructure requirements. Access Cisco Collaboration Infrastructure Requirements
+882\+883
Last week I got few missed calls from a number starting with +882. In search of +882 country code, I learned some thing new which i want to share it with you. +882 & +883 numbers are not dedicated to a single countries. Those numbers are allocated to satellite Telephone providers . The numbering format…
Network snapshot using Genie
PyATS is the core frame work and Genie I is the PyATS standard library. Genie is the pyATS SDk which contains all the tools needed Network test Automation. Genie Command Line¶ Genie CLI is a powerful linux-based command-line utility offering Genie Python functionality directly from a linux terminal. Genie Learn¶ Genie learn is a powerful tool that can be extensively…
Python Strings
Using triple quotes and the line continuation character ( \ ) Defining a string on multiple lines. a = ”’this\ is\ my\ first\ string”’ Using triple quotes and the line continuation character ( \ ) Defining a string on multiple lines. a = ”’this is my first string”’ Strings – indexing a.index(“i”) Strings…
PyATS Installation
Python Automated Test System(pyATS) is a python based test automation. Its organically developed by internal Cisco Engineers and made public on 2017 through devnet. I use pipenv to create isolated Python environments. Pipenv is a combination of both PIP and virtualenv. Most popular tools to isolate python environment is virtualenv. Use the tool comfortable for…
New Webex devices announced during Webexone 2021
Some cool devices has been announced on webex one 2021. For those who missed Webex one, watch the Keynotes from below link. Keynotes from day 1 https://www.youtube.com/watch?v=Rd3j6qAKmeY Keynotes from Day 2 https://www.youtube.com/watch?v=x_4zen_dozw Webex Desk Mini Explore webex Mini from https://hardware.webex.com/products/desk-mini Bang & Olufsen Cisco 980 Explore Cisco 980 from https://hardware.webex.com/products/cisco-headset-980 Webex Board Pro Explore Webex…
Webex Ideas
If you ever thought of an option to submit some cool ideas which you like to see on Webex or if you have a feedback about webex, there is a portal from cisco to submit this. User Community Feedback you can access the portal from https://ciscocollabcustomer.ideas.aha.io. Submitted ideas will be evaluated by Cisco’s product teams…
SQl Query to pull Device Owner
The below SQL Query can be used to pull the details of Owner-Id assigned to the phones. Tables used. Device ā This table contains device-level information like IP Phones and gateways. Enduser ā This table contains information about all Enduser in CUCM. Sql Query. SQL query to List the complete devices and the Owner status. Devices with…
Sql Query to pull unassigned DNS
The below SQL Query can be used to pull the details of Unassigned Dn’s Tables used. NumPlan ā This table contains information about all patterns configured in CUCM. Sql Query. run sql select dnorpattern from numplan where iscallable = ‘f’ Note:-unassociated DN IsCallable to False
SQL Query to pull devices not assigned with DN’s
The below SQL Query’s can be used to pull the devices which are not assigned with a DN Tables used. Device ā This table contains device-level information like IP Phones and gateways. DeviceNumPlanMap ā This table contains the mapping between data in Device table and NumPlan table. If no DN’s are assigned, Device PKID wont be available…