Custom Commands for Endpoint Configuration Templates in TMS

Size: px
Start display at page:

Download "Custom Commands for Endpoint Configuration Templates in TMS"

Transcription

1 Custom Commands for Endpoint Configuration Templates in TMS Document ID: Contributed by Jason Shupe and Adam Wamsley, Cisco TAC Engineers. Feb 19, 2014 Contents Introduction Prerequisites Requirements Components Used Related Products Configure Create Simple Command Strings Create Multi Part Command Strings Create Multi Task Command Strings Create Simple Configuration Strings Create Multi Part Configuration Strings Create Multi Task Configuration Strings Add Created XML Strings to TMS Custom Template Verify Troubleshoot Introduction This document describes how to configure custom command templates or custom configuration templates from the Cisco TelePresence Management Suite (TMS). Prerequisites Requirements Cisco recommends that you have knowledge of these topics: Cisco TelePresence Management Suite Cisco TelePresence TC software You must have these accesses and privileges: Web access to TMS with sufficient privileges in order to access Systems > Configuration Templates > Configuration Templates Web access to an endpoint that is running Cisco Telepresence TC software with sufficient privileges in order to access Configuration > API > /command.xml or /configuration.xml Secure Shell (SSH) or Telnet access to the endpoint with administrator level privileges

2 Components Used The information in this document is based on these software and hardware versions: Cisco TelePresence Management Suite Version Cisco TelePresence Codec C40 (C40) with Cisco TelePresence TC Software Version TC6.2.1 The information in this document was created from the devices in a specific lab environment. All of the devices used in this document started with a cleared (default) configuration. If your network is live, make sure that you understand the potential impact of any command. Related Products This document can also be used with these hardware and software versions: Cisco TelePresence Management Suite Versions 13.x 14.x Cisco TelePresence TC Software Versions TC6.0 TC6.2.1 Configure Create Simple Command Strings Caution: Custom templates send the APIs configured within the templates but do not apply those changes to the endpoint's known configuration in TMS. While a 'force refresh' updates most settings, a password change done through the API causes TMS to lose connectivity with the endpoint until the password is updated within the connection settings of the endpoint in TMS. Custom command templates are commonly used in order to set administrator passwords, because there is no predefined template in TMS for endpoints that run TC software. This example uses the /command.xml file. The xcommand string for this setting is: Xcommand SystemUnit AdminPassword Set Password: NewPassword Navigate to Configuration > API>/command.xml, and review the /command.xml file located in the endpoint web interface:

3 Notice that the format is the same as the xcommand string with the exception of the closing tags necessary for XML. This yields the XML string that changes the AdminPassword: <Command> <SystemUnit> <AdminPassword> <Set> <Password>NewPassword</Password> </Set> </AdminPassword> </SystemUnit> </Command> NewPassword is your choice of password. Create Multi Part Command Strings You can use a custom command template for a multi part command string, such as the common use of feedback expressions in order to determine which events the endpoint reports to TMS. This is an example of the Telnet/SSH command string: xcommand HttpFeedback Register FeedbackSlot: 1 ServerUrl:

4 Expression: /History/CallLogs/Call Expression: /Status/Call[Status='Connected'] Expression: /Status/H323/Gatekeeper Expression: /Status/SIP/Registration Expression: /Status/Network/Ethernet/Speed Expression: /Event/CallSuccessful Expression: /Event/Message/Prompt/Response Expression: /Configuration Expression: /Event/CallDisconnect Expression: /Status/Call Review the /command.xml file: Compare the command string to the /command.xml file. This yields the equivalent XML string: <Command> <HttpFeedback> <Register> <FeedbackSlot>1</FeedbackSlot> <ServerUrl> <Expression item="1">/history/calllogs/call</expression> <Expression item="2">/status/call[status='connected']</expression> <Expression item="3">/status/h323/gatekeeper</expression> <Expression item="4">/status/sip/registration</expression>

5 <Expression item="5">/status/network/ethernet/speed</expression> <Expression item="6">/event/callsuccessful</expression> <Expression item="7">/event/message/prompt/response</expression> <Expression item="8">/configuration</expression> <Expression item="9">/event/calldisconnect</expression> <Expression item="10">/status/call</expression> </Register> </HttpFeedback> </Command> Create Multi Task Command Strings Unlike SSH commands, you can use custom command templates in order to create multi task commands. This example combines the two previous examples and sets both the HttpFeedback and AdminPassword with a single custom command string: <Command> <HttpFeedback> <Register> <FeedbackSlot>1</FeedbackSlot> <ServerUrl> <Expression item="1">/history/calllogs/call</expression> <Expression item="2">/status/call[status='connected']</expression> <Expression item="3">/status/h323/gatekeeper</expression> <Expression item="4">/status/sip/registration</expression> <Expression item="5">/status/network/ethernet/speed</expression> <Expression item="6">/event/callsuccessful</expression> <Expression item="7">/event/message/prompt/response</expression> <Expression item="8">/configuration</expression> <Expression item="9">/event/calldisconnect</expression> <Expression item="10">/status/call</expression> </Register> </HttpFeedback> <SystemUnit> <AdminPassword> <Set> <Password>NewPassword</Password> </Set> </AdminPassword> </SystemUnit> </Command> Review the /command.xml file and see how it maps to the custom multi task command string:

6 Create Simple Configuration Strings This example sets the DefaultCall protocol to H323. This is the SSH/Telnet command:

