RingMaster Software Version 7.6 Web Services API User Guide

Size: px
Start display at page:

Download "RingMaster Software Version 7.6 Web Services API User Guide"

Transcription

1 RingMaster Software Version 7.6 Web Services API User Guide Release October 2011 (Release Date) Copyright 2011, Juniper Networks, Inc. 1

2 Contents Overview Overview API Interface Licensing Web Services Client Summary SNMP Traps XML-based APIs AirDefense Server Alarms/ Monitoring Configuration RingMaster Services LA-200 RingMaster Client Managed MXs The RingMaster 7.6 Web Services API is an XML-based API used to set up the SNMP interface and provide other alarm / inventory details using polling rather than using a trap mechanism. RingMaster Agent provides the RingMaster 7.6 Web Services API so that upstream applications can retrieve the version of RingMaster. The version will correspond to the REST interface version, which is not the same as the RingMaster software version RingMaster Agent allows the RingMaster 7.6 Web Services API to retrieve an alarm summary from the RingMaster alarm module (each alarm type, criticality and counts).. The alarm summary can be filtered based on query criteria using the Web API. (For example, client failure alarms with a certain SSID). The Web API provides inventory information, such as a list of devices (MXs and APs) and corresponding information in RingMaster (name, model, serial number, build number, system IP, location, contact info, admin state, and operational status). 2 Contents Copyright 2011, Juniper Networks, Inc.

3 RingMaster Agent allows the RingMaster 7.6 Web Services API to configure a list of SNMP targets (up to 4) and do basic RingMaster Agent configuration. The following information is included: Enable/Disable RM SNMP notification (global) Basic SNMP Target Information (up to 4 targets) Target IP address Port Community String Filtering Criteria > By severity: (Critical, Major, Minor, Info, All Default: All) > By category: (Client, Performance, Security, System, All Default: All) You can select a combination of the above critieria. For example, you can select both Critical and Major, and Client and Security alarms. You can add, modify, or delete an SNMP target. Advanced configuration includes: Updating interval (instant, 1 minute, 5 minutes, 15 minutes Default 5 minutes) RingMaster Agent buffers alarms based on the specified interval and forwards these alarms to specified SNMP targets only after the specified interval. This is designed to manage alarm bursting scenarios. API Interface The RingMaster 7.6 Web Services API provides a programmatic equivalent of the provisioning interface. It allows you to build your own interfaces or applications that use Internet technologies to access and manage RM alarms and device information. An industry standard for providing Web Services is the REST (Representational State Transfer) architecture. Popular Web sites such as Yahoo Web Services and ebay Services are all using REST like architecture to provide services to the customized users for advertising and web searching.. See the following link for REST architecture and sample Yahoo Web services: The idea behind REST is to locate a resource using a URI (Universal Resource Identifier). For example, it can use HTTP GET to download or retrieve a list of resources, a PUT or POST method to make a change to it, and DELETE method to remove it. The response will be in XML format and the schema can be published for ease of integration. Copyright 2011, Juniper Networks, Inc. API Interface 3

4 Licensing Access to the RingMaster 7.6 Web Services API is controlled via user name and password-based authentication. User names and passwords can be configured via the Administrative interface. Based on whether user privileges are set to the monitoring or provisioning level, a user can access the corresponding set of APIs. For the following WEB API, the monitoring privilege is required. Any privilege more than Monitoring can access ths Web API. When the RingMaster 7.6 Web Services API is called via HTTP Request, the request should embed/insert basic authorization in the HEADER. See the following link for a tutorial on Basic Authentication: The RingMaster 7.6 Web Services API is part of the separately licensed RingMaster Agent feature. The license SKU for this feature is RMTS-AGENT, and it works just like the RMTS-PLAN license in that it requires that a base RMTS license be installed first. License information is as follows: Product Code SKU Description 02 RMTS Base license enabling support for up to 5 APs and one switch. 07 RMTS-AGENT Enables RingMaster Agent feature When the RingMaster Agent license is not installed, RingMaster does not support the RingMaster 7.6 Web Services API, and a Code 403 Forbidden error is returned in this situation. In SNMP notification, when you click Notification, you will be notified that a RingMaster Agent license is missing and all functions for SNMP notification are disabled. Web Services The following is a list of Web services the RingMaster Agent provides. The RingMaster Agent publishes a list of Web API interfaces and the response XML schema in the release. All Web request URLs start with the RingMaster Server IP Address and port, service name, version number, followed by a method name. The method is followed by query parameters, which take the form argument=value, where arguments and values are URL encoded. Multiple parameters are separated by an ampersand character (i.e. & ). 4 Licensing Copyright 2011, Juniper Networks, Inc.

5 Get RM Agent version For RM Agent 7.6, the command is updated to support the full access control privilege and the result has a new format where the result is divided into sections based on the privilege of the user group. : : This request has no parameters. Response Schema: Schema file: agent-version.xsd : /webservice/rm-agent/v1/monitor/version Get a list of current alarms <?xml version="1.0" encoding="utf-8"?> <BUILD_NUMBER> </ BUILD_NUMBER> <BUILD_DATE> </BUILD_DATE> <PRODUCT_NAME>RingMaster</PRODUCT_NAME> <PRODUCT_SHORT_NAME>RM</PRODUCT_SHORT_NAME> </VERSION> Comments: The BUILD_DATE is short format, MM/DD/YY. : l(equipment planning) : The scope parameter is required, and the value of the scope must be all, equipment, or rf-planning. : /webservice/rm-agent/v1/current-alarms?scope%3dall xmlns= time= :09:46 > <VIEW name= monitor scope= equipment > Copyright 2011, Juniper Networks, Inc. Web Services 5

6 <CATEGORY-COUNTS> <CATEGORY name="client" critical="0" major="0" minor="0" info="0" total="0" /> <CATEGORY name="performance" critical="0" major="0" minor="0" info="0" total="0" /> <CATEGORY name="security" critical="0" major="0" minor="0" info="79" total="79" /> <CATEGORY name= Client critical= 0 major= 0 minor= 0 info= 0 total= 0 /> <CATEGORY name="system" critical="1" major="0" minor="0" info="0" total="1" /> <CATEGORY name="total" critical="1" major="0" minor="0" info="79" total="80" /> </CATEGORY-COUNTS> <TYPE-COUNTS> <TYPE name= AP Fingerprint Check category= 0 severity= 0 active= 1 cleared= 0 /> <TYPE name="ap Status Alarm" count="1" severity= 0 active= 0 cleared= 0 /> <TYPE name= Ad-hoc User Detected category= 3 severity= 3 active= 0 cleared= 0 /> <TYPE name= Low RSSI category= 1 severity= 1 active= 1 cleared= 0 /> <TYPE name= Low SNR category= 1 severity= 1 active= 1 cleared= 0 /> <TYPE name="suspect AP Detected" category= 3 severity= 3 active= 50 cleared= 9 /> <TYPE name="total" count="80" /> </TYPE-COUNTS> <SECURITY-COUNTS> <DOS /> <IDS> <SECURITY-COUNT name="suspect AP Detected" count="50" /> <SECURITY-COUNT name="ad-hoc User Detected" count="1" /> </IDS> </SECURITY-COUNTS> - <VIEW name="monitor" scope="rf-planning"> - <CATEGORY-COUNTS> <CATEGORY name="system" critical="1" major="0" minor="0" info="1" total="2" /> <CATEGORY name="performance" critical="0" major="0" minor="13" info="0" total="13" /> <CATEGORY name="client" critical="0" major="0" minor="0" info="0" total="0" /> <CATEGORY name="security" critical="0" major="6" minor="0" info="12" total="18" /> <CATEGORY name="total" critical="1" major="6" minor="13" info="13" total="33" /> </CATEGORY-COUNTS> <TYPE-COUNTS> <TYPE name="ap Status Alarm" category="0" severity="0" active="1" cleared="6" /> 6 Web Services Copyright 2011, Juniper Networks, Inc.

