Cisco Provisioning Management Gateway

Size: px
Start display at page:

Download "Cisco Provisioning Management Gateway"

Transcription

1 The (PMG) is a generic provisioning and management application that provides the necessary workflow component between the Service Provider (SP) IT or Operations Support Systems (OSS) applications and the Cisco provisioning Broadband Access Center (BAC). These OSS applications include service management and custom care systems. This guide describes the PMG operations, components and concepts, and services in detail. While PMG is designed to be a generic product, this document describes the concepts specific to this release. This chapter describes PMG components and concepts as used in the current release. PMG Overview, page 1 PMG Event Subscription, page 3 PMG Logging, page 7 PMG Profiles, page 12 PMG Overview The PMG is a generic application suitable for any TR-069 deployment with the BAC. The application provides an Extensible Markup Language (XML) interface over Hypertext Transfer Protocol (HTTP) based Application Programming Interface (API) to the OSS that hides the complexity of the BAC API. The PMG provides the ability to customize a deployment by using a profile that defines the elements of the API (such as messages, parameters, and so on) that are applicable. The PMG provides the following functionality: Interfaces to the OSS system for device provisioning and management. XML messages for provisioning and management. Interacts with the BAC and HNB-GW. Interfaces with the HNB-GW via RADIUS for dynamic whitelist. Reports events to the subscriber/oss. Reports SNMP alarms for PMG service related events. Interfaces with the HNB-GW via RADIUS for dynamic whitelist. 1

2 PMG Overview For requests from the OSS, the PMG accepts TCP connections, receives an HTTP request with XML payload and provides response in HTTP response with XML payload. The connection can remain persistent for subsequent requests unless it is closed by the client or times out. For notifications, the PMG establishes a TCP connection to an IT / OSS / BSS, sends an HTTP request with XML payload and gets confirmation in HTTP response. The connection can remain persistent for subsequent notifications unless closed by target or times out. The PMG API is defined by a profile, which is an XML document that describes the inbound messages that the PMG supports. The XML schema provides a means for defining the structure, content, and semantics of the XML document. The XML schema for the profile specifies the inbound requests, the required elements, excluded elements, ignored elements, and the applicable parameters. These parameter elements include name, type, readable, writable, deletable, and source type along with optional validation and source key. PMG is installed as part of the OVA installation. This table lists a few standard HTTP status codes used in validating the PMG messages: Table 1: PMG HTTP Status Codes HTTP Status Codes 200 OK 400 Bad Request 503 Service Unavailable Description Occurs for any response containing a valid PMG message response (which in turn may contain an application layer error). Occurs when the request received does not contain a valid PMG message (for example, wrong encoding). Used when the service is unavailable, typically due to high load. The client must resend the service request. Following is the send.url for posting an XML message from the OSS or Poster to the PMG: name/ip address>:8083/pmg Where, <host name> is the host name of the Central Node. <IP address> is the eth1 of the Central Node is the port number. /pmg is the path. Digest authentication is supported in PMG. To add any new pmguser or pmgadmin user, log in to DCC UI as a pmgadmin and create new users. 2

3 PMG Message Flow PMG Message Flow The following is the flow of PMG messages: 1 OSS establishes an HTTP connection with the PMG service url. 2 OSS sends a message to PMG with the digest authentication credentials. 3 PMG receives the message and validates the content-type as application/xml or text/xml. 4 PMG validates that the message is valid XML. 5 PMG validates that the message complies with PMG XML Schema Definition (XSD). 6 PMG determines the message type by examining the root node name. 7 PMG determines if the message type is part of the configured profile. 8 PMG makes business orchestration by invoking PMG API. 9 Construct the response message and sent with HTTP 200 OK response message. LUS Organized Directory Structure for AP PM Files Currently all the APs upload PM files to LUS server under the same directory (base path). Therefore, if the number of APs are more, then the directory is unmanageable. This feature is added to categorize the APs based on AP's associated group, and upload all these APs PM files to LUS into a same sub directory under base path. (sub directory name will be the associated group name.) New property "ap.upload.url.suffix.group " is added in PMGServer.properties file to enable this feature. By default value of this is "NO_GROUP", means feature is disabled and the current behavior will continue. Possible values of this property are Area/FemtoGateway/Enterprise/Site (Possible FRM group types). For example: If ap.upload.url.suffix.group = Area, A P-1,2,3 are associated to Area-1, AP-4,5,6 are associated to Area-2, then the uploaded PM files will be structured as below: /opt/cscouls/files/uploads/area-1/ AP1-stats_1.xml AP1-stats_2.xml AP2-stats.xml AP3-stats.xml /opt/cscouls/files/uploads/area-2/ AP4-stats.xml AP5-stats.xml AP6-stats.xml When this feature is enabled, PMG will set "FC-LOG-PERIODIC-UPLOAD-URL" custom property at device level for all newly registered APs. The same can be added to existing APs with ReAssign API. PMG Event Subscription The subscriber should follow these steps for subscribing to the PMG events: 1 Send the getalleventtypes message (subscribe.xml) to PMG for receiving all the supported events. 3

4 PMG Event Subscription Each subscriber can subscribe to all the events or selected events, and can have multiple (maximum 3 and minimum 1) notification url for one subscriber. PMG picks up one url and delivers the event. If that URL1 is not reachable, then PMG picks up the next url for event delivery. PMG event subscription supports these events: AssignedData, FirmwareUpgraded, GroupCreated, GroupUpdated, GroupDeleted, LocationStatus, Online, ServiceError, ServiceOperational,Tampered, UserPasswordExpiryNotification, CustomValueChange, and IpAddressUpdate.. PMG accepts three number of subscribers by default. Following is the sample xml request for event subscriptions: <Subscribe subscriber-name= OSS-1 > <URL> </URL> <URL> </URL> <URL> </URL> <Event name= AssignedData > <Parameter name= ecgi > <Event name= Groups isenabled=false> </subscribe> Following is an example xml: <Subscribe xmlns=" xmlns:xsi=" xmlns:xsd=" xsi:schemalocation=" pmg-messages-v3_0_0.xsd" subscriber-name='testlab-oss-1'> <TxnID>subs-trans </TxnID> <URL> <Events> <Event name='assigneddata' isenabled='true'> <Event name='groupcreated' isenabled='true'> <Event name='groupupdated' isenabled='true'> <Event name='groupdeleted' isenabled='true'> <Event name='firmwareupgraded' isenabled='true'> <Event name='locationstatus' isenabled='true'> <Event name='online' isenabled='true'> <Event name='serviceerror' isenabled='true'> <Event name='serviceoperational' isenabled='true'> <Event name='tampered' isenabled='true'> <Event name='ipaddressupdate' isenabled='true'> <Event name='userpasswordexpirynotification' isenabled='true'> </Events> </Subscribe> 2 The subscriber can send this subscribe message from any host by specifying the subscriber name and the list of notification URL. Subscribed events are specified in the <Event> element, and events are enabled by default. Changing the Enabled state of particular event to false, to disable the event. Following is an example: <Event name='locationstatus' isenabled='false'> 4

