Manual Third-Party Control Protocol
|
|
|
- Jemimah Barnett
- 8 years ago
- Views:
Transcription
1 Xilica Audio Design - Third-Party Control Protocol - Manual 1. Written by Eddy Chiu 2. Version Technical Assistance Technical Support at [email protected] Web Site: North America: Contact Technical Support at ext 3 (forwards to tech support cell phone after regular office hours 9am-6pm EST - Eastern Standard Time) Europe: Contact Technical Support at Asia: Contact Technical Support (Tim Cheung) at Index Page 2 Introduction and Overview Page 3 Syntax Page 4 Responses / Subscriptions Page 5 Control Groups / Password Protection / Verbose - Simple Mode Page 6,7,8 Commands List Page 9 Data String / Error Codes Xilica Audio Design Canada Page 1
2 Introduction Since the introduction of our Neutrino and Uno DSP, user feedback has revealed that the protocol is too complex for integration with other 3rd-party controllers. Numerous minor modifications were done in the interim to assist users in utilizing the Neutrino/Uno Protocol. Although the Neutrino/Uno Protocol itself is very generic and fully capable, it has become increasingly important to define a new protocol that better suits common 3rd-party controllers. Our new 3rd-party control protocol was designed with this in mind, enabling existing and future Xilica devices to be easily controlled by popular 3rd-party controllers from Crestron, AMX and others. Overview The new 3rd-party control protocol is transport-independent. This means the syntax is the same whether the 3rd-party controller is connecting using Serial (RS232/USB) or Ethernet connection. However, some functionalities (Subscriptions and Password Protection) are not available when using the protocol in Serial mode. For Ethernet connection, the user should send out messages using TCP port # The server will Respond to the message using the same TCP connection. A keep-alive message must be sent over this TCP connection every 60 seconds, otherwise, the server end will disconnect the TCP connection and all subscriptions associated with the connection will end. Users also have the choice of using UDP port #10008 to listen to Subscription messages from the device. The user can select whether a particular parameter sends out its change via TCP Unicast or UDP Broadcast when issuing a subscription command. If left unspecified, by default a parameter will notify via TCP Unicast. A separate TCP connection is mandatory for status update, and a keep-alive message must continuously be sent over this TCP connection even if the user chooses to use UDP Broadcast for all their interested parameters. If at any instance the TCP connection is dropped, all subscriptions and groups settings in the device must be reconfigured again. Xilica Audio Design Canada Page 2
3 Syntax The 3rd-party controller string is composed with human readable ASCII characters. Each field is separated by one single white space. Using more than one white space in between fields will result in command parsing error. A carriage-return (<CR>) is sent to mark the end of the message. Fields enclosed in square brackets are dependent on the command. Refer to the Commands List section on Page 6,7, & 8 for a list of all commands, their detail usage and examples. COMMAND 1 white space [CONTROL OBJECT/GROUP] 1 white space [DATA] <CR> The CONTROL OBJECT is a string of up to 32 characters assigned by the user in software for individual parameters. It can contain any readable ASCII characters except double quotes. However, the first character cannot be a dollar-sign ($) because a preceding '$' is used to distinguish between a CONTROL OBJECT with a CONTROL GROUP. A CONTROL GROUP is a string of up to 32 characters created using the CREATE command for use as a group name. It can also contain any readable ASCII characters except double quotes. The first character of the CONTROL GROUP will always begin with a '$' to denote it as a group name. For CONTROL OBJECT/GROUP, if any white spaces are used as part of the string, then it must be encapsulated by double quotes. In addition, note that both COMMAND and CONTROL OBJECT/GROUP are case-sensitive. DATA can be either: - a number (positive, negative, floating point, integer represented in ASCII) - a string (must always be inside double quotes, case-sensitive) - a Boolean (TRUE or FALSE, case-sensitive) Refer to the Commands List section for details on the data type accepted by each command. Xilica Audio Design Canada Page 3
4 Responses The device end will respond to a 3rd-party control command regardless if it is correct or not. If no response is received, it is likely an indication of a connection problem. All response messages from the device will end with a carriage-return (<CR>). If an invalid command is sent, the last encountered Error Code will be returned as: For GET or GETRAW command, the response will be: For all other commands, the device will return: ERROR=<ERROR CODE><CR> <CONTROL OBJECT>=<DATA><CR> OK<CR> Subscriptions The external controller can subscribe to control objects to get a notification for any data changes on the subscribed objects. To subscribe/unsubscribe to a control object, simply send the command: SUBSCRIBE <CONTROL OBJECT> [TCP/UDP] <CR> UNSUBSCRIBE <CONTROL OBJECT> <CR> The notification will then be automatically sent to the external control system via TCP Unicast or UDP Broadcast as specified in the command. The notification string received by the external controller will be: #<CONTROL OBJECT>=<DATA><CR> The string is similar to a GET command, with a # character added in front to distinguish between an explicit read or a notification. The interval in which the device sent out notifications is global for all subscribed control objects, it can be configured by: INTERVAL <TIME in milliseconds> <CR> Xilica Audio Design Canada Page 4
5 Control Groups Control groups allow a user to control multiple parameters at once using a single command. The user must first create a group by: CREATE <CONTROL GROUP> <CR> After a group is created, individual control objects can join or leave the group by: JOIN <CONTROL GROUP> <CONTROL OBJECT> <CR> LEAVE <CONTROL GROUP> <CONTROL OBJECT> <CR> Caution must be used when adding parameters to a group to ensure that the parameters are all of the same type and support the same commands. When a group is no longer used, resources can be freed up by: REMOVE <CONTROL GROUP> <CR> Similar to subscription, Control Groups are persistent for the duration of the active connection only. When a connection is lost, the groups must be recreated again. Password Protection If a device is protected with a password, then the user must unlock the device first before sending any commands. The authentication persists only for the duration of the connection, so if a TCP disconnection occurs, the user will have to unlock the device again. To unlock the device, send the following command: LOGIN <PASSWORD> <CR> The password used in the command is the same password setup in software. Verbose/Simple Mode <Future Implementation - mainly used to configure the amount of details for Responses. This will help some external controller parsing the response more easily> Xilica Audio Design Canada Page 5
6 Commands List SET <CONTROL OBJECT/GROUP> <DATA - number/string/boolean> Examples SET gain1-3.2 Set "gain1" to -3.2 db SET polarity1 TRUE Set "polarity1" to ON position SET filter1 "Butterworth" Set "filter1" to Butterworth Filter SET $group Set all parameters in group1 to -15.7dB SETRAW <CONTROL OBJECT/GROUP> <DATA - number > Examples SETRAW gain Set "gain1" to -3.2 db SETRAW polarity1 1 Set "polarity1" to ON position SETRAW filter1 1 Set "filter1" to Butterworth Filter SETRAW $group Set all parameters in group1 to +1.0dB GET <CONTROL OBJECT/GROUP> Example GET EQslope Get "EQslope" formatted value GET $group1 Get formatted value for all parameters in group1 GETRAW <CONTROL OBJECT/GROUP> Example GETRAW EQslope Get "EQslope" raw value GETRAW $group1 Get raw value for all parameters in group1 INC <CONTROL OBJECT/GROUP> <DATA - number> Example INC fader3 0.5 Increase "fader3" by 0.5 db INC $group1 1 Increase all parameters in group1 by 1dB INCRAW <CONTROL OBJECT/GROUP> <DATA - number> Example INC fader3 500 Increase "fader3" by 0.5 db INC $group Increase all parameters in group1 by 1dB DEC <CONTROL OBJECT/GROUP> <DATA - number> Example DEC fader3 0.5 Decrease "fader3" by 0.5 db DEC $group1 1 Decrease all parameters in group1 by 1dB Xilica Audio Design Canada Page 6
7 DECRAW <CONTROL OBJECT/GROUP> <DATA - number> Example DEC fader3 500 Decrease "fader3" by 0.5 db DEC $group Decrease all parameters in group1 by 1dB TOGGLE <CONTROL OBJECT/GROUP> Example TOGGLE mute1 Toggle "mute1" state TOGGLE $group2 Toggle all parameters in group2 PRESET <DATA - number/string> Example PRESET 4 Recall preset #4 PRESET "preset name" Recall preset with name "preset name" SUBSCRIBE <CONTROL OBJECT/GROUP> <DATA - string>* Example SUBSCRIBE meter6 Subscribe to "meter6" via TCP Unicast SUBSCRIBE meter6 "TCP" Subscribe to "meter6" via TCP Unicast SUBSCRIBE meter6 "UDP" Subscribe to "meter6" via UDP Broadcast * <DATA - string> is optional, TCP Unicast will be used by default UNSUBSCRIBE <CONTROL OBJECT/GROUP> Example UNSUBSCRIBE meter6 Unsubscribe "meter6" KEEPALIVE Example KEEPALIVE No operation. Can be used by external controller to keep the TCP connection alive. INTERVAL <DATA - number> Example INTERVAL 100 Set subscription interval to minimum 100ms. * Subscription data could be delayed longer than the specified interval due to CPU usage, but it is guaranteed to wait for the configured interval time before attempting to send out subscription data. * The minimum value is 100 ms. LOGIN <DATA - string> Example LOGIN "password" Login for external control with "password" Xilica Audio Design Canada Page 7
8 REBOOT Example REBOOT Remotely reboot device REFRESH Example REFRESH Get formatted data value for all control objects CREATE <CONTROL GROUP> Example CREATE group1 Create a group with the name "group1" This is the only exception where CONTROL GROUP does not require a '$' sign in the syntax because the '$' sign will be automatically added when the group is created. REMOVE <CONTROL GROUP> Example REMOVE $group1 Remove the group with name "group1" JOIN <CONTROL GROUP> <DATA - string> Example JOIN $group1 "gain1" "gain1" will join group1 LEAVE <CONTROL GROUP> <DATA - string> Example LEAVE $group2 "mute2" "mute2" will leave group2 Xilica Audio Design Canada Page 8
9 Data String Filter Type Butterworth, LR, Bessel Filter Slope 6db/Oct, 12db/Oct, 18db/Oct, 24db/Oct, 30db/Oct, 36db/Oct, 42db/Oct, 48db/Oct AFS Sensitivity Very Low, Low, Medium, High, Very High AFS Type Dynamic, Fixed Control Ramp Type Linear, Log, Audio Error Codes Error Code Description 101 Invalid Command 102 Bad Arguments 103 Invalid Data Format 104 Control Object Not Found 105 Parameter Not Found 106 Data Value Not Found 107 Max Subscription Reached 108 Password Error 109 Not Yet Login 110 Command Not Supported for Control Object 111 Invalid Group Name 112 Max Control Group Reached 113 Max Control Object in Group Reached 114 Object Already in Group 115 Object Not in Group 116 Conflicting With Other Objects in Group 117 Invalid Preset # 118 Invalid Preset Name Xilica Audio Design Canada Page 9
Control Protocol Manual
Control Protocol Manual Rev 1.2.0 August 2013 i Table of Contents Control Protocol Manual... i System Control... 3 Software User Interface... 3 Third Party Control... 4 Tesira Text Protocol... 5 TTP Overview...
SYMETRIX SOLUTIONS: TECH TIP February 2014
Crestron Symetrix Dialer Example Introduction This tech-tip describes how to control a Symetrix Radius AEC and telephony interface using a Crestron Pro2-style controller. A complete Symetrix Radius configuration
Configuring CSS Remote Access Methods
CHAPTER 11 Configuring CSS Remote Access Methods This chapter describes how to configure the Secure Shell Daemon (SSH), Remote Authentication Dial-In User Service (RADIUS), and the Terminal Access Controller
Chapter 46 Terminal Server
Chapter 46 Terminal Server Introduction... 46-2 TTY Devices... 46-2 Multiple Sessions... 46-4 Accessing Telnet Hosts... 46-5 Command Reference... 46-7 connect... 46-7 disable telnet server... 46-7 disconnect...
FactoryTalk Alarm & Events
FactoryTalk Alarm & Events Table of Contents FactoryTalk Alarms and Events... 1 Overview... 1 Data Source Definition... 2 FactoryTalk Data Source Settings... 3 Event Subscription... 3 Connection Settings...
Setup Manual and Programming Reference. RGA Ethernet Adapter. Stanford Research Systems. Revision 1.05 (11/2010)
Setup Manual and Programming Reference Stanford Research Systems Revision 1.05 (11/2010) Certification Stanford Research Systems certifies that this product met its published specifications at the time
BIT COMMANDER. Serial RS232 / RS485 to Ethernet Converter
BIT COMMANDER Serial RS232 / RS485 to Ethernet Converter (Part US2000A) Copyrights U.S. Converters 1 Contents Overview and Features... 3 Functions..5 TCP Server Mode... 5 Httpd Client Mode.5 TCP Auto mode....6
Immotec Systems, Inc. SQL Server 2005 Installation Document
SQL Server Installation Guide 1. From the Visor 360 installation CD\USB Key, open the Access folder and install the Access Database Engine. 2. Open Visor 360 V2.0 folder and double click on Setup. Visor
11.1. Performance Monitoring
11.1. Performance Monitoring Windows Reliability and Performance Monitor combines the functionality of the following tools that were previously only available as stand alone: Performance Logs and Alerts
Syslog Windows Tool Set (WTS) Configuration File Directives And Help
orrelog Syslog Windows Tool Set (WTS) Configuration File Directives And Help The CO-sysmsg.cnf file contains all the parameters and specifications related to the program s operation. This file is found
Using DC Agent for Transparent User Identification
Using DC Agent for Transparent User Identification Using DC Agent Web Security Solutions v7.7, 7.8 If your organization uses Microsoft Windows Active Directory, you can use Websense DC Agent to identify
Using the Command Line Interface (CLI)
4 Using the Command Line Interface (CLI) Contents Overview...................................................... 4-2 Accessing the CLI............................................... 4-2...................................................
Using LDAP Authentication in a PowerCenter Domain
Using LDAP Authentication in a PowerCenter Domain 2008 Informatica Corporation Overview LDAP user accounts can access PowerCenter applications. To provide LDAP user accounts access to the PowerCenter applications,
SYMETRIX SOLUTIONS: TECH TIP August 2014
Controlling Symetrix SymNet, Jupiter and Integrator Series Products over the Internet Note: All the information below applies to the AirTools Voice Processor 2x and AirTools Multiband Processor 2m as well.
Command Line Interface User Guide for Intel Server Management Software
Command Line Interface User Guide for Intel Server Management Software Legal Information Information in this document is provided in connection with Intel products. No license, express or implied, by estoppel
User Manual. Onsight Management Suite Version 5.1. Another Innovation by Librestream
User Manual Onsight Management Suite Version 5.1 Another Innovation by Librestream Doc #: 400075-06 May 2012 Information in this document is subject to change without notice. Reproduction in any manner
Arduino Wifi shield And reciever. 5V adapter. Connecting wifi module on shield: Make sure the wifi unit is connected the following way on the shield:
the following parts are needed to test the unit: Arduino UNO R3 Arduino Wifi shield And reciever 5V adapter Connecting wifi module on shield: Make sure the wifi unit is connected the following way on the
OCS Training Workshop LAB14. Email Setup
OCS Training Workshop LAB14 Email Setup Introduction The objective of this lab is to provide the skills to develop and trouble shoot email messaging. Overview Electronic mail (email) is a method of exchanging
How to put the DVR online
How to put the DVR online They are 3 steps required in order to get your DVR online and have users logged in remotely. WE STRONGLY RECOMMEND USING A ROUTER TO AVOID VIRUS AND OTHER COMPLICATIONS. Step
4G Business Continuity Solution. 4G WiFi M2M Router NTC-140W
4G Business Continuity Solution 4G WiFi M2M Router NTC-140W Introduction Whether you run a small corner shop, are the plant manager of a factory or manage IT in a corporate office, you ll need a reliable
PART 1 CONFIGURATION 1.1 Installing Dashboard Software Dashboardxxx.exe Administration Rights Prerequisite Wizard
Omega Dashboard 1 PART 1 CONFIGURATION 1.1 Installing Dashboard Software Find the Dashboardxxx.exe in the accompanying CD or on the web. Double click that to install it. The setup process is typical to
Prestige 310. Cable/xDSL Modem Sharing Router. User's Guide Supplement
Prestige 310 Cable/xDSL Modem Sharing Router User's Guide Supplement Domain Name Support Enhanced WAN Setup Remote Node Support PPPoE Support Enhanced Unix Syslog Setup Firmware and Configuration Files
Configuring Health Monitoring
CHAPTER4 Note The information in this chapter applies to both the ACE module and the ACE appliance unless otherwise noted. The features that are described in this chapter apply to both IPv6 and IPv4 unless
Secure Proxy Server Installation Guide
Secure Proxy Server Installation Guide Copyright 2006 by Connect, Inc. All rights reserved. This document may not be reproduced in full or in part, in any form, without prior written permission of Connect
Using RADIUS Agent for Transparent User Identification
Using RADIUS Agent for Transparent User Identification Using RADIUS Agent Web Security Solutions Version 7.7, 7.8 Websense RADIUS Agent works together with the RADIUS server and RADIUS clients in your
User s Manual PowerPanel Shutdown Service Graceful Shutdown and Notification service to ensure power protection of your computer
User s Manual PowerPanel Shutdown Service Graceful Shutdown and Notification service to ensure power protection of your computer Revision 1.1 TABLE OF CONTENTS INTRODUCTION... 1 INSTALLATION GUIDE... 2
7.7 Ethernet Communication (AFPX-COM5)
7.7 Ethernet Communication (AFPX-COM5) 7.7.1 AFPX-COM5 Overview The communication cassette AFPX-COM5 has an Ethernet interface at the COM1 port and a 3-wire RS232C interface at the COM2 port. The Ethernet
Configuring Simulator 3 for IP
Configuring Simulator 3 for IP Application Note AN405 Revision v1.0 August 2012 AN405 Configuring Simulator 3 for IP 1 Overview This Application Note is designed to help to configure a Sim 3 to run in
Provisioning and configuring the SIP Spider
Provisioning and configuring the SIP Spider Administrator Guide Table of Contents 1. Introduction... 3 2. Manual Provisioning... 4 3. Automatic Provisioning... 5 3.1 Concept... 5 3.2 Preparing the configuration
DPS Telecom Your Partners in Network Alarm Management
DPS Telecom Your Partners in Network Alarm Management Techno Knowledge Paper Problem: Unable to Setup FTP Server on T/Mon IAM Platform: T/Mon IAM, v4.2b and above Failure to backup your data can cost you
PRINT FLEET MANAGER USER MANUAL
PRINT FLEET MANAGER USER MANUAL 1 Disclaimer of warranties and limitation of liabilities ( YES ) reserves all rights in the program as delivered. The program or any portion thereof may not be reproduced
Manual. Netumo NETUMO HELP MANUAL WWW.NETUMO.COM. Copyright Netumo 2014 All Rights Reserved
Manual Netumo NETUMO HELP MANUAL WWW.NETUMO.COM Copyright Netumo 2014 All Rights Reserved Table of Contents 1 Introduction... 0 2 Creating an Account... 0 2.1 Additional services Login... 1 3 Adding a
Central Management System
Central Management System Software Installation Guide Ver. 1.5.0.101115.001 ... ii System Introduction... 3 Client/Server Architecture...3 System Requirements... 4 System Setup...4 Multiple Monitor Configuration...5
Interactive Reporting Emailer Manual
Brief Overview of the IR Emailer The Interactive Reporting Emailer allows a user to schedule their favorites to be emailed to them on a regular basis. It accomplishes this by running once per day and sending
WirelessOffice Administrator LDAP/Active Directory Support
Emergin, Inc. WirelessOffice Administrator LDAP/Active Directory Support Document Version 6.0R02 Product Version 6.0 DATE: 08-09-2004 Table of Contents Objective:... 3 Overview:... 4 User Interface Changes...
SYMETRIX SOLUTIONS: TECH TIP August 2015
String Output Modules The purpose of this document is to provide an understanding of operation and configuration of the two different String Output modules available within SymNet Composer. The two different
The Shift to Wireless Data Communication
The Shift to Wireless Data Communication Choosing a Cellular Solution for Connecting Devices to a WWAN Dana Lee, Senior Product Manager [email protected] Recent developments in the wireless and industrial
Cloudvue Remote Desktop Client GUI User Guide
Cloudvue Remote Desktop Client GUI User Guide I. To connect to a Windows server - After power up, the login screen will be displayed. A. Auto Search/User Defined Use Auto Search to find available Windows
WIZnet S2E (Serial-to-Ethernet) Device s Configuration Tool Programming Guide
WIZnet S2E (Serial-to-Ethernet) Device s Configuration Tool Programming Guide Rev 0.2 This document describes how to make your own Configuration Tool for WIZ100SR, WIZ105SR and WIZ110SR of WIZnet. And
Matisse Server Administration Guide
Matisse Server Administration Guide May 2014 MATISSE Server Administration Guide Copyright 2013 Matisse Software Inc. All Rights Reserved. This manual and the software described in it are copyrighted.
Dedicated server executable Log file of this server. (Located in your Windows user folder)
WORLD IN CONFLICT DEDICATED SERVER MANUAL By AE Massive Entertainment Version 1.1 Last update MARCH 26, 2008 FILE REFERENCE Files relevant for use of the dedicated server: wic_ds.exe wic_ds_debugx.txt
Device Log Export ENGLISH
Figure 14: Topic Selection Page Device Log Export This option allows you to export device logs in three ways: by E-Mail, FTP, or HTTP. Each method is described in the following sections. NOTE: If the E-Mail,
ABB solar inverters. User s manual ABB Remote monitoring portal
ABB solar inverters User s manual ABB Remote monitoring portal List of related manuals Title ABB Remote monitoring portal User s manual NETA-01 Ethernet adapter module User s manual Code (English) 3AUA0000098904
QUICK START GUIDE MONDOPAD/WIN7 009-1488-01
QUICK START GUIDE MONDOPAD/WIN7 009-1488-01 CONTENTS Hardware Setup...3 Windows Setup and Registration Process...3 Microsoft Windows Setup...3 Mondopad Software Registration...4 Microsoft Office Activation...4
DiskPulse DISK CHANGE MONITOR
DiskPulse DISK CHANGE MONITOR User Manual Version 7.9 Oct 2015 www.diskpulse.com [email protected] 1 1 DiskPulse Overview...3 2 DiskPulse Product Versions...5 3 Using Desktop Product Version...6 3.1 Product
User Manual Document HTTP-Direct / FTPServer and FLASH file system
Smart solutions for comfort and safety User Manual Document HTTP-Direct / FTPServer and FLASH file system Version: 1.6 Date: October 2009 Status: Released Classification: Public HTTP-Direct / FTPServer
EXTENDED FILE SYSTEM FOR F-SERIES PLC
EXTENDED FILE SYSTEM FOR F-SERIES PLC Before you begin, please download a sample I-TRiLOGI program that will be referred to throughout this manual from our website: http://www.tri-plc.com/trilogi/extendedfilesystem.zip
Time Synchronization & Timekeeping
70072-0111-14 TECHNICAL NOTE 06/2009 Time Synchronization & Timekeeping Time synchronization lets you synchronize the internal clocks of all networked PowerLogic ION meters and devices. Once synchronized,
DSL-G604T Install Guides
Internet connection with NAT...2 Internet connection with No NAT, IP Un-number...6 Port Forwarding...12 Filtering & Firewall Setup...20 Access Control... 21 DMZ Setup... 26 Allow Incoming Ping... 27 How
Installation Guide For ChoiceMail Enterprise Edition
Installation Guide For ChoiceMail Enterprise Edition How to Install ChoiceMail Enterprise On A Server In Front Of Your Company Mail Server August, 2004 Version 2.6x Copyright DigiPortal Software, 2002-2004
Network Licensing. White Paper 0-15Apr014ks(WP02_Network) Network Licensing with the CRYPTO-BOX. White Paper
WP2 Subject: with the CRYPTO-BOX Version: Smarx OS PPK 5.90 and higher 0-15Apr014ks(WP02_Network).odt Last Update: 28 April 2014 Target Operating Systems: Windows 8/7/Vista (32 & 64 bit), XP, Linux, OS
NetSpective Logon Agent Guide for NetAuditor
NetSpective Logon Agent Guide for NetAuditor The NetSpective Logon Agent The NetSpective Logon Agent is a simple application that runs on client machines on your network to inform NetSpective (and/or NetAuditor)
IP Link Device Interface Ethernet Communication Sheet
This document provides additional assistance with wiring your Extron IP Link enabled product to your device. Different components may require a different wiring scheme than those listed below. For complete
Configuring Logging. Information About Logging CHAPTER
52 CHAPTER This chapter describes how to configure and manage logs for the ASASM/ASASM and includes the following sections: Information About Logging, page 52-1 Licensing Requirements for Logging, page
Quick Start Guide: Iridium GO! Advanced Portal
Quick Start Guide: Iridium GO! Advanced Portal Contents Set-Up... 3 Overview... 4 Main Tab 1: General... 5 Status.... 5 Settings... 8 Audio.... 8 GPS.... 9 Tab 2: Communication... 9 Wi-Fi... 9 Satellite...
Setting up an MS SQL Server for IGSS
Setting up an MS SQL Server for IGSS Table of Contents Table of Contents...1 Introduction... 2 The Microsoft SQL Server database...2 Setting up an MS SQL Server...3 Installing the MS SQL Server software...3
Feature Reference. Features: Call Forwarding Call Waiting Conference Calling Outbound Caller ID Block Last Call Return VoiceMail
Feature Reference This document will provide you with information on and how to use the following features of your phone service with Standard Broadband. Features: Call Forwarding Call Waiting Conference
USER S GUIDE: Audio Conferencing. Start increasing your efficiency today.
USER S GUIDE: Audio Conferencing Start increasing your efficiency today. Table of Contents Conferencing Basics 3 Conferencing Set Up Options 4 Call Control Features 5 Security Features 6 Call Control Commands
Application & Quick-Start Guide
Model: CRMWIC Web Intelligent Controller 1 This document will illustrate various ways to connect and use a CRM-WIC as well as programming examples. When connecting CRM-WIC, the installer has several interface
21.4 Network Address Translation (NAT) 21.4.1 NAT concept
21.4 Network Address Translation (NAT) This section explains Network Address Translation (NAT). NAT is also known as IP masquerading. It provides a mapping between internal IP addresses and officially
TDP43ME NetPS. Network Printer Server. Control Center. for Ethernet Module
Panduit Corp. 2010 TDP43ME NetPS PA26306A01 Rev. 01 11-2010 Network Printer Server Control Center for Ethernet Module NOTE: In the interest of higher quality and value, Panduit products are continually
Guideline for setting up a functional VPN
Guideline for setting up a functional VPN Why do I want a VPN? VPN by definition creates a private, trusted network across an untrusted medium. It allows you to connect offices and people from around the
TI IS-1007 v1.0. TeamConnect. Network and IT configuration
TI IS-1007 v1.0 TeamConnect Network and IT configuration Contents Contents Introduction...3 Configuration and connection possibilities...4 System configuration...5 Network information...7 Core network
Controlling LifeSize Video Systems from the CLI
Controlling LifeSize Video Systems from the CLI Use the LifeSize command line interface (CLI) to automate access and control of LifeSize video communications systems and LifeSize Phone with software release
PRINT CONFIGURATION. 1. Printer Configuration
PRINT CONFIGURATION Red Flag Server5 has improved the designs of the printer configuration tool to facilitate you to conduct print configuration and print tasks management in a more convenient and familiar
Conference Instructions
Toll-Free Customer Service: (844) 844-1322 Online Support: [email protected] Step 1-Setup Conference Call Conference Instructions Organize your conference call by notifying all participants
A List Owner s Quick Reference Guide to BGSU s LISTSERV
Information Technology Services A List Owner s Quick Reference Guide to BGSU s LISTSERV How do I request a new LISTSERV Electronic Mailing List? If you are interested in establishing an electronic mailing
IP Link Device Interface Communication Sheet
This document provides additional assistance with wiring your Extron IP Link enabled product to your device. Different components may require a different wiring scheme than those listed below. For complete
Chapter 25 DHCP Snooping
Chapter 25 DHCP Snooping Introduction...25-2 The Binding Database... 25-2 DHCP Filtering... 25-4 DHCP Option 82... 25-4 DHCP Snooping ARP Security... 25-5 Configuration Examples...25-5 Command Reference...25-6
Aeroqual Connect and Cloud
Aeroqual Connect and Cloud Page 1 Contents 1. Introduction to Aeroqual Connect and Cloud... 3 1.2. Aeroqual Connect... 3 1.3. Aeroqual Cloud... 3 2. How to Connect... 4 2.1. Aeroqual Connect... 4 2.1.1.
HYPERION DATA RELATIONSHIP MANAGEMENT RELEASE 9.3.1 BATCH CLIENT USER S GUIDE
HYPERION DATA RELATIONSHIP MANAGEMENT RELEASE 9.3.1 BATCH CLIENT USER S GUIDE Data Relationship Management Batch Client User s Guide, 9.3.1 Copyright 1999, 2007, Oracle and/or its affiliates. All rights
Connecting to SQL server
Micromedia International Technical study Author: Pierre Chevrier Number of pages: 17 Company: Micromedia International Date: 24/08/2011 Réf. : ETT_20110624_000001.docx Connecting to SQL server This document
Moven Studio realtime. streaming
Moven Studio realtime network streaming UDP protocol specification Document MV0305P Revision B, 19 December 2007 Xsens Technologies B.V. phone +31 88 XSENS 00 Pantheon 6a +31 88 97367 00 P.O. Box 559 fax
District of Columbia Courts Attachment 1 Video Conference Bridge Infrastructure Equipment Performance Specification
1.1 Multipoint Control Unit (MCU) A. The MCU shall be capable of supporting (20) continuous presence HD Video Ports at 720P/30Hz resolution and (40) continuous presence ports at 480P/30Hz resolution. B.
ODBC Client Driver Help. 2015 Kepware, Inc.
2015 Kepware, Inc. 2 Table of Contents Table of Contents 2 4 Overview 4 External Dependencies 4 Driver Setup 5 Data Source Settings 5 Data Source Setup 6 Data Source Access Methods 13 Fixed Table 14 Table
Kramer Electronics, Ltd. Site-CTRL and Web Access Online User Guide (Documentation Revision 2)
Kramer Electronics, Ltd. Site-CTRL and Web Access Online User Guide (Documentation Revision 2) Software Version 1.9. 2902 To check that you have the latest version, go to the DOWNLOADS section of our Web
MBA Dedicated Servers: A How-to Guide
MBA Dedicated Servers: A How-to Guide 1. If you are behind a firewall, see the Router configuration section below for information on setting up port forwarding. 2. Launch the STEAM client. The Steam client
BroadSoft BroadWorks ver. 17 SIP Configuration Guide
Valcom Session Initiation Protocol (SIP) VIP devices are compatible with BroadSoft s BroadWorks hosted SIP server. The Valcom device is defined as a Generic SIP Phone in the BroadWorks system. Authentication
Kiwi SyslogGen. A Freeware Syslog message generator for Windows. by SolarWinds, Inc.
Kiwi SyslogGen A Freeware Syslog message generator for Windows by SolarWinds, Inc. Kiwi SyslogGen is a free Windows Syslog message generator which sends Unix type Syslog messages to any PC or Unix Syslog
VoIP 110R/200R/422R/404R/440R. User s Guide
VoIP 110R/200R/422R/404R/440R User s Guide Trademarks Contents are subject to revise without prior notice. All trademarks belong to their respective owners. FCC Warning This equipment has been tested and
vsuite Home Phone Feature Reference
vsuite Home Phone Feature Reference Below is a list of features that are included with your new vsuite telephone service. Should you have any questions or problems with a feature please feel free to contact
BioStar Config Guide V1.0
BioStar Config Guide V1.0 Suprema Inc. 16F Parkview Tower 6 Jeongja, Bundang Seongnam 463-863 Korea www.supremainc.com Last edited: 27 December 2011 This document is copyright 27 December 2011 by Suprema
Configuring Timeout, Retransmission, and Key Values Per RADIUS Server
Configuring Timeout, Retransmission, and Key Values Per RADIUS Server Feature Summary The radius-server host command functions have been extended to include timeout, retransmission, and encryption key
Eventia Log Parsing Editor 1.0 Administration Guide
Eventia Log Parsing Editor 1.0 Administration Guide Revised: November 28, 2007 In This Document Overview page 2 Installation and Supported Platforms page 4 Menus and Main Window page 5 Creating Parsing
Windows Dial Up Networking (DUN) for AirLink Modems Application Note - How To
Windows Dial Up Networking (DUN) for AirLink Modems Application Note - How To Dial-up Networking (DUN) allows a computer or other device to use your AirLink modem to connect to the Internet or private
To perform Ethernet setup and communication verification, first perform RS232 setup and communication verification:
PURPOSE Verify that communication is established for the following products programming option (488.2 compliant, SCPI only): DCS - M9C & DCS M130, DLM M9E & DLM-M9G & DLM M130, DHP - M9D, P series, SG,
Using Cisco IOS Software
Using Cisco IOS Software This chapter provides helpful tips for understanding and configuring Cisco IOS software using the command-line interface (CLI). It contains the following sections: Understanding
Leased Line PPP Connections Between IOS and HP Routers
Leased Line PPP Connections Between IOS and HP Routers This technical document describes how to connect an IOS Router to an HP Router using point-to-point protocol. An example of an IOS router connected
UIP1868P User Interface Guide
UIP1868P User Interface Guide (Firmware version 0.13.4 and later) V1.1 Monday, July 8, 2005 Table of Contents Opening the UIP1868P's Configuration Utility... 3 Connecting to Your Broadband Modem... 4 Setting
LifeSize UVC Access Deployment Guide
LifeSize UVC Access Deployment Guide November 2013 LifeSize UVC Access Deployment Guide 2 LifeSize UVC Access LifeSize UVC Access is a standalone H.323 gatekeeper that provides services such as address
DNP Master Ethernet Driver Help. 2015 Kepware Technologies
2015 Kepware Technologies 2 Table of Contents Table of Contents 2 8 Overview 8 Channel Setup 9 Communications General 9 Timing 10 Device Setup 11 Communications 12 Polling 14 Unsolicited Messaging 16 Event
GO!Enterprise MDM Device Application User Guide Installation and Configuration for Android with TouchDown
GO!Enterprise MDM Device Application User Guide Installation and Configuration for Android with TouchDown GO!Enterprise MDM for Android, Version 3.x GO!Enterprise MDM for Android with TouchDown 1 Table
The data between TC Monitor and remote devices is exchanged using HTTP protocol. Monitored devices operate either as server or client mode.
1. Introduction TC Monitor is easy to use Windows application for monitoring and control of some Teracom Ethernet (TCW) and GSM/GPRS (TCG) controllers. The supported devices are TCW122B-CM, TCW181B- CM,
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
Configuring the Dolby Conference Phone with Cisco Unified Communications Manager
Configuring the Dolby Conference Phone with Cisco Unified Communications Manager Version 1.2 December 10, 2015 This product is protected by one or more patents in the United States and elsewhere. For more
XMailer Reference Guide
XMailer Reference Guide Version 7.00 Wizcon Systems SAS Information in this document is subject to change without notice. SyTech assumes no responsibility for any errors or omissions that may be in this
IP Power Stone 4000 User Manual
IP Power Stone 4000 User Manual Two Outlet Remote AC Power Controller Multi Link, Inc. 122 Dewey Drive Nicholasville, KY 40356 USA Sales and Tech Support 800.535.4651 FAX 859.885.6619 techsupport@multi
This chapter describes the specifications of the embedded Ethernet function for Series 16i/18i/21i/160i/180i/210i/160is/180is/210is B.
B 63525EN/02 8 EMBEDDED ETHERNET FUNCTION 8. EMBEDDED ETHERNET FUNCTION This chapter describes the specifications of the embedded Ethernet function for Series 16i/18i/21i/160i/180i/210i/160is/180is/210is
CRYPTOLogon Agent. for Windows Domain Logon Authentication. Deployment Guide. Copyright 2002-2003, CRYPTOCard Corporation, All Rights Reserved.
CRYPTOLogon Agent for Windows Domain Logon Authentication Deployment Guide Table of Contents 1. OVERVIEW... 1 1.1 SINGLE AUTHENTICATION MODE (MS-GINA REPLACEMENT)... 1 1.2 DUAL AUTHENTICATION MODE (MS-GINA