7 <TYPE name="ad-hoc User Detected" category="3" severity="3" active="4" cleared="22" /> <TYPE name="low RSSI" category="1" severity="1" active="4" cleared="6" /> <TYPE name="low SNR" category="1" severity="1" active="9" cleared="3" /> <TYPE name="power Supply Status Check" category="0" severity="0" active="1" cleared="0" /> <TYPE name="rogue AP Client Detected" category="3" severity="3" active="2" cleared="7" /> <TYPE name="suspect AP Detected" category="3" severity="3" active="12" cleared="23" /> </TYPE-COUNTS> - <SECURITY-COUNTS> <DOS /> - <IDS> <SECURITY-COUNT name="rogue AP Client Detected" count="2" /> <SECURITY-COUNT name="suspect AP Detected" count="12" /> <SECURITY-COUNT name="ad-hoc User Detected" count="4" /> </IDS> </SECURITY-COUNTS> </ALARMS-SUMMARY> </ALARMS-SUMMARY> Get a list of current alarms with query criteria : l(or equipment or rf-planning)&op=query&type=client&ssid=trpz-wlan : Parameter Value Description scope All equipment rf-planning Sample:scope=all op query All time (option) To query a different sets of alarms based on the query criteria Sample: op=query If this item ignored, the meaning is all The time format must like yy-mm-dd hh:mm:ss, Time_start Sample: time_start= :20:47 time_end All time (option) See above. Type severity state : system performance client security all (required) critica major minor info all (required) All active acknowledged cleared deleted (required) Sample 1: type=system Sample 2: type=system&type=client&type=performance Sample 1: type=minor Sample 2: severity=critical&severity=major Sample 1: state =active Sample 2: state=active&state=deleted Copyright 2011, Juniper Networks, Inc. Web Services 7

8 3Dquery%26%20type%3DSystem%26severity%3Dcritical,info%26time_start%3D %2012:12:12%26 <Alarms_Details time=" :47:06"> <VIEW name="monitor" scope="equipment"> <ALARM_LIST count="1"> <ALARM alarmobject="mx-216(2)" category="system" desc="power Supply 2 is Missing or Failed" lastupdatetime=" :46:14" state="active" severity="info"> </ALARM> </ALARM_LIST> <VIEW name="monitor" scope="rf-planning"> <ALARM_LIST count="16"> <ALARM alarmobject="ap5:ap-1-10" category="system" desc="ap: AP5:AP-1-10 with serial number ( ) is Down" lastupdate- Time=" :22:51" state="active" severity="critical"> </ALARM> <ALARM alarmobject="ap6:ap06" category="system" desc="ap: AP6:AP06 with serial number ( ) is Down" lastupdate- Time=" :22:51" state="active" severity="critical"> </ALARM> <ALARM alarmobject="ap1:ap(22)" category="system" desc="ap: AP1:AP(22) with serial number ( ) is Down" lastupdate- Time=" :22:51" state="active" severity="critical"> </ALARM> <ALARM alarmobject="mx-20(1)" category="security" desc="a Suspect AP, MAC: 00:0b:0e:24:40:84 (Trapeze), SSID: symbio_guest, Radio </ALARM_LIST> </Alarms_Details> If the query results in more than 5000 alarms, the response only returns the last 5K alarms. The sort item is lastupdatetime. Get list of device inventory If you wish to continue with the query, you must narrow the scope of the query criteria. The following is a sample query URI for retrieving a list of MXs and access points: : rf-plann ing) : The parameter, scope, is required.. : 8 Web Services Copyright 2011, Juniper Networks, Inc.

9 <?xml version="1.0" encoding="utf-8"?> <DEVICES time=" :36:29"> <VIEW name="configure" scope="equipment"> <DEVICE mac_address="00:0b:0e:56:0f:1a" model="mxr-2" system_ip=" /27" sw_version=" " location="""" name="mxr2-77" license="access Points:4" object-id="com.trapeze.appl.shared.mdl.chassis: 397" contact="" serial_number=" " /> <DEVICE mac_address="00:00:00:00:00:00" model="mp-422" system_ip="" name="mxr277-ap01" object-id="com.trapeze.appl.shared.mdl.distributedap: 826" serial_number="123"> <RADIOS_INFO radio_1_type="802.11b "radio_2_mac_address="00:00:00:00:00:00" radio_2_type="802.11b "radio_1_mac_address="00:00:00:00:00:00" /> </DEVICE> <VIEW name="configure" scope="rf-planning"> <DEVICE mac_address="00:00:00:00:00:00" model="mp-422" system_ip="" name="ap-l1-a1-2.4g~-1" object-id="com.trapeze.appl.shared.mdl.distributedap: 5097" serial_number="auto-rfplan-5097"> <RADIOS_INFO radio_1_type="802.11b" radio_2_mac_address="00:00:00:00:00:00" radio_2_type="802.11b" radio_1_mac_address="00:00:00:00:00:00" /> </DEVICE> <DEVICE mac_address="00:0b:0e:3a:cd:42" model="mx-200" system_ip=" /27" sw_version=" " location="""" name="mx-200(1)" license="access Points:32" object-id="com.trapeze.appl.shared.mdl.chassis: 3401" contact="" serial_number=" " /> </DEVICES> This XML query returns similar results as RM inventory report. Client Summary all(equipment rf-planning) Copyright 2011, Juniper Networks, Inc. Web Services 9

10 "scope" parameter is required, the value of the scope must be all, equipment or rf-planning. Request: Statistics <CLIENT-SUMMARY xmlns=" <VIEW name="monitor" scope="equipment"> <CLIENTS-BY-SSID> <SSID name="zxc" count="1" /> </CLIENTS-BY-SSID> <CLIENTS-BY-ACCESSTYPE> <ACCESS-TYPE name="dot1x" count="1" /> </CLIENTS-BY-ACCESSTYPE> <CLIENS-BY-RADIOTYPE> <RADIO-TYPE name="802.11g" count="1" /> </CLIENS-BY-RADIOTYPE> </VIEW > <VIEW name="monitor" scope="rf-planning"> <CLIENTS-BY-SSID> <SSID name="zxc" count="1" /> </CLIENTS-BY-SSID> <CLIENTS-BY-ACCESSTYPE> <ACCESS-TYPE name="dot1x" count="1" /> </CLIENTS-BY-ACCESSTYPE> <CLIENS-BY-RADIOTYPE> <RADIO-TYPE name="802.11g" count="1" /> </CLIENS-BY-RADIOTYPE> </CLIENT-SUMMARY> pment rf-planning)&time= xxx "scope" and "time" parameter is required. 10 Web Services Copyright 2011, Juniper Networks, Inc.

11 The value of the scope must be all, equipment or rf-planning. The time is to represent the specified number of seconds since the standard base time known as "the epoch", namely January 1, 1970, 00:00:00 GMT Status Summary <TIMESERIES-SUMMARY xmlns=" - <VIEW name="monitor" scope="equipment"> <SESSION-STATISTICS authorizedclients="0" clientdot1xerrors="0" clientassocerrors="0" clientauthenerrors="0" clientauthorerrors="0" /> <TRAFFIC-STATISTICS octetin="120237" octetout="109197" octettotal="229434" time=" " /> - <VIEW name="monitor" scope="rf-planning"> <SESSION-STATISTICS authorizedclients="1" clientdot1xerrors="0" clientassocerrors="0" clientauthenerrors="0" clientauthorerrors="0" /> <TRAFFIC-STATISTICS octetin="60117" octetout="54597" octettotal="114714" time=" " /> </TIMESERIES-SUMMARY> /v1/monitor/status-summary?scope=all(equipment rf-planning) "scope" parameter is required. /v1/monitor/status-summary?scope%3dall <STATUS-SUMMARY xmlns= > Copyright 2011, Juniper Networks, Inc. Web Services 11