5 RMS Alarm Handler 3 The subscriber can customize the events by specifying the parameter names that the notification server prefers to receive. If the parameters are not specified, then the notification will contain all the parameters of an particular event. If the events are not specified, it indicates that the subscriber has subscribed to all the events. 4 The subscriber can update event subscription by sending subscribe message with the updated set of additional events and removing previously subscribed events. For example, the subscriber can subscribe to events by posting the subscribe.xml message using the url address of central node>:8083/pmg to receive the notifications. RMS Alarm Handler RMS alarm handler raises the AP Reachability Alarm and AP location Verification Alarm. AP Reachability Alarm RMS has introduced a new alarm AP Reachablity Alarm with the severity "Major". The alarm raises whenever the AP is abruptly down or Issue in the network connection between FAP and RMS. The scenarios are as follows: RMS raises AP Reachability alarm if the current request for connection request has failed and previous one is passed. RMS clears the AP Reachability alarm if the current request for connection request has passed and previous one is failed. RMS forwards AP Reachability alarm to Prime Central for further processing. RMS treats this alarm in a similar way as it treats any other FAP alarm. For example, adding FAP ID, DN Prefix and so on while sending this alarm to Prime Central. RMS defines a property using which operator can turn on/off generation of this alarm. RMS schedules masscr.sh to run every 10 minutes by default. AP Location Verification Alarm RMS raises a Location Verification Alarm with the severity Major if the location verification passes or fails based on these scenarios: RMS raises Location Verification alarm if the current location verification has failed and the previous location verification was passed. RMS clears Location Verification alarm if the current location verification has passed and previous location verification was failed. RMS forwards Location Verification alarm to Prime Central for further processing. RMS treats this alarm in similar way as it treats any other FAP alarm. For example, adding FAP ID, DN Prefix, and so on while sending this alarm to Prime Central. 5

6 RMS Alarm Handler RMS defines a property using which operator can turn on/off for generation of this alarm. The PMG Server Properties file, (/rms/app/pmg/conf/pmgserver.properties) must be configured as shown below for enabling the Alarm Handler Feature. #Alarms #Following parameter is used to enable/disable the EPM alarm feature. #1:Enable, 0:Disable pmg.alarms.snmp.epm.alarmhandler=1(enable by default) pmg.alarms.snmp.epm.alarmhandler.port=4678 (Port) pmg.alarms.snmp.epm.nummanagers=1 #<Prime central IP> pmg.alarms.snmp.epm.manager.address.1= pmg.alarms.snmp.epm.manager.port.1=162 pmg.alarms.snmp.epm.manager.community.1=public #1:Enable AP reachability alarm, 0:Disable pmg.alarms.snmp.epm.apreachability=1 #Connection Request Timer, By Default this is 10 min. Can be increased to interval of 60 min pmg.alarms.snmp.epm.apreachability.interval=10 #Rate at which Connection Request is Triggered. By Default this Should be 10 pmg.alarms.snmp.epm.apreachability.rate=10 pmg.alarms.snmp.epm.apreachability.devices.max=5000 #idfile: A absolute path to a file with a list of devices or group IDs (one per line). # Provide the Complete Path with ciscorms permissions pmg.alarms.snmp.epm.apreachability.idfile= #type: Specifies the content of the list file as either devices or a configured group type (Available types are : all, devices, provgroup, cos, Area, CELL-POOL, Enterprise, FRM-Group-Type-Meta-Data, FemtoGateway, Management, Pool-Type-Meta-Data, SAI-POOL, Site, system) pmg.alarms.snmp.epm.apreachability.type=all #1:Enable AP location check, 0:Disable pmg.alarms.snmp.epm.aplocation=1 #Serving Node Eth_0 Ip Address pmg.alarms.snmp.epm.serving.address= For the first time usage of the alarm handler, the below changes should be made in the PMGServer.properties file under the path /rms/app/pmg/conf. 1 Add the PrimeCentral IP/SNMP Address: #<Prime central IP> For example, pmg.alarms.snmp.epm.manager.address.1= Provide the Eth_0 Serving Node IP Address #Serving Node Eth_0 Ip Address For example, pmg.alarms.snmp.epm.serving.address= Provide the path of the file location # Provide the Complete Path with ciscorms permissions For example, pmg.alarms.snmp.epm.apreachability.idfile=/rms/app/pmg/conf/idfile.txt 4 Modify the below Parameter value as required. For example, if the alarm handler needs to be triggered for all devices, then provide all as mentioned below. pmg.alarms.snmp.epm.apreachability.type=all User Guidelines 1 RMS issues Connection Request (CR) every 10 min (by default) as configured in the PMG Server Properties file. 2 CR is issued based on the configuration in the PMG Server properties file. For example: pmg.alarms.snmp.epm.apreachability.idfile= /rms/app/pmg/conf/ idfile.txt 6

7 PMG Logging #type: This specifies the contents of the list file as either devices or a configured group type. The available types are: all, devices, provgroup, cos, Area, CELL-POOL, Enterprise, FRM-Group-Type-Meta-Data, FemtoGateway, Management, Pool-Type-Meta-Data, SAI-POOL, Site, system. pmg.alarms.snmp.epm.apreachability.type=all (This should be changed based on the configuration.) This file should have ciscorms permissions, for example: chown ciscorms:ciscorms idfile.txt chmod 744 idfile.txt 3 The Alarm handler logs in to the path (/rms/log/alarmhandler/alarmhandler.console.log). PMG Logging The PMG is capable of logging all requests and responses to and from the OSS, and to and from the BAC. The PMG logging automatically rolls its log files on a daily and file size basis. The path for pmglogs is /rms/log/pmg. This table lists the different types of PMG logs. By default a maximum of five days of compressed log files are maintained for various PMG log files. Table 2: Different Types of PMG Logs PMG Logs Performance Logs Audit Logs Message Logs Syslog Description The Performance log determines the performance statistics and consists of two files, one for individual message performance and the other periodic roll-up performance metrics. The Audit log logs all interactions with the individual provisioning system components and changes, to the device configuration. The OSS HTTP Message logs are used for testing and message tracking purposes. PMG server status will be logged when PMG is started/stopped/restarted. Syslog contains the Alarm messages of PMG server. Thus, PMG logging is useful in determining device performance and ensuring proper processing with the BAC. Alarm information is logged in the syslog. The syslog messages can be found in /var/log/local0.log. In addition to the logs mentioned above, the server start/stop will also be logged in syslog. The server, pmgserver, must be started with the user specified as ciscorms. All PMG logs are stored in the directory defined in the /rms/log/pmg/ environmental variable with a "/pmg" added. 7