7 Xconfiguration Conference DefaultCall protocol: H323 Review the /configuration.xml file: Compare the command string to the /command.xml file. This yields the equivalent XML string: <Configuration> <Conference> <DefaultCall> <Protocol>H323</Protocol> </DefaultCall> </Conference> </Configuration> Create Multi Part Configuration Strings Unlike Xcommand strings that let you run a command in order to set multiple components, xconfiguration strings only support a single configuration change per string. Therefore, this section does not apply. Create Multi Task Configuration Strings As with custom command strings, you can combine multiple configuration strings in a single custom configuration XML string. This example uses these xconfiguration strings as a base: xconfiguration H323 Profile 1 H323Alias ID: c40 1.lab.h323@tac.lab xconfiguration H323 Profile 1 H323Alias E164: xconfiguration H323 Profile 1 CallSetup Mode: Gatekeeper xconfiguration H323 Profile 1 Gatekeeper Address: taccluster.tac.lab xconfiguration H323 Profile 1 Gatekeeper Discovery: Manual xconfiguration SIP Profile 1 URI: c40 1.lab.sip@tac.lab xconfiguration SIP Profile 1 DefaultTransport: Auto xconfiguration SIP Profile 1 Proxy 1 Discovery: Manual xconfiguration SIP Profile 1 Proxy 1 Address: "taccluster.tac.lab" Review these sections of the /configuration.xml file:

8 and

9 Compare the command string to the /command.xml file. This yields the equivalent XML string: <Configuration> <H323> <Profile> <H323Alias> <ID>c40 <E164>180004</E164> </H323Alias> <CallSetup> <Mode>Gatekeeper</Mode> </CallSetup> <Gatekeeper> <Address>taccluster.tac.lab</Address> <Discovery>Manual</Discovery> </Gatekeeper> </Profile> </H323> <Sip> <Profile> <URI>c40 <DefaultTransport>Auto</DefaultTransport> <Proxy item="1"> <Discovery>Manual</Discovery> <Address>taccluster.tac.lab</Address>

10 </Proxy> </Profile> </Sip> </Configuration> Add Created XML Strings to TMS Custom Template Note: Both custom command and configuration fields are limited to a maximum of 1000 characters. Once you have the XML string identified, add the string to a custom command or configuration template. This procedure describes how: 1. In the TMS web interface, navigate to Systems > Configuration Templates > Configuration Templates, and select New Configuration Template: 2. Click the Select Advanced Settings tab, and enter the word custom in the Filter text field under Cisco TelePresence Group Systems: 3. Check the box next to the appropriate setting (Custom Command and/or Custom Configuration), and click the right arrow (>) to move it. 4. Click the Template Settings tab:

11 5. Enter your XML script into the appropriate Custom Command and/or Custom Configuration text field. Verify 6. Select Save. There is currently no verification procedure available for this configuration. Troubleshoot There is currently no specific troubleshooting information available for this configuration. Updated: Feb 19, 2014 Document ID:

Use Direct IP Address Calls Between Two Endpoints to Troubleshoot Call Quality Issues

Use Direct IP Address Calls Between Two Endpoints to Troubleshoot Call Quality Issues Use Direct IP Address Calls Between Two Endpoints to Troubleshoot Call Quality Issues Document ID: 119014 Contributed by Nil Laskar, Cisco TAC Engineer. Jun 19, 2015 Contents Introduction Background Information

More information

Install or Change Product ID License on a C Series Codec or Profile Endpoint

Install or Change Product ID License on a C Series Codec or Profile Endpoint Install or Change Product ID License on a C Series Codec or Profile Endpoint Contents Introduction Prerequisites Requirements Components Used Example License Product ID (PID) for C Series Codecs and Profile

More information

Cisco TelePresence Endpoints and Cisco Unified Communications Manager

Cisco TelePresence Endpoints and Cisco Unified Communications Manager Cisco TelePresence MX Series Cisco TelePresence EX Series Cisco TelePresence Codec C Series Cisco TelePresence Profile Series Cisco TelePresence Quick Set C20 Cisco TelePresence SX20 Quick Set Cisco Unified

More information

Cisco TelePresence Endpoints and Cisco Unified Communications Manager

Cisco TelePresence Endpoints and Cisco Unified Communications Manager Cisco TelePresence MX Series Cisco TelePresence EX Series Cisco TelePresence Codec C Series Cisco TelePresence Profile Series Cisco TelePresence Quick Set C20 Cisco TelePresence SX20 Quick Set Cisco Unified

More information

Cisco Exam Questions & Answers

Cisco Exam Questions & Answers Cisco 200-001 Exam Questions & Answers Number: 200-001 Passing Score: 800 Time Limit: 120 min File Version: 25.5 http://www.gratisexam.com/ Cisco 200-001 Exam Questions & Answers Exam Name: Implementing

More information

Cisco Exam Questions & Answers

Cisco Exam Questions & Answers Cisco 200-001 Exam Questions & Answers Number: 200-001 Passing Score: 800 Time Limit: 120 min File Version: 25.5 http://www.gratisexam.com/ Cisco 200-001 Exam Questions & Answers Exam Name: Implementing

More information

Exam Questions

Exam Questions Exam Questions 500-006 Implementing Cisco TelePresence Video Solution - Part 2 https://www.2passeasy.com/dumps/500-006/ Question No : 1 Which Cisco TelePresence C Series Codec command will move the on-screen

More information