12 <VIEW name="monitor" scope="equipment"> <MXS down="0" up="5" disabled="0" unknown="0" /> <APS down="3" up="1" disabled="0" unknown="0" /> <RADIOS down="5" up="2" disabled="0" unknown="0" /> <VIEW name="monitor" scope="rf-planning"> <MXS down="0" up="1" disabled="0" unknown="0" /> <APS down="1" up="0" disabled="0" unknown="0" /> <RADIOS down="2" up="0" disabled="0" unknown="0" /> </STATUS-SUMMARY> Summary ipment rf-planning).request Parameters "scope" parameter is required, the value of the scope must be all, equipment or rf-planning - <MONITOR-SUMMARY xmlns=" - <VIEW name="monitor" scope="equipment"> - <ALARMS-SUMMARY> - <CATEGORY-COUNTS> <CATEGORY name="system" critical="1" major="1" minor="0" info="0" total="2" /> <CATEGORY name="performance" critical="0" major="0" minor="2" info="0" total="2" /> <CATEGORY name="client" critical="0" major="0" minor="0" info="0" total="0" /> 12 Web Services Copyright 2011, Juniper Networks, Inc.

13 <CATEGORY name="security" critical="0" major="1" minor="0" info="50" total="51" /> <CATEGORY name="total" critical="1" major="2" minor="2" info="50" total="55" /> </CATEGORY-COUNTS> - <TYPE-COUNTS> <TYPE name="ap Fingerprint Check" category="0" severity="0" active="1" cleared="0" /> <TYPE name="ap Status Alarm" category="0" severity="0" active="1" cleared="0" /> <TYPE name="ad-hoc User Detected" category="3" severity="3" active="1" cleared="9" /> <TYPE name="low RSSI" category="1" severity="1" active="1" cleared="0" /> <TYPE name="low SNR" category="1" severity="1" active="1" cleared="0" /> <TYPE name="suspect AP Detected" category="3" severity="3" active="50" cleared="9" /> </TYPE-COUNTS> - <SECURITY-COUNTS> <DOS /> - <IDS> <SECURITY-COUNT name="suspect AP Detected" count="50" /> <SECURITY-COUNT name="ad-hoc User Detected" count="1" /> </IDS> </SECURITY-COUNTS> </ALARMS-SUMMARY> - <CLIENT-SUMMARY> - <CLIENTS-BY-SSID> <SSID name="ssid-belinda1" count="1" /> </CLIENTS-BY-SSID> - <CLIENTS-BY-ACCESSTYPE> <ACCESS-TYPE name="dot1x" count="1" /> </CLIENTS-BY-ACCESSTYPE> - <CLIENTS-BY-RADIOTYPE> <RADIO-TYPE name="802.11g" count="1" /> </CLIENTS-BY-RADIOTYPE> </CLIENT-SUMMARY> Copyright 2011, Juniper Networks, Inc. Web Services 13

14 - <STATUS-SUMMARY> <MXS down="0" up="1" disabled="0" unknown="0" /> <APS down="1" up="1" disabled="0" unknown="0" /> <RADIOS down="1" up="2" disabled="0" unknown="0" /> </STATUS-SUMMARY> - <VIEW name="monitor" scope="rf-planning"> - <ALARMS-SUMMARY> - <CATEGORY-COUNTS> <CATEGORY name="system" critical="1" major="0" minor="0" info="1" total="2" /> <CATEGORY name="performance" critical="0" major="0" minor="13" info="0" total="13" /> <CATEGORY name="client" critical="0" major="0" minor="0" info="0" total="0" /> <CATEGORY name="security" critical="0" major="6" minor="0" info="13" total="19" /> <CATEGORY name="total" critical="1" major="6" minor="13" info="14" total="34" /> </CATEGORY-COUNTS> - <TYPE-COUNTS> <TYPE name="ap Status Alarm" category="0" severity="0" active="1" cleared="6" /> <TYPE name="ad-hoc User Detected" category="3" severity="3" active="4" cleared="22" /> <TYPE name="low RSSI" category="1" severity="1" active="4" cleared="6" /> <TYPE name="low SNR" category="1" severity="1" active="9" cleared="3" /> <TYPE name="power Supply Status Check" category="0" severity="0" active="1" cleared="0" /> <TYPE name="rogue AP Client Detected" category="3" severity="3" active="2" cleared="7" /> <TYPE name="suspect AP Detected" category="3" severity="3" active="13" cleared="22" /> </TYPE-COUNTS> - <SECURITY-COUNTS> <DOS /> 14 Web Services Copyright 2011, Juniper Networks, Inc.

15 - <IDS> <SECURITY-COUNT name="rogue AP Client Detected" count="2" /> <SECURITY-COUNT name="suspect AP Detected" count="13" /> <SECURITY-COUNT name="ad-hoc User Detected" count="4" /> </IDS> </SECURITY-COUNTS> </ALARMS-SUMMARY> - <CLIENT-SUMMARY> <CLIENTS-BY-SSID /> <CLIENTS-BY-ACCESSTYPE /> <CLIENTS-BY-RADIOTYPE /> </CLIENT-SUMMARY> - <STATUS-SUMMARY> <MXS down="0" up="0" disabled="0" unknown="0" /> <APS down="0" up="0" disabled="0" unknown="0" /> <RADIOS down="0" up="0" disabled="0" unknown="0" /> </STATUS-SUMMARY> </MONITOR-SUMMARY> Server Status Not applicable. Not applicable. <?xml version="1.0" encoding="utf-8"?> <SERVER-STATUS xmlns=" BUILD-NUMBER=" " BUILD-DATE="03/10/11" PRODUCT-NAME="RingMaster" Copyright 2011, Juniper Networks, Inc. Web Services 15

16 Devices Summary PRODUCT-SHORT-NAME="RingMaster" PLAN-NAME="Default" UPTIME=" " HOST-NAME="lchcan2"></SERVER-STATUS> Comments: the BUILD_DATE is in the short format, as MM/DD/YY. devices-summary?scope=all(equipment rf-planning) "scope" parameter is required. (The value of the scope must be all, equipment or rf-planning) View privilege <DEVICES-SUMMARY xmlns=" <VIEW name="configure" scope="equipment"> <MXS> <MX model="mxr-2" managed="2" unmanaged="0"/> </MXS> <APS> <AP model="mp-71" managed="1" unmanaged="0"/> <AP model="mp-432" managed="3" unmanaged="0"/> <TOP-MX-BY-CLIENTS> <MX name="mx1" AuthorizedClients="1" Throughput="67648" TxMulticastOctets=" " TxUnicastOctets=" " RxOctets=" " Traffic=" " ApLocation="0" /> </TOP-MX-BY-CLIENTS> <TOP-MX-BY-TRAFFIC> <MX name="mx1" AuthorizedClients="1" Throughput="67648" TxMulticastOctets=" " TxUnicastOctets=" " RxOctets=" " Traffic=" " ApLocation="0" /> </TOP-MX-BY-TRAFFIC> 16 Web Services Copyright 2011, Juniper Networks, Inc.