8 PMG Performance Logs PMG Performance Logs The Performance logging consists of two files; one for individual message performance and the other hourly roll-up performance metrics. Individual Performance Log File The performance log for individual messages is output to the file "pmg-msg-perf.csv" and is stored in the directory /rms/log/pmg. The Performance log file is in the CSV format and begins with a header row followed by the individual message performance data. An example of the individual performance logs is shown here: T01:01: Block ead1eb bb 00223A T01:01: Unblock ead1eb bb 00223A T01:01: Update ead1eb bb 00223A T01:01: GetStoredData ead1eb bb 00223A T01:01: Block ead1eb bb 00223A T01:01: UnBlock ead1eb bb 00223A T01:01: Unknown Unknown Unknown T01:01: Unknown Content Unknown Unknown T01:01: XML Parse error Unknown Unknown Following are the headings of the fields in the log file and their descriptions: timestamp is the date and time of the received message. The timestamp is represented in the ISO 8601 format "YYYY-MM-DDThh:mm:ss.fffZ", where: YYYY-represents the four-digit year MM-represents the two-digit month DD-represents the two-digit day of the month T-is the time delimiter hh-represents the time in hours mm-represents the time in minutes ss-represents the time in seconds fff-represents the time in milliseconds Z-represents the zone designator for the zero (Co-ordinated Universal Time) UTC off set, if the time is in UTC msg name-the message name as found in the XML root element trans id-the transaction ID in the message eidthe device ID for the record. If the message is called with a Secondary ID, the EID must be looked up and used msg process time ms-the message processing time of the message processor in milliseconds, with the BAC processing time removed BAC process time ms-the BAC processing time in milliseconds 8

9 PMG Performance Logs total msg process time ms-the total message processing time in milliseconds that includes time in un-marshaling the message, message processing time, BAC processing time, and the response time in message marshaling. To track the performance of unknown messages, messages with XML parser errors and messages that are not of XML content are also logged in the individual performance log file. Following are some of the logging details for unknown messages: All unknown messages have the message name, transid, and EID as "Unknown". All message XMLs that fail to parse, have the message name as "XML Parse error" with transid and EID as "Unknown". All messages that are not of content type application/xml or text/xml have the message name as "Unknown Content", with transid and EID as "Unknown". The audit logging is output to the file "pmg-audit.log" and is stored in the directory /rms/log/pmg. The audit logs are used to identify the workflow from the receipt of a PMG message to the response back to the OSS. The audit logs will be rotated after 12 am when the first log entry comes in each day or if larger than 50 MB in size. Some of the archived log files are maintained until the files consume configured disk space threshold. For details, see Cleaning Up PMG, Upload Server, and DCC UI Logs. For log files that are not configured for disk space thresholds, the individual archived logs are maintained for five days on the Central node after which they are removed from the Central node. Periodic Performance Log File The periodic performance log file is a summary of each message performance from the start of PMG or for the last period defined. The period is specified by the pmg.perf.periodic.log.interval.milli.seconds property in the dcc.properties file. The period is specified in milliseconds. If this property is not set in the dcc.properties file, the default value of (1 hour) is used. For example, if the period is set to , which corresponds to 15 minutes, and the PMG starts at 2:03, the first log is printed at 2:18 and then at 2:33 and so on. The periodic performance log files are output to the file "pmg-perf-periodic.csv", and are stored in the directory /rms/log/pmg. The periodic performance log file is in csv format and begins with a header row followed by a performance summary for each message. An example of the messages in the file for the period performance logs is shown below for 15 minute intervals: T16:41:49.735Z,899,GetAllFRMPools,96,96,96,1,0,245,524,0, T16:41:49.736Z,899,GetAllFRMPoolTypes,113,118,108,2,0,424,1486,0, T16:41:49.737Z,899,GetAllFRMGroupTypes,447,767,272,3,0,642,8694,0, T16:41:49.737Z,899,GetAllFRMGroups,157,157,157,1,0,241,6914,0, T16:56:49.735Z,899,GetLiveData,145,145,145,1,0,606,283,0, T16:56:49.736Z,899,GetAllFRMPools,69,70,68,2,0,487,1047,0, T16:56:49.737Z,899,GetAllFRMPoolTypes,99,108,91,2,0,424,1486,0, T16:56:49.737Z,899,GetAllFRMGroupTypes,204,211,200,3,0,642,8694,0, T16:56:49.738Z,899,GetStoredData,259,271,248,2,0,448,35272,0,10 The headers for the fields in the periodic performance summary file are described here: period end-the summary period end timestamp in the ISO 8601 format. The timestamp is in the format "YYYY-MM-DDThh:mm:ss.fffZ", where time is represented in milliseconds 9

10 PMG Alarm Logs summary period sec-the time interval in milliseconds, for receiving the messages during the summary period msg name-the message name received during the summary period avg response time ms-the average response time in milliseconds max response time ms-the maximum response time in milliseconds min response time ms-the minimum response time in milliseconds num msgs-the total number of messages received during the summary period num errors-the number of errors occurred during the summary period To track the performance of unknown messages, messages with XML parser errors and messages that are not of XML content are also rolled up in the periodic performance summary file. Following are some of the logging details for unknown messages: All unknown messages have the message name as "Unknown". All message XMLs that fail to parse have the message name as "XML Parse error". All messages that are not of content type application/xml or text/xml have the message name as "Unknown Content". The periodic performance logs are maintained for five days on the Central node after which they are removed from the Central node. Each periodic performance log file is rotated after 12 am when the first log entry comes in or if the file size exceeds 10 MB. PMG Alarm Logs The PMG alarms are sent to Prime Central or any alarm monitoring entity via the Fault Management server. Table 3: PMG Alarm Log Messages Alarm Condition Connection with the RDU lost Connection with RDU established Radius connection lost Radius connection restored PMG connection limit exceeded PMG connection limit exceeded PMG Server start Alarm Level Critical Clear Minor Clear Warning Major Warning Alarm Text Alarm raised: Type=RDU Connection Alarm resolved: Type=RDU Connection Alarm raised: Type=Radius Connection Alarm rersolved: Type=Radius Connection Alarm raised: Type=PMG Connection Alarm raised: Type=PMG Connection Alarm resplved Type= PMG Status 10

11 PMG Syslogs Alarm Condition PMG Server stop Alarm Level Major Alarm Text Alarm raised Type= PMG Status PMG Syslogs The alarms logged in pmg-alarms.log are logged in the syslog (/var/log/local0.log). In addition to the above mentioned logs, the server start/stop are also logged in the syslog. For the statements to appear in the syslogs, the udp port has to be uncommented in /etc/rsyslog.conf. These parameters, (if commented) need to be uncommented in rsyslog.conf. #$ModLoad imudp.so #$UDPServerRun 514 The rsyslog needs to be restarted: /etc/init.d/rsyslog restart PMG Message Logs The PMG includes inbound message logs for inbound message tracking. This logging is output to the file "pmg-inbound-msg.log", and is stored in the directory /rms/log/pmg. The PMG also includes outbound message logs for outbound message tracking. This logging is output to the file "pmg-outbound-msg.log", and is stored in the directory /rms/log/pmg. Inbound message logs and outbound message logs are rotated after 12 am when the first log entry comes in or if the file size exceeds 50 MB. : The individual logs are maintained for five days on the Central node after which they are removed from the Central node. PMG Status Monitoring Use these commands to monitor the status of the PMG server and start or stop the server. Procedure Step 1 god status PMGServer Verifies the status of the PMG server. The server states can be up (running), unmonitored (stopped), init (intermediate). Example: This example shows sample output when the server is up: [rms-aio-central] /home/admin1 # god status PMGServer PMGServer: up 11