VIDEO SYSTEMS GETTING STARTED GUIDE

VIDEO SYSTEMS GETTING STARTED GUIDE Cisco TelePresence Video Systems Contents Introduction User interfaces Configuration Appendices Contacts VIDEO SYSTEMS GETTING STARTED GUIDE Codec C Series MX Series Software version TC6.3 NOVEMBER 2013

More information

VIDEO SYSTEMS GETTING STARTED GUIDE

VIDEO SYSTEMS GETTING STARTED GUIDE Cisco TelePresence Video Systems Contents Introduction User interfaces Contacts VIDEO SYSTEMS GETTING STARTED GUIDE Codec C Series Profile Series MX Series Quick Set C20 EX Series SX Series Software version

More information

Install a Telepresence Management Suite (TMS) Release Key

Install a Telepresence Management Suite (TMS) Release Key Install a Telepresence Management Suite (TMS) Release Key Contents Introduction Prerequisites Requirements Components Used Configure Access the Web Interface From Windows Server Access Web Interface Remotely

More information

VIDEO SYSTEMS GETTING STARTED GUIDE

VIDEO SYSTEMS GETTING STARTED GUIDE Cisco TelePresence Video Systems Contents Introduction User interfaces Contacts VIDEO SYSTEMS GETTING STARTED GUIDE Codec C Series Profile Series MX Series Quick Set C20 EX Series SX Series Software version

More information

Cisco Exam Questions & Answers

Cisco Exam Questions & Answers Cisco 200-001 Exam Questions & Answers Number: 200-001 Passing Score: 800 Time Limit: 120 min File Version: 25.5 http://www.gratisexam.com/ Cisco 200-001 Exam Questions & Answers Exam Name: Implementing

More information

Cisco Exam Questions & Answers

Cisco Exam Questions & Answers Cisco 200-001 Exam Questions & Answers Number: 200-001 Passing Score: 800 Time Limit: 120 min File Version: 24.7 http://www.gratisexam.com/ Cisco 200-001 Exam Questions & Answers Exam Name: Implementing

More information

Cisco TelePresence Endpoints and Cisco Unified Communications Manager

Cisco TelePresence Endpoints and Cisco Unified Communications Manager Cisco TelePresence MX Series Cisco TelePresence EX Series Cisco TelePresence Codec C Series Cisco TelePresence Profile Series Cisco TelePresence Quick Set C20 Cisco TelePresence SX20 Quick Set Cisco Unified

More information

AT&T Telepresence Solution Hosted Gatekeeper and Over The Top Registration User Guide November 2014

AT&T Telepresence Solution Hosted Gatekeeper and Over The Top Registration User Guide November 2014 November 2014 AT&T Telepresence Solution Hosted Gatekeeper and Over The Top Registration User Guide November 2014 1 trademarks of AT&T Intellectual Property and/or AT&T affiliated companies. All other

More information

Lead2pass Number: Passing Score: 800 Time Limit: 120 min File Version: 1.0

Lead2pass Number: Passing Score: 800 Time Limit: 120 min File Version: 1.0 Lead2pass-200-001 Number: 000-000 Passing Score: 800 Time Limit: 120 min File Version: 1.0 http://www.gratisexam.com/ More New Questions please visit http://www.lead2pass.com/200-001.html Vendor: Cisco

More information

Cluster creation and maintenance

Cluster creation and maintenance Cluster creation and maintenance Cisco TelePresence Deployment Guide Cisco VCS X6.1 Cisco TMS 12.6 or later D14367.08 May 2011 Contents Contents Document revision history... 5 Introduction... 6 Prerequisites...

More information

Implementing Cisco Video Network Devices v1.0

Implementing Cisco Video Network Devices v1.0 Implementing Cisco Video Network Devices v1.0 Cisco 210-065 Dumps Available Here at: /cisco-exam/210-065-dumps.html Enrolling now you will get access to 172 questions in a unique set of 210-065 dumps Question

More information

Configure Prime Collaboration Assurance (PCA) - Conference Diagnostics

Configure Prime Collaboration Assurance (PCA) - Conference Diagnostics Configure Prime Collaboration Assurance (PCA) - Conference Diagnostics Contents Introduction Prerequisites Requirements Components Used Background Information Limitation of Endpoints Set to Limited or

More information

Cisco TelePresence Video Systems

Cisco TelePresence Video Systems Cisco TelePresence Video Systems 1 EX Series MX200 Profile Series Quick Set C20 / C20 Plus Codec C Series Software version TC4.2 JULY 2011 2 Thank you for choosing Cisco! Your Cisco product has been designed

More information

Software version TC6.3 OCTOBER Administrator guide. For Cisco TelePresence System Quick Set C20 and Profile 42 using C20

Software version TC6.3 OCTOBER Administrator guide. For Cisco TelePresence System Quick Set C20 and Profile 42 using C20 Software version TC6.3 OCTOBER 2013 Administrator guide For Cisco TelePresence System Quick Set C20 and Profile 42 using C20 D14637.12 Profile C20 and Quick Set C20 TC6.3, OCTOBER 2013. 1 Thank you for

More information

Firepower extensible Operating System (FXOS) 2.2: Chassis Authentication and Authorization for remote management with ACS using RADIUS

Firepower extensible Operating System (FXOS) 2.2: Chassis Authentication and Authorization for remote management with ACS using RADIUS Firepower extensible Operating System (FXOS) 2.2: Chassis Authentication and Authorization for remote management with ACS using RADIUS Contents Introduction Prerequisites Requirements Components Used Configure