17 <VIEW name="monitor" scope="rf-planning" /> </TOP-SUMMARY> Find MX find-mx?scope=equipment&name=xxx&ip-address=xxx&serial-number=xxx&status=xxx. Scope is always set to "equipment". If no search criteria is provided, all results are returned. <FIND-MX xmlns=" toomanymatches="false" limitedaccess="true"> <VIEW name="monitor" scope="equipment"> <Device object-id="mobility Exchange:1734" name="mxr2-76" ip-address=" " serial-number=" " model="mxr-2" status="up" /> <Device object-id="mobility Exchange:397" name="mxr2-77" ip-address=" " serial-number=" " model="mxr-2" status="up" /> <Device object-id="mobility Exchange:5954" name="mx1" ip-address=" " serial-number=" " model="mxr-2" status="up" /> </FIND-MX> Find AP find-ap?scope=equipment&name=xxx&ip-address=xxx&serial-number=xxx&model=xxx. Copyright 2011, Juniper Networks, Inc. Web Services 17

18 Scope is always set to "equipment". If no search criteria is provided, all results are returned. <FIND-AP xmlns=" toomanymatches="false" limitedaccess="true"> <VIEW name="all" scope="equipment"> <DEVICE object-id="distributed AP:826" name="mxr277-ap01" serial-number="123" model="mp-422" status="down" /> <DEVICE object-id="distributed AP:6410" name="ap01" serial-number=" " model="mp-422" status="up" /> <DEVICE object-id="distributed AP:6419" name="ap05" serial-number=" " model="mp-71" status="down" /> </FIND-AP> Find Site find-site?scope=rf-planning&name=xxx Scope is always set to "rf-planning". If no search criteria is provided, all results are returned. <FIND-SITE xmlns=" toomanymatches="false" limitedaccess="false"> <VIEW name="monitor" scope="rf-planning"> 18 Web Services Copyright 2011, Juniper Networks, Inc.

19 <SITE object-id="site:5072" name="sitea" network-plan="yourplan" /> </FIND-SITE> Find Building find-building?scope=rf-planning&name=xxx Scope is always set to "rf-planning". If no search criteria is provided, all results are returned. Request <FIND-BUILDING xmlns=" toomanymatches="false" limitedaccess="true"> <VIEW name="monitor" scope="rf-planning"> <BUILDING object-id="building:5080" name="building1" network-plan="yourplan" site="sitea" /> </FIND-BUILDING> Find Floor find-floor?scope=rf-planning&name=xxx Scope is always set to "rf-planning". If no search criteria is provided, all results are returned. Copyright 2011, Juniper Networks, Inc. Web Services 19

20 Find Outdoor Area <FIND-FLOOR xmlns=" toomanymatches="false" limitedaccess="true"> <VIEW name="monitor" scope="rf-planning"> <FLOOR object-id="floor:5082" name="floor1" network-plan="yourplan" site="sitea" building="building1" /> </FIND-FLOOR> find-outdoorarea?scope=rf-planning&name=xxx Scope is always set to "rf-planning". If no search critiera is provided, all the outdoor areas are returned. Request g: <FIND-OutdoorArea xmlns=" toomanymatches="false" limitedaccess="true"> <VIEW name="monitor" scope="rf-planning"> <OUTDOORAREA object-id="outdoor Area:15360" name="oa1" site="sitea" network-plan="yourplan" /> <OUTDOORAREA object-id="outdoor Area:15366" name="oa2" site="sitea" network-plan="yourplan" /> </FIND-OutdoorArea> Find Client 20 Web Services Copyright 2011, Juniper Networks, Inc.

21 scope=all(equipment rf-planning)&user-name=xxx&mac-address=xxx&ip-address=xxx. Scope is one of "equipment rf-planning all". Besides scope, at least one of the search critieral must be provided. scope%3dall%26user-name%3dbelinda1 <FIND-CLIENT-RESULT xmlns=" toomanymatches="false" limitedaccess="true"> <VIEW name="monitor" scope="equipment"> <USER-SESSION session-id="sess b8a" user-name="belinda1" ip-addr=" " mac-addr="00:1b:11:e8:d3:ab" ssid="ssid-belinda1" session-state="active" start-time=" " access-type="dot1x" auth-server=" " auth-protocol="passthru" collected-time=" " op-rate="36" snr="48" rssi="-47" Scope is always set to "rf-planning". If no search critiera is provided, all the outdoor areas are returned. Request g: <FIND-OutdoorArea xmlns=" toomanymatches="false" limitedaccess="true"> <VIEW name="monitor" scope="rf-planning"> Copyright 2011, Juniper Networks, Inc. Web Services 21

22 <OUTDOORAREA object-id="outdoor Area:15360" name="oa1" site="sitea" network-plan="yourplan" /> <OUTDOORAREA object-id="outdoor Area:15366" name="oa2" site="sitea" network-plan="yourplan" /> </FIND-OutdoorArea> device-ip-address=" " device-name="mx1" device-obj-id="mobility Exchange:5954" radio-obj-id="productspecific Radio:6413" device-enable-pwd=" c04140b" device-authmode="legacy" /> <VIEW name="monitor" scope="rf-planning"> <USER-SESSION session-id="sess b8a" user-name="belinda1" ip-addr=" " mac-addr="00:1b:11:e8:d3:ab" ssid="ssid-belinda1" session-state="active" start-time=" " access-type="dot1x" auth-server=" " auth-protocol="passthru" collected-time=" " op-rate="36" snr="48" rssi="-47" device-ip-address=" " device-name="mx1" device-obj-id="mobility Exchange:5954" radio-obj-id="productspecific Radio:6413" device-enable-pwd=" c04140b" device-authmode="legacy" /> </FIND-CLIENT-RESULT> Error Handling The RingMaster 7.6 Web Services API returns standard HTTP errors. The following errors have been identified: Code 400: Bad request Code 403: Forbidden Code 503: Service Unavailable When an error is returned, the following XML fragment is passed in the HTML body: <ERROR> <MESSAGE>The error message</message> </ERROR> 22 Web Services Copyright 2011, Juniper Networks, Inc.

Feature Guide. RingMaster Software Version 7.4 Mobility System Software Version 7.3

Feature Guide. RingMaster Software Version 7.4 Mobility System Software Version 7.3 Feature Guide RingMaster Software Version 7.4 Mobility System Software Version 7.3 Trapeze Networks, Inc. 5753 W. Las Positas Blvd. Pleasanton, CA 94588 Tel: +1 925-474-2200 Fax: +1 925-251-0642 Toll-Free:

More information

Release Notes for RingMaster Version 7.4.5.2

Release Notes for RingMaster Version 7.4.5.2 Release Notes for RingMaster Version 7.4.5.2 Juniper Networks recommends that you familiarize yourself with these release notes and the Juniper Networks RingMaster Quick Start Guide, the Juniper RingMaster

More information

Release Notes for RingMaster Version 9.1.1.1 (MR1)

Release Notes for RingMaster Version 9.1.1.1 (MR1) Release Notes for RingMaster Version 9.1.1.1 (MR1) Feedback and Support.................................................... 2 What's New in RingMaster Release 9.1.1.1....................................

More information

NMS300 Network Management System

NMS300 Network Management System NMS300 Network Management System User Manual June 2013 202-11289-01 350 East Plumeria Drive San Jose, CA 95134 USA Support Thank you for purchasing this NETGEAR product. After installing your device, locate

More information

Wind River. Intelligent Device Platform XT EMS Profile EMS DEVICE MANAGEMENT USER'S GUIDE WIND RIVER 1.0

Wind River. Intelligent Device Platform XT EMS Profile EMS DEVICE MANAGEMENT USER'S GUIDE WIND RIVER 1.0 Wind River Intelligent Device Platform XT EMS Profile WIND RIVER EMS DEVICE MANAGEMENT USER'S GUIDE 1.0 Copyright Notice Copyright 2014 Wind River Systems, Inc. All rights reserved. No part of this publication

More information

HireDesk API V1.0 Developer s Guide

HireDesk API V1.0 Developer s Guide HireDesk API V1.0 Developer s Guide Revision 1.4 Talent Technology Corporation Page 1 Audience This document is intended for anyone who wants to understand, and use the Hiredesk API. If you just want to