12 PMG Profiles This example shows sample output when the server is stopped: [rms-aio-central] /home/admin1 # god status PMGServer PMGServer: unmonitored Step 2 god start PMGServer Starts the PMG server. Example: This example shows sample output when the server is started. [rms-aio-central] /home/admin1 # god start PMGServer Sending 'start' command The following watches were affected: PMGServer Step 3 god stop PMGServer Stops the PMG server. Check the status of the PMG server before starting or stopping the server. Wait for some time after executing the command as it can take 10 to 12 seconds. Example: This example shows sample output when the server is stopped: [rms-aio-central] /home/admin1 # god stop PMGServer Sending 'stop' command The following watches were affected: PMGServer PMG Profiles A PMG profile defines the messages used for the configuration and activation processes. The profile specifies the inbound requests that are used along with the required, ignored, and excluded elements. The PMG profile also contains a number of exclusions, but does not add element requirements. The PMG profile is referred to as pmg-profile.xml in the server. Using the pmg-profile.xml, the operator can add/remove/exclude/ignore for any message. For all PMG messages, either an EID or SecondaryID is specified as the device ID. The device search is performed using the SecondaryID which is the device's Fully Qualified Domain Name (FQDN) in BAC or with the EID which is the device's DeviceID property in the BAC. Profiles are used to specify the subset of messages, elements, and parameters to be used in a given deployment. A Profile is a way to configure the generic PMG to deployment-specific requirements. The PMG profile contains the Parameter Definition section, which defines the names and types of the supported parameters. 12

13 Parameter Definitions When pmg-profile is customized for the first time, the PMG server must be restarted. Place the customized pmg-profile.xml in the /rms/app/rms/conf/ directory. The path for the default pmg-profile.xml is /rms/app/rms/doc/pmg/pmg-profile.xml. Parameter Definitions Some PMG messages support the parameter structure to add, update, delete, or retrieve parameters. The PMG profile contains the Parameter Definition section, which defines the names and types of the supported parameters. This table lists some of the parameter elements that are defined in the parameter definition. Table 4: Parameter Elements and Description Parameter Elements Name Type Description The parameter name or the alias used in the message. The type of the parameter that can be: String Integer (BAC custom property which is an integer) Unsigned integer (BAC custom property which is of the type Long) Decimal Boolean Date/Time Source Type The type of the source that includes: DeviceParameters An example of BAC API constant: DeviceDetailsKeys.DEVICE_ID. DeviceProperty (BAC property or custom property) Writable Readable Deletable Indicates if the parameter is writable (can be added or updated). Indicates if the parameter is returned by a get. Indicates if the parameter can be deleted. 13

14 Validating Modified pmg-profile File Parameter Elements Validation Description Defines the validation to use on a Writable parameter value and is defined by the following: Type - defines the type of validation that can be: A range, used to validate numbers. The expression element is of the format [low:high], where "low" is the lowest number in the range, or empty if there is none, and "high" is the highest number in the range or empty if there is none. A Regular expression. The expression element contains a regular expression that is used to match the value. Expression - Expression as defined by the type, either a range or regex expression. Length - Length is used to validate the length of string type parameter. Following is an example for validation: <ParameterDefinition> <Name>MAX-TRANS-PWR</Name> <Type>int</Type> <SourceType>DeviceProperty</SourceType> <Writable>true</Writable> <Readable>true</Readable> <Deletable>true</Deletable> <Validation> <Type>range</Type> <Expression>[-100:10]</Expression> </Validation> </ParameterDefinition> Validating Modified pmg-profile File The modified pmg-profile.xml file should be validated with the latest pmg-profile schema file (XSD file). To validate the file, use the following command: xmllint --noout --schema <xsdpath> <xmlpath> xmlpath = full path of the pmg-profile.xml which is modified xsdpath = full path oflatest schema file for the pmg-profile.xml. Normally it is present in the central node at /rms/app/rms/doc/pmg/pmg-profile-v2_0_0.xsd Example: xmllint --noout --schema /rms/app/rms/doc/pmg/pmg-profile-v2_0_0.xsd /rms/app/rms/doc/pmg/pmg-profile.xml On successful validation, the following message is displayed: "/rms/app/rms/doc/pmg/pmg-profile.xml validates" If the validation fails, it displays where and what the issue is in the xml file. 14

Cisco Provisioning Management Gateway

Cisco Provisioning Management Gateway The (PMG) is a generic provisioning and management application that provides the necessary workflow component between the Service Provider (SP) IT or Operations Support Systems (OSS) applications and the

More information

RMS Alarms. Fault Manager Server Alarms

RMS Alarms. Fault Manager Server Alarms Fault Manager Server Alarms, page 1 Upload Server Alarms, page 5 Upload Server Syslog Messages, page 10 PMG Alarms, page 11 PMG Server Syslog Messages, page 15 PAR System Alarms, page 16 PNR System Alarms,

More information

Additional RMS Functionality

Additional RMS Functionality Geographical Identifier Management, page 1 Edge-Node Discovery Provisioning, page 5 Security Gateway Geographical Redundancy, page 6 IMSI Blacklisting, page 6 Integrating RMS with Prime Central Server,

More information

Cisco RAN Management System SNMP/MIB Guide, Release 5.1

Cisco RAN Management System SNMP/MIB Guide, Release 5.1 First Published: July 06, 2015 Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com Tel: 408 526-4000 800 553-NETS (6387) Fax: 408 527-0883 Text

More information

Device Manager. Device Provisioning. Preparing to Register a Device

Device Manager. Device Provisioning. Preparing to Register a Device You access the device manager by clicking the tab in the DCC UI. The device manager provides a consolidated interface to perform various tasks on an individual Customer Premises Equipment (CPE). Specifically

More information

Additional RMS Functionality

Additional RMS Functionality INSEE Management, page 1 Edge-Node Discovery Provisioning, page 5 Security Gateway Geographical Redundancy, page 5 IMSI Blacklisting, page 6 Integrating RMS and Prime Central Active with Disaster Recovery

More information

RAN Management System API Reference Guide Release 4.0

RAN Management System API Reference Guide Release 4.0 Document Number P/N OL-32399-01 Version 1.0 Created By Date Cisco June 2014 RAN Management System API Reference Guide Release 4.0 Publication History Date Version Description Author June 2014 1.0 Initial

More information

With standard audit logging, configuration changes to the system get logged in separate log files for auditing.

With standard audit logging, configuration changes to the system get logged in separate log files for auditing. , on page 1 With audit logging, configuration changes to the system get logged in separate log files for auditing. Audit Logging (Standard) When audit logging is enabled, but the detailed audit logging

More information