More information

cisco. Number: Passing Score: 800 Time Limit: 120 min.

cisco.  Number: Passing Score: 800 Time Limit: 120 min. 500-006 cisco Number: 500-006 Passing Score: 800 Time Limit: 120 min Question Set 1 QUESTION 1 How many conferencing bridges can a single full-capacity Cisco TelePresence Conductor support? A. 1 B. 10

More information

Software version TC7.3 OCTOBER Administrator guide. For Cisco TelePresence System Quick Set C20 and Profile 42 using C20

Software version TC7.3 OCTOBER Administrator guide. For Cisco TelePresence System Quick Set C20 and Profile 42 using C20 Software version TC7.3 OCTOBER 2015 Administrator guide For Cisco TelePresence System Quick Set C20 and Profile 42 using C20 1 Thank you for choosing Cisco! Your Cisco product has been designed to give

More information

Software version TC6.3 OCTOBER Administrator guide. for Cisco TelePresence SX20 Quick Set

Software version TC6.3 OCTOBER Administrator guide. for Cisco TelePresence SX20 Quick Set Software version TC6.3 OCTOBER 2013 Administrator guide for 1 Thank you for choosing Cisco! Your Cisco product has been designed to give you many years of safe, reliable operation. This part of the product

More information

Software version TC7.0 DECEMBER Administrator guide. for Cisco TelePresence SX20 Quick Set

Software version TC7.0 DECEMBER Administrator guide. for Cisco TelePresence SX20 Quick Set Software version TC7.0 DECEMBER 2013 Administrator guide for 1 Thank you for choosing Cisco! Your Cisco product has been designed to give you many years of safe, reliable operation. This part of the product

More information

Vendor: Cisco. Exam Code: Exam Name: Implementing Cisco Video Network Devices (VIVND) Version: Demo

Vendor: Cisco. Exam Code: Exam Name: Implementing Cisco Video Network Devices (VIVND) Version: Demo Vendor: Cisco Exam Code: 200-001 Exam Name: Implementing Cisco Video Network Devices (VIVND) Version: Demo QUESTION 1 Which scheduling and management application can be installed on any hardware platform

More information

Cisco TelePresence VCS Cluster Creation and Maintenance

Cisco TelePresence VCS Cluster Creation and Maintenance Cisco TelePresence VCS Cluster Creation and Maintenance Deployment Guide Cisco VCS X8.5 Cisco TMS 13.2 or later December 2014 Contents Introduction 4 Prerequisites 5 Upgrading an X7.1 or later cluster

More information

Getting Started Guide

Getting Started Guide Collaboration Endpoint Software CE8.2 JUNE 2016 For DX, MX and SX Series D15318.03 Video Systems CE8.2, JUNE 2016. 1 Thank you for choosing Cisco! Your Cisco product has been designed to give you many

More information

Cisco.Realtests v by.Edric.61q. Exam Code: Exam Name: Implementing Cisco TelePresence Video Solution, Part 1

Cisco.Realtests v by.Edric.61q. Exam Code: Exam Name: Implementing Cisco TelePresence Video Solution, Part 1 Cisco.Realtests.500-007.v2014-12-06.by.Edric.61q Number: 500-007 Passing Score: 853 Time Limit: 120 min File Version: 14.5 Exam Code: 500-007 Exam Name: Implementing Cisco TelePresence Video Solution,

More information

Cisco TelePresence Conductor

Cisco TelePresence Conductor Cisco TelePresence Conductor Deployment Guide XC1.2 D14827.02 May 2012 Contents Contents Introduction... 4 About the Cisco TelePresence Conductor... 4 Call flow with the Cisco TelePresence Conductor...

More information

Software version TC6.3 OCTOBER Administrator guide. for Cisco TelePresence System Codec C90 and Profile 65 Dual using C90

Software version TC6.3 OCTOBER Administrator guide. for Cisco TelePresence System Codec C90 and Profile 65 Dual using C90 Software version TC6.3 OCTOBER 2013 Administrator guide for 1 Thank you for choosing Cisco! Your Cisco product has been designed to give you many years of safe, reliable operation. This part of the product

More information

Software version TC6.3 OCTOBER Codec C40/C60. Administrator guide. For Cisco TelePresence System Codec C40/C60 and Profiles using C40/C60

Software version TC6.3 OCTOBER Codec C40/C60. Administrator guide. For Cisco TelePresence System Codec C40/C60 and Profiles using C40/C60 Software version TC6.3 OCTOBER 2013 Codec C40/C60 Profile 42 Profile 52 /55 Profile 52 Dual / 55 Dual Profile 65 Administrator guide For Cisco TelePresence System Codec C40/C60 and Profiles using C40/C60

More information

Software version TC7.0 DECEMBER Administrator guide. for Cisco TelePresence System Codec C90 and Profile 65 Dual using C90

Software version TC7.0 DECEMBER Administrator guide. for Cisco TelePresence System Codec C90 and Profile 65 Dual using C90 Software version TC7.0 DECEMBER 2013 Administrator guide for 1 Thank you for choosing Cisco! Your Cisco product has been designed to give you many years of safe, reliable operation. This part of the product

More information

Install Telepresence Content Server License Key(s)