More information

Neuron Event Manager. USER S GUIDE Product Version: 1.17.1

Neuron Event Manager. USER S GUIDE Product Version: 1.17.1 Neuron Event Manager USER S GUIDE Product Version: 1.17.1 Copyright Copyright 1995-2014 Halcyon Monitoring Solutions, Inc. All rights reserved. This product and related documentation is protected by copyright

More information

RingMaster Software. Monitoring and Management Guide. Release 7.5. 30 June 2011 (Release Date) Part Number: 730-9502-0232, Revision C

RingMaster Software. Monitoring and Management Guide. Release 7.5. 30 June 2011 (Release Date) Part Number: 730-9502-0232, Revision C RingMaster Software Monitoring and Management Guide Release 7.5 30 June 2011 (Release Date) Part Number: 730-9502-0232, Revision C Juniper Network, Inc. 1194 N. Mathilda Avenue Sunnyvale, CA 94089 USA

More information

Getting Started Guide for Developing tibbr Apps

Getting Started Guide for Developing tibbr Apps Getting Started Guide for Developing tibbr Apps TABLE OF CONTENTS Understanding the tibbr Marketplace... 2 Integrating Apps With tibbr... 2 Developing Apps for tibbr... 2 First Steps... 3 Tutorial 1: Registering

More information

Managing Qualys Scanners

Managing Qualys Scanners Q1 Labs Help Build 7.0 Maintenance Release 3 documentation@q1labs.com Managing Qualys Scanners Managing Qualys Scanners A QualysGuard vulnerability scanner runs on a remote web server. QRadar must access

More information

FileMaker Server 10 Help

FileMaker Server 10 Help FileMaker Server 10 Help 2007-2009 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker, the file folder logo, Bento and the Bento logo

More information

SHODAN for Penetration Testers. Michael theprez98 Schearer

SHODAN for Penetration Testers. Michael theprez98 Schearer SHODAN for Penetration Testers Michael theprez98 Schearer SHODAN for Penetration Testers What is SHODAN? Basic Operations Penetration Testing Case Study 1: Cisco Devices Case Study 2: Default Passwords

More information

Administrator Operations Guide

Administrator Operations Guide Administrator Operations Guide 1 What You Can Do with Remote Communication Gate S 2 Login and Logout 3 Settings 4 Printer Management 5 Log Management 6 Firmware Management 7 Installation Support 8 Maintenance

More information

User Manual. Onsight Management Suite Version 5.1. Another Innovation by Librestream

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

More information

ADSP Infrastructure Management Compliance Audit. How-To Guide

ADSP Infrastructure Management Compliance Audit. How-To Guide ADSP Infrastructure Management Compliance Audit How-To Guide Zebra and the Zebra head graphic are registered trademarks of ZIH Corp. The Symbol logo is a registered trademark of Symbol Technologies, Inc.,

More information

Notification messages

Notification messages AXIS P8221 Network I/O Audio Module TECHNICAL NOTE Notification messages How to integrate AXIS P8221 Updated: August 19, 2011 Rev: 1.1 TABLE OF CONTENTS 1 INTRODUCTION 3 1.1 HTTP and TCP 3 1.2 VAPIX 3

More information

IBM Security QRadar SIEM Version 7.1.0 MR1. Vulnerability Assessment Configuration Guide

IBM Security QRadar SIEM Version 7.1.0 MR1. Vulnerability Assessment Configuration Guide IBM Security QRadar SIEM Version 7.1.0 MR1 Vulnerability Assessment Configuration Guide Note: Before using this information and the product that it supports, read the information in Notices and Trademarks

More information

Specify the location of an HTML control stored in the application repository. See Using the XPath search method, page 2.

Specify the location of an HTML control stored in the application repository. See Using the XPath search method, page 2. Testing Dynamic Web Applications How To You can use XML Path Language (XPath) queries and URL format rules to test web sites or applications that contain dynamic content that changes on a regular basis.

More information

End of Sale/End of Life Report Tool Usage Notes for CiscoWorks NCM 1.6

End of Sale/End of Life Report Tool Usage Notes for CiscoWorks NCM 1.6 End of Sale/End of Life Report Tool Usage Notes for CiscoWorks NCM 1.6 October 2010, These usage notes provide information on using the End of Sale/End of Life Report tool that is available with CiscoWorks

More information

Architecture and Data Flow Overview. BlackBerry Enterprise Service 10 721-08877-123 Version: 10.2. Quick Reference

Architecture and Data Flow Overview. BlackBerry Enterprise Service 10 721-08877-123 Version: 10.2. Quick Reference Architecture and Data Flow Overview BlackBerry Enterprise Service 10 721-08877-123 Version: Quick Reference Published: 2013-11-28 SWD-20131128130321045 Contents Key components of BlackBerry Enterprise

More information

Avigilon Control Center System Integration Guide

Avigilon Control Center System Integration Guide Avigilon Control Center System Integration Guide with STENTOFON AlphaCom INT-STENTOFON-B-Rev3 Copyright 2013 Avigilon. All rights reserved. No copying, distribution, publication, modification, or incorporation

More information

Fax User Guide 07/31/2014 USER GUIDE

Fax User Guide 07/31/2014 USER GUIDE Fax User Guide 07/31/2014 USER GUIDE Contents: Access Fusion Fax Service 3 Search Tab 3 View Tab 5 To E-mail From View Page 5 Send Tab 7 Recipient Info Section 7 Attachments Section 7 Preview Fax Section

More information

PRINT FLEET MANAGER USER MANUAL

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

More information

www.novell.com/documentation Jobs Guide Identity Manager 4.0.1 February 10, 2012

www.novell.com/documentation Jobs Guide Identity Manager 4.0.1 February 10, 2012 www.novell.com/documentation Jobs Guide Identity Manager 4.0.1 February 10, 2012 Legal Notices Novell, Inc. makes no representations or warranties with respect to the contents or use of this documentation,

More information

HTTP Reverse Proxy Scenarios

HTTP Reverse Proxy Scenarios Sterling Secure Proxy HTTP Reverse Proxy Scenarios Version 3.4 Sterling Secure Proxy HTTP Reverse Proxy Scenarios Version 3.4 Note Before using this information and the product it supports, read the information

More information

Creating Connection with Hive

Creating Connection with Hive Creating Connection with Hive Intellicus Enterprise Reporting and BI Platform Intellicus Technologies info@intellicus.com www.intellicus.com Creating Connection with Hive Copyright 2010 Intellicus Technologies

More information

FileMaker 13. ODBC and JDBC Guide

FileMaker 13. ODBC and JDBC Guide FileMaker 13 ODBC and JDBC Guide 2004 2013 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker and Bento are trademarks of FileMaker, Inc.

More information

Business Interaction Server. Configuration Guide. 10300685-000 Rev A

Business Interaction Server. Configuration Guide. 10300685-000 Rev A Business Interaction Server Configuration Guide 10300685-000 Rev A 2008 Kofax Image Products, Inc., 16245 Laguna Canyon Road, Irvine, California 92618, U.S.A. All rights reserved. Use is subject to license

More information

IBM Security QRadar Version 7.2.5. Vulnerability Assessment Configuration Guide IBM

IBM Security QRadar Version 7.2.5. Vulnerability Assessment Configuration Guide IBM IBM Security QRadar Version 7.2.5 Vulnerability Assessment Configuration Guide IBM Note Before using this information and the product that it supports, read the information in Notices on page 93. Product

More information

NMS300 Network Management System Application

NMS300 Network Management System Application NMS300 Network Management System Application Quick Start Guide December 2014 202-11288-04 350 East Plumeria Drive San Jose, CA 95134 USA Support Thank you for purchasing this NETGEAR product. After installing

More information