Working with Reports. User Roles Required to Manage Reports CHAPTER

Working with Reports. User Roles Required to Manage Reports CHAPTER CHAPTER 10 Cisco Prime Network (Prime Network) provides a Report Manager that enables you to schedule, generate, view, and export reports of the information managed by Prime Network. You can save the generated

More information

Set Up Cisco ISE in a Distributed Environment

Set Up Cisco ISE in a Distributed Environment Cisco ISE Deployment Terminology, page 1 Personas in Distributed Cisco ISE Deployments, page 2 Cisco ISE Distributed Deployment, page 2 Configure a Cisco ISE Node, page 5 Administration Node, page 8 Policy

More information

Accessing SGM Data from a Web Browser

Accessing SGM Data from a Web Browser CHAPTER 7 Accessing SGM Data from a Web Browser This chapter provides information about accessing SGM data from the SGM server home page, using a Web browser. This chapter includes the following sections:

More information

Managing System Administration Settings

Managing System Administration Settings This chapter contains the following sections: Setting up the Outgoing Mail Server, page 2 Working with Email Templates, page 2 Configuring System Parameters (Optional), page 5 Updating the License, page

More information

OVA Descriptor File Properties

OVA Descriptor File Properties All required and optional properties for the OVA descriptor file are described here. RMS Network Architecture, page 1 Virtual Host Network Parameters, page 2 Virtual Host IP Address Parameters, page 4

More information

Embedded Event Manager (EEM)

Embedded Event Manager (EEM) CHAPTER 12 This chapter consists of the following: What is EEM? Components of Cisco IOS EEM Types of Actions What is EEM? EEM (Embedded Event Manager) is an IOS technology that runs on the control plane

More information

Accessing Data from the Web Interface

Accessing Data from the Web Interface 5 CHAPTER This chapter provides information about accessing Prime Performance Manager data from Prime Performance Manager web interface. This chapter contains: Supported Browsers, page 5-1 Accessing Prime

More information

With standard audit logging, configuration changes to the system get logged in separate log files for auditing.

With standard audit logging, configuration changes to the system get logged in separate log files for auditing. , page 1 With audit logging, configuration changes to the system get logged in separate log files for auditing. Audit Logging (Standard) When audit logging is enabled, but the detailed audit logging option

More information

Set Up Cisco ISE in a Distributed Environment

Set Up Cisco ISE in a Distributed Environment Cisco ISE Deployment Terminology, page 1 Personas in Distributed Cisco ISE Deployments, page 2 Cisco ISE Distributed Deployment, page 2 Configure a Cisco ISE Node, page 5 Administration Node, page 8 Policy

More information

akkadian Global Directory 3.0 System Administration Guide

akkadian Global Directory 3.0 System Administration Guide akkadian Global Directory 3.0 System Administration Guide Updated July 19 th, 2016 Copyright and Trademarks: I. Copyright: This website and its content is copyright 2014 Akkadian Labs. All rights reserved.

More information

SIP System Features. SIP Timer Values. Rules for Configuring the SIP Timers CHAPTER

SIP System Features. SIP Timer Values. Rules for Configuring the SIP Timers CHAPTER CHAPTER 4 Revised: October 30, 2012, This chapter describes features that apply to all SIP system operations. It includes the following topics: SIP Timer Values, page 4-1 Limitations on Number of URLs,

More information

Batches and Commands. Overview CHAPTER

Batches and Commands. Overview CHAPTER CHAPTER 4 This chapter provides an overview of batches and the commands contained in the batch. This chapter has the following sections: Overview, page 4-1 Batch Rules, page 4-2 Identifying a Batch, page

More information

Cisco Meeting Management

Cisco Meeting Management Cisco Meeting Management Cisco Meeting Management 1.1 User Guide for Administrators September 19, 2018 Cisco Systems, Inc. www.cisco.com Contents 1 Introduction 4 1.1 The software 4 2 Deployment overview

More information

Administrative Tasks CHAPTER