Install Telepresence Content Server License Key(s) Install Telepresence Content Server License Key(s) Contents Introduction Prerequisites Requirements Components Used Configure Install Release Key and required Option Keys Installing additional Option Keys

More information

Use NAT to Hide the Real IP Address of CTC to Establish a Session with ONS 15454

Use NAT to Hide the Real IP Address of CTC to Establish a Session with ONS 15454 Use NAT to Hide the Real IP Address of CTC to Establish a Session with ONS 15454 Document ID: 65122 Contents Introduction Prerequisites Requirements Components Used Conventions Background Information Topology

More information

cisco. Number: Passing Score: 925 Time Limit: 120 min

cisco. Number: Passing Score: 925 Time Limit: 120 min 210-065 cisco Number: 210-065 Passing Score: 925 Time Limit: 120 min Exam A QUESTION 1 A Unified Communications engineer wants to configure a Cisco TelePresence SX endpoint using static IP addressing to

More information

Web Authentication Proxy Configuration Example

Web Authentication Proxy Configuration Example Web Authentication Proxy Configuration Example Document ID: 116052 Contributed by Nick Tate, Cisco TAC Engineer. May 02, 2013 Contents Introduction Prerequisites Requirements Components Used Conventions

More information

Cisco Expressway Cluster Creation and Maintenance

Cisco Expressway Cluster Creation and Maintenance Cisco Expressway Cluster Creation and Maintenance Deployment Guide First Published: December 2009 Last Updated: December 2017 Cisco Expressway X8.10 Cisco Systems, Inc. www.cisco.com Contents Preface 3

More information

PassReview. PassReview - IT Certification Exams Pass Review

PassReview.  PassReview - IT Certification Exams Pass Review PassReview PassReview - IT Certification Exams Pass Review Exam : 210-065 Title : Implementing Cisco Video Network Devices v1.0 Vendor : Cisco Version : DEMO Get Latest & Valid 210-065 Exam's Question

More information

"Charting the Course... Implementing Cisco Telepresence Video Solutions Part 2 (VTVS2) Course Summary

Charting the Course... Implementing Cisco Telepresence Video Solutions Part 2 (VTVS2) Course Summary Description Course Summary Implementing Cisco TelePresence Video Solutions, Part 2 (VTVS2) v1.0 is a 5-day instructor-led course that is designed to teach technicians who install and support Cisco TelePresence

More information

Monitor Video Endpoints

Monitor Video Endpoints This section explains the following:, page 1 The Endpoint Diagnostics dashboard displays the details of all video For Cisco Prime Collaboration Release 11.6 and later You can add any of the endpoints to

More information

Getting Started Guide

Getting Started Guide Collaboration Endpoint Software CE9.0 APRIL 2017 For DX, MX, SX, and Room Kit Series D15318.05 Video Systems CE9.0, APRIL 2017. 1 Thank you for choosing Cisco! Your Cisco product has been designed to give

More information

Application Programming Interface (API) Reference Guide

Application Programming Interface (API) Reference Guide Collaboration Endpoint Software 9.1 JUNE 2017 Application Programming Interface (API) Reference Guide D15375.01 CE9.1, JUNE 2017. 1 What s in this guide? Table of Contents The top menu bar and the entries

More information

Getting Started Guide

Getting Started Guide Cisco TelePresence Video Systems Introduction User interfaces Web interface Setup assistant Additional settings Appendices Collaboration Endpoint Software CE9.2 NOVEMBER 2017 For DX, MX, SX, and Room Series

More information

CRS Historical Reports Schedule and Session Establishment

CRS Historical Reports Schedule and Session Establishment CRS Historical Reports Schedule and Session Establishment Document ID: 63424 Contents Introduction Prerequisites Requirements Components Used Conventions Background Schedule Historical Reports Session

More information

PASS4TEST. IT Certification Guaranteed, The Easy Way! We offer free update service for one year

PASS4TEST. IT Certification Guaranteed, The Easy Way!   We offer free update service for one year PASS4TEST \ http://www.pass4test.com We offer free update service for one year Exam : 200-001 Title : Implementing Cisco Video Network Devices (VIVND) Vendor : Cisco Version : DEMO Get Latest & Valid 200-001

More information

Cisco Expressway Cluster Creation and Maintenance

Cisco Expressway Cluster Creation and Maintenance Cisco Expressway Cluster Creation and Maintenance Deployment Guide First Published: December 2009 Last Updated: April 2017 Cisco Expressway X8.9.2 Cisco Systems, Inc. www.cisco.com Contents Preface 3 Change

More information

Getting Started Guide

Getting Started Guide Collaboration Endpoint Software CE9.5 SEPTEMBER 2018 For DX, MX, SX, and Room Series D15318.11 Video Systems CE9.5, SEPTEMBER 2018. 1 Thank you for choosing Cisco! Your Cisco product has been designed

More information

Advanced Configuration for the Cisco Unified Videoconferencing 3515 MCU

Advanced Configuration for the Cisco Unified Videoconferencing 3515 MCU CHAPTER 3 Advanced Configuration for the Cisco Unified Videoconferencing 3515 MCU This section describes the following topic: Configuring Conference Management Settings for the Cisco Unified Videoconferencing

More information

Application Programming Interface (API) Reference Guide

Application Programming Interface (API) Reference Guide Collaboration Endpoint Software 9.1 AUGUST 2017 Application Programming Interface (API) Reference Guide D15387.01 Cisco CE9.1, AUGUST 2017. 1 What s in this guide? Table of Contents The top menu bar and