WildFire Reporting. WildFire Administrator s Guide 55. Copyright 2007-2015 Palo Alto Networks

WildFire Reporting. WildFire Administrator s Guide 55. Copyright 2007-2015 Palo Alto Networks WildFire Reporting When malware is discovered on your network, it is important to take quick action to prevent spread of the malware to other systems. To ensure immediate alerts to malware discovered on

More information

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 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

More information

FileMaker 12. ODBC and JDBC Guide

FileMaker 12. ODBC and JDBC Guide FileMaker 12 ODBC and JDBC Guide 2004 2012 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker and Bento are trademarks of FileMaker, Inc.

More information

Secure Messaging Server Console... 2

Secure Messaging Server Console... 2 Secure Messaging Server Console... 2 Upgrading your PEN Server Console:... 2 Server Console Installation Guide... 2 Prerequisites:... 2 General preparation:... 2 Installing the Server Console... 2 Activating

More information

Phone Inventory 1.0 (1000) Installation and Administration Guide

Phone Inventory 1.0 (1000) Installation and Administration Guide Phone Inventory 1.0 (1000) Installation and Administration Guide 2010 VoIP Integration June 23, 2010 Table of Contents Product Overview... 3 Requirements... 3 Application Requirements... 3 Call Manager...

More information

FileMaker Server 11. FileMaker Server Help

FileMaker Server 11. FileMaker Server Help FileMaker Server 11 FileMaker Server Help 2010 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker is a trademark of FileMaker, Inc. registered

More information

Wireless LAN Services

Wireless LAN Services Wireless LAN Services Configuration Guide for RingMaster Software Release 7.6 30 September 2011 (Release Date) Copyright 2011, Juniper Networks, Inc. Juniper Network, Inc. 1194 N. Mathilda Avenue Sunnyvale,

More information

This section describes how to set up, find and delete community strings.

This section describes how to set up, find and delete community strings. SNMP V1/V2c setup SNMP community strings, page 1 SNMP notification destinations, page 4 SNMP community strings Set up community string This section describes how to set up, find and delete community strings.

More information

EQUELLA. Blackboard Learn Configuration Guide. Version 6.2

EQUELLA. Blackboard Learn Configuration Guide. Version 6.2 EQUELLA Blackboard Learn Configuration Guide Version 6.2 Document History Document No. Reviewed Finalised Published 1 11/12/2013 12/12/2013 12/12/2013 December 2013 edition. Information in this document

More information

FileMaker Server 12. FileMaker Server Help

FileMaker Server 12. FileMaker Server Help FileMaker Server 12 FileMaker Server Help 2010-2012 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker is a trademark of FileMaker, Inc.

More information

Management, Logging and Troubleshooting