Administrative Tasks CHAPTER 15 CHAPTER This chapter describes administrative tasks to perform with WCS. These tasks include the following: Running Background Tasks, page 15-2 (such as database cleanup, location server synchronization,

More information

vrealize Business for Cloud Troubleshooting Guide

vrealize Business for Cloud Troubleshooting Guide vrealize Business for Cloud Troubleshooting Guide vrealize Business for Cloud Standard 7.3 and vrealize Business for Cloud Advanced 7.3 vrealize Business 7.3 vrealize Business for Cloud 7.3 vrealize Business

More information

Common Configuration Options

Common Configuration Options Common Configuration Options Unless otherwise noted, the common configuration options that this chapter describes are common to all Genesys server applications and applicable to any Framework server component.

More information

Working with the Soft Properties Manager

Working with the Soft Properties Manager CHAPTER 3 These topics describe the Soft Properties Manager working environment and how to access Soft Properties Manager tools. In addition, it describes the process from creating to publishing a soft

More information

Getting Started with Prime Network

Getting Started with Prime Network CHAPTER 1 These topics provide some basic steps for getting started with Prime Network, such as how to set up the system and the basic parts of the Prime Network Administration GUI client. Basic Steps

More information

Configuring Traffic Policies

Configuring Traffic Policies CHAPTER 11 Date: 4/23/09 Cisco Application Networking Manager helps you configure class maps and policy maps to provide a global level of classification for filtering traffic received by or passing through

More information

Configuring Call Home for the Cisco CSR 1000v

Configuring Call Home for the Cisco CSR 1000v Prerequisites for Call Home, page 1 Information About Call Home, page 2 Benefits of Using Call Home, page 2 Obtaining Smart Call Home Services, page 3 Anonymous Reporting, page 3 How to Configure Call

More information

Adding Distribution Settings to a Job Profile (CLUI)

Adding Distribution Settings to a Job Profile (CLUI) CHAPTER 7 Adding Distribution Settings to a Job Profile (CLUI) Revised: October 10, 2008, Distribution tabs tell the Cisco MXE 3000 what to do with output files once encoding is complete. This section

More information

Utilities. Introduction. Working with SCE Platform Files. Working with Directories CHAPTER

Utilities. Introduction. Working with SCE Platform Files. Working with Directories CHAPTER CHAPTER 4 Revised: September 27, 2012, Introduction This chapter describes the following utilities: Working with SCE Platform Files, page 4-1 The User Log, page 4-5 Managing Syslog, page 4-8 Flow Capture,

More information

Using the Prime Performance Manager Web Interface

Using the Prime Performance Manager Web Interface 3 CHAPTER Using the Prime Performance Manager Web Interface The following topics provide information about using the Cisco Prime Performance Manager web interface: Accessing the Prime Performance Manager

More information

System Description. System Architecture. System Architecture, page 1 Deployment Environment, page 4

System Description. System Architecture. System Architecture, page 1 Deployment Environment, page 4 System Architecture, page 1 Deployment Environment, page 4 System Architecture The diagram below illustrates the high-level architecture of a typical Prime Home deployment. Figure 1: High Level Architecture

More information

Call Control Discovery

Call Control Discovery CHAPTER 3 The call control discovery feature leverages the Service Advertisement Framework (SAF) network service, a proprietary Cisco service, to facilitate dynamic provisioning of inter-call agent information.

More information

rowan(1) RoWAN manual page rowan(1)

rowan(1) RoWAN manual page rowan(1) rowan(1) RoWAN manual page rowan(1) NAME RoWAN is a network-stream relay (server) over Wide Area Network. DESCRIPTION RoWAN relays video streams from both local and remote sources to local multicast/unicast

More information

Performance Monitor Administrative Options

Performance Monitor Administrative Options CHAPTER 12 Effective network management requires the fastest possible identification and resolution of events that occur on mission-critical systems. Performance Monitor administrative options enable you

More information

QLean for IBM Security QRadar SIEM: Admin Guide QLEAN FOR IBM SECURITY QRADAR SIEM ADMIN GUIDE ScienceSoft Page 1 from 18

QLean for IBM Security   QRadar SIEM: Admin Guide QLEAN FOR IBM SECURITY QRADAR SIEM ADMIN GUIDE ScienceSoft Page 1 from 18 www.scnsoft.com QLEAN FOR IBM SECURITY QRADAR SIEM ADMIN GUIDE 2018 ScienceSoft Page 1 from 18 Table of Contents Overview... 3 QLean Installation... 4 Download QLean... 4 Install QLean... 4 Request license

More information

Configuring CWMP Service

Configuring CWMP Service CHAPTER 12 This chapter describes how to configure the CWMP service in Cisco Broadband Access Center (BAC). Topics covered are:, page 12-1 Configuring Service Ports on the DPE, page 12-2 Disabling Connection

More information

Introduction to Cisco TV CDS Software APIs

Introduction to Cisco TV CDS Software APIs CHAPTER 1 Cisco TV Content Delivery System (CDS) software provides two sets of application program interfaces (APIs): Monitoring Real Time Streaming Protocol (RTSP) Stream Diagnostics The Monitoring APIs

More information

AuditConfigurationArchiveandSoftwareManagementChanges (Network Audit)

AuditConfigurationArchiveandSoftwareManagementChanges (Network Audit) This section contains the following topics: Audit Configuration Archive and Software Management Changes (Network Audit), on page 1 Audit Changes Made By Users (Change Audit), on page 1 Audit Actions Executed

More information

Configuring Call Home

Configuring Call Home The Call Home feature provides e-mail-based and web-based notification of critical system events. A versatile range of message formats are available for optimal compatibility with pager services, standard

More information

Cisco TelePresence Basic Cisco VCS configuration

Cisco TelePresence Basic Cisco VCS configuration Cisco TelePresence Basic Cisco VCS configuration Deployment Guide D14651.02 September 2011 Cisco VCS Control with Cisco VCS Expressway X7.0 Contents Document revision history 5 Introduction 6 Out of scope

More information

SIP System Features. SIP Timer Values. Rules for Configuring the SIP Timers CHAPTER

SIP System Features. SIP Timer Values. Rules for Configuring the SIP Timers CHAPTER CHAPTER 4 Revised: March 24, 2011, This chapter describes features that apply to all SIP system operations. It includes the following topics: SIP Timer Values, page 4-1 SIP Session Timers, page 4-7 Limitations

More information

Configuring Call Home for Cisco Integrated Services Routers

Configuring Call Home for Cisco Integrated Services Routers Configuring Call Home for Cisco Integrated Services Routers First Published: November 18, 2011 Revised: April 11, 2012, The Call Home feature provides e-mail-based and web-based notification of critical

More information

Before Installing Broadband Access Center

Before Installing Broadband Access Center CHAPTER 2 This chapter describes the requirements and dependencies for installing Cisco BAC successfully. This chapter describes: BAC Components, page 2-1 Installation and Startup Process, page 2-2 Database

More information

RMS Upgrade Procedure

RMS Upgrade Procedure To upgrade from RMS4.1 FCS to RMS5.1 FCS, follow Upgrade from RMS 4.1 to RMS 5.1 FCS, on page 1. This procedure involves executing the upgrade_rms.sh script on the Central, Serving, and Upload nodes (post-rhel

More information

OPC XML-DA Client Driver PTC Inc. All Rights Reserved.

OPC XML-DA Client Driver PTC Inc. All Rights Reserved. 2018 PTC Inc. All Rights Reserved. 2 Table of Contents 1 Table of Contents 2 4 Overview 4 Project Architecture 5 Setup 6 Channel Properties General 6 Channel Properties Write Optimizations 7 Channel Properties

More information

CDP Data Center Console User Guide CDP Data Center Console User Guide Version

CDP Data Center Console User Guide CDP Data Center Console User Guide Version CDP Data Center Console User Guide CDP Data Center Console User Guide Version 3.18.2 1 README FIRST Welcome to the R1Soft CDP Data Center Console User Guide The purpose of this manual is to provide you

More information

ForeScout CounterACT. Controller Plugin. Configuration Guide. Version 1.0

ForeScout CounterACT. Controller Plugin. Configuration Guide. Version 1.0 ForeScout CounterACT Network Module: Centralized Network Controller Plugin Version 1.0 Table of Contents About the Centralized Network Controller Integration... 4 About This Plugin... 4 How It Works...

More information

KYOCERA Net Admin User Guide

KYOCERA Net Admin User Guide KYOCERA Net Admin User Guide Legal Notes Unauthorized reproduction of all or part of this guide is prohibited. The information in this guide is subject to change without notice. We cannot be held liable

More information

Accessing SGM Data from a Web Browser

Accessing SGM Data from a Web Browser CHAPTER 7 Accessing SGM Data from a Web Browser This chapter provides information about accessing SGM data from the SGM server home page, using a Web browser. This chapter includes the following sections:

More information

Maintenance Tasks CHAPTER

Maintenance Tasks CHAPTER CHAPTER 5 These topics describe the Maintenance tasks of Element Manager: Viewing Basic System Information, page 5-2 Configuring Basic System Information, page 5-3 Configuring Date and Time Properties,

More information

Senstar Symphony. 7.1 User Guide

Senstar Symphony. 7.1 User Guide Senstar Symphony 7.1 User Guide Contents Contents Introduction...5 Network configuration... 5 Getting started...6 Symphony Server... 8 Log in to the server configuration interface...8 Devices...8 Cameras...

More information

HPE Intelligent Management Center

HPE Intelligent Management Center HPE Intelligent Management Center Service Health Manager Administrator Guide Abstract This guide provides introductory, configuration, and usage information for Service Health Manager (SHM). It is for

More information

Configuring with the CMM Administration Tool

Configuring with the CMM Administration Tool CHAPTER 2 System administrators can configure their network using the CMM Administration Tool. This chapter covers: Performing Domain Management, page 2-1 Using Administrative Utilities, page 2-1 Configuring

More information

Introduction to Broadband Access Center Topics

Introduction to Broadband Access Center Topics CHAPTER 1 The Cisco Broadband Access Center software for Broadband Aggregation supports the mass-market deployment of broadband services by providing a provisioning system to replace labor-intensive and

More information

Archiving and Purging Data

Archiving and Purging Data CHAPTER 10 These topics provide basic information about data purging and archiving and system stability: Prime Network Database Schemas, page 10-1, describes the schemas supported by the Prime Network

More information

Modifying IPM Components

Modifying IPM Components CHAPTER 4 This chapter provides information on modifying IPM components. IPM components include collectors, source routers, target devices, and operations. Information is provided on viewing, updating,

More information

Sophos Mobile as a Service

Sophos Mobile as a Service startup guide Product Version: 8 Contents About this guide... 1 What are the key steps?... 2 Change your password... 3 Change your login name... 4 Activate Mobile Advanced licenses...5 Check your licenses...6

More information

Cisco TelePresence Video Communication Server Basic Configuration (Control with Expressway)

Cisco TelePresence Video Communication Server Basic Configuration (Control with Expressway) Cisco TelePresence Video Communication Server Basic Configuration (Control with Expressway) Deployment Guide Cisco VCS X8.6 July 2015 Contents Introduction 4 Example network deployment 5 Network elements

More information

Data Collection and Background Tasks

Data Collection and Background Tasks This section contains the following topics: Control Data Collection Jobs, on page 1 How Data Retention Settings Affect Web GUI Data, on page 1 About Historical Data Retention, on page 2 Performance and

More information

Monitoring Dashboard CHAPTER

Monitoring Dashboard CHAPTER CHAPTER 6 This chapter explains the list of default dashboards in (see List of Default Portlets in ) and the following portlets in the dashboard: N-Hop View High Severity Faults Syslog Summary Syslog Alerts

More information

Sophos Mobile SaaS startup guide. Product version: 7.1

Sophos Mobile SaaS startup guide. Product version: 7.1 Sophos Mobile SaaS startup guide Product version: 7.1 Contents 1 About this guide...4 2 What are the key steps?...5 3 Change your password...6 4 Change your login name...7 5 Activate SMC Advanced licenses...8

More information

Configuring Call Home

Configuring Call Home CHAPTER 18 Call Home provides e-mail-based notification of critical system events. A versatile range of message formats are available for optimal compatibility with pager services, standard e-mail, or

More information

Cisco Expressway Cluster Creation and Maintenance

Cisco Expressway Cluster Creation and Maintenance Cisco Expressway Cluster Creation and Maintenance Deployment Guide Cisco Expressway X8.6 July 2015 Contents Introduction 4 Prerequisites 5 Upgrading an X8.n cluster to X8.6 6 Prerequisites 6 Upgrade Expressway

More information

vrealize Business for Cloud Troubleshooting Guide

vrealize Business for Cloud Troubleshooting Guide vrealize Business for Cloud Troubleshooting Guide vrealize Business for Cloud Standard 7.4 and vrealize Business for Cloud Advanced 7.4 vrealize Business 7.4 vrealize Business for Cloud 7.4 You can find

More information

SIP System Features. Differentiated Services Codepoint CHAPTER

SIP System Features. Differentiated Services Codepoint CHAPTER CHAPTER 6 Revised: December 30 2007, This chapter describes features that apply to all SIP system operations. It includes the following topics: Differentiated Services Codepoint section on page 6-1 Limitations

More information

Configuring Service Monitor

Configuring Service Monitor CHAPTER 3 The following topics are included: Configuring Trap Receivers, page 3-2 Understanding and Setting Data Source Credentials, page 3-2 Managing the Phone Count, page 3-15 Configuring Settings for

More information

Managing System Administration Settings

Managing System Administration Settings This chapter contains the following sections: Setting Up the Outgoing Mail Server, page 1 Working with Email Templates, page 2 Configuring System Parameters (Optional), page 5 Updating the License, page

More information

Cisco TelePresence VCS Cluster Creation and Maintenance

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

More information

ForeScout Extended Module for ArcSight

ForeScout Extended Module for ArcSight Version 2.8 Table of Contents About the ArcSight Integration... 4 Use Cases... 4 Send Endpoint Status, Compliance, or Property Changes from CounterACT to ArcSight... 5 SmartConnector Health and Compliance

More information

Universal Format Plug-in User s Guide. Version 10g Release 3 (10.3)

Universal Format Plug-in User s Guide. Version 10g Release 3 (10.3) Universal Format Plug-in User s Guide Version 10g Release 3 (10.3) UNIVERSAL... 3 TERMINOLOGY... 3 CREATING A UNIVERSAL FORMAT... 5 CREATING A UNIVERSAL FORMAT BASED ON AN EXISTING UNIVERSAL FORMAT...

More information

Managing System Administration Settings

Managing System Administration Settings This chapter contains the following sections: Setting up the Outgoing Mail Server, page 2 Working with Email Templates, page 2 Configuring System Parameters (Optional), page 5 Running an Object Search,

More information

Performing Administrative Tasks

Performing Administrative Tasks CHAPTER 15 The Administration enables you to schedule tasks, administer accounts, and configure local and external authentication and authorization. Also, set logging options, configure mail servers, and

More information

Smart Install in LMS CHAPTER

Smart Install in LMS CHAPTER CHAPTER 6 Smart Install (SI) is a plug-and-play configuration and image management feature that provides zero-touch deployment for new switches. You can configure SI on a switch which will then be the

More information

Flexible CSV CDR Importer

Flexible CSV CDR Importer Edition: 1.0 Release date: August 17, 2016 Smile version: 6.0 Published by Inomial Pty Ltd Suite 801, 620 Bourke St, Melbourne, Vic 3000, Australia www.inomial.com +61 3 9663 3554 sales@inomial.com support@inomial.com

More information

match protocol http cookie (cookie map submode)

match protocol http cookie (cookie map submode) Chapter 2 22 match protocol http cookie (cookie map submode) match protocol http cookie (cookie map submode) To add cookies to a cookie map, use the match protocol http cookie command in SLB cookie map

More information

Monitoring the System and Services

Monitoring the System and Services This chapter describes how to monitor the Cisco Mobility Services Engine by configuring and viewing alarms, events, and logs and how to generate reports on system use and element counts (tags, clients,

More information

Configuring Log Parsers Step-by-Step Quick Start Guide September 10, 2009

Configuring Log Parsers Step-by-Step Quick Start Guide September 10, 2009 Configuring Log Parsers Step-by-Step Quick Start Guide September 10, 2009 About Kaseya Kaseya is a global provider of IT automation software for IT Solution Providers and Public and Private Sector IT organizations.

More information

MOVE AntiVirus page-level reference

MOVE AntiVirus page-level reference McAfee MOVE AntiVirus 4.7.0 Interface Reference Guide (McAfee epolicy Orchestrator) MOVE AntiVirus page-level reference General page (Configuration tab) Allows you to configure your McAfee epo details,

More information

This Readme describes the NetIQ Access Manager 3.1 SP5 release.

This Readme describes the NetIQ Access Manager 3.1 SP5 release. NetIQ Access Manager 3.1 SP5 Readme January 2013 This Readme describes the NetIQ Access Manager 3.1 SP5 release. Section 1, What s New, on page 1 Section 2, Upgrading or Migrating to Access Manager 3.1

More information

ACI Terminology. This chapter contains the following sections: ACI Terminology, on page 1. Cisco ACI Term. (Approximation)

ACI Terminology. This chapter contains the following sections: ACI Terminology, on page 1. Cisco ACI Term. (Approximation) This chapter contains the following sections:, on page 1 Alias API Inspector App Center Alias A changeable name for a given object. While the name of an object, once created, cannot be changed, the Alias

More information

Pexip Infinity and Amazon Web Services Deployment Guide

Pexip Infinity and Amazon Web Services Deployment Guide Pexip Infinity and Amazon Web Services Deployment Guide Contents Introduction 1 Deployment guidelines 2 Configuring AWS security groups 4 Deploying a Management Node in AWS 6 Deploying a Conferencing Node

More information

Using ANM With Virtual Data Centers

Using ANM With Virtual Data Centers APPENDIXB Date: 3/8/10 This appendix describes how to integrate ANM with VMware vcenter Server, which is a third-party product for creating and managing virtual data centers. Using VMware vsphere Client,

More information

Table of Contents Chapter 1: Migrating NIMS to OMS... 3 Index... 17

Table of Contents Chapter 1: Migrating NIMS to OMS... 3 Index... 17 Migrating from NIMS to OMS 17.3.2.0 User Guide 7 Dec 2017 Table of Contents Chapter 1: Migrating NIMS to OMS... 3 Before migrating to OMS... 3 Purpose of this migration guide...3 Name changes from NIMS

More information

Foundstone 7.0 Patch 6 Release Notes

Foundstone 7.0 Patch 6 Release Notes Foundstone 7.0 Patch 6 Release Notes These release notes describe the changes and updates for Foundstone 7.0, patch 6. This application installs only the patch needed to update the Foundstone system. Foundstone

More information

IBM C IBM FileNet Content Manager V5.2, Specialist.

IBM C IBM FileNet Content Manager V5.2, Specialist. IBM C2070-981 IBM FileNet Content Manager V5.2, Specialist http://killexams.com/exam-detail/c2070-981 QUESTION: 114 What P8 domain level entity allows specific meta data attributes to be identified that

More information

Entrust. Discovery 2.4. Administration Guide. Document issue: 3.0. Date of issue: June 2014

Entrust. Discovery 2.4. Administration Guide. Document issue: 3.0. Date of issue: June 2014 Entrust Discovery 2.4 Administration Guide Document issue: 3.0 Date of issue: June 2014 Copyright 2010-2014 Entrust. All rights reserved. Entrust is a trademark or a registered trademark of Entrust, Inc.

More information

Cisco VCS Authenticating Devices

Cisco VCS Authenticating Devices Cisco VCS Authenticating Devices Deployment Guide First Published: May 2011 Last Updated: November 2015 Cisco VCS X8.7 Cisco Systems, Inc. www.cisco.com 2 About Device Authentication Device authentication

More information

StorageGRID Webscale 10.4 Administrator Guide

StorageGRID Webscale 10.4 Administrator Guide StorageGRID Webscale 10.4 Administrator Guide April 2017 215-11695_A0 doccomments@netapp.com Table of Contents 3 Contents Understanding the StorageGRID Webscale system... 8 What the StorageGRID Webscale

More information

User Manual. Admin Report Kit for Exchange Server

User Manual. Admin Report Kit for Exchange Server User Manual Admin Report Kit for Exchange Server Table of Contents 1 About ARKES-Admin Report Kit for Exchange Server 1 1.1 System requirements 2 1.2 How to activate the software? 3 1.3 ARKES Reports Primer

More information

Error Handling Strategy. DCC Guidance Document

Error Handling Strategy. DCC Guidance Document Error DCC Guidance Document Date: June 2016 Classification: DCC Public Table of Contents 1 Introduction... 3 1.1 Purpose... 3 1.2 Scope... 3 1.3 General Provisions... 3 2 Error Management... 4 2.1 Error

More information

Configuring CDR Repository Manager

Configuring CDR Repository Manager CHAPTER 13 Use the CDR Management Configuration window to set the amount of disk space to allocate to call detail record (CDR) and call management record (CMR) files, configure the number of days to preserve

More information

System Administration

System Administration Most of SocialMiner system administration is performed using the panel. This section describes the parts of the panel as well as other administrative procedures including backup and restore, managing certificates,

More information

Citrix Connector Citrix Systems, Inc. All rights reserved. p.1. About this release. System requirements. Technical overview.

Citrix Connector Citrix Systems, Inc. All rights reserved. p.1. About this release. System requirements. Technical overview. Citrix Connector 3.1 May 02, 2016 About this release System requirements Technical overview Plan Install Citrix Connector Upgrade Create applications Deploy applications to machine catalogs Publish applications

More information

Session 8. Reading and Reference. en.wikipedia.org/wiki/list_of_http_headers. en.wikipedia.org/wiki/http_status_codes

Session 8. Reading and Reference. en.wikipedia.org/wiki/list_of_http_headers. en.wikipedia.org/wiki/http_status_codes Session 8 Deployment Descriptor 1 Reading Reading and Reference en.wikipedia.org/wiki/http Reference http headers en.wikipedia.org/wiki/list_of_http_headers http status codes en.wikipedia.org/wiki/_status_codes

More information

System Integration. Contents CHAPTER. This chapter describes how to integrate the Cisco PAM data and actions with enterprise or third-party systems.

System Integration. Contents CHAPTER. This chapter describes how to integrate the Cisco PAM data and actions with enterprise or third-party systems. CHAPTER 12 This chapter describes how to integrate the Cisco PAM data and actions with enterprise or third-party systems. Contents Configuring URL Actions, page 12-2 Creating or Modifying URL Actions,

More information

SCOPIA iview Management Suite

SCOPIA iview Management Suite SCOPIA iview Management Suite Administrator Guide Version 7.7 2000-2011 RADVISION Ltd. All intellectual property rights in this publication are owned by RADVISION Ltd and are protected by United States

More information

ForeScout Extended Module for HPE ArcSight

ForeScout Extended Module for HPE ArcSight ForeScout Extended Module for HPE ArcSight Version 2.7.1 Table of Contents About the HPE ArcSight Integration... 4 Use Cases... 4 Send Endpoint Status, Compliance, or Property Changes from CounterACT to

More information

Managing Configurations

Managing Configurations CHAPTER 3 The Configurations page is your starting point for managing device configurations for network elements managed by Cisco Prime Network by using the CM tools. The following table lists the main

More information

Integration Service. Admin Console User Guide. On-Premises

Integration Service. Admin Console User Guide. On-Premises Kony MobileFabric TM Integration Service Admin Console User Guide On-Premises Release 7.3 Document Relevance and Accuracy This document is considered relevant to the Release stated on this title page and

More information