More information

Configuring an Error Response Code upon an Out-of-Dialog OPTIONS Ping Failure

Configuring an Error Response Code upon an Out-of-Dialog OPTIONS Ping Failure Configuring an Error Response Code upon an Out-of-Dialog OPTIONS Ping Failure Cisco Unified Border Element (Cisco UBE) provides an option to configure the error response code when a dial peer is busied

More information

Network Tree View. About the Network Tree View CHAPTER

Network Tree View. About the Network Tree View CHAPTER CHAPTER 14 This section provides a description of the network tree view available in the Network Manager. Topics in this section include: About the, page 14-1 Displaying General Information, page 14-4

More information

Application Programming Interface (API) Reference Guide

Application Programming Interface (API) Reference Guide Collaboration Endpoint Software 9.1 JUNE 2017 Application Programming Interface (API) Reference Guide D15363.04 CE9.1, JUNE 2017. 1 What s in this guide? Table of Contents The top menu bar and the entries

More information

Cisco TelePresence Video Communication Server

Cisco TelePresence Video Communication Server Cisco TelePresence Video Communication Server Administrator Guide D14049.11 August 2011 Software version: X7.0 Contents Introduction 18 About the Cisco TelePresence Video Communication Server (VCS) 19

More information

Cisco TelePresence Video Communication Server