Management, Logging and Troubleshooting CHAPTER 15 This chapter describes the following: SNMP Configuration System Logging SNMP Configuration Cisco NAC Guest Server supports management applications monitoring the system over SNMP (Simple Network

More information

Configuring 24 x 7 Monitoring in WiFiLAN

Configuring 24 x 7 Monitoring in WiFiLAN Configuring 24 x 7 Monitoring in WiFiLAN A Tutorial Version 1.0 Copyright 2006, Wifi-Soft Solutions All rights reserved. 2006, WIFI-SOFT SOLUTIONS PVT. LTD. 1 Introduction Unlike wired networks, wireless

More information

mypro Installation and Handling Manual Version: 7

mypro Installation and Handling Manual Version: 7 mypro Installation and Handling Manual Version: 7 Date: JAN 2016 Thank you for using mypro on your PC. myscada is a full featured HMI/SCADA system with advanced options such as vector graphics views, advanced

More information

BlackBerry Enterprise Service 10. Universal Device Service Version: 10.2. Administration Guide

BlackBerry Enterprise Service 10. Universal Device Service Version: 10.2. Administration Guide BlackBerry Enterprise Service 10 Universal Service Version: 10.2 Administration Guide Published: 2015-02-24 SWD-20150223125016631 Contents 1 Introduction...9 About this guide...10 What is BlackBerry

More information

Designing RESTful Web Applications

Designing RESTful Web Applications Ben Ramsey php works About Me: Ben Ramsey Proud father of 7-month-old Sean Organizer of Atlanta PHP user group Founder of PHP Groups Founding principal of PHP Security Consortium Original member of PHPCommunity.org

More information

Grandstream Networks, Inc.

Grandstream Networks, Inc. Grandstream Networks, Inc. BroadWorks Xsi Directories and Call Logs User Guide Index INTRODUCTION... 3 BROADWORKS XTENDED SERVICES INTRODUCTION... 4 ARCHITECTURE AND MESSAGING... 4 BROADWORKS XSI DIRECTORY

More information

ZENworks 11 Support Pack 4 Management Zone Settings Reference. May 2016

ZENworks 11 Support Pack 4 Management Zone Settings Reference. May 2016 ZENworks 11 Support Pack 4 Management Zone Settings Reference May 2016 Legal Notices For information about legal notices, trademarks, disclaimers, warranties, export and other use restrictions, U.S. Government

More information

Installing, Uninstalling, and Upgrading Service Monitor

Installing, Uninstalling, and Upgrading Service Monitor CHAPTER 2 Installing, Uninstalling, and Upgrading Service Monitor This section contains the following topics: Preparing to Install Service Monitor, page 2-1 Installing Cisco Unified Service Monitor, page

More information

WISE-4000 Series. WISE IoT Wireless I/O Modules

WISE-4000 Series. WISE IoT Wireless I/O Modules WISE-4000 Series WISE IoT Wireless I/O Modules Bring Everything into World of the IoT WISE IoT Ethernet I/O Architecture Public Cloud App Big Data New WISE DNA Data Center Smart Configure File-based Cloud

More information

Symantec Endpoint Protection Shared Insight Cache User Guide

Symantec Endpoint Protection Shared Insight Cache User Guide Symantec Endpoint Protection Shared Insight Cache User Guide Symantec Endpoint Protection Shared Insight Cache User Guide The software described in this book is furnished under a license agreement and

More information

Lepide Active Directory Self Service. Configuration Guide. Follow the simple steps given in this document to start working with

Lepide Active Directory Self Service. Configuration Guide. Follow the simple steps given in this document to start working with Lepide Active Directory Self Service Configuration Guide 2014 Follow the simple steps given in this document to start working with Lepide Active Directory Self Service Table of Contents 1. Introduction...3

More information

Request Manager Installation and Configuration Guide

Request Manager Installation and Configuration Guide Request Manager Installation and Configuration Guide vcloud Request Manager 1.0.0 This document supports the version of each product listed and supports all subsequent versions until the document is replaced

More information

Configuring SonicWALL TSA on Citrix and Terminal Services Servers

Configuring SonicWALL TSA on Citrix and Terminal Services Servers Configuring on Citrix and Terminal Services Servers Document Scope This solutions document describes how to install, configure, and use the SonicWALL Terminal Services Agent (TSA) on a multi-user server,

More information

RPM Utility Software. User s Manual

RPM Utility Software. User s Manual RPM Utility Software User s Manual Table of Contents 1. Introduction...1 2. Installation...2 3. RPM Utility Interface...4 1. Introduction General RPM Utility program is an RPM monitoring, and management

More information

Sentinel EMS v7.1 Web Services Guide

Sentinel EMS v7.1 Web Services Guide Sentinel EMS v7.1 Web Services Guide ii Sentinel EMS Web Services Guide Document Revision History Part Number 007-011157-001, Revision E. Software versions 7.1 and later. Revision Action/Change Date A

More information

Introduction to Junos Space Network Director

Introduction to Junos Space Network Director Introduction to Junos Space Network Director Release 2.0 Published: 2015-02-12 Juniper Networks, Inc. 1194 North Mathilda Avenue Sunnyvale, California 94089 USA 408-745-2000 www.juniper.net All rights

More information

ACHIEVE THIRD PARTY MANAGEMENT (3PL)

ACHIEVE THIRD PARTY MANAGEMENT (3PL) ACHIEVE THIRD PARTY MANAGEMENT (3PL) USER MANUAL Version 6.5 PRESENTED BY ACHIEVE IT SOLUTIONS Copyright 2012-2016 by Achieve IT Solutions These materials are subject to change without notice. These materials

More information

Wavelink Avalanche Mobility Center Java Console User Guide. Version 5.3

Wavelink Avalanche Mobility Center Java Console User Guide. Version 5.3 Wavelink Avalanche Mobility Center Java Console User Guide Version 5.3 Revised 17/04/2012 ii Copyright 2012 by Wavelink Corporation. All rights reserved. Wavelink Corporation 10808 South River Front Parkway,

More information

Monitoring System Status

Monitoring System Status CHAPTER 14 This chapter describes how to monitor the health and activities of the system. It covers these topics: About Logged Information, page 14-121 Event Logging, page 14-122 Monitoring Performance,

More information

SNMP-1 Configuration Guide

SNMP-1 Configuration Guide SNMP-1 Configuration Guide You must configure the Net Logic Card before it can operate properly. You have two methods to configure the Net Logic Card: Using telnet or terminal. Using Telnet 1. Make sure

More information

Integrating Cisco ISE with GO!Enterprise MDM Quick Start

Integrating Cisco ISE with GO!Enterprise MDM Quick Start Integrating Cisco ISE with GO!Enterprise MDM Quick Start GO!Enterprise MDM Version 3.x Overview 1 Table of Contents Overview 3 Getting GO!Enterprise MDM Ready for ISE 5 Grant ISE Access to the GO!Enterprise

More information

THE CHALLENGE OF ADMINISTERING WEBSITES OR APPLICATIONS THAT REQUIRE 24/7 ACCESSIBILITY

THE CHALLENGE OF ADMINISTERING WEBSITES OR APPLICATIONS THAT REQUIRE 24/7 ACCESSIBILITY THE CHALLENGE OF ADMINISTERING WEBSITES OR APPLICATIONS THAT REQUIRE 24/7 ACCESSIBILITY As the constantly growing demands of businesses and organizations operating in a global economy cause an increased

More information

Fairsail REST API: Guide for Developers

Fairsail REST API: Guide for Developers Fairsail REST API: Guide for Developers Version 1.02 FS-API-REST-PG-201509--R001.02 Fairsail 2015. All rights reserved. This document contains information proprietary to Fairsail and may not be reproduced,

More information

WNMS Mobile Application

WNMS Mobile Application WNMS Mobile Application User s Guide Revision 1.0 18 October 2013 Copyright 2013 Deliberant www.deliberant.com Copyright 2013 Deliberant This user s guide and the software described in it are copyrighted

More information

Advantech WebAccess Device Driver Guide. BwSNMP Advantech WebAccess to SNMP Agent (Simple Network Management Protocol) Device Driver Guide

Advantech WebAccess Device Driver Guide. BwSNMP Advantech WebAccess to SNMP Agent (Simple Network Management Protocol) Device Driver Guide BwSNMP Advantech WebAccess to SNMP Agent (Simple Network Management Protocol) Device Driver Guide Version 5.0 rev 1 Advantech Corp., Ltd. Table of Contents BwSNMP Advantech WebAccess to SNMP Agent (Simple

More information

WatchGuard QMS End User Guide

WatchGuard QMS End User Guide WatchGuard QMS End User Guide WatchGuard QMS Overview The WatchGuard QMS device enables spam messages from the WatchGuard XCS to be directed to a local quarantine area that provides spam storage for each

More information

Grandstream Networks, Inc. GXP2130/2140/2160 Auto-configuration Plug and Play

Grandstream Networks, Inc. GXP2130/2140/2160 Auto-configuration Plug and Play Grandstream Networks, Inc. GXP2130/2140/2160 Auto-configuration Plug and Play Introduction: This is a technical guide targeted to PBX developers that want to learn the different mechanisms that GXP2130/2140/2160

More information

Abstract. Overview. Features and Benefits T P P A P P N O T E

Abstract. Overview. Features and Benefits T P P A P P N O T E T P P A P P N O T E Product: ShoreTel Trapeze Networks TPP: 10090 Date: March 2010 System version: ShoreTel 10.1 Trapeze MSS 7.0.3.0 Abstract Trapeze Networks provides the Wireless LAN infrastructure to

More information

Avaya WLAN Orchestration System

Avaya WLAN Orchestration System Avaya WLAN Orchestration System Overview The Avaya WLAN Orchestration System (WOS) is a wireless network management platform that provides full monitoring and management of the Avaya WLAN 9100 Series network

More information

It should be noted that the installer will delete any existing partitions on your disk in order to install the software required to use BLËSK.

It should be noted that the installer will delete any existing partitions on your disk in order to install the software required to use BLËSK. Installation Guide Introduction... 3 1. Booting from the CD... 4 2. Choose the server type to install... 5 3. Disk formatting and installation... 6 4. Confirmation of disk formatting... 7 5. Program installation...

More information

Software Development Kit (SDK)

Software Development Kit (SDK) QUICK START GUIDE UC Software 5.3.0 May 2015 3725-49126-001A Software Development Kit (SDK) Polycom, Inc. 1 Copyright 2015, Polycom, Inc. All rights reserved. No part of this document may be reproduced,

More information

CA Spectrum and CA Performance Center

CA Spectrum and CA Performance Center CA Spectrum and CA Performance Center Integration Guide CA Spectrum Release 9.3 - CA Performance Center r2.3.00 This Documentation, which includes embedded help systems and electronically distributed materials,

More information

Grandstream Networks, Inc. UCM6100 Series IP PBX Appliance CDR and REC API Guide

Grandstream Networks, Inc. UCM6100 Series IP PBX Appliance CDR and REC API Guide Grandstream Networks, Inc. UCM6100 Series IP PBX Appliance CDR and REC API Guide Index CDR REPORT... 3 CDR FILTER... 3 CDR REPORT DATA FIELDS... 4 CDR REPORT OPERATIONS... 5 CDR CSV FILE... 6 API CONFIGURATION...

More information

990-4584. APC by Schneider Electric www.apc.com Release Notes AP9537 Network Management Card. APC part number: 990-4584. Released: 26 October 2012

990-4584. APC by Schneider Electric www.apc.com Release Notes AP9537 Network Management Card. APC part number: 990-4584. Released: 26 October 2012 APC by Schneider Electric www.apc.com Release Notes AP9537 Network Management Card 990-4584 APC part number: 990-4584 Released: 26 October 2012 Affected Revision Levels: apc_hw05_aos_519.bin apc_hw05_x84p_510.bin

More information

FileMaker Server 12. Custom Web Publishing with XML

FileMaker Server 12. Custom Web Publishing with XML FileMaker Server 12 Custom Web Publishing with XML 2007 2012 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker and Bento are trademarks

More information

PowerShell Configuration Guide

PowerShell Configuration Guide PowerShell Configuration Guide Table of Contents Windows PowerShell 2 Prerequisites... 3 IIS Settings... 3 ActiveSync Server PowerShell Connection Settings... 8 NotifyMDM Version 3.x Windows PowerShell

More information

Products that are referred to in this document may be trademarks and/or registered trademarks of the respective owners.

Products that are referred to in this document may be trademarks and/or registered trademarks of the respective owners. 2015 GEOVAP, spol. s r. o. All rights reserved. GEOVAP, spol. s r. o. Cechovo nabrezi 1790 530 03 Pardubice Czech Republic +420 466 024 618 http://www.geovap.cz Products that are referred to in this document

More information

IBM WebSphere Partner Gateway V6.2.1 Advanced and Enterprise Editions

IBM WebSphere Partner Gateway V6.2.1 Advanced and Enterprise Editions IBM WebSphere Partner Gateway V6.2.1 Advanced and Enterprise Editions Integrated SFTP server 2011 IBM Corporation The presentation gives an overview of integrated SFTP server feature IntegratedSFTPServer.ppt

More information

Configuring Nex-Gen Web Load Balancer

Configuring Nex-Gen Web Load Balancer Configuring Nex-Gen Web Load Balancer Table of Contents Load Balancing Scenarios & Concepts Creating Load Balancer Node using Administration Service Creating Load Balancer Node using NodeCreator Connecting

More information

FileMaker Server 15. Custom Web Publishing Guide

FileMaker Server 15. Custom Web Publishing Guide FileMaker Server 15 Custom Web Publishing Guide 2004 2016 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker and FileMaker Go are trademarks

More information

How To Upgrade To Symantec Mail Security Appliance 7.5.5

How To Upgrade To Symantec Mail Security Appliance 7.5.5 Release notes Information Foundation 2007 Symantec Mail Security Appliance 7.5 Copyright 1999-2007 Symantec Corporation. All rights reserved. Before installing or upgrading: Migration issues If you are

More information

Chapter 8 Advanced Configuration

Chapter 8 Advanced Configuration Chapter 8 Advanced Configuration This chapter describes how to configure the advanced features of your ProSafe 802.11g Wireless VPN Firewall FVG318. Configuring Dynamic DNS If your network has a permanently

More information

Unified Security Management (USM) 5.2 Vulnerability Assessment Guide

Unified Security Management (USM) 5.2 Vulnerability Assessment Guide AlienVault Unified Security Management (USM) 5.2 Vulnerability Assessment Guide USM 5.2 Vulnerability Assessment Guide, rev 1 Copyright 2015 AlienVault, Inc. All rights reserved. The AlienVault Logo, AlienVault,

More information

Management Software. User s Guide AT-S84. For the AT-9000/24 Layer 2 Gigabit Ethernet Switch. Version 1.1. 613-000368 Rev. B

Management Software. User s Guide AT-S84. For the AT-9000/24 Layer 2 Gigabit Ethernet Switch. Version 1.1. 613-000368 Rev. B Management Software AT-S84 User s Guide For the AT-9000/24 Layer 2 Gigabit Ethernet Switch Version 1.1 613-000368 Rev. B Copyright 2006 Allied Telesyn, Inc. All rights reserved. No part of this publication

More information

Monitoring Software Services registered with science.canarie.ca

Monitoring Software Services registered with science.canarie.ca Monitoring Software Services registered with.canarie.ca Introduction The software registry at.canarie.ca monitors each of the contributed services via the API defined in Research Service Support for the

More information

Startup guide for Zimonitor

Startup guide for Zimonitor Page 1 of 5 Startup guide for Zimonitor This is a short introduction to get you started using Zimonitor. Start by logging in to your version of Zimonitor using the URL and username + password sent to you.

More information

Connecting to the Firewall Services Module and Managing the Configuration

Connecting to the Firewall Services Module and Managing the Configuration CHAPTER 3 Connecting to the Firewall Services Module and This chapter describes how to access the command-line interface and work with the configuration. This chapter includes the following sections: Connecting

More information

Junos Space. Junos Space Security Director Restful Web Services API Reference. Modified: 2016-06-10. Copyright 2016, Juniper Networks, Inc.

Junos Space. Junos Space Security Director Restful Web Services API Reference. Modified: 2016-06-10. Copyright 2016, Juniper Networks, Inc. Junos Space Junos Space Security Director Restful Web Services API Reference Modified: 2016-06-10 Juniper Networks, Inc. 1133 Innovation Way Sunnyvale, California 94089 USA 408-745-2000 www.juniper.net

More information

Junos Space. Network Director Quick Start Guide. Release 2.0. Published: 2015-02-13. Copyright 2015, Juniper Networks, Inc.

Junos Space. Network Director Quick Start Guide. Release 2.0. Published: 2015-02-13. Copyright 2015, Juniper Networks, Inc. Junos Space Network Director Quick Start Guide Release 2.0 Published: 2015-02-13 Juniper Networks, Inc. 1133 Innovation Way Sunnyvale, California 94089 USA 408-745-2000 www.juniper.net All rights reserved.

More information

Novell Identity Manager

Novell Identity Manager AUTHORIZED DOCUMENTATION Manual Task Service Driver Implementation Guide Novell Identity Manager 4.0.1 April 15, 2011 www.novell.com Legal Notices Novell, Inc. makes no representations or warranties with

More information

The data between TC Monitor and remote devices is exchanged using HTTP protocol. Monitored devices operate either as server or client mode.

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,

More information

Background Deployment 3.1 (1003) Installation and Administration Guide

Background Deployment 3.1 (1003) Installation and Administration Guide Background Deployment 3.1 (1003) Installation and Administration Guide 2010 VoIP Integration March 14, 2011 Table of Contents Product Overview... 3 Personalization... 3 Key Press... 3 Requirements... 4

More information

AP6511 First Time Configuration Procedure

AP6511 First Time Configuration Procedure AP6511 First Time Configuration Procedure Recommended Minimum Configuration Steps From the factory, all of the 6511 AP s should be configured with a shadow IP that starts with 169.254.xxx.xxx with the

More information

How to create custom dashboards in SNMPc OnLine 2007

How to create custom dashboards in SNMPc OnLine 2007 How to create custom dashboards in SNMPc OnLine 2007 The dashboard feature in SNMPc OnLine allows you to create a custom screen comprised of individual maps, event views and trend reports (widgets). This

More information

Chapter 3 Restricting Access From Your Network

Chapter 3 Restricting Access From Your Network Chapter 3 Restricting Access From Your Network This chapter describes how to use the content filtering and reporting features of the RangeMax Dual Band Wireless-N Router WNDR3300 to protect your network.

More information

Computer Networking LAB 2 HTTP

Computer Networking LAB 2 HTTP Computer Networking LAB 2 HTTP 1 OBJECTIVES The basic GET/response interaction HTTP message formats Retrieving large HTML files Retrieving HTML files with embedded objects HTTP authentication and security

More information

How To Manage A Wireless Network With Avaya Wlan 9100 Series (Wlan) System (Wos)

How To Manage A Wireless Network With Avaya Wlan 9100 Series (Wlan) System (Wos) Avaya WLAN Orchestration System Overview The Avaya WLAN Orchestration System (WOS) is a wireless network management platform that provides full monitoring and management of the Avaya WLAN 9100 Series network

More information

Safeguard Ecommerce Integration / API

Safeguard Ecommerce Integration / API Safeguard Ecommerce Integration / API Product Manual Version 3 Revision 1.11 Table of Contents 1. INTRODUCTION... 4 1.1 Available commands... 4 2. HOW THE ADMINISTRATION SYSTEM IS EXPECTED TO BE USED OPERATIONALLY...

More information

Web Browser Interface User s Guide

Web Browser Interface User s Guide Management Software AT-S62 Web Browser Interface User s Guide AT-8516F/SC, AT-8524M, AT-8524POE, AT-8550GB and AT-8550SP LAYER 2+ FAST ETHERNET SWITCHES VERSION 1.3.0 PN 613-000127 Rev A Copyright 2005

More information

Grandstream Networks, Inc.

Grandstream Networks, Inc. Grandstream Networks, Inc. XML Based Downloadable Phone Book Guide GXP21xx/GXP14xx/GXP116x IP Phone Version 2.0 XML Based Downloadable Phone Book Guide Index INTRODUCTION... 4 WHAT IS XML... 4 WHY XML...

More information