Cisco TelePresence Video Communication Server Cisco TelePresence Video Communication Server Administrator Guide D14049.09 December 2010 Software version: X6 Contents Contents Contents 2 About the Cisco TelePresence Video Communication Server (Cisco

More information

Cisco TelePresence Multiway

Cisco TelePresence Multiway Cisco TelePresence Multiway Deployment Guide Cisco VCS X8.2 or later MCU version 4.4 or later Conductor XC2.3 or later D14366.12 Revised July 2014 Contents Introduction 4 Objectives and intended audience

More information

Cisco TelePresence Management Suite

Cisco TelePresence Management Suite Cisco TelePresence Management Suite Administrator Guide Last Updated: November 2017 Software Version 15.3 Cisco Systems, Inc. www.cisco.com 2 Contents Introduction 13 Related Documents 13 Cisco TMS Overview

More information

Cisco TelePresence Management Suite

Cisco TelePresence Management Suite Cisco TelePresence Management Suite Administrator Guide Last Updated: November 2017 Software Version 15 Cisco Systems, Inc. www.cisco.com Introduction Introduction Cisco TelePresence Management Suite (Cisco

More information

Service Parameter Configuration

Service Parameter Configuration CHAPTER 22 Service parameters for Cisco Unified Communications Manager allow you to configure different services on selected servers. You can view a list of parameters and their descriptions by clicking

More information

CISCO EXAM QUESTIONS & ANSWERS

CISCO EXAM QUESTIONS & ANSWERS CISCO 200-001 EXAM QUESTIONS & ANSWERS Number: 200-001 Passing Score: 800 Time Limit: 120 min File Version: 42.2 http://www.gratisexam.com/ CISCO 200-001 EXAM QUESTIONS & ANSWERS Exam Name: Implementing

More information

Contents. Introduction. Prerequisites. Requirements. Components Used

Contents. Introduction. Prerequisites. Requirements. Components Used Contents Introduction Prerequisites Requirements Components Used Background Option 1 Option 2 Configuration CUCM Configuration VCS Control Configuration VCS Expressway Configuration Option 1 - Add a Suffix

More information

Cisco TelePresence Video Communication Server

Cisco TelePresence Video Communication Server Cisco TelePresence Video Communication Server Administrator Guide Software version: X7.1 D14049.12 March 2012 Contents Introduction 12 About the Cisco TelePresence Video Communication Server (VCS) 13 VCS

More information

Cisco TelePresence Video Communication Server. Getting started

Cisco TelePresence Video Communication Server. Getting started Cisco TelePresence Video Communication Server Getting started D14350.04 November 2010 Contents Contents Contents 2 General information 3 About the Cisco TelePresence Video Communication Server (Cisco VCS)

More information

Cisco Exam Implementing Cisco Video Network Devices (VIVND) Version: 7.1 [ Total Questions: 74 ]

Cisco Exam Implementing Cisco Video Network Devices (VIVND) Version: 7.1 [ Total Questions: 74 ] s@lm@n Cisco Exam 200-001 Implementing Cisco Video Network Devices (VIVND) Version: 7.1 [ Total Questions: 74 ] Question No : 1 2 Refer to the Exhibits, in order to create a scheduled or ad-hoc multipoint

More information

Testking q. Cisco Implementing Cisco Video Network Devices

Testking q. Cisco Implementing Cisco Video Network Devices Testking.200-001.139q Number: 200-001 Passing Score: 800 Time Limit: 120 min File Version: 7.8 Cisco 200-001 Implementing Cisco Video Network Devices Great dump, passed with 95%. I agree with you 100%

More information

Cisco TelePresence Management Suite

Cisco TelePresence Management Suite Cisco TelePresence Management Suite Administrator Guide Version 14.2 D13741.18 March 2017 Contents Introduction 10 Cisco TMS overview 11 Web page features and layout 12 Portal 16 Sitemap 17 Cisco TMS components

More information

Implementing Cisco Video Network Devices Part 2, v1.0 (CIVND2)

Implementing Cisco Video Network Devices Part 2, v1.0 (CIVND2) Implementing Cisco Video Network Devices Part 2, v1.0 (CIVND2) COURSE OVERVIEW: Implementing Cisco Video Network Devices Part 2 (CIVND2) v1.0 is designed to provide students with the necessary knowledge

More information

Application Programming Interface (API) Reference Guide

Application Programming Interface (API) Reference Guide Collaboration Endpoint Software 9.0 APRIL 2017 Application Programming Interface (API) Reference Guide D15363.03 CE9.0, APRIL 2017. 1 What s in this guide? Table of Contents The top menu bar and the entries

More information

Cisco TelePresence Endpoints and Cisco Unified Communications Manager

Cisco TelePresence Endpoints and Cisco Unified Communications Manager Cisco TelePresence Endpoints and Cisco Unified Communications Manager Contents Introduction CUCM configuration Endpoint configuration Appendices Contact Cisco TelePresence MX Series Cisco TelePresence

More information

Cisco TelePresence Conductor with Cisco Unified Communications Manager

Cisco TelePresence Conductor with Cisco Unified Communications Manager Cisco TelePresence Conductor with Cisco Unified Communications Manager Deployment Guide XC2.2 Unified CM 8.6.2 and 9.x D14998.09 Revised March 2014 Contents Introduction 4 About this document 4 Further

More information

Configure Third-Party SIP Phones

Configure Third-Party SIP Phones Third-Party SIP Endpoints Overview, page 1 Third-Party SIP Endpoints Configuration Task Flow, page 2 Third-Party SIP Endpoints Overview In addition to the Cisco Unified IP Phones that run SIP, Cisco Unified

More information

Install Port License on Telepresence Multipoint Control Unit (MCU) via the Web interface

Install Port License on Telepresence Multipoint Control Unit (MCU) via the Web interface Install Port License on Telepresence Multipoint Control Unit (MCU) via the Web interface Contents Introduction Prerequisites Requirements Components Used Configure Install Port and Screen Licenses on Telepresence

More information

UCS Direct Attached Storage and FC Zoning Configuration Example

UCS Direct Attached Storage and FC Zoning Configuration Example UCS Direct Attached Storage and FC Zoning Configuration Example Document ID: 116082 May 23, 2013 Contents Introduction Prerequisites Requirements Components Used Conventions Background Information UCS

More information

Configure Proxy WebRTC With CMS over Expressway with Dual Domain

Configure Proxy WebRTC With CMS over Expressway with Dual Domain Configure Proxy WebRTC With CMS over Expressway with Dual Domain Contents Introduction Prerequisites Requirements Components Used Configure Network Diagram Technical Information DNS Configuration Internal

More information

Configuring Cisco TelePresence MSE 8000 Series

Configuring Cisco TelePresence MSE 8000 Series CHAPTER 21 Configuring Cisco TelePresence MSE 8000 Series The following sections describe how to configure the Cisco TelePresence MSE 8000 Series products and the Cisco VCS products: About the Cisco TelePresence

More information

Administering TC endpoints on CUCM8.6

Administering TC endpoints on CUCM8.6 Administering TC endpoints on CUCM8.6 1 Cisco Unified Communications Manager 8.6 Cisco TelePresence MX Series Cisco TelePresence EX Series Cisco TelePresence Codec C Series Cisco TelePresence Profile Series

More information

Cisco TelePresence Conductor with Unified CM

Cisco TelePresence Conductor with Unified CM Cisco TelePresence Conductor with Unified CM Deployment Guide TelePresence Conductor XC3.0 Unified CM 10.x Revised February 2015 Contents Introduction 5 About this document 5 Related documentation 5 About

More information

CCNP COLLABORATION. Cisco Certified Network Professional Collaboration

CCNP COLLABORATION. Cisco Certified Network Professional Collaboration Cisco Certified Network Professional Collaboration O V E R VIE W For collaboration and unified communications network engineers who want develop advanced collaboration skills designing, deploying, configuring,

More information

Application Programmer Interface (API) Reference Guide

Application Programmer Interface (API) Reference Guide Software version TC7.3 OCTOBER 2015 Application Programmer Interface (API) Reference Guide 1 What s in this guide? ToC - Hidden The TA top- menu bar and the entries in the table of text anchor contents

More information

How to Discover Live Network

How to Discover Live Network NetBrain Integrated Edition How to Discover Live Network Version 7.0 Last Updated 2017-05-26 Copyright 2004-2017 NetBrain Technologies, Inc. All rights reserved. How to Discover Live Network The live network

More information

Cisco TelePresence IP VCR Version 3.0(1.22)

Cisco TelePresence IP VCR Version 3.0(1.22) Cisco TelePresence IP VCR Version 3.0(1.22) Software release notes D14241.07 March 2011 Contents Contents Document revision history... 3 Introduction... 4 New features and functionality in IP VCR 3.0...

More information

Grant Minimum Permission to an Active Directory User Account Used by the Sourcefire User Agent

Grant Minimum Permission to an Active Directory User Account Used by the Sourcefire User Agent Grant Minimum Permission to an Active Directory User Account Used by the Sourcefire User Agent Document ID: 118637 Contributed by Nazmul Rajib and Douglas Loss, Cisco TAC Engineers. Jun 05, 2015 Contents

More information

Cisco TelePresence Conductor with Cisco VCS (Policy Service)

Cisco TelePresence Conductor with Cisco VCS (Policy Service) Cisco TelePresence Conductor with Cisco VCS (Policy Service) Deployment Guide TelePresence Conductor XC3.0 Cisco VCS X8.x Revised January 2015 Contents Introduction 5 About the Cisco TelePresence Conductor

More information

Using the vrealize Orchestrator Operations Client. vrealize Orchestrator 7.5

Using the vrealize Orchestrator Operations Client. vrealize Orchestrator 7.5 Using the vrealize Orchestrator Operations Client vrealize Orchestrator 7.5 You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/ If you have comments

More information

Cisco TelePresence Management Suite 15.4

Cisco TelePresence Management Suite 15.4 Cisco TelePresence Management Suite 15.4 Software Release Notes First Published: December 2016 Cisco Systems, Inc. 1 www.cisco.com 2 Preface Change History Table 1 Software Release Notes Change History

More information

Using the VMware vcenter Orchestrator Client. vrealize Orchestrator 5.5.1

Using the VMware vcenter Orchestrator Client. vrealize Orchestrator 5.5.1 Using the VMware vcenter Orchestrator Client vrealize Orchestrator 5.5.1 You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/ If you have comments

More information

Web Authentication Proxy on a Wireless LAN Controller Configuration Example

Web Authentication Proxy on a Wireless LAN Controller Configuration Example Web Authentication Proxy on a Wireless LAN Controller Configuration Example Document ID: 113151 Contents Introduction Prerequisites Requirements Components Used Conventions Web Authentication Proxy on

More information

Please review the Infoblox CCS Scripting Guide for more information on the above optional statements

Please review the Infoblox CCS Scripting Guide for more information on the above optional statements Overview Network engineers are always looking for ways to automate the tasks of maintaining network devices. Logging into network devices to make changes or to upgrade software is tedious, time consuming,

More information

Configuring VoIP Call Setup Monitoring

Configuring VoIP Call Setup Monitoring The Cisco IOS IP Service Level Agreements (SLAs) VoIP Call Setup (Post-Dial Delay) Monitoring feature provides the ability to measure your network s response time for setting up a Voice over IP (VoIP)

More information

Workflow Server OTD Configuration Guide Polycom RealConnect for Office 365 Cloud Service AQUA

Workflow Server OTD Configuration Guide Polycom RealConnect for Office 365 Cloud Service AQUA Workflow Server OTD Configuration Guide Polycom RealConnect for Office 365 Cloud Service AQUA March 27, 2018 Release Revision 1.6.3.0 1 REVISION HISTORY... 3 INFORMATION ELEMENTS... 3 OVERVIEW... 4 REQUIRED

More information

Cisco TelePresence Conductor with Cisco Unified Communications Manager

Cisco TelePresence Conductor with Cisco Unified Communications Manager Cisco TelePresence Conductor with Cisco Unified Communications Manager Deployment Guide TelePresence Conductor XC4.0 Unified CM 10.5(2) January 2016 Contents Introduction 6 About this document 6 Related

More information

Configuring PSTN Audio for CMR Hybrid, page 3. Cisco VCS Control/Cisco VCS Expresswaymust be configured.

Configuring PSTN Audio for CMR Hybrid, page 3. Cisco VCS Control/Cisco VCS Expresswaymust be configured. Prerequisites, page 1 Configuring SIP Audio for CMR Hybrid, page 2 Configuring PSTN Audio for CMR Hybrid, page 3 Configuring TSP Audio for CMR Hybrid, page 5 Prerequisites To configure SIP or PSTN Audio,

More information

Cisco Certification Exam

Cisco Certification Exam Cisco 200-001 Certification Exam Number: 200-001 Passing Score: 800 Time Limit: 120 min File Version: 14.5 http://www.gratisexam.com/ Cisco 200-001 Certification Exam Exam Name: Implementing Cisco Video

More information

INDEX. Bitmap Property dialog box, description 2-11

INDEX. Bitmap Property dialog box, description 2-11 INDEX A accessing Cisco.com xi CiscoView 2-6 Device Configuration dialog box 4-2 online documentation ix adding IP addresses for other management workstations 4-2 audience for this document vii B Bitmap

More information

DCLI User's Guide. Modified on 20 SEP 2018 Data Center Command-Line Interface

DCLI User's Guide. Modified on 20 SEP 2018 Data Center Command-Line Interface Modified on 20 SEP 2018 Data Center Command-Line Interface 2.10.0 You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/ If you have comments about

More information

Cisco Video Communication Server Control

Cisco Video Communication Server Control Cisco Video Communication Server Control The Cisco TelePresence portfolio creates an immersive, face-to-face experience over the network empowering you to collaborate with others like never before. Through

More information

DCLI User's Guide. Data Center Command-Line Interface

DCLI User's Guide. Data Center Command-Line Interface Data Center Command-Line Interface 2.10.2 You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/ If you have comments about this documentation, submit

More information

Creating and Managing a Content Server Cluster

Creating and Managing a Content Server Cluster CHAPTER 10 This chapter describes the main features, system requirements, setup, and management of a Cisco TelePresence Content Server (TCS) cluster. To a user, a Content Server Cluster behaves exactly

More information

CTS System Status for External Projector/LCD Shows Red X

CTS System Status for External Projector/LCD Shows Red X CTS System Status for External Projector/LCD Shows Red X Document ID: 116728 Contributed by Paula Talamo, Paul Anholt, and Paul Stojanovski, Cisco TAC Engineers. Nov 11, 2013 Contents Introduction Prerequisites

More information