Você está na página 1de 110

A P P E N D I X

Notifications, Fault Management, and Probable Cause Mapping


This appendix includes information on CTM GateWay/CORBAs notifications, fault management, and probable cause mapping. This appendix includes the following sections:

A.1 Overview of Notifications, page A-1 A.2 Resolving the Notification Service, page A-2 A.3 Tips to Improve Notification Throughput, page A-2 A.4 Supported Events, page A-3 A.5 Probable Cause Mapping, page A-12

A.1 Overview of Notifications


The notification service forwards all fault notifications received from managed NEs to the network management system (NMS). The notification service also forwards object creation, object deletion, attribute change, protection switch, and threshold crossing alert (TCA) events. TMF 814 defines the structure and format of attributes for all events and alarms. The CTM server and the Operations Support System (OSS) host must have Domain Name System (DNS) enabled in order to receive notifications. OSS clients running behind a firewall must configure an IIOP listening port to enable the TCP connection with the notification server. CTM must configure the notification service listening port number to allow OSS clients to communicate with the notification service. CTM creates the notification channel with the QoS parameters shown in the following table.
Table A-1 QoS Parameters for the Notification Channel

Parameter ConnectionReliability StartTimeSupported OrderPolicy DiscardPolicy MaxEventsPerConsumer


1

Value BestEffort false FifoOrder FifoOrder 10000

1. The MaxEventsPerConsumer value is configurable. To modify this value, see B.8 Location of the Naming Service IOR File, page B-6. All other parameter values are defined by the TMF and cannot be changed.

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual OL-19364-01

A-1

Appendix A A.2 Resolving the Notification Service

Notifications, Fault Management, and Probable Cause Mapping

CTM sets the RejectNewEvents administration property of the channel to true, as defined by the TMF. Every notification that CTM generates has the QoS parameters listed in the following table. These parameter values are defined by the TMF and cannot be changed.
Table A-2 QoS Parameters for Notifications

Parameter EventReliability Priority Timeout

Value BestEffort DefaultPriority 30 minutes for alarms and TCAs; 24 hours for all other notifications The NMS retrieves all active alarms on the Element Management System (EMS) and on managed element objects. The NMS filters alarms based on probable cause and managed element name. CTM GateWay/CORBA forwards CTM-specific alarms to the NMS. For NE-related alarms, CTM inserts the original probable cause in the alarms nativeProbableCause field. The TMF-mapped probable cause is available in the probableCause field.

A.2 Resolving the Notification Service


CTM GateWay/CORBA can integrate with external notification services. When CTM GateWay/CORBA starts, a reference to EventNotifyChannelFactory is resolved. CTM GateWay/CORBA makes the following attempts to resolve the object:
1.

Resolve initial references with the default service name of NotificationService to resolve the object. You can change the service name by setting the corbagw.notification.ServiceName property in the corbagw.properties file. Resolve the object through the naming service. The default naming service entry is services.NotifyChannelFactory. You can change the naming service entry by setting the corbagw.notification.NamingContext property in the corbagw.properties file. Resolve the object directly through the Interoperable Object Reference (IOR). You can change the URL of the IOR file by setting the corbagw.notification.FactoryIORFile property in the corbagw.properties file. The default location for the IOR file is file://localhost/CTM_baseDir/cfg/NotificationService.ior. You can specify a URL that points to a remote web server.

2.

3.

A.3 Tips to Improve Notification Throughput


While CTM GateWay/CORBA and the bundled notification server are developed and tuned to provide high throughput, you might want to take additional steps to improve throughput and avoid any loss of notifications. You should implement the StructuredPushConsumer interface defined by the Object Management Group (OMG) and implement the push_structured_event method. The notification server invokes this method on the NMS.

Caution

Because all CORBA calls are blocking, the notification server thread blocks until the push_structured_event method completes. If you try to perform a time-consuming task before the method completes, you will block the notification server.

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual

A-2

OL-19364-01

Appendix A

Notifications, Fault Management, and Probable Cause Mapping A.4 Supported Events

To improve throughput, you should receive the event and forward it to another thread for processing. For example:
void push_structured_event(StructuredEvent notification) { try { some_other_thread_queue.addNotification(notification); } catch (Exception ex) { // catch all exception and ignore ex.printStackTrace(); } }

Caution

As shown in the example, you must catch all exceptions, or you will stop receiving notifications.

A.4 Supported Events


The following sections list the attributes of each event.

A.4.1 Object Creation


The following table lists the object creation types and attributes.
Table A-3 Object Creation

Attribute Name notificatId objectName objectType emsTime neTime edgePoint

Type string globaldefs::NamingAttributes_T notifications::ObjectType_T globaldefs::Time_T globaldefs::Time_T boolean

Supported by CTM? Yes. The uniqueness and sequence of the notification ID are not guaranteed. Yes. Yes. Yes. No. No.

Object creation notifications are sent to the NMS for the objects in the following table.
Table A-4 Object Creation Notifications

Object Type OT_MANAGED_ELEMENT OT_MULTILAYER_SUBNETWORK OT_TOPOLOGICAL_LINK OT_SUBNETWORK_CONNECTION OT_EQUIPMENT OT_PROTECTION_GROUP

Type Sent in remainder_of_body for Object Creation Event managedElement::ManagedElement_T multiLayerSubnetwork::MultiLayerSubnetwork_T topologicalLink::TopologicalLink_T subnetworkConnection::SubnetworkConnection_T equipment::Equipment_T protection::ProtectionGroup_T

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual OL-19364-01

A-3

Appendix A A.4.2 Object Deletion

Notifications, Fault Management, and Probable Cause Mapping

Table A-4

Object Creation Notifications (continued)

Object Type OT_L2TOPOLOGY OT_MLVLAN OT_ROLL OT_VCAT

Type Sent in remainder_of_body for Object Creation Event MultiLayerSubnetwork::L2Topology_T MultiLayerSubnetwork::MLVLAN_T MultiLayerSubnetwork::Roll_T SubnetworkConnection::VCAT_T CTM does not generate object creation events for SubnetworkConnection for the ONS 15540. CTM cannot give the object name for object creation events for ONS 15530 and ONS 15540 equipment. For the MGX 8880/8850/8830, CTM generates object creation events for the object types OT_MANAGED_ELEMENT and OT_EQUIPMENT.

Note

The number of equipment holders for NEs supported by CTM is constant. To reduce traffic between CTM and the NMS, CTM does not generate object creation events for equipment holders. The number of PTPs on equipment is also constant. Therefore, CTM generates only object creation events for equipment.

A.4.2 Object Deletion


The following table lists the object deletion types and attributes.
Table A-5 Object Deletion

Attribute Name notificationId objectName objectType emsTime neTime edgePoint

Type string globaldefs::NamingAttributes_T notifications::ObjectType_T globaldefs::Time_T globaldefs::Time_T boolean

Supported by CTM? Yes. The uniqueness and sequence of the notification ID are not guaranteed. Yes. Yes. Yes. No. No.

Object deletion notifications are sent to the NMS for the objects in the following table.
Table A-6 Object Deletion Notifications

Object Type OT_MANAGED_ELEMENT OT_MULTILAYER_SUBNETWORK OT_TOPOLOGICAL_LINK OT_SUBNETWORK_CONNECTION OT_EQUIPMENT

Type Sent in remainder_of_body for Object Deletion Event managedElement::ManagedElement_T multiLayerSubnetwork::MultiLayerSubnetwork_T topologicalLink::TopologicalLink_T subnetworkConnection::SubnetworkConnection_T equipment::Equipment_T

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual

A-4

OL-19364-01

Appendix A

Notifications, Fault Management, and Probable Cause Mapping A.4.3 Attribute Value Change

Table A-6

Object Deletion Notifications (continued)

Object Type OT_PROTECTION_GROUP OT_L2TOPOLOGY OT_MLVLAN OT_ROLL OT_VCAT

Type Sent in remainder_of_body for Object Deletion Event protection::ProtectionGroup_T MultiLayerSubnetwork::L2Topology_T MultiLayerSubnetwork::MLVLAN_T MultiLayerSubnetwork::Roll_T SubnetworkConnection::VCAT_T CTM does not generate object deletion events for SubnetworkConnection for the ONS 15530 and ONS 15540. For the MGX 8880/8850/8830, CTM generates object deletion events for the object types OT_MANAGED_ELEMENT and OT_EQUIPMENT.

Note

The number of equipment holders for all NEs supported by CTM is constant. To reduce traffic between CTM and the NMS, CTM does not generate object deletion events for equipment holders. The number of PTPs on equipment is also constant. Therefore, CTM generates only object deletion events for equipment.

A.4.3 Attribute Value Change


The following table lists the attribute value change (AVC) types and attributes.
Table A-7 Attribute Value Change

Attribute Name notificationId objectName objectType emsTime neTime edgePoint attributeList

Type string globaldefs::NamingAttributes_T notifications::ObjectType_T globaldefs::Time_T globaldefs::Time_T boolean notifications::NVList_T

Supported by CTM? Yes. The uniqueness and sequence of the notification ID are not guaranteed. Yes. Yes. Yes. No. No. Yes.

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual OL-19364-01

A-5

Appendix A A.4.4 State Change Event

Notifications, Fault Management, and Probable Cause Mapping

Attribute value change notifications are sent to the NMS for the objects and attributes in the following table.
Table A-8 Attribute Value Change Notifications

Object Type OT_EMS OT_MANAGED_ELEMENT

Attributes nativeEMSName nativeEMSNameThis field reflects the new managed element name if it is changed. location version productName

OT_MULTILAYER_SUBNETWORK OT_TOPOLOGICAL_LINK OT_L2TOPOLOGY OT_MLVLAN OT_ROLL OT_VCAT


1

NativeEMSName None None NativeEMSName None


Note

OT_SUBNETWORK_CONNECTION2

This event notifies the NMS that the VLAN was updated. This event notifies the NMS that the roll was updated. This event notifies the NMS that the VCAT changed.

None
Note

None
Note

1. The OT_TOPOLOGICAL_LINK event notifies the NMS that some attribute of the topological link changed. 2. The OT_SUBNETWORK_CONNECTION event is generated only when CTM fails to delete an SNC and it remains in the same state.

Note

CTM does not generate AVC events for SubnetworkConnection for the ONS 15530 and ONS 15540. For the MGX 8880/8850/8830, CTM generates AVC events for the object types OT_MANAGED_ELEMENT and OT_EMS.

A.4.4 State Change Event


The following table lists the state change event types and attributes.
Table A-9 State Change Event

Attribute Name notificationId objectName objectType

Type string globaldefs::NamingAttributes_T notifications::ObjectType_T

Supported by CTM? Yes. The uniqueness and sequence of the notification ID are not guaranteed. Yes. Yes.

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual

A-6

OL-19364-01

Appendix A

Notifications, Fault Management, and Probable Cause Mapping A.4.4 State Change Event

Table A-9

State Change Event (continued)

Attribute Name emsTime neTime edgePoint attributeList

Type globaldefs::Time_T globaldefs::Time_T boolean notifications::NVList_T

Supported by CTM? Yes. No. No. Yes.

State change event notifications are sent to the NMS for the objects and attributes in the following table.
Table A-10 State Change Event Notifications

Object Type OT_MANAGED_ELEMENT

Attributes communicationStateCTM supports the following values:


CS_AVAILABLE CS_UNAVAILABLE True False EMPTY INSTALLED_AND_EXPECTED EXPECTED_AND_NOT_INSTALLED MISMATCH_OF_INSTALLED_AND_EXPECTED SNCS_DELETING SNCS_PARTIAL SNCS_ACTIVE L2TS_COMPLETE L2TS_INCOMPLETE true false VLS_COMPLETE VLS_INCOMPLETE

emsInSyncStateCTM supports the following values:


OT_EQUIPMENT_HOLDER

holderStateState change. CTM supports the following values:


OT_SUBNETWORK_CONNECTION

sncStateCTM supports the following values:


OT_L2TOPOLOGY

L2TopoStateCTM supports the following values:


topoInSyncStateCTM supports the following values:


OT_MLVLAN

vlanStateCTM supports the following values:


Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual OL-19364-01

A-7

Appendix A A.4.5 Protection Switch

Notifications, Fault Management, and Probable Cause Mapping

Table A-10

State Change Event Notifications (continued)

Object Type OT_ROLL

Attributes rollStateCTM supports the following values:


ROLL_PENDING ROLL_COMPLETED ROLL_CANCELLED ROLL_INCOMPLETE VCATS_DELETING VCATS_PARTIAL VCAT_ACTIVE

OT_VCAT

vcatStateCTM supports the following values:


1. The OT_SUBNETWORK_CONNECTION event is generated only when CTM changes the SNC. If CTC or any other tool is used to change the SNC, CTM does not report this event.

CTM does not generate state change events for EquipmentHolder and SubnetworkConnection for the ONS 15530 and ONS 15540. For the MGX 8880/8850/8830, CTM generates state change events for the object types OT_MANAGED_ELEMENT and OT_EQUIPMENT_HOLDER.

A.4.5 Protection Switch


The following table lists the protection switch types and attributes. The protection switch event is not supported for MGX 8880/8850/8830 NEs.
Table A-11 Protection Switch

Attribute Name notificationId emsTime neTime ProtectionType switchReason layerRate groupName protectedTP switchAwayFromTP switchToTP

Type String globaldefs::Time_T globaldefs::Time_T protection::ProtectionType_T protection::switchReason_T transmissionParameters::LayerRate_T globaldefs::NamingAttributes_T globaldefs::NamingAttributes_T globaldefs::NamingAttributes_T globaldefs::NamingAttributes_T

Supported by CTM? Yes. The uniqueness and the sequence of the notification ID are not guaranteed. Yes. No. No. No. No. No. (Yes for ONS 15540 and ONS 15530.) No. (Yes for ONS 15540 and ONS 15530.) Yes for ONS 15540 and ONS 15530. No. (Yes for ONS 15540 and ONS 15530.)

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual

A-8

OL-19364-01

Appendix A

Notifications, Fault Management, and Probable Cause Mapping A.4.6 Threshold Crossing Alert

Table A-11

Protection Switch (continued)

Attribute Name affectedTP


Note

Type globaldefs::NamingAttributes_T

Supported by CTM? Yes. (No for ONS 15540 and ONS 15530.)

This is not defined by the TMF. String This is not defined by the TMF.

Description
Note

Yes. The value of this field is the native NE event value.

A.4.6 Threshold Crossing Alert


The following table lists the TCA types and attributes. This event is not supported for ONS 15530, ONS 15540, and MGX 8880/8850/8830 NEs because TCAs are reported as alarms.
Table A-12 Threshold Crossing Alert

Attribute Name notificationId objectName nativeEMSName objectType emsTime neTime isClearable perceivedSeverity

Type string globaldefs::NamingAttributes_T string notifications::ObjectType_T globaldefs::Time_T globaldefs::Time_T boolean notifications::PerceivedSeverity_T

Supported by CTM? Yes. The uniqueness and the sequence of the notification ID are not guaranteed. Yes. Yes. Yes. Yes. Yes. Yes. Always set to false. Yes. Always set to PerceivedSeverity_T.PS_INDETERMINATE.

layerRate granularity pmParameterName

transmissionParameters::LayerRate_T Granularity_T PMParameterName_T

Yes. Yes. Yes.


Note

If the NE does not report the location, this field is empty. If the NE does not report the location, this field is empty.

pmLocation

PMLocation_T

Yes.
Note

thresholdType value unit

PMThresholdType_T float string

No. Yes. No.

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual OL-19364-01

A-9

Appendix A A.4.7 Alarm

Notifications, Fault Management, and Probable Cause Mapping

A.4.7 Alarm
The following table lists the most common alarm messages. If there is an alarm on an STS/VC4 CTP utilizing all ports of a DS1/E1 card, the alarm is reported with the containing PTP as port 127. If an STS/VC4 SNC exists with one of the drop CTPs of the SNC using all ports on a DS1/E1 card, and if there is an alarm on the STS CTP, CTM reports the port number of the containing PTP as 127.
Table A-13 Alarm

Attribute Name notificationId objectName nativeEMSName nativeProbableCause

Type string globaldefs::NamingAttributes_T string string

Supported by CTM? Yes. The uniqueness and sequence of the notification ID are not guaranteed. Yes. Yes. Yes.
Note

In case of external condition alarms, the string value of the condition type is appended to this field.

objectType emsTime neTime isClearable layerRate

notifications::ObjectType_T globaldefs::Time_T globaldefs::Time_T boolean transmissionParameters::LayerRate_T

Yes. Yes. Yes. Yes. The value is always set to True. Yes.
Note

Not supported for ONS 15530 and ONS 15540 NEs.

probableCause probableCauseQualifier perceivedSeverity serviceAffecting affectedTPList additionalText additionalInfo

string string notifications::PerceivedSeverity_T notifications::ServiceAffecting_T globaldefs::NamingAttributesList_T string globaldefs::NVSList_T

Yes. Yes. CTM provides the same value as in the nativeProbableCause field. Yes. Yes. Yes. Yes. Yes. CTM provides subnetwork name when available. If the alarmed object is OC-n PTP, CTM also includes SDH_SONET_SS_BITS in this list. CTM provides the IP address for ME-related alarms. CTM provides the ME name when the object type is OT_EMS and the alarm is ME-related. CTM provides the affected object when the object type is OT_EMS and the nativeProbableCause is Server Monitor Threshold Crossed.

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual

A-10

OL-19364-01

Appendix A

Notifications, Fault Management, and Probable Cause Mapping A.4.8 Heartbeat Event

Table A-13

Alarm (continued)

Attribute Name isPropagated

Type boolean

Supported by CTM? Yes. For the MGX 8880/8850/8830, values are assigned to this field. For all other NEs, this field is always set to False. Yes.

aresFDN

string

A.4.8 Heartbeat Event


CTM generates a periodic heartbeat event and pushes the event to the notification channel. By default, this function is disabled. You can configure the interval value through the CTM Control Panel. If the interval value is set to 0, the heartbeat event is disabled. By monitoring this event, the northbound interface client knows whether the notification service is active. The type_name field contains the NT_HEART_BEAT value under the fixed_header for this type of event. Filterable_data has only one field, which is shown in the following table.
Table A-14 Heartbeat Event

Attribute Name notificationId

Type string

Supported by CTM? Yes. The uniqueness and sequence of the notification ID are not guaranteed.

A.4.9 Backup Status Event


The backup status event contains details about changes to a managed elements backup status.
Table A-15 Backup Status Event

Attribute Name notificationId emsTime neTime backupStatus meName

Type string globaldefs::Time_T globaldefs::Time_T softwareManager::BackupStatus_T globaldefs::NamingAttributes_T

Supported by CTM? Yes. The uniqueness and sequence of the notification ID are not guaranteed. Yes. The time when the EMS reported the event. Yes. The time provided by the NE. If the NE does not report time, this field is optional or reports an empty string. Yes. The backup status of the managed element. Yes. The name of the managed element from which the backup was taken.

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual OL-19364-01

A-11

Appendix A A.5 Probable Cause Mapping

Notifications, Fault Management, and Probable Cause Mapping

A.5 Probable Cause Mapping


A.5.1 TMF-Defined Probable Cause
The following report lists the probable causes defined by the TMF:
"UNIDENTIFIED": for alarms that do not match any other string below. EMS shall in this case fill out the additional text field as much as possible. "AIS": alarm indication signal "AMS": Alternate modulation signal "AU-AIS": AU alarm indication signal "BER_SD": signal degrade (includes receiver degrade) "BER_SF": signal fail (includes receiver failure and excessive BER) "DCC_FAILURE": Data Communication Channel Failure "EMS": EMS system alarm "EMS_ALM_LOSS": The 1st notification that the EMS may supply after 1 or more notifications for protection switch, TCA, alarm, or file transfer status have been discarded by the EMS while other events have not been discarded "EMS_LIFECYCLE_LOSS": The 1st notification that an EMS may supply after 1 or more events of type OC/OD/AVC/SC/RC have been discarded by the EMS "EMS_ALM_AND_LIFECYCLE_LOSS": The 1st notification that an EMS may supply after 1 or more notifications for protection switch, TCA, alarm, or file transfer status, and 1 or more events of type OC/OD/AVC/SC/RC have been discarded by the EMS "EQPT": equipment alarm "ENV" Environmental/external cause "FOP_APS": failure of APS protocol "LCD": Loss of Cell Delineation (from TC Adaptor part of ATM NI) "LOF": loss of frame (when distinguished from LOS) "LOM": loss of multiframe (SDH only, since not an alarm in GR-253) "LOP": loss of pointer "LOS": loss of signal "MS-AIS": MS alarm indication signal "OSC-AIS": Optical Supervisory Channel alarm indication signal "OSC_BER_SF": Optical Supervisory Channel signal fail/RX fail/excessive BER "OSC_FERF": Optical Supervisory Channel Far End Receive Failure "OSC_LOF": Optical Supervisory Channel Loss of Frame "OSC_LOS": Optical Supervisory Channel Loss of Signal "OSC_SD": Optical Supervisory Channel signal degrade "PLM": payload label mismatch (when reported as an alarm) "RAI": remote alarm indication (sometimes reported as RDI) "SECURITY_VIOLATION": security violation "SSF": server signal fail "TCM-AIS": Tandem Connection Sink - Incoming Alarm Indication Signal "TCM-LOS": Tandem Connection Sink - Loss of Tandem Connection Signal "TCM-OAI": Tandem Connection Sink - Outgoing Defect Indication (same/similar to Alarm Indication) "TCM-RAI": Tandem Connection Sink - Remote Defect Indication (same/similar to Alarm Indication) "TCM-SD": Tandem Connection Sink - Signal Degrade "TCM-SSF": Tandem Connection Sink - Server Signal Fail "TCM-TIM": Connection Sink - Trace Identifier Mismatch "TCM-UNEQ": Tandem Connection Sink - Unequipped "TIM": trace identifier mismatch (when reported as an alarm) "TU-AIS": TU alarm indication signal "TX_DEGRADE": transmitter degrade, including laser degrade "TX_FAIL": transmitter failure, including laser failure "UAT": Unavailable Time "UNEQ": payload unequipped "VC-AIS": VCL/VCC TP Alarm Indication Signal "VC-RDI": VCL/VCC TP Remote Defect Indication "VP-AIS": VPL/VPC TP Alarm Indication Signal

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual

A-12

OL-19364-01

Appendix A

Notifications, Fault Management, and Probable Cause Mapping A.5.2 CTM GateWay/CORBA MappingEMS

"VP-RDI": VPL/VPC TP Remote Defect Indication

A.5.2 CTM GateWay/CORBA MappingEMS


The following table lists the CTM GateWay/CORBA mapping for the EMS.
Table A-16 CTM GateWay/CORBA Mapping for the EMS

TMF Mapping EMS EMS SECURITY_VIOLATION EMS EMS EMS EMS EMS EMS EMS EMS EMS

NE Native Probable Cause Loss of communication Memory automatic or manual backup failure Maximum login attempts exceeded Partition 0 free disk space low Partition 1 free disk space low Partition 2 free disk space low Partition 3 free disk space low Partition 4 free disk space low Partition 5 free disk space low Partition 6 free disk space low Alarm resync unsuccessful Server monitor threshold crossed

CTM Internal Index (Not Reported in the Notification) 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012

A.5.3 CTM GateWay/CORBA MappingMGX 8880/8850/8830


The following table lists the CTM GateWay/CORBA mapping for the MGX 8880/8850/8830.
Table A-17 CTM GateWay/CORBA Mapping for the MGX 8880/8850/8830

TMF Mapping EMS EMS EMS EMS EMS EMS


Note

NE Native Probable Cause Sync-up has not started yet Currently in sync-up Partial sync-up Sync-up failed Server in partial sync-up Server sync-up failed

CTM Internal Index (Not Reported in the Notification) 60009 60010 60011 60012 60013 60014

The following EMS alarms must be cleared manually, so isClearable should be set to False in the corresponding CTM GateWay/CORBA alarm event. FTP transfer failure FTP file size mismatch 62401 62408

EMS EMS

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual OL-19364-01

A-13

Appendix A A.5.3 CTM GateWay/CORBA MappingMGX 8880/8850/8830

Notifications, Fault Management, and Probable Cause Mapping

Table A-17

CTM GateWay/CORBA Mapping for the MGX 8880/8850/8830 (continued)

TMF Mapping EMS EMS EMS EMS EMS EMS EMS EMS EMS EMS EMS EMS EMS EMS EMS EMS EMS EMS EMS EMS EMS EMS
Shelf-Level Peripheral Alarms

NE Native Probable Cause FTP transfer failed Upload file error Minus 2 trap Card lost trap SNMP retry exceeded FTP retry exceeded Stats file error Stats file transfer error SNMP throttle error Backoff failed SNMP timeout FTP session timeout FTP transfer timeout Unknown error Initialization error Communication error in ILOG Communication error in shared memory Communication error in CORBA NTS registration failed NTS trap loss PM error Process restarted Above normal Below normal Down Power failure Front card not present Front card failed Front card in self test Front card held in reset Front card in boot Front card mismatch Front card unknown alarm

CTM Internal Index (Not Reported in the Notification) 62409 62410 62411 62412 62413 62414 62416 62417 62418 62419 62420 62421 62422 62448 62449 62452 62453 62454 62456 62457 62459 62502 60031 60032 60033 60034 60101 60102 60103 60104 60105 60106 60107

EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT

Card-Level Alarms for all Supported Cards on MGX8880/8850/8830

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual

A-14

OL-19364-01

Appendix A

Notifications, Fault Management, and Probable Cause Mapping A.5.3 CTM GateWay/CORBA MappingMGX 8880/8850/8830

Table A-17

CTM GateWay/CORBA Mapping for the MGX 8880/8850/8830 (continued)

TMF Mapping EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT

NE Native Probable Cause Front card core card mismatch Front card failed, no backup Front card reserved Front card down Front card in update mode Front card unavailable Front card downloading Front card downloader Front card downloaded Front card locked Front card in program mode Front card upgrading Front card upgraded Front card frozen Front card in hold mode Front card not responding Front card in initialization Front card blocked Front card removed Primary back card not present Primary back card in mismatch Secondary back card not present Secondary back card in mismatch Primary card not present Primary card failed Primary card in self test Primary card held in reset Primary card in boot Primary card mismatch Primary card unknown alarm Primary card core card mismatch Primary card failed, no backup Primary card reserved Primary card down Primary card in update mode

CTM Internal Index (Not Reported in the Notification) 60108 60109 60110 60111 60112 60113 60114 60115 60116 60117 60118 60119 60120 60121 60122 60123 60124 60125 60126 60201 60202 60301 60302 60401 60402 60403 60404 60405 60406 60407 60408 60409 60410 60411 60412

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual OL-19364-01

A-15

Appendix A A.5.3 CTM GateWay/CORBA MappingMGX 8880/8850/8830

Notifications, Fault Management, and Probable Cause Mapping

Table A-17

CTM GateWay/CORBA Mapping for the MGX 8880/8850/8830 (continued)

TMF Mapping EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT

NE Native Probable Cause Primary card unavailable Primary card downloading Primary card downloader Primary card downloaded Primary card locked Primary card in program mode Primary card upgrading Primary card upgraded Primary card frozen Primary card in hold mode Primary card not responding Primary card in initialization Primary card blocked Front card removed Secondary card not present Secondary card failed Secondary card in self test Secondary card held in reset Secondary card in boot Secondary card mismatch Secondary card unknown alarm Secondary card core card mismatch Secondary card failed, no backup Secondary card reserved Secondary card down Secondary card in update mode Secondary card unavailable Secondary card downloading Secondary card downloader Secondary card downloaded Secondary card locked Secondary card in program mode Secondary card upgrading Secondary card upgraded Secondary card frozen

CTM Internal Index (Not Reported in the Notification) 60413 60414 60415 60416 60417 60418 60419 60420 60421 60422 60423 60424 60425 60426 60501 60502 60503 60504 60505 60506 60507 60508 60509 60510 60511 60512 60513 60514 60515 60516 60517 60518 60519 60520 60521

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual

A-16

OL-19364-01

Appendix A

Notifications, Fault Management, and Probable Cause Mapping A.5.3 CTM GateWay/CORBA MappingMGX 8880/8850/8830

Table A-17

CTM GateWay/CORBA Mapping for the MGX 8880/8850/8830 (continued)

TMF Mapping EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT
Sensor Alarms: VXSM

NE Native Probable Cause Secondary card in hold mode Secondary card not responding Secondary card in initialization Redundant blocked Secondary card removed Controller in standby mode License expired License missing Card sync-up failed Redundant card switch over Sensor less than threshold value Sensor greater than threshold value Sensor equal to threshold value Sensor less than threshold value Sensor greater than threshold value Sensor equal to threshold value Sensor less than threshold value Sensor greater than threshold value Sensor equal to threshold value

CTM Internal Index (Not Reported in the Notification) 60522 60523 60524 60525 60526 60601 60650 60651 60660 60661 60670 60671 60672 60673 60674 60675 60676 60677 60678

EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT


Line-Level Alarms

DS1 Line: AXSM, MPSM, PXM1E, VXSM, VISM, SRME

RAI RAI AIS AIS OOF LOS UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED OOF OOF RAI AIS

Receiving RAI Transmitting RAI Receiving AIS Transmitting AIS Receiving OOF Receiving LOS Near-end local loop in effect Near-end remote loop in effect Near-end remote payload loop in effect Receiving CRC MF OOF Receiving signal MF OOF Receiving MF RAI Receiving MF AIS

60701 60702 60703 60704 60705 60706 60707 60708 60709 60710 60711 60712 60713

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual OL-19364-01

A-17

Appendix A A.5.3 CTM GateWay/CORBA MappingMGX 8880/8850/8830

Notifications, Fault Management, and Probable Cause Mapping

Table A-17

CTM GateWay/CORBA Mapping for the MGX 8880/8850/8830 (continued)

TMF Mapping UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED RAI AIS AIS OOF LOS UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED AIS UNIDENTIFIED AIS UNIDENTIFIED LOS LOF UNIDENTIFIED LOP AIS UNIDENTIFIED UNEQ UNIDENTIFIED UNIDENTIFIED AIS UNIDENTIFIED UNIDENTIFIED
Line Stats Alarm

NE Native Probable Cause Far-end remote loopback Detected near-end remote loopback Receiving RAI Transmitting RAI Receiving AIS Transmitting AIS Receiving OOF Receiving LOS Near-end local loop in effect Near-end remote loop in effect Receiving test pattern Receiving LOCD Receiving C-bit parity pattern Line receiving AIS Line receiving RDI Line transmitting AIS Line transmitting RDI Section LOS Section LOF Section trace ID mismatch Path receiving STS LOP Path receiving STS AIS Path receiving STS RDI Path unequipped Path signal label mismatch Path trace failure Path transmitting AIS Path transmitting RDI Path signal receiving LOCD

CTM Internal Index (Not Reported in the Notification) 60714 60715 60801 60802 60803 60804 60805 60806 60807 60808 60809 60810 60811 60901 60902 60903 60904 60910 60911 60912 60920 60921 60922 60923 60924 60925 60926 60927 60928

DS3 Line: AXSM, MPSM, PXM1E, VXSM, SRME

SONET Line: AXSM, MPSM, PXM1E, VXSM, SRME

DS1/DS3: AXSM, MPSM, PXM1E, VXSM, VISM, SRME

UNIDENTIFIED UNIDENTIFIED

Stats alarm, PES current 15-minute threshold exceeded Stats alarm, PES 24-hour threshold exceeded

61101 61102

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual

A-18

OL-19364-01

Appendix A

Notifications, Fault Management, and Probable Cause Mapping A.5.3 CTM GateWay/CORBA MappingMGX 8880/8850/8830

Table A-17

CTM GateWay/CORBA Mapping for the MGX 8880/8850/8830 (continued)

TMF Mapping UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED

NE Native Probable Cause Stats alarm, PSES current 15-minute threshold exceeded Stats alarm, PSES 24-hour threshold exceeded Stats alarm, SEFS current 15-minute threshold exceeded Stats alarm, SEFS 24-hour threshold exceeded Stats alarm, UAS current 15-minute threshold exceeded Stats alarm, UAS 24-hour threshold exceeded Stats alarm, LCV current 15-minute threshold exceeded Stats alarm, LCV 24-hour threshold exceeded Stats alarm, PCV current 15-minute threshold exceeded Stats alarm, PCV 24-hour threshold exceeded Stats alarm, LES current 15-minute threshold exceeded Stats alarm, LES 24-hour threshold exceeded Stats alarm, CCV current 15-minute threshold exceeded Stats alarm, CCV 24-hour threshold exceeded Stats alarm, CES current 15-minute threshold exceeded Stats alarm, CES 24-hour threshold exceeded Stats alarm, CSES current 15-minute threshold exceeded Stats alarm, CSES 24-hour threshold exceeded Stats alarm, SONET line, total ESs Stats alarm, SONET line, total SESs Stats alarm, SONET line, total CVs Stats alarm, SONET line, total UAs Stats alarm, SONET line, current ESs Stats alarm, SONET line, current SESs Stats alarm, SONET line, current CVs Stats alarm, SONET line, current UAs Stats alarm, SONET line, far end, current ESs Stats alarm, SONET line, far end, total ESs Stats alarm, SONET line, far end, total SESs Stats alarm, SONET line, far end, total CVs Stats alarm, SONET line, far end, total UAs Stats alarm, SONET line, far end, current SESs Stats alarm, SONET line, far end, current CVs Stats alarm, SONET line, far end, current UASs

CTM Internal Index (Not Reported in the Notification) 61103 61104 61105 61106 61107 61108 61109 61110 61111 61112 61113 61114 61115 61116 61117 61118 61119 61120 61201 61202 61203 61204 61205 61206 61207 61208 61209 61210 61211 61212 61213 61214 61215 61216

SONET: AXSM, MPSM, PXM1E, VXSM, SRME

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual OL-19364-01

A-19

Appendix A A.5.3 CTM GateWay/CORBA MappingMGX 8880/8850/8830

Notifications, Fault Management, and Probable Cause Mapping

Table A-17

CTM GateWay/CORBA Mapping for the MGX 8880/8850/8830 (continued)

TMF Mapping UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED FOP_APS FOP_APS FOP_APS FOP_APS FOP_APS FOP_APS FOP_APS FOP_APS FOP_APS FOP_APS

NE Native Probable Cause Stats alarm, SONET section, total ESs Stats alarm, SONET section, total SESs Stats alarm, SONET section, total SEFSs Stats alarm, SONET section, total CVs Stats alarm, SONET section, current ESs Stats alarm, SONET section, current SESs Stats alarm, SONET section, current SEFSs Stats alarm, SONET section, current CVs Stats alarm, SONET path, total ESs Stats alarm, SONET path, total SESs Stats alarm, SONET path, total CVs Stats alarm, SONET path, total UAs Stats alarm, SONET path, current ESs Stats alarm, SONET path, current SESs Stats alarm, SONET path, current CVs Stats alarm, SONET path, current UAs Stats alarm, SONET path, far end, current ESs Stats alarm, SONET path, far end, total ESs Stats alarm, SONET path, far end, total SESs Stats alarm, SONET path, far end, total CVs Stats alarm, SONET path, far end, total UAs Stats alarm, SONET path, far end, current SESs Stats alarm, SONET path, far end, current CVs Stats alarm, SONET path, far end, current UASs APS alarm, channel mismatch APS alarm, protection byte fail APS alarms, FE protection failure APS alarms, mode mismatch APS alarms, signal degrade APS alarms, signal failure APS alarms, line alarm APS alarms, line loopback APS alarms, standby signal degrade APS alarms, standby signal failure

CTM Internal Index (Not Reported in the Notification) 61301 61302 61303 61304 61305 61306 61307 61308 61401 61402 61403 61404 61405 61406 61407 61408 61409 61410 61411 61412 61413 61414 61415 61416 61501 61502 61503 61504 61505 61506 61507 61508 61509 61510

Line APS Alarms: AXSM, MPSM, PXM1E, VXSM, SRME

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual

A-20

OL-19364-01

Appendix A

Notifications, Fault Management, and Probable Cause Mapping A.5.3 CTM GateWay/CORBA MappingMGX 8880/8850/8830

Table A-17

CTM GateWay/CORBA Mapping for the MGX 8880/8850/8830 (continued)

TMF Mapping FOP_APS FOP_APS FOP_APS FOP_APS EQPT EQPT EQPT EQPT EQPT EQPT FOP_APS FOP_APS FOP_APS FOP_APS FOP_APS FOP_APS FOP_APS FOP_APS FOP_APS
Port Alarms: AXSM, MPSM, PXM1E

NE Native Probable Cause APS alarms, standby line alarm APS alarms, standby line loopback APS alarms, direction mismatch APS alarms, wrong request APS alarms, protect BC missing APS alarms, protect DC missing APS alarms, working BC missing APS alarms, working DC missing APS alarms, working card mismatch APS alarms, protect card mismatch APS alarms, APS revertive switch fail APS alarms, APS manual switch fail APS alarms, APS SD low switch fail APS alarms, APS SD high switch fail APS alarms, APS SF low switch fail APS alarms, APS SF high switch fail APS alarms, APS force switch fail APS alarms, APS lockout switch fail APS alarms, APS line status OK Port, not configured Port, down/failure Port, remote loopback Port, signaling failure Port, out of cell delineation Port, lower layer down RPM port, down RPM port, testing RPM port, unknown RPM port, lower layer down SVC port, failed SVC port, inactive SVC port, lower layer down

CTM Internal Index (Not Reported in the Notification) 61511 61512 61513 61514 61515 61516 61517 61518 61519 61520 61521 61522 61523 61524 61525 61526 61527 61528 61529 61751 61752 61753 61754 61755 61756 62101 62102 62103 62104 62201 62202 62203

UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED


RPM Port Alarms: RPM, RPM-XF

UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED

SVC Port Alarms: AXSM, VXSM, RPM-XF, RPM

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual OL-19364-01

A-21

Appendix A A.5.3 CTM GateWay/CORBA MappingMGX 8880/8850/8830

Notifications, Fault Management, and Probable Cause Mapping

Table A-17

CTM GateWay/CORBA Mapping for the MGX 8880/8850/8830 (continued)

TMF Mapping
VISM Port Alarms: VISM

NE Native Probable Cause VISM port, failed VISM port, degraded VISM port, lower layer down

CTM Internal Index (Not Reported in the Notification) 62221 62222 62223

UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED

Aggregate Port Alarms: AXSM, MPSM, PXM1E RPM, RPM-XF

Aggregate port alarm; one or more connections on this port are 62301 in primary failure Aggregate port alarm; one or more connections on this port are 62302 in secondary failure Aggregate port alarm; one or more connections on this port are 62303 incomplete Connection alarm, primary failure Connection alarm, secondary failure Incomplete connection CAC resources, above high threshold value CAC resources, above medium threshold value Media gateway link state, pending in service Media gateway link state, pending FOOS Media gateway link state, pending GOOS Media gateway link state, out of service Media gateway link state, MGC direct out of service RUDP session state, out of service RUDP session state, standby in service RUDP session state, full in service RUDP session state, unknown Session group state, out of service Session group state, unknown Session set state, out of service Session set state, standby in service Session set state, full in service Session set state, unknown MGC in redundancy group, inactive MGC communication state, inactive RTP connection state, failed 62601 62602 62603 60681 60683 60611 60613 60614 60612 60615 60631 60632 60633 60634 60641 60642 60691 60692 60693 60694 60211 60221 60231

Connection Alarm: AXSM, MPSM, PXM1E, VXSM, VISM, RPM, RPM-XF

UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED


Card-Level VXSM and VISM Alarms

UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual

A-22

OL-19364-01

Appendix A

Notifications, Fault Management, and Probable Cause Mapping A.5.3 CTM GateWay/CORBA MappingMGX 8880/8850/8830

Table A-17

CTM GateWay/CORBA Mapping for the MGX 8880/8850/8830 (continued)

TMF Mapping UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED

NE Native Probable Cause CID state, failed MTP link set active MTP link set inactive MTP link set inhibited MTP link set uninhibited MTP link set shut MTP link set no shut MTP link active MTP link inactive MTP link inhibited MTP link uninhibited MTP link shut MTP link no shut MTP signaling gateway route available MTP signaling gateway route unavailable MTP signaling gateway route restricted L3UA ASP active L3UA ASP inactive L3UA ASP down L3UA ASP undefined L3UA AS active L3UA AS inactive L3UA AS down L3UA AS pending L3UA AS undefined DPNSS DLC active DPNSS DLC inactive Gateway voice quality alert Gateway VBD call quality alert Gateway voice quality alert for IP-IP Gateway VQM trap queue full System resource utilization threshold exceeded System resource utilization normal System resource utilization medium level exceeded Zero percent call reduce rate reached

CTM Internal Index (Not Reported in the Notification) 60241 66001 66002 66003 66004 66005 66006 66007 66008 66009 66010 66011 66012 66013 66014 66015 66016 66017 66018 66019 66020 66021 66022 66023 66024 66025 66026 66027 66028 66029 66030 66031 66032 66033 66034

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual OL-19364-01

A-23

Appendix A A.5.4 CTM GateWay/CORBA MappingONS 15216

Notifications, Fault Management, and Probable Cause Mapping

Table A-17

CTM GateWay/CORBA Mapping for the MGX 8880/8850/8830 (continued)

TMF Mapping UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED


Line-Level VISM and VXSM Alarms

NE Native Probable Cause Maximum call reduce rate reached Gateway drop call starts Gateway drop call alert cleared Gateway overload normal Gateway overload threshold exceeded Endpoint state, failed Endpoint state, degraded LAPD state, inactive LAPD trunk state, inactive LAPD trunk state, unknown

CTM Internal Index (Not Reported in the Notification) 66035 66036 66037 66038 66039 60251 60252 61591 61531 61532

UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED

A.5.4 CTM GateWay/CORBA MappingONS 15216


A.5.4.1 ONS 15216 OADM
The following table lists the alarms for the ONS 15216 OADM R2.2.
Table A-18 CTM GateWay/CORBA Alarms for the ONS 15216 OADM R2.2

TMF Mapping LOS LOS EQPT EQPT EQPT EQPT

NE Native Probable Cause Add channel signal loss Drop channel signal loss Add and drop channels are out of tolerance Power unit A failed Power unit B failed

CTM Internal Index (Not Reported in the Notification) 8501 8502 8503 8505 8506

Add channel signal is too weak and VOA cannot adjust it to match the drop signal 8504

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual

A-24

OL-19364-01

Appendix A

Notifications, Fault Management, and Probable Cause Mapping A.5.4 CTM GateWay/CORBA MappingONS 15216

A.5.4.2 ONS 15216 EDFA2


The following table lists the alarms for the ONS 15216 EDFA2 R2.3 and 2.4.
Table A-19 CTM GateWay/CORBA Alarms for the ONS 15216 EDFA2 R2.3, R2.4

TMF Mapping UNIDENTIFIED EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT

NE Native Probable Cause Unknown alarm Excessive pump 1 current Excessive pump 2 current Excessive pump 1 laser temperature Excessive pump 2 laser temperature Loss of output power Loss of input power Gain out of range Case temperature out of range Power unit A failed Power unit B failed Database backup Database restore Cutover reset Software load Software reset

CTM Internal Index (Not Reported in the Notification) 8601 8602 8603 8604 8605 8606 8607 8608 8609 8610 8611 8612 8613 8614 8615 8616

A.5.4.3 ONS 15216 EDFA3


The following table lists the alarms for the ONS 15216 EDFA3 R1.1.
Table A-20 CTM GateWay/CORBA Alarms for the ONS 15216 EDFA3 R1.1

TMF Mapping UNIDENTIFIED EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT

NE Native Probable Cause Unknown alarm Gain degrade high Gain degrade low Laser 1 bias degrade Laser 2 bias degrade Laser 1 bias fail Laser 2 bias fail Power degrade high LINE1TX port Power degrade low LINE1TX port Power fail low LINE1RX port

CTM Internal Index (Not Reported in the Notification) 8701 8702 8703 8704 8705 8706 8707 8708 8709 8710

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual OL-19364-01

A-25

Appendix A A.5.5 CTM GateWay/CORBA MappingONS 15305 and ONS 15305 CTC

Notifications, Fault Management, and Probable Cause Mapping

Table A-20

CTM GateWay/CORBA Alarms for the ONS 15216 EDFA3 R1.1 (continued)

TMF Mapping EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT

NE Native Probable Cause Power fail low LINE1TX port Power fail low LINE2RX port VOA degrade high VOA degrade low VOA fail high Case temperature out of range Fiber temperature out of range Excessive pump 1 temperature Excessive pump 2 temperature Backup/restore in progress Data integrity fault Equipment failure Exceeding memory capacity Exceeding flash file system capacity Module communication failure Power bus A alarm Power bus B alarm

CTM Internal Index (Not Reported in the Notification) 8711 8712 8713 8714 8715 8716 8717 8718 8719 8720 8721 8722 8723 8724 8725 8726 8727

A.5.5 CTM GateWay/CORBA MappingONS 15305 and ONS 15305 CTC


The following table lists the CTM GateWay/CORBA mapping for the ONS 15305 and ONS 15305 CTC.
Table A-21 CTM GateWay/CORBA Mapping for the ONS 15305, ONS 15305 CTC

TMF Mapping UNIDENTIFIED AIS AIS LOF LOF LOF LOF LOP LOS BER_SD LOM

NE Native Probable Cause ONS 15305 condition unknown Alarm indication signal Alarm indication signal network side Alarm indication signal customer side Loss of frame alignment Loss of frame alignment network side Loss of frame alignment customer side Loss of pointer Loss of signal Degraded signal defect Loss of multiframe alignment

CTM Internal Index (Not Reported in the Notification) 19000 19001 19002 19003 19004 19005 19006 19007 19008 19009 19010

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual

A-26

OL-19364-01

Appendix A

Notifications, Fault Management, and Probable Cause Mapping A.5.5 CTM GateWay/CORBA MappingONS 15305 and ONS 15305 CTC

Table A-21

CTM GateWay/CORBA Mapping for the ONS 15305, ONS 15305 CTC (continued)

TMF Mapping RAI TIM PLM UNEQ BER_SF UNIDENTIFIED SSF UNIDENTIFIED EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED

NE Native Probable Cause Remote defect indication Trace identifier mismatch Payload mismatch Unequipped Excessive error defect Communication subsystem failure Server signal failure Alarm condition detected on an alarm input port Device main unit failure High temperature alarm Fan failure Power input failure Power output failure Module mismatch Module removed Module failure MSP signaling problem Power module failure LAN port is not working WAN port is not working Too large delay on WAN channel Sequence number fail on WAN channel No synchronization source available Defecting hardware impacting internal T0 clock No T4 synchronization source available with QL >= QL min Inventory failure Diagnostic failure DXC inlet failure DXC inlet bit error Card isolated Card anomaly Hot swap failure Power input failure Transmit degrade on laser Transmit fail on laser

CTM Internal Index (Not Reported in the Notification) 19011 19012 19013 19014 19015 19016 19017 19018 19019 19020 19021 19022 19023 19024 19025 19026 19027 19028 19029 19030 19031 19032 19033 19034 19035 19036 19037 19038 19039 19040 19041 19042 19043 19044 19045

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual OL-19364-01

A-27

Appendix A A.5.5 CTM GateWay/CORBA MappingONS 15305 and ONS 15305 CTC

Notifications, Fault Management, and Probable Cause Mapping

Table A-21

CTM GateWay/CORBA Mapping for the ONS 15305, ONS 15305 CTC (continued)

TMF Mapping UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED

NE Native Probable Cause Port activated without mapping to an available VC-12 Rx buffer overflow in LAN or link interface Interport queue overflow in LAN or link interface Reset of the router/bridge required Device aborted FTP session Automatic switchover to backup link, main link fault Overflow layer 2 forward table Connection failed: frame relay switch and WAN gate Connection established: frame relay switch and WAN gate Error occurred during initialization Overflow in the client table Server not responding to dispatcher polling SNMP SET request was rejected Ping sequence completed Backup taken over for main server or server up after failure DHCP failed to allocate IP address to requesting host Overflow IGMP table Overflow PIM table Overflow condition in routing table Open gate IPX RIP table overflow Open gate IPX SAP table overflow FACS state NE with operation blockAndReport Zero hop routing connections table overflow No available IP virtual address Virtual IP address appeared as a source IP Source IP address sent an ARP specifying a virtual IP PPP link got an unrecognized secret FR DLCI status change CHAP failed communication IP SFFT overflow IP NFFT overflow IPX SFFT overflow IPX NFFT overflow IPM FFT overflow

CTM Internal Index (Not Reported in the Notification) 19046 19048 19049 19050 19051 19052 19053 19054 19055 19056 19057 19058 19059 19060 19061 19062 19063 19064 19065 19066 19067 19068 19069 19070 19071 19072 19073 19074 19075 19076 19077 19078 19079 19080

Differential VC12 delay for the WAN port is greater than +/- 2 ms 19047

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual

A-28

OL-19364-01

Appendix A

Notifications, Fault Management, and Probable Cause Mapping A.5.5 CTM GateWay/CORBA MappingONS 15305 and ONS 15305 CTC

Table A-21

CTM GateWay/CORBA Mapping for the ONS 15305, ONS 15305 CTC (continued)

TMF Mapping UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED

NE Native Probable Cause PAP failed communication Automatic switchover to backup link, main link fault Informational event T0 sync switch T0QI failed T0QIDnu Switch to protection Switch to working MSP command timeout MSP command overruled Loop closed Loop opened Link up Link down The communication link has come up Failure in communication link Addressee of a protocol message not properly authenticated Reinitializing; configuration or the protocol entity implementation may be altered Reinitializing; neither configuration nor protocol entity implementation altered RMON alarm has crossed the rising threshold RMON alarm has crossed the falling threshold Loss of an adjacency with a PIM neighbor Device finished TFTP transaction Device initiated TFTP transaction Auto configuration completed successfully VLAN port dynamically added VLAN port dynamically changed Physical description device changed Port transition from learning to forwarding Port transition from forwarding to learning Packet drop due to the QoS policy Packet forwarded based on the QoS policy Protection link activated Working link activated

CTM Internal Index (Not Reported in the Notification) 19081 19082 19083 19084 19085 19086 19087 19088 19089 19090 19091 19092 19093 19094 19095 19096 19097 19098 19099 19100 19101 19102 19103 19104 19105 19106 19107 19108 19109 19110 19111 19112 19113 19114

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual OL-19364-01

A-29

Appendix A A.5.6 CTM GateWay/CORBA MappingONS 15454 SONET R4.1.4

Notifications, Fault Management, and Probable Cause Mapping

Table A-21

CTM GateWay/CORBA Mapping for the ONS 15305, ONS 15305 CTC (continued)

TMF Mapping UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED

NE Native Probable Cause MSP command timeout MSP command overruled Loss of external synchronization ONS 15305 condition unknown

CTM Internal Index (Not Reported in the Notification) 19115 19116 19117 19999

A.5.6 CTM GateWay/CORBA MappingONS 15454 SONET R4.1.4


The following table lists the CTM GateWay/CORBA mapping for the ONS 15454 SONET R4.1.4.
Table A-22 CTM GateWay/CORBA Mapping for the ONS 15454 SONET R4.1.4

TMF Mapping UNIDENTIFIED ENV ENV UNIDENTIFIED UNIDENTIFIED AIS AIS AIS FOP_APS FOP_APS FOP_APS FOP_APS FOP_APS UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED LOF LOP LOP LOS UNIDENTIFIED

NE Native Probable Cause Normal condition Failure detected external to the NE External error Excessive switching Incoming failure condition Alarm indication signal Alarm indication signalline Alarm indication signalpath APS channel failure Byte failure Protection switching channel match failure Automatic protection switch mode mismatch Far-end protection line failure Bipolar violation Carrier loss on the LAN STS concatenation error Excess collisions on the LAN Facility failure Far-end block error Loss of frame Loss of pointer Loss of pointerpath Loss of signal Out of frame

CTM Internal Index (Not Reported in the Notification) 25000 25001 25002 25003 25004 25005 25006 25007 25008 25009 25010 25011 25012 25013 25014 25015 25016 25017 25018 25019 25020 25021 25022 25023

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual

A-30

OL-19364-01

Appendix A

Notifications, Fault Management, and Probable Cause Mapping A.5.6 CTM GateWay/CORBA MappingONS 15454 SONET R4.1.4

Table A-22

CTM GateWay/CORBA Mapping for the ONS 15454 SONET R4.1.4 (continued)

TMF Mapping UNIDENTIFIED RAI RAI RAI RAI BER_SD UNIDENTIFIED UNIDENTIFIED BER_SF UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED PLM UNEQ UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED RAI RAI UNIDENTIFIED UNIDENTIFIED EQPT UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED ENV ENV UNIDENTIFIED

NE Native Probable Cause Path selector failure Remote alarm indication Remote failure indication Remote failure indicationline Remote failure indicationpath Signal degrade Severely errored frame Invalid alarm Signal failure Signal label mismatch failures Payload defect indication Payload defect indicationpath Payload label mismatchpath Unequippedpath Loss of synchronization Out of synchronization Primary synchronization reference failure Secondary synchronization reference failure Third synchronization reference failure Fourth synchronization reference failure Fifth synchronization reference failure Sixth synchronization reference failure Outgoing failure condition Remote defect indicationline Remote defect indicationpath Free running synchronization mode Holdover synchronization mode Internal fault Internal error Internal message error Mismatch of equipment and attributes Watchdog timer timeout Software fault or failure Software faultdata integrity fault Program failure

CTM Internal Index (Not Reported in the Notification) 25024 25025 25026 25027 25028 25029 25030 25031 25032 25033 25034 25035 25036 25037 25038 25039 25040 25041 25042 25043 25044 25045 25046 25047 25048 25049 25050 25051 25052 25053 25054 25055 25056 25057 25058

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual OL-19364-01

A-31

Appendix A A.5.6 CTM GateWay/CORBA MappingONS 15454 SONET R4.1.4

Notifications, Fault Management, and Probable Cause Mapping

Table A-22

CTM GateWay/CORBA Mapping for the ONS 15454 SONET R4.1.4 (continued)

TMF Mapping EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT UNIDENTIFIED EQPT EQPT UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED EQPT EQPT UNIDENTIFIED UNIDENTIFIED EQPT UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED

NE Native Probable Cause Control equipment failure Control processor failure Working memory failure Interconnection equipment failure Time slot interchange equipment failure Equipment failure High temperature Facility termination equipment failure Automatic laser shutdown Failure to release from protection Receiver failure Transmit failure Failure to switch to protection Equipment unit plug-in Internal power failure Fuse alarm Synchronization unit failure Synchronization switching equipment failure Equipment unit unplugged Manually caused abnormal condition Manual alarm cutoff Procedural error Improper removal Protection unit not available Protection switch Recovery or service protection action has been initiated Automatic system reset Cold restart Forced switch back to working Forced switch to protection Initialization initiated Lockout of protection Lockout of working Manual system reset Manual switch to internal clock

CTM Internal Index (Not Reported in the Notification) 25059 25060 25061 25062 25063 25064 25065 25066 25067 25068 25069 25070 25071 25072 25073 25074 25075 25076 25077 25078 25079 25080 25081 25082 25083 25084 25085 25086 25087 25088 25089 25090 25091 25092 25093

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual

A-32

OL-19364-01

Appendix A

Notifications, Fault Management, and Probable Cause Mapping A.5.6 CTM GateWay/CORBA MappingONS 15454 SONET R4.1.4

Table A-22

CTM GateWay/CORBA Mapping for the ONS 15454 SONET R4.1.4 (continued)

TMF Mapping UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED EQPT EQPT EQPT EQPT UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED EQPT DCC_FAILURE UNIDENTIFIED EQPT EQPT EQPT EQPT

NE Native Probable Cause Manual switch to primary reference Manual switch to secondary reference Manual switch to third reference Manual switch to fourth reference Manual switch to fifth reference Manual switch to sixth reference Manual switch back to working Manual switch to protection Power fail restart Software download in progress Switch to internal clock Switch to primary reference Switch to secondary reference Switch to third reference Switch to fourth reference Switch to fifth reference Switch to sixth reference Switched back to working Switched to protection Warm restart Ring is in wait-to-restore state Primary nonvolatile backup memory failure Secondary nonvolatile backup memory failure Control bus failure Control communications equipment failure Loopback Loopback, network Loopback, terminal Fan failure SDCC termination failure Loopback facility Payload bus failure to I/O slot 1 (XCON slot 8) Payload bus failure to I/O slot 2 (XCON slot 8) Payload bus failure to I/O slot 3 (XCON slot 8) Payload bus failure to I/O slot 4 (XCON slot 8)

CTM Internal Index (Not Reported in the Notification) 25094 25095 25096 25097 25098 25099 25100 25101 25102 25103 25104 25105 25106 25107 25108 25109 25110 25111 25112 25113 25114 25115 25116 25117 25118 25119 25120 25121 25122 25123 25124 25125 25126 25127 25128

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual OL-19364-01

A-33

Appendix A A.5.6 CTM GateWay/CORBA MappingONS 15454 SONET R4.1.4

Notifications, Fault Management, and Probable Cause Mapping

Table A-22

CTM GateWay/CORBA Mapping for the ONS 15454 SONET R4.1.4 (continued)

TMF Mapping EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED

NE Native Probable Cause Payload bus failure to I/O slot 5 (XCON slot 8) Payload bus failure to I/O slot 6 (XCON slot 8) Payload bus failure to I/O slot 12 (XCON slot 8) Payload bus failure to I/O slot 13 (XCON slot 8) Payload bus failure to I/O slot 14 (XCON slot 8) Payload bus failure to I/O slot 15 (XCON slot 8) Payload bus failure to I/O slot 16 (XCON slot 8) Payload bus failure to I/O slot 17 (XCON slot 8) Payload bus failure to I/O slot 1 (XCON slot 10) Payload bus failure to I/O slot 2 (XCON slot 10) Payload bus failure to I/O slot 3 (XCON slot 10) Payload bus failure to I/O slot 4 (XCON slot 10) Payload bus failure to I/O slot 5 (XCON slot 10) Payload bus failure to I/O slot 6 (XCON slot 10) Payload bus failure to I/O slot 12 (XCON slot 10) Payload bus failure to I/O slot 13 (XCON slot 10) Payload bus failure to I/O slot 14 (XCON slot 10) Payload bus failure to I/O slot 15 (XCON slot 10) Payload bus failure to I/O slot 16 (XCON slot 10) Payload bus failure to I/O slot 17 (XCON slot 10) Control bus 1 failure Control bus 2 failure Invalid MAC address Board failure Diagnostics failure Medium access control failure Duplicate node ID Failure to switch to protectionring Failure to switch to protectionspan Manual switch back to workingring Manual switch back to workingspan Manual switch to protectionring Manual switch to protectionspan Forced switch back to workingring Forced switch back to workingspan

CTM Internal Index (Not Reported in the Notification) 25129 25130 25131 25132 25133 25134 25135 25136 25137 25138 25139 25140 25141 25142 25143 25144 25145 25146 25147 25148 25149 25150 25151 25152 25153 25154 25155 25156 25157 25158 25159 25160 25161 25162 25163

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual

A-34

OL-19364-01

Appendix A

Notifications, Fault Management, and Probable Cause Mapping A.5.6 CTM GateWay/CORBA MappingONS 15454 SONET R4.1.4

Table A-22

CTM GateWay/CORBA Mapping for the ONS 15454 SONET R4.1.4 (continued)

TMF Mapping UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED FOP_APS FOP_APS FOP_APS FOP_APS EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT

NE Native Probable Cause Forced switch to protectionring Forced switch to protectionspan Lockout of protectionring Lockout of protectionspan Lockout of workingring Lockout of workingspan Ring is squelching traffic Inconsistent APS code Node ID mismatch Default K byte Connection loss TCC A to shelf slot 1 (DROP 1) communication failure TCC A to shelf slot 2 (DROP 2) communication failure TCC A to shelf slot 3 (DROP 3) communication failure TCC A to shelf slot 4 (DROP 4) communication failure TCC A to shelf slot 5 (TRUNK 1) communication failure TCC A to shelf slot 6 (TRUNK 2) communication failure TCC A to shelf slot 7 (TCC A) communication failure TCC A to shelf slot 8 (XCON A) communication failure TCC A to shelf slot 9 (AIC) communication failure TCC A to shelf slot 10 (XCON B) communication failure TCC A to shelf slot 11 (TCC B) communication failure TCC A to shelf slot 12 (TRUNK 3) communication failure TCC A to shelf slot 13 (TRUNK 4) communication failure TCC A to shelf slot 14 (DROP 5) communication failure TCC A to shelf slot 15 (DROP 6) communication failure TCC A to shelf slot 16 (DROP 7) communication failure TCC A to shelf slot 17 (DROP 8) communication failure TCC A to DCC A processor communication failure TCC B to shelf slot 1 (DROP 1) communication failure TCC B to shelf slot 2 (DROP 2) communication failure TCC B to shelf slot 3 (DROP 3) communication failure TCC B to shelf slot 4 (DROP 4) communication failure TCC B to shelf slot 5 (TRUNK 1) communication failure TCC B to shelf slot 6 (TRUNK 2) communication failure

CTM Internal Index (Not Reported in the Notification) 25164 25165 25166 25167 25168 25169 25170 25171 25172 25173 25174 25175 25176 25177 25178 25179 25180 25181 25182 25183 25184 25185 25186 25187 25188 25189 25190 25191 25192 25193 25194 25195 25196 25197 25198

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual OL-19364-01

A-35

Appendix A A.5.6 CTM GateWay/CORBA MappingONS 15454 SONET R4.1.4

Notifications, Fault Management, and Probable Cause Mapping

Table A-22

CTM GateWay/CORBA Mapping for the ONS 15454 SONET R4.1.4 (continued)

TMF Mapping EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT UNIDENTIFIED FOP_APS UNIDENTIFIED AIS RAI PLM UNEQ UNIDENTIFIED EQPT EQPT LOP UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED

NE Native Probable Cause TCC B to shelf slot 7 (TCC A) communication failure TCC B to shelf slot 8 (XCON A) communication failure TCC B to shelf slot 9 (AIC) communication failure TCC B to shelf slot 10 (XCON B) communication failure TCC B to shelf slot 11 (TCC B) communication failure TCC B to shelf slot 12 (TRUNK 3) communication failure TCC B to shelf slot 13 (TRUNK 4) communication failure TCC B to shelf slot 14 (DROP 5) communication failure TCC B to shelf slot 15 (DROP 6) communication failure TCC B to shelf slot 16 (DROP 7) communication failure TCC B to shelf slot 17 (DROP 8) communication failure TCC B to DCC B processor communication failure Fast start synchronization mode Improper APS code BLSR out of sync Alarm indication signalVT Remote failure indicationVT Signal label mismatch failurepayload label mismatchVT Signal label mismatch failureunequippedVT Peer state mismatch Facility termination equipmentreceiver missing Facility termination equipmenttransmitter missing Loss of pointerVT Embedded operations channel failurelink down Failed to receive synchronization status message Synchronization status messages are disabled on this interface Primary reference sourcestratum 1 traceable Synchronizedtraceability unknown Stratum 2 traceable Transit node clock traceable Stratum 3E traceable Stratum 3 traceable SONET minimum clock traceable Stratum 4 traceable Do not use for synchronization

CTM Internal Index (Not Reported in the Notification) 25199 25200 25201 25202 25203 25204 25205 25206 25207 25208 25209 25210 25211 25212 25213 25214 25215 25216 25217 25218 25219 25220 25221 25222 25223 25224 25225 25226 25227 25228 25229 25230 25231 25232 25233

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual

A-36

OL-19364-01

Appendix A

Notifications, Fault Management, and Probable Cause Mapping A.5.6 CTM GateWay/CORBA MappingONS 15454 SONET R4.1.4

Table A-22

CTM GateWay/CORBA Mapping for the ONS 15454 SONET R4.1.4 (continued)

TMF Mapping UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED ENV UNIDENTIFIED ENV ENV ENV ENV ENV ENV UNIDENTIFIED ENV ENV UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED ENV

NE Native Probable Cause Reserved for network synchronization use Failure to switch to protectionpath Manual switch of working facilityequipment to protectionpath Working facilityequipment forced to switch to protectionpath Lockout of protectionpath Automatic path-protection switch caused by AIS Automatic path-protection switch caused by LOP Automatic path-protection switch caused by UNEQ Automatic path-protection switch caused by PDI Automatic path-protection switch caused by SFBER Automatic path-protection switch caused by SDBER DS3 idle condition DS1 loopback due to FEAC command DS1 loopback command sent to far end DS3 loopback due to FEAC command DS3 loopback command sent to far end DS2 loopback due to far-end command DS2 loopback command sent to far end Far-end AIS Far-end multiple DS1 LOS detected on DS3 Far-end DS1 equipment failurenon-service affecting Far-end DS1 equipment failureservice affecting Far-end single DS1 LOS Far-end DS3 equipment failurenon-service affecting Far-end DS3 equipment failureservice affecting Far-end common equipment failurenon-service affecting Far end idle Far end LOS Far end LOF Performance monitor threshold crossing alert Ethernet bridge is new root of spanning tree Ethernet bridge topology change BLSR tables resynchronized System reboot

CTM Internal Index (Not Reported in the Notification) 25234 25235 25236 25237 25238 25239 25240 25241 25242 25243 25244 25245 25246 25247 25248 25249 25250 25251 25252 25253 25254 25255 25256 25257 25258 25259 25260 25261 25262 25263 25264 25265 25266 25267

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual OL-19364-01

A-37

Appendix A A.5.6 CTM GateWay/CORBA MappingONS 15454 SONET R4.1.4

Notifications, Fault Management, and Probable Cause Mapping

Table A-22

CTM GateWay/CORBA Mapping for the ONS 15454 SONET R4.1.4 (continued)

TMF Mapping UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED LOS LOS LOS LOS LOS LOS LOS TIM ENV ENV UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED ENV ENV ENV ENV

NE Native Probable Cause Manual switch request on facilityequipment Forced switch request on facility or equipment Lockout switch request on facilityequipment RMON histories and alarms reset reboot RMON alarm Video interface card loss of video IF signal VIC loss of video baseband signal VIC loss of audio FM signal VIC loss of audio baseband channel 1 signal VIC loss of audio baseband channel 2 signal VIC loss of audio baseband channel 3 signal VIC loss of audio baseband channel 4 signal STS path trace identifier mismatch NE power failure at connector A NE power failure at connector B Free memory on card very low Free memory on card near zero Exercise request on ring Exercise request on span Squelching path Extra traffic preempted Far-end lockout of workingring Far-end lockout of workingspan Far-end lockout of protectionring Far-end lockout of protectionall spans Far-end working facility forced to switch to protectionring Far-end working facility forced to switch to protectionspan Far-end manual switch of working facility to protectionring Far-end manual switch of working facility to protectionspan Far-end exercising ring Far-end exercising span Far-end BER threshold passed for signal failurering Far-end BER threshold passed for signal failurespan Far-end BER threshold passed for signal degradering Far-end BER threshold passed for signal degradespan

CTM Internal Index (Not Reported in the Notification) 25268 25269 25270 25271 25272 25273 25274 25275 25276 25277 25278 25279 25280 25281 25282 25283 25284 25285 25286 25287 25288 25289 25290 25291 25292 25293 25294 25295 25296 25297 25298 25299 25300 25301 25302

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual

A-38

OL-19364-01

Appendix A

Notifications, Fault Management, and Probable Cause Mapping A.5.6 CTM GateWay/CORBA MappingONS 15454 SONET R4.1.4

Table A-22

CTM GateWay/CORBA Mapping for the ONS 15454 SONET R4.1.4 (continued)

TMF Mapping ENV UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED SECURITY_VIOLATION UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED SECURITY_VIOLATION EQPT UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT BER_SD BER_SD

NE Native Probable Cause APS channelfar-end protection line signal degrade Ring switch is active on the east side Ring switch is active on the west side Span switch is active on the east side Span switch is active on the west side Unidirectional full pass-through is active Bidirectional full pass-through is active K bytes pass-through is active Ring is segmented Ring topology is under construction Lockout of protectionall spans Far-end of fiber is provisioned with different ring ID Both ends of fiber provisioned as east or both as west Securityinvalid loginsee audit trail Autonomous messages inhibited Traffic storm on LAN; LAN temporarily disabled REPT^DBCHG messages inhibited Securityuser ID has expired Partial fan failure Force switch request on ring Force switch request on span Lockout switch request on ring Lockout switch request on span Manual switch request on ring Manual switch request on span Peer-to-peer slot communication failure Peer-to-peer slot communication failure TCC A to shelf slot communication failure TCC B to shelf slot communication failure Interconnection equipment failureworking XC payload bus Interconnection equipment failureprotect XC payload bus Inhibit switch to protect request on equipment Inhibit switch to working request on equipment BER threshold exceeded for signal degradeline BER threshold exceeded for signal degradepath

CTM Internal Index (Not Reported in the Notification) 25303 25304 25305 25306 25307 25308 25309 25310 25311 25312 25313 25314 25315 25316 25317 25318 25319 25320 25321 25322 25323 25324 25325 25326 25327 25328 25329 25330 25331 25332 25333 25334 25335 25336 25337

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual OL-19364-01

A-39

Appendix A A.5.6 CTM GateWay/CORBA MappingONS 15454 SONET R4.1.4

Notifications, Fault Management, and Probable Cause Mapping

Table A-22

CTM GateWay/CORBA Mapping for the ONS 15454 SONET R4.1.4 (continued)

TMF Mapping BER_SF BER_SF UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED EQPT UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED EQPT EQPT ENV TIM AIS RAI TIM AU_AIS LOP UNEQ PLM RAI LOP TU-AIS UNEQ PLM TIM RAI UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED ENV

NE Native Probable Cause BER threshold exceeded for signal failureline BER threshold exceeded for signal failurepath Exercising ring successfully Exercising span successfully Span is in wait-to-restore state Peer card not responding Exercise request on ring failed Exercise request on span failed Far-end lockout of protectionspan Manufacturing data memory (EEPROM) failure Replaceable equipment/unit is missing Software download failure TIM sectiontrace identifier mismatch failure AISmultiplex sectionalarm indication signal RFImultiplex sectionremote failure/alarm indication TIMhigh ordertrace identifier mismatch failure AISadministration unitalarm indication signal LOPadministration unitloss of pointer SLMFunequipped high orderpath unequipped SLMFPLM high orderpath label mismatch RFIhigh orderremote failure/alarm indication LOPtributary unitloss of pointer AIStributary unitalarm indication signal SLMFunequipped low orderpath unequipped SLMFPLM low orderpath label mismatch TIM low ordertrace identifier mismatch failure RFIlow orderremote failure/alarm indication G811primary reference clock traceable G812transit node clock traceable G812local node clock traceable G813synchronous equipment timing source traceable E1 loopback due to FEAC command E1 loopback command sent to far end E3 loopback due to FEAC command Far-end multiple E1 LOS detected on E3

CTM Internal Index (Not Reported in the Notification) 25338 25339 25340 25341 25342 25343 25344 25345 25346 25347 25348 25349 25350 25351 25352 25353 25354 25355 25356 25357 25358 25359 25360 25361 25362 25363 25364 25365 25366 25367 25368 25369 25370 25371 25372

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual

A-40

OL-19364-01

Appendix A

Notifications, Fault Management, and Probable Cause Mapping A.5.6 CTM GateWay/CORBA MappingONS 15454 SONET R4.1.4

Table A-22

CTM GateWay/CORBA Mapping for the ONS 15454 SONET R4.1.4 (continued)

TMF Mapping ENV ENV ENV ENV UNIDENTIFIED ENV ENV ENV ENV ENV UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED

NE Native Probable Cause Far-end E1 equipment failure non-service affecting Far-end E1 equipment failure service affecting Far-end single E1 LOS Far-end E3 equipment failure service affecting E3 loopback command sent to far end Far-end E3 equipment failure non-service affecting Low voltagebattery A High voltagebattery A Low voltagebattery B High voltagebattery B Procedural errorMS-SPRing out of sync MS-SPRing tables resynchronized Automatic SNCP switch caused by AIS Automatic SNCP switch caused by LOP Automatic SNCP switch caused by UNEQ Automatic SNCP switch caused by PDI Automatic SNCP switch caused by SFBER Automatic SNCP switch caused by SDBER STM concatenation error E3 idle condition IOS config copy failed IOS config copy in progress Alarms suppressed by user command Alarms suppressed for maintenance N/A Synchronization reference frequency out of bounds Ether Tx excess flow control Ether Tx oversubscribed Transport layer failure Ether Rx excess flow control Ether Rx oversubscribed Ether Tx underrun SNTP host failure DS3 frame format mismatch Alarms/events suppressed for this object

CTM Internal Index (Not Reported in the Notification) 25373 25374 25375 25376 25377 25378 25379 25380 25381 25382 25383 25384 25385 25386 25387 25388 25389 25390 25391 25392 25393 25394 25399 25400 25401 25402 25403 25404 25405 25406 25407 25408 25409 25410 25411

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual OL-19364-01

A-41

Appendix A A.5.6 CTM GateWay/CORBA MappingONS 15454 SONET R4.1.4

Notifications, Fault Management, and Probable Cause Mapping

Table A-22

CTM GateWay/CORBA Mapping for the ONS 15454 SONET R4.1.4 (continued)

TMF Mapping BER_SD BER_SF BER_SD BER_SF UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED ENV ENV ENV ENV UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED EQPT UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED LOM UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED SECURITY_VIOLATION SECURITY_VIOLATION SECURITY_VIOLATION SECURITY_VIOLATION UNIDENTIFIED UNIDENTIFIED

NE Native Probable Cause BER threshold exceeded for signal degradehigh order BER threshold exceeded for signal failurehigh order BER threshold exceeded for signal degradelow order BER threshold exceeded for signal failurelow order Failure to switch to protectionhigh-order path Failure to switch to protectionlow-order path Wait to restore Extreme high voltagebattery A Extreme low voltagebattery A Extreme high voltagebattery B Extreme low voltagebattery B Switching matrix module failure Signaling unable to set up circuit RSVP hello FSM to neighbor down LMP hello FSM to control channel down LMP neighbor discovery has failed Unauthorized incoming signaling request Signaled circuit going down Autonomous PM report message inhibited I/O slot to XCON communication failure Forced switch to primary reference Forced switch to secondary reference Forced switch to third reference Forced switch to internal clock LOFadministration unitloss of multiframe Admin logout of user User locked out Admin lockout of user Admin lockout clear Securityinvalid loginusernamesee audit log Securityinvalid loginpasswordsee audit log Securityinvalid loginlocked outsee audit log Securityinvalid loginalready logged onsee audit log Login of user Automatic logout of idle user

CTM Internal Index (Not Reported in the Notification) 25412 25413 25414 25415 25416 25417 25418 25419 25420 25421 25422 25423 25424 25425 25426 25427 25428 25429 25430 25431 25432 25433 25434 25435 25436 25438 25439 25440 25441 25442 25443 25444 25445 25446 25447

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual

A-42

OL-19364-01

Appendix A

Notifications, Fault Management, and Probable Cause Mapping A.5.6 CTM GateWay/CORBA MappingONS 15454 SONET R4.1.4

Table A-22

CTM GateWay/CORBA Mapping for the ONS 15454 SONET R4.1.4 (continued)

TMF Mapping UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED EQPT UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED AIS AIS UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED LOM UNIDENTIFIED PLM TIM TIM EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT

NE Native Probable Cause Logout of user Cross-connect loopback Error in startup config No startup config Laser approaching end of life Database backup failed Database restore failed 8B10B out of sync ODUkalarm indication signal OTUkalarm indication signal OTUkbackward defect indicator ODUkbackward defect indicator FEC uncorrected word GCC embedded operation channel failure OTUkincoming alignment error ODUklocked defectPM Loss of multiframe ODUkopen connection indication Payload type identifier mismatch ODUktrail trace identifier mismatch OTUktrail trace identifier mismatch Equipment high laser bias Equipment high laser temp Equipment high laser Peltier Equipment high Rx power Equipment high Tx power Equipment high Rx temperature Equipment low Tx temperature Equipment high transceiver voltage Equipment low laser bias Equipment low laser temp Equipment low laser Peltier Equipment low Rx power Equipment low Tx power Equipment low transceiver voltage

CTM Internal Index (Not Reported in the Notification) 25448 25451 25454 25455 25456 25457 25458 25459 25460 25461 25462 25463 25464 25465 25466 25467 25468 25469 25470 25471 25472 25473 25474 25475 25476 25477 25478 25479 25480 25481 25482 25483 25484 25485 25486

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual OL-19364-01

A-43

Appendix A A.5.6 CTM GateWay/CORBA MappingONS 15454 SONET R4.1.4

Notifications, Fault Management, and Probable Cause Mapping

Table A-22

CTM GateWay/CORBA Mapping for the ONS 15454 SONET R4.1.4 (continued)

TMF Mapping EQPT EQPT EQPT BER_SF BER_SF BER_SD BER_SD UNIDENTIFIED UNIDENTIFIED SECURITY_VIOLATION UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED AIS TIM BER_SD BER_SF UNIDENTIFIED UNIDENTIFIED AIS TIM BER_SD BER_SF LOF UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED EQPT

NE Native Probable Cause Equipment Rx locked Equipment squelched Equipment Tx locked OTUksignal failure ODUksignal failure OTUksignal degrade ODUksignal degrade Pluggable port missing Pluggable port rate mismatch Pluggable port security code mismatch TCI not selected TCI 1 clock failure ODUkbackward defect indicator ODUkbackward defect indicator ODUkbackward defect indicator ODUkopen connection indication ODUklocked defectTCM2 ODUkalarm indication signal ODUktrail trace identifier mismatch ODUksignal degradeTCM2 ODUksignal failureTCM2 ODUkopen connection indication ODUklocked defectTCM1 ODUkalarm indication signal ODUktrail trace identifier mismatch ODUksignal degradeTCM1 ODUksignal failureTCM1 OTUkloss of frame TCI 2 clock failure Audit log 80 percent full Module communication failure Need to save running config Audit log 100 percent full; oldest records will be lost Standby database out of sync Redundant power capability lost

CTM Internal Index (Not Reported in the Notification) 25487 25488 25489 25490 25491 25492 25493 25494 25495 25496 25497 25498 25499 25500 25501 25504 25505 25506 25507 25508 25509 25510 25511 25512 25513 25514 25515 25516 25517 25518 25519 25520 25521 25522 25523

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual

A-44

OL-19364-01

Appendix A

Notifications, Fault Management, and Probable Cause Mapping A.5.7 CTM GateWay/CORBA Mapping ONS 15310 CL R7.2.3, R8.5.3, R9.0, R9.1; ONS 15310 MA SONET R7.2.3, R8.5.3,

Table A-22

CTM GateWay/CORBA Mapping for the ONS 15454 SONET R4.1.4 (continued)

TMF Mapping EQPT UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED SECURITY_VIOLATION UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED SECURITY_VIOLATION

NE Native Probable Cause Equipment wavelength mismatch DSP communication failure DSP failure Loss of channel FEC mismatch LAN connection polarity reversed Enhanced remote failure indicationpathserver Enhanced remote failure indicationpathconnectivity Enhanced remote failure indicationpathpayload Security violation detected Syslog messages Configuration events Link up/link down trap Cold/warm start trap Authentication failure notification

CTM Internal Index (Not Reported in the Notification) 25524 25525 25526 25527 25528 25529 25530 25531 25532 25533 28000 28001 28002 28003 28004

A.5.7 CTM GateWay/CORBA MappingONS 15310 CL R7.2.3, R8.5.3, R9.0, R9.1; ONS 15310 MA SONET R7.2.3, R8.5.3, R9.0, R9.1; ONS 15310 MA SDH R9.0, R9.1; ONS 15327 R7.2.3; ONS 15454 SONET R4.1.4, R7.2.3, R8.5.2, R8.5.3, R9.0, R9.1; ONS 15454 SDH R8.5.2, R8.5.3, R9.0, R9.1
The following table lists the CTM GateWay/CORBA mapping for the ONS 15310 CL R7.2.3, R8.5.3, R9.0, R9.1; ONS 15310 MA SONET R7.2.3, R8.5.3, R9.0, R9.1; ONS 15310 MA SDH R9.0, R9.1; ONS 15327 R7.2.3; ONS 15454 SONET R4.1.4, R7.2.3, R8.5.2, R8.5.3, R9.0, R9.1; ONS 15454 SDH R8.5.2, R8.5.3, R9.0, R9.1.
Table A-23 CTM GateWay/CORBA Mapping for the ONS 15310 CL R7.2.3, R8.5.3, R9.0, R9.1; ONS 15310 MA SONET R7.2.3, R8.5.3, R9.0, R9.1; ONS 15310 MA SDH R9.0, R9.1; ONS 15327 R7.2.3; ONS 15454 SONET R4.1.4, R7.2.3, R8.5.2, R8.5.3, R9.0, R9.1; ONS 15454 SDH R8.5.2, R8.5.3, R9.0, R9.1

TMF Mapping UNIDENTIFIED ENV ENV UNIDENTIFIED UNIDENTIFIED AIS

NE Native Probable Cause Normal condition Failure detected external to the NE External error Excessive switching Incoming failure condition Alarm indication signal

CTM Internal Index (Not Reported in the Notification) 25000 25001 25002 25003 25004 25005

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual OL-19364-01

A-45

Appendix A Notifications, Fault Management, and Probable Cause Mapping A.5.7 CTM GateWay/CORBA Mapping ONS 15310 CL R7.2.3, R8.5.3, R9.0, R9.1; ONS 15310 MA SONET R7.2.3, R8.5.3,

Table A-23

CTM GateWay/CORBA Mapping for the ONS 15310 CL R7.2.3, R8.5.3, R9.0, R9.1; ONS 15310 MA SONET R7.2.3, R8.5.3, R9.0, R9.1; ONS 15310 MA SDH R9.0, R9.1; ONS 15327 R7.2.3; ONS 15454 SONET R4.1.4, R7.2.3, R8.5.2, R8.5.3, R9.0, R9.1; ONS 15454 SDH R8.5.2, R8.5.3, R9.0, R9.1 (continued)

TMF Mapping AIS AIS FOP_APS FOP_APS FOP_APS FOP_APS FOP_APS UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED LOF LOP LOP LOS UNIDENTIFIED UNIDENTIFIED RAI RAI RAI RAI BER_SD UNIDENTIFIED UNIDENTIFIED BER_SF UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED PLM UNEQ UNIDENTIFIED UNIDENTIFIED

NE Native Probable Cause Alarm indication signalline Alarm indication signalpath APS channel failure Byte failure Protection switching channel match failure Automatic protection switch mode mismatch Far-end protection line failure Bipolar violation Carrier loss on the LAN STS concatenation error Excess collisions on the LAN Facility failure Far-end block error Loss of frame Loss of pointer Loss of pointerpath Loss of signal Out of frame Path selector failure Remote alarm indication Remote failure indication Remote failure indicationline Remote failure indicationpath Signal degrade Severely errored frame Invalid alarm Signal failure Signal label mismatch failures Payload defect indication Payload defect indicationpath Payload label mismatchpath Unequippedpath Loss of synchronization Out of synchronization

CTM Internal Index (Not Reported in the Notification) 25006 25007 25008 25009 25010 25011 25012 25013 25014 25015 25016 25017 25018 25019 25020 25021 25022 25023 25024 25025 25026 25027 25028 25029 25030 25031 25032 25033 25034 25035 25036 25037 25038 25039

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual

A-46

OL-19364-01

Appendix A

Notifications, Fault Management, and Probable Cause Mapping A.5.7 CTM GateWay/CORBA Mapping ONS 15310 CL R7.2.3, R8.5.3, R9.0, R9.1; ONS 15310 MA SONET R7.2.3, R8.5.3,

Table A-23

CTM GateWay/CORBA Mapping for the ONS 15310 CL R7.2.3, R8.5.3, R9.0, R9.1; ONS 15310 MA SONET R7.2.3, R8.5.3, R9.0, R9.1; ONS 15310 MA SDH R9.0, R9.1; ONS 15327 R7.2.3; ONS 15454 SONET R4.1.4, R7.2.3, R8.5.2, R8.5.3, R9.0, R9.1; ONS 15454 SDH R8.5.2, R8.5.3, R9.0, R9.1 (continued)

TMF Mapping UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED RAI RAI UNIDENTIFIED UNIDENTIFIED EQPT UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED ENV ENV UNIDENTIFIED EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT UNIDENTIFIED EQPT EQPT UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED

NE Native Probable Cause Primary synchronization reference failure Secondary synchronization reference failure Third synchronization reference failure Fourth synchronization reference failure Fifth synchronization reference failure Sixth synchronization reference failure Outgoing failure condition Remote defect indicationline Remote defect indicationpath Free running synchronization mode Holdover synchronization mode Internal fault Internal error Internal message error Mismatch of equipment and attributes Watchdog timer timeout Software fault or failure Software faultdata integrity fault Program failure Control equipment failure Control processor failure Working memory failure Interconnection equipment failure Time slot interchange equipment failure Equipment failure High temperature Facility termination equipment failure Automatic laser shutdown Failure to release from protection Receiver failure Transmit failure Failure to switch to protection Equipment unit plug-in Internal power failure

CTM Internal Index (Not Reported in the Notification) 25040 25041 25042 25043 25044 25045 25046 25047 25048 25049 25050 25051 25052 25053 25054 25055 25056 25057 25058 25059 25060 25061 25062 25063 25064 25065 25066 25067 25068 25069 25070 25071 25072 25073

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual OL-19364-01

A-47

Appendix A Notifications, Fault Management, and Probable Cause Mapping A.5.7 CTM GateWay/CORBA Mapping ONS 15310 CL R7.2.3, R8.5.3, R9.0, R9.1; ONS 15310 MA SONET R7.2.3, R8.5.3,

Table A-23

CTM GateWay/CORBA Mapping for the ONS 15310 CL R7.2.3, R8.5.3, R9.0, R9.1; ONS 15310 MA SONET R7.2.3, R8.5.3, R9.0, R9.1; ONS 15310 MA SDH R9.0, R9.1; ONS 15327 R7.2.3; ONS 15454 SONET R4.1.4, R7.2.3, R8.5.2, R8.5.3, R9.0, R9.1; ONS 15454 SDH R8.5.2, R8.5.3, R9.0, R9.1 (continued)

TMF Mapping UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED EQPT EQPT UNIDENTIFIED UNIDENTIFIED EQPT UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED

NE Native Probable Cause Fuse alarm Synchronization unit failure Synchronization switching equipment failure Equipment unit unplugged Manually caused abnormal condition Manual alarm cutoff Procedural error Improper removal Protection unit not available Protection switch Recovery or service protection action has been initiated Automatic system reset Cold restart Forced switch back to working Forced switch to protection Initialization initiated Lockout of protection Lockout of working Manual system reset Manual switch to internal clock Manual switch to primary reference Manual switch to secondary reference Manual switch to third reference Manual switch to fourth reference Manual switch to fifth reference Manual switch to sixth reference Manual switch back to working Manual switch to protection Powerfail restart Software download in progress Switch to internal clock Switch to primary reference Switch to secondary reference Switch to third reference

CTM Internal Index (Not Reported in the Notification) 25074 25075 25076 25077 25078 25079 25080 25081 25082 25083 25084 25085 25086 25087 25088 25089 25090 25091 25092 25093 25094 25095 25096 25097 25098 25099 25100 25101 25102 25103 25104 25105 25106 25107

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual

A-48

OL-19364-01

Appendix A

Notifications, Fault Management, and Probable Cause Mapping A.5.7 CTM GateWay/CORBA Mapping ONS 15310 CL R7.2.3, R8.5.3, R9.0, R9.1; ONS 15310 MA SONET R7.2.3, R8.5.3,

Table A-23

CTM GateWay/CORBA Mapping for the ONS 15310 CL R7.2.3, R8.5.3, R9.0, R9.1; ONS 15310 MA SONET R7.2.3, R8.5.3, R9.0, R9.1; ONS 15310 MA SDH R9.0, R9.1; ONS 15327 R7.2.3; ONS 15454 SONET R4.1.4, R7.2.3, R8.5.2, R8.5.3, R9.0, R9.1; ONS 15454 SDH R8.5.2, R8.5.3, R9.0, R9.1 (continued)

TMF Mapping UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED EQPT EQPT EQPT EQPT UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED EQPT DCC_FAILURE UNIDENTIFIED EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT

NE Native Probable Cause Switch to fourth reference Switch to fifth reference Switch to sixth reference Switched back to working Switched to protection Warm restart Ring is in wait-to-restore state Primary nonvolatile backup memory failure Secondary nonvolatile backup memory failure Control bus failure Control communications equipment failure Loopback Loopback, network Loopback, terminal Fan failure SDCC termination failure Loopback facility Payload bus failure to I/O slot 1 (XCON slot 8) Payload bus failure to I/O slot 2 (XCON slot 8) Payload bus failure to I/O slot 3 (XCON slot 8) Payload bus failure to I/O slot 4 (XCON slot 8) Payload bus failure to I/O slot 5 (XCON slot 8) Payload bus failure to I/O slot 6 (XCON slot 8) Payload bus failure to I/O slot 12 (XCON slot 8) Payload bus failure to I/O slot 13 (XCON slot 8) Payload bus failure to I/O slot 14 (XCON slot 8) Payload bus failure to I/O slot 15 (XCON slot 8) Payload bus failure to I/O slot 16 (XCON slot 8) Payload bus failure to I/O slot 17 (XCON slot 8) Payload bus failure to I/O slot 1 (XCON slot 10) Payload bus failure to I/O slot 2 (XCON slot 10) Payload bus failure to I/O slot 3 (XCON slot 10) Payload bus failure to I/O slot 4 (XCON slot 10) Payload bus failure to I/O slot 5 (XCON slot 10)

CTM Internal Index (Not Reported in the Notification) 25108 25109 25110 25111 25112 25113 25114 25115 25116 25117 25118 25119 25120 25121 25122 25123 25124 25125 25126 25127 25128 25129 25130 25131 25132 25133 25134 25135 25136 25137 25138 25139 25140 25141

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual OL-19364-01

A-49

Appendix A Notifications, Fault Management, and Probable Cause Mapping A.5.7 CTM GateWay/CORBA Mapping ONS 15310 CL R7.2.3, R8.5.3, R9.0, R9.1; ONS 15310 MA SONET R7.2.3, R8.5.3,

Table A-23

CTM GateWay/CORBA Mapping for the ONS 15310 CL R7.2.3, R8.5.3, R9.0, R9.1; ONS 15310 MA SONET R7.2.3, R8.5.3, R9.0, R9.1; ONS 15310 MA SDH R9.0, R9.1; ONS 15327 R7.2.3; ONS 15454 SONET R4.1.4, R7.2.3, R8.5.2, R8.5.3, R9.0, R9.1; ONS 15454 SDH R8.5.2, R8.5.3, R9.0, R9.1 (continued)

TMF Mapping EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED FOP_APS FOP_APS FOP_APS FOP_APS EQPT

NE Native Probable Cause Payload bus failure to I/O slot 6 (XCON slot 10) Payload bus failure to I/O slot 12 (XCON slot 10) Payload bus failure to I/O slot 13 (XCON slot 10) Payload bus failure to I/O slot 14 (XCON slot 10) Payload bus failure to I/O slot 15 (XCON slot 10) Payload bus failure to I/O slot 16 (XCON slot 10) Payload bus failure to I/O slot 17 (XCON slot 10) Control bus 1 failure Control bus 2 failure Invalid MAC address Board failure Diagnostics failure Medium access control failure Duplicate node ID Failure to switch to protectionring Failure to switch to protectionspan Manual switch back to workingring Manual switch back to workingspan Manual switch to protectionring Manual switch to protectionspan Forced switch back to workingring Forced switch back to workingspan Forced switch to protectionring Forced switch to protectionspan Lockout of protectionring Lockout of protectionspan Lockout of workingring Lockout of workingspan Ring is squelching traffic Inconsistent APS code Node ID mismatch Default K byte Connection loss TCC A to shelf slot 1 (DROP 1) communication failure

CTM Internal Index (Not Reported in the Notification) 25142 25143 25144 25145 25146 25147 25148 25149 25150 25151 25152 25153 25154 25155 25156 25157 25158 25159 25160 25161 25162 25163 25164 25165 25166 25167 25168 25169 25170 25171 25172 25173 25174 25175

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual

A-50

OL-19364-01

Appendix A

Notifications, Fault Management, and Probable Cause Mapping A.5.7 CTM GateWay/CORBA Mapping ONS 15310 CL R7.2.3, R8.5.3, R9.0, R9.1; ONS 15310 MA SONET R7.2.3, R8.5.3,

Table A-23

CTM GateWay/CORBA Mapping for the ONS 15310 CL R7.2.3, R8.5.3, R9.0, R9.1; ONS 15310 MA SONET R7.2.3, R8.5.3, R9.0, R9.1; ONS 15310 MA SDH R9.0, R9.1; ONS 15327 R7.2.3; ONS 15454 SONET R4.1.4, R7.2.3, R8.5.2, R8.5.3, R9.0, R9.1; ONS 15454 SDH R8.5.2, R8.5.3, R9.0, R9.1 (continued)

TMF Mapping EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT

NE Native Probable Cause TCC A to shelf slot 2 (DROP 2) communication failure TCC A to shelf slot 3 (DROP 3) communication failure TCC A to shelf slot 4 (DROP 4) communication failure TCC A to shelf slot 5 (TRUNK 1) communication failure TCC A to shelf slot 6 (TRUNK 2) communication failure TCC A to shelf slot 7 (TCC A) communication failure TCC A to shelf slot 8 (XCON A) communication failure TCC A to shelf slot 9 (AIC) communication failure TCC A to shelf slot 10 (XCON B) communication failure TCC A to shelf slot 11 (TCC B) communication failure TCC A to shelf slot 12 (TRUNK 3) communication failure TCC A to shelf slot 13 (TRUNK 4) communication failure TCC A to shelf slot 14 (DROP 5) communication failure TCC A to shelf slot 15 (DROP 6) communication failure TCC A to shelf slot 16 (DROP 7) communication failure TCC A to shelf slot 17 (DROP 8) communication failure TCC A to DCC A processor communication failure TCC B to shelf slot 1 (DROP 1) communication failure TCC B to shelf slot 2 (DROP 2) communication failure TCC B to shelf slot 3 (DROP 3) communication failure TCC B to shelf slot 4 (DROP 4) communication failure TCC B to shelf slot 5 (TRUNK 1) communication failure TCC B to shelf slot 6 (TRUNK 2) communication failure TCC B to shelf slot 7 (TCC A) communication failure TCC B to shelf slot 8 (XCON A) communication failure TCC B to shelf slot 9 (AIC) communication failure TCC B to shelf slot 10 (XCON B) communication failure TCC B to shelf slot 11 (TCC B) communication failure TCC B to shelf slot 12 (TRUNK 3) communication failure TCC B to shelf slot 13 (TRUNK 4) communication failure TCC B to shelf slot 14 (DROP 5) communication failure TCC B to shelf slot 15 (DROP 6) communication failure TCC B to shelf slot 16 (DROP 7) communication failure TCC B to shelf slot 17 (DROP 8) communication failure

CTM Internal Index (Not Reported in the Notification) 25176 25177 25178 25179 25180 25181 25182 25183 25184 25185 25186 25187 25188 25189 25190 25191 25192 25193 25194 25195 25196 25197 25198 25199 25200 25201 25202 25203 25204 25205 25206 25207 25208 25209

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual OL-19364-01

A-51

Appendix A Notifications, Fault Management, and Probable Cause Mapping A.5.7 CTM GateWay/CORBA Mapping ONS 15310 CL R7.2.3, R8.5.3, R9.0, R9.1; ONS 15310 MA SONET R7.2.3, R8.5.3,

Table A-23

CTM GateWay/CORBA Mapping for the ONS 15310 CL R7.2.3, R8.5.3, R9.0, R9.1; ONS 15310 MA SONET R7.2.3, R8.5.3, R9.0, R9.1; ONS 15310 MA SDH R9.0, R9.1; ONS 15327 R7.2.3; ONS 15454 SONET R4.1.4, R7.2.3, R8.5.2, R8.5.3, R9.0, R9.1; ONS 15454 SDH R8.5.2, R8.5.3, R9.0, R9.1 (continued)

TMF Mapping EQPT UNIDENTIFIED FOP_APS UNIDENTIFIED AIS RAI PLM UNEQ UNIDENTIFIED EQPT EQPT LOP UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED

NE Native Probable Cause TCC B to DCC B processor communication failure Fast start synchronization mode Improper APS code BLSR out of sync Alarm indication signalVT Remote failure indicationVT Signal label mismatch failurepayload label mismatchVT Signal label mismatch failureunequippedVT Peer state mismatch Facility termination equipmentreceiver missing Facility termination equipmenttransmitter missing Loss of pointerVT Embedded operations channel failurelink down Failed to receive synchronization status message Synchronization status messages are disabled on this interface Primary reference sourcestratum 1 traceable Synchronizedtraceability unknown Stratum 2 traceable Transit node clock traceable Stratum 3E traceable Stratum 3 traceable SONET minimum clock traceable Stratum 4 traceable Do not use for synchronization Reserved for network synchronization use Failure to switch to protectionpath Manual switch of working facilityequipment to protectionpath Working facilityequipment forced to switch to protectionpath Lockout of protectionpath Automatic path-protection switch caused by AIS Automatic path-protection switch caused by LOP Automatic path-protection switch caused by UNEQ Automatic path-protection switch caused by PDI

CTM Internal Index (Not Reported in the Notification) 25210 25211 25212 25213 25214 25215 25216 25217 25218 25219 25220 25221 25222 25223 25224 25225 25226 25227 25228 25229 25230 25231 25232 25233 25234 25235 25236 25237 25238 25239 25240 25241 25242

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual

A-52

OL-19364-01

Appendix A

Notifications, Fault Management, and Probable Cause Mapping A.5.7 CTM GateWay/CORBA Mapping ONS 15310 CL R7.2.3, R8.5.3, R9.0, R9.1; ONS 15310 MA SONET R7.2.3, R8.5.3,

Table A-23

CTM GateWay/CORBA Mapping for the ONS 15310 CL R7.2.3, R8.5.3, R9.0, R9.1; ONS 15310 MA SONET R7.2.3, R8.5.3, R9.0, R9.1; ONS 15310 MA SDH R9.0, R9.1; ONS 15327 R7.2.3; ONS 15454 SONET R4.1.4, R7.2.3, R8.5.2, R8.5.3, R9.0, R9.1; ONS 15454 SDH R8.5.2, R8.5.3, R9.0, R9.1 (continued)

TMF Mapping UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED ENV UNIDENTIFIED ENV ENV ENV ENV ENV ENV UNIDENTIFIED ENV ENV UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED ENV UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED LOS LOS LOS LOS

NE Native Probable Cause Automatic path-protection switch caused by SFBER Automatic path-protection switch caused by SDBER DS3 idle condition DS1 loopback due to FEAC command DS1 loopback command sent to far end DS3 loopback due to FEAC command DS3 loopback command sent to far end DS2 loopback due to far-end command DS2 loopback command sent to far end Far-end AIS Far-end multiple DS1 LOS detected on DS3 Far-end DS1 equipment failurenon-service affecting Far-end DS1 equipment failureservice affecting Far-end single DS1 LOS Far-end DS3 equipment failurenon-service affecting Far-end DS3 equipment failureservice affecting Far-end common equipment failurenon-service affecting Far-end idle Far-end LOS Far-end LOF Performance monitor threshold crossing alert Ethernet bridge is new root of spanning tree Ethernet bridge topology change BLSR tables resynchronized System reboot Manual switch request on facilityequipment Forced switch request on facility or equipment Lockout switch request on facilityequipment RMON histories and alarms reset reboot RMON alarm Video interface card loss of video IF signal VIC loss of video baseband signal VIC loss of audio FM signal VIC loss of audio baseband channel 1 signal

CTM Internal Index (Not Reported in the Notification) 25243 25244 25245 25246 25247 25248 25249 25250 25251 25252 25253 25254 25255 25256 25257 25258 25259 25260 25261 25262 25263 25264 25265 25266 25267 25268 25269 25270 25271 25272 25273 25274 25275 25276

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual OL-19364-01

A-53

Appendix A Notifications, Fault Management, and Probable Cause Mapping A.5.7 CTM GateWay/CORBA Mapping ONS 15310 CL R7.2.3, R8.5.3, R9.0, R9.1; ONS 15310 MA SONET R7.2.3, R8.5.3,

Table A-23

CTM GateWay/CORBA Mapping for the ONS 15310 CL R7.2.3, R8.5.3, R9.0, R9.1; ONS 15310 MA SONET R7.2.3, R8.5.3, R9.0, R9.1; ONS 15310 MA SDH R9.0, R9.1; ONS 15327 R7.2.3; ONS 15454 SONET R4.1.4, R7.2.3, R8.5.2, R8.5.3, R9.0, R9.1; ONS 15454 SDH R8.5.2, R8.5.3, R9.0, R9.1 (continued)

TMF Mapping LOS LOS LOS TIM ENV ENV UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED ENV ENV ENV ENV ENV UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED

NE Native Probable Cause VIC loss of audio baseband channel 2 signal VIC loss of audio baseband channel 3 signal VIC loss of audio baseband channel 4 signal STS path trace identifier mismatch NE power failure at connector A NE power failure at connector B Free memory on card very low Free memory on card near zero Exercise request on ring Exercise request on span Squelching path Extra traffic preempted Far-end lockout of workingring Far-end lockout of workingspan Far-end lockout of protectionring Far-end lockout of protectionall spans Far-end working facility forced to switch to protectionring Far-end working facility forced to switch to protectionspan Far-end manual switch of working facility to protectionring Far-end manual switch of working facility to protectionspan Far-end exercising ring Far-end exercising span Far-end BER threshold passed for signal failurering Far-end BER threshold passed for signal failurespan Far-end BER threshold passed for signal degradering Far-end BER threshold passed for signal degradespan APS channelfar-end protection line signal degrade Ring switch is active on the east side Ring switch is active on the west side Span switch is active on the east side Span switch is active on the west side Unidirectional full pass-through is active Bidirectional full pass-through is active K bytes pass-through is active

CTM Internal Index (Not Reported in the Notification) 25277 25278 25279 25280 25281 25282 25283 25284 25285 25286 25287 25288 25289 25290 25291 25292 25293 25294 25295 25296 25297 25298 25299 25300 25301 25302 25303 25304 25305 25306 25307 25308 25309 25310

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual

A-54

OL-19364-01

Appendix A

Notifications, Fault Management, and Probable Cause Mapping A.5.7 CTM GateWay/CORBA Mapping ONS 15310 CL R7.2.3, R8.5.3, R9.0, R9.1; ONS 15310 MA SONET R7.2.3, R8.5.3,

Table A-23

CTM GateWay/CORBA Mapping for the ONS 15310 CL R7.2.3, R8.5.3, R9.0, R9.1; ONS 15310 MA SONET R7.2.3, R8.5.3, R9.0, R9.1; ONS 15310 MA SDH R9.0, R9.1; ONS 15327 R7.2.3; ONS 15454 SONET R4.1.4, R7.2.3, R8.5.2, R8.5.3, R9.0, R9.1; ONS 15454 SDH R8.5.2, R8.5.3, R9.0, R9.1 (continued)

TMF Mapping UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED SECURITY_VIOLATION UNIDENTIFIED UNIDENTIFIED SECURITY_VIOLATION SECURITY_VIOLATION EQPT UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT BER_SD BER_SD BER_SF BER_SF UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED EQPT UNIDENTIFIED

NE Native Probable Cause Ring is segmented Ring topology is under construction Lockout of protectionall spans Far end of fiber is provisioned with different ring ID Both ends of fiber provisioned as east or both as west Securityinvalid loginsee audit trail Autonomous messages inhibited Traffic storm on LAN; LAN temporarily disabled REPT^DBCHG messages inhibited Securityuser ID has expired Partial fan failure Force switch request on ring Force switch request on span Lockout switch request on ring Lockout switch request on span Manual switch request on ring Manual switch request on span Peer-to-peer slot communication failure Peer-to-peer slot communication failure TCC A to shelf slot communication failure TCC B to shelf slot communication failure Interconnection equipment failureworking XC payload bus Interconnection equipment failureprotect XC payload bus Inhibit switch to protect request on equipment Inhibit switch to working request on equipment BER threshold exceeded for signal degradeline BER threshold exceeded for signal degradepath BER threshold exceeded for signal failureline BER threshold exceeded for signal failurepath Exercising ring successfully Exercising span successfully Span is in wait-to-restore state Peer card not responding Exercise request on ring failed

CTM Internal Index (Not Reported in the Notification) 25311 25312 25313 25314 25315 25316 25317 25318 25319 25320 25321 25322 25323 25324 25325 25326 25327 25328 25329 25330 25331 25332 25333 25334 25335 25336 25337 25338 25339 25340 25341 25342 25343 25344

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual OL-19364-01

A-55

Appendix A Notifications, Fault Management, and Probable Cause Mapping A.5.7 CTM GateWay/CORBA Mapping ONS 15310 CL R7.2.3, R8.5.3, R9.0, R9.1; ONS 15310 MA SONET R7.2.3, R8.5.3,

Table A-23

CTM GateWay/CORBA Mapping for the ONS 15310 CL R7.2.3, R8.5.3, R9.0, R9.1; ONS 15310 MA SONET R7.2.3, R8.5.3, R9.0, R9.1; ONS 15310 MA SDH R9.0, R9.1; ONS 15327 R7.2.3; ONS 15454 SONET R4.1.4, R7.2.3, R8.5.2, R8.5.3, R9.0, R9.1; ONS 15454 SDH R8.5.2, R8.5.3, R9.0, R9.1 (continued)

TMF Mapping UNIDENTIFIED UNIDENTIFIED EQPT EQPT ENV TIM AIS RAI TIM AU_AIS LOP UNEQ PLM RAI LOP TU-AIS UNEQ PLM TIM RAI UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED ENV ENV ENV ENV ENV UNIDENTIFIED ENV

NE Native Probable Cause Exercise request on span failed Far-end lockout of protectionspan Manufacturing data memory (EEPROM) failure Replaceable equipment/unit is missing Software download failure TIM sectiontrace identifier mismatch failure AISmultiplex sectionalarm indication signal RFImultiplex sectionremote failure/alarm indication TIM high ordertrace identifier mismatch failure AISadministration unitalarm indication signal LOPadministration unitloss of pointer SLMFunequipped high orderpath unequipped SLMFPLM high orderpath label mismatch RFIhigh orderremote failure/alarm indication LOPtributary unitloss of pointer AIStributary unitalarm indication signal SLMFunequipped low orderpath unequipped SLMFPLM low orderpath label mismatch TIM low ordertrace identifier mismatch failure RFIlow orderremote failure/alarm indication G811primary reference clock traceable G812transit node clock traceable G812local node clock traceable G813synchronous equipment timing source traceable E1 loopback due to FEAC command E1 loopback command sent to far end E3 loopback due to FEAC command Far-end multiple E1 LOS detected on E3 Far-end E1 equipment failure non-service affecting Far-end E1 equipment failure service affecting Far-end single E1 LOS Far-end E3 equipment failure service affecting E3 loopback command sent to far end Far-end E3 equipment failure non-service affecting

CTM Internal Index (Not Reported in the Notification) 25345 25346 25347 25348 25349 25350 25351 25352 25353 25354 25355 25356 25357 25358 25359 25360 25361 25362 25363 25364 25365 25366 25367 25368 25369 25370 25371 25372 25373 25374 25375 25376 25377 25378

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual

A-56

OL-19364-01

Appendix A

Notifications, Fault Management, and Probable Cause Mapping A.5.7 CTM GateWay/CORBA Mapping ONS 15310 CL R7.2.3, R8.5.3, R9.0, R9.1; ONS 15310 MA SONET R7.2.3, R8.5.3,

Table A-23

CTM GateWay/CORBA Mapping for the ONS 15310 CL R7.2.3, R8.5.3, R9.0, R9.1; ONS 15310 MA SONET R7.2.3, R8.5.3, R9.0, R9.1; ONS 15310 MA SDH R9.0, R9.1; ONS 15327 R7.2.3; ONS 15454 SONET R4.1.4, R7.2.3, R8.5.2, R8.5.3, R9.0, R9.1; ONS 15454 SDH R8.5.2, R8.5.3, R9.0, R9.1 (continued)

TMF Mapping ENV ENV ENV ENV UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED BER_SD BER_SF BER_SD BER_SF UNIDENTIFIED

NE Native Probable Cause Low voltagebattery A High voltagebattery A Low voltagebattery B High voltagebattery B Procedural errorMS-SPRing out of sync MS-SPRing tables resynchronized Automatic SNCP switch caused by AIS Automatic SNCP switch caused by LOP Automatic SNCP switch caused by UNEQ Automatic SNCP switch caused by PDI Automatic SNCP switch caused by SFBER Automatic SNCP switch caused by SDBER STM concatenation error E3 idle condition IOS config copy failed IOS config copy in progress Alarms suppressed by user command Alarms suppressed for maintenance N/A Synchronization reference frequency out of bounds Ether Tx excess flow control Ether Tx oversubscribed Transport layer failure Ether Rx excess flow control Ether Rx oversubscribed Ether Tx underrun SNTP host failure DS3 frame format mismatch Alarms/events suppressed for this object BER threshold exceeded for signal degradehigh order BER threshold exceeded for signal failurehigh order BER threshold exceeded for signal degradelow order BER threshold exceeded for signal failurelow order Failure to switch to protectionhigh-order path

CTM Internal Index (Not Reported in the Notification) 25379 25380 25381 25382 25383 25384 25385 25386 25387 25388 25389 25390 25391 25392 25393 25394 25399 25400 25401 25402 25403 25404 25405 25406 25407 25408 25409 25410 25411 25412 25413 25414 25415 25416

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual OL-19364-01

A-57

Appendix A Notifications, Fault Management, and Probable Cause Mapping A.5.7 CTM GateWay/CORBA Mapping ONS 15310 CL R7.2.3, R8.5.3, R9.0, R9.1; ONS 15310 MA SONET R7.2.3, R8.5.3,

Table A-23

CTM GateWay/CORBA Mapping for the ONS 15310 CL R7.2.3, R8.5.3, R9.0, R9.1; ONS 15310 MA SONET R7.2.3, R8.5.3, R9.0, R9.1; ONS 15310 MA SDH R9.0, R9.1; ONS 15327 R7.2.3; ONS 15454 SONET R4.1.4, R7.2.3, R8.5.2, R8.5.3, R9.0, R9.1; ONS 15454 SDH R8.5.2, R8.5.3, R9.0, R9.1 (continued)

TMF Mapping UNIDENTIFIED UNIDENTIFIED ENV ENV ENV ENV UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED EQPT UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED LOM UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED SECURITY_VIOLATION SECURITY_VIOLATION SECURITY_VIOLATION SECURITY_VIOLATION UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED

NE Native Probable Cause Failure to switch to protectionlow-order path Wait to restore Extreme high voltagebattery A Extreme low voltagebattery A Extreme high voltagebattery B Extreme low voltagebattery B Switching matrix module failure Signaling unable to set up circuit RSVP hello FSM to neighbor down LMP hello FSM to control channel down LMP neighbor discovery has failed Unauthorized incoming signaling request Signaled circuit going down Autonomous PM report message inhibited I/O slot to XCON communication failure Forced switch to primary reference Forced switch to secondary reference Forced switch to third reference Forced switch to internal clock LOFadministration unitloss of multiframe Admin logout of user User locked out Admin lockout of user Admin lockout clear Securityinvalid loginusernamesee audit log Securityinvalid loginpasswordsee audit log Securityinvalid loginlocked outsee audit log Securityinvalid loginalready logged onsee audit log Login of user Automatic logout of idle user Logout of user Cross-connect loopback Error in startup config No startup config

CTM Internal Index (Not Reported in the Notification) 25417 25418 25419 25420 25421 25422 25423 25424 25425 25426 25427 25428 25429 25430 25431 25432 25433 25434 25435 25436 25438 25439 25440 25441 25442 25443 25444 25445 25446 25447 25448 25451 25454 25455

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual

A-58

OL-19364-01

Appendix A

Notifications, Fault Management, and Probable Cause Mapping A.5.7 CTM GateWay/CORBA Mapping ONS 15310 CL R7.2.3, R8.5.3, R9.0, R9.1; ONS 15310 MA SONET R7.2.3, R8.5.3,

Table A-23

CTM GateWay/CORBA Mapping for the ONS 15310 CL R7.2.3, R8.5.3, R9.0, R9.1; ONS 15310 MA SONET R7.2.3, R8.5.3, R9.0, R9.1; ONS 15310 MA SDH R9.0, R9.1; ONS 15327 R7.2.3; ONS 15454 SONET R4.1.4, R7.2.3, R8.5.2, R8.5.3, R9.0, R9.1; ONS 15454 SDH R8.5.2, R8.5.3, R9.0, R9.1 (continued)

TMF Mapping EQPT UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED AIS AIS UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED LOM UNIDENTIFIED PLM TIM TIM EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT

NE Native Probable Cause Laser approaching end of life Database backup failed Database restore failed 8B10B out of sync ODUkalarm indication signal OTUkalarm indication signal OTUkbackward defect indicator ODUkbackward defect indicator FEC uncorrected word GCC embedded operation channel failure OTUkincoming alignment error ODUklocked defectPM Loss of multiframe ODUkopen connection indication Payload type identifier mismatch ODUktrail trace identifier mismatch OTUktrail trace identifier mismatch Equipment high laser bias Equipment high laser temp Equipment high laser Peltier Equipment high Rx power Equipment high Tx power Equipment high Rx temperature Equipment low Rx temperature Equipment high transceiver voltage Equipment low laser bias Equipment low laser temp Equipment low laser Peltier Equipment low Rx power Equipment low Tx power Equipment low transceiver voltage Equipment Rx locked Equipment squelched Equipment Tx locked

CTM Internal Index (Not Reported in the Notification) 25456 25457 25458 25459 25460 25461 25462 25463 25464 25465 25466 25467 25468 25469 25470 25471 25472 25473 25474 25475 25476 25477 25478 25479 25480 25481 25482 25483 25484 25485 25486 25487 25488 25489

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual OL-19364-01

A-59

Appendix A Notifications, Fault Management, and Probable Cause Mapping A.5.7 CTM GateWay/CORBA Mapping ONS 15310 CL R7.2.3, R8.5.3, R9.0, R9.1; ONS 15310 MA SONET R7.2.3, R8.5.3,

Table A-23

CTM GateWay/CORBA Mapping for the ONS 15310 CL R7.2.3, R8.5.3, R9.0, R9.1; ONS 15310 MA SONET R7.2.3, R8.5.3, R9.0, R9.1; ONS 15310 MA SDH R9.0, R9.1; ONS 15327 R7.2.3; ONS 15454 SONET R4.1.4, R7.2.3, R8.5.2, R8.5.3, R9.0, R9.1; ONS 15454 SDH R8.5.2, R8.5.3, R9.0, R9.1 (continued)

TMF Mapping BER_SF BER_SF BER_SD BER_SD UNIDENTIFIED UNIDENTIFIED SECURITY_VIOLATION UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED AIS TIM BER_SD BER_SF UNIDENTIFIED UNIDENTIFIED AIS TIM BER_SD BER_SF LOF UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED EQPT EQPT UNIDENTIFIED

NE Native Probable Cause OTUksignal failure ODUksignal failure OTUksignal degrade ODUksignal degrade Pluggable port missing Pluggable port rate mismatch Pluggable port security code mismatch TCI not selected TCI 1 clock failure ODUkbackward defect indicator ODUkbackward defect indicator ODUkbackward defect indicator ODUkopen connection indication ODUklocked defectTCM2 ODUkalarm indication signal ODUktrail trace identifier mismatch ODUksignal degradeTCM2 ODUksignal failureTCM2 ODUkopen connection indication ODUklocked defectTCM1 ODUkalarm indication signal ODUktrail trace identifier mismatch ODUksignal degradeTCM1 ODUksignal failureTCM1 OTUkloss of frame TCI 2 clock failure Audit log 80 percent full Module communication failure Need to save running config Audit log 100 percent fulloldest records will be lost Standby database out of sync Redundant power capability lost Equipment wavelength mismatch DSP communication failure

CTM Internal Index (Not Reported in the Notification) 25490 25491 25492 25493 25494 25495 25496 25497 25498 25499 25500 25501 25504 25505 25506 25507 25508 25509 25510 25511 25512 25513 25514 25515 25516 25517 25518 25519 25520 25521 25522 25523 25524 25525

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual

A-60

OL-19364-01

Appendix A

Notifications, Fault Management, and Probable Cause Mapping A.5.7 CTM GateWay/CORBA Mapping ONS 15310 CL R7.2.3, R8.5.3, R9.0, R9.1; ONS 15310 MA SONET R7.2.3, R8.5.3,

Table A-23

CTM GateWay/CORBA Mapping for the ONS 15310 CL R7.2.3, R8.5.3, R9.0, R9.1; ONS 15310 MA SONET R7.2.3, R8.5.3, R9.0, R9.1; ONS 15310 MA SDH R9.0, R9.1; ONS 15327 R7.2.3; ONS 15454 SONET R4.1.4, R7.2.3, R8.5.2, R8.5.3, R9.0, R9.1; ONS 15454 SDH R8.5.2, R8.5.3, R9.0, R9.1 (continued)

TMF Mapping UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED SECURITY_VIOLATION SECURITY_VIOLATION UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED

NE Native Probable Cause DSP failure LAN connection polarity reversed Loss of channel FEC mismatch Optical power degrade low Optical power degrade high Security intrusion attempt detectedsee audit log Security intrusion attempt detectedsee audit log Variable optical attenuator degrade low Variable optical attenuator degrade high Variable optical attenuator failure low Variable optical attenuator failure high Laser bias degrade Laser bias failure Laser temperature degrade Optical amplifier gain degrade low Optical amplifier gain degrade high Optical amplifier gain failure low Optical amplifier gain failure high Laser auto power reduction Case temperature degrade Fiber temperature degrade Shutter open AWG temperature degrade AWG temperature failure AWG over temperature Shutter insertion loss variation degrade low Shutter insertion loss variation degrade high AWG warm up Plug-in module communication failure Optical amplifier initialization Optical channel connection failure Optical channel activation failure Optical channel deactivation failure

CTM Internal Index (Not Reported in the Notification) 25526 25527 25528 25529 25531 25532 25533 25534 25536 25537 25538 25539 25540 25541 25542 25543 25544 25545 25546 25547 25548 25549 25550 25551 25552 25553 25554 25555 25556 25557 25558 25559 25560 25561

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual OL-19364-01

A-61

Appendix A Notifications, Fault Management, and Probable Cause Mapping A.5.7 CTM GateWay/CORBA Mapping ONS 15310 CL R7.2.3, R8.5.3, R9.0, R9.1; ONS 15310 MA SONET R7.2.3, R8.5.3,

Table A-23

CTM GateWay/CORBA Mapping for the ONS 15310 CL R7.2.3, R8.5.3, R9.0, R9.1; ONS 15310 MA SONET R7.2.3, R8.5.3, R9.0, R9.1; ONS 15310 MA SDH R9.0, R9.1; ONS 15327 R7.2.3; ONS 15454 SONET R4.1.4, R7.2.3, R8.5.2, R8.5.3, R9.0, R9.1; ONS 15454 SDH R8.5.2, R8.5.3, R9.0, R9.1 (continued)

TMF Mapping UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED TIM UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED EQPT EQPT EQPT UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED AIS AIS LOF LOS UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED

NE Native Probable Cause Network topology incomplete Optical network type mismatch Automatic power control failure Automatic power control disabled Ring ID mismatch TIM section monitortrace identifier mismatch failure Optical channel incomplete Enhanced remote failure indicationpathserver Enhanced remote failure indicationpathconnectivity Enhanced remote failure indicationpathpayload Automatic laser shutdown Firewall has been disabled Optical power failure low Optical power failure high Battery failure Extreme high voltage Extreme low voltage High voltage Low voltage Connection equipment mismatch Disable inactive user Disable inactive user Suspend user Suspend user clear Line DCC termination failure Multiplex section DCC termination failure Gigabit Ethernet out of sync Alarm indication signal in Tx Remote alarm indication in Tx Loss of frame in Tx Incoming signal loss on fibre channel interface Incoming synchronization loss on fibre channel interface Out of frame detected by GFP receiver Client signal loss frames detected by GFP receiver

CTM Internal Index (Not Reported in the Notification) 25562 25563 25564 25565 25566 25569 25570 25571 25572 25573 25574 25575 25576 25577 25578 25579 25580 25581 25582 25583 25584 25585 25586 25587 25588 25589 25590 25591 25592 25593 25594 25595 25596 25597

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual

A-62

OL-19364-01

Appendix A

Notifications, Fault Management, and Probable Cause Mapping A.5.7 CTM GateWay/CORBA Mapping ONS 15310 CL R7.2.3, R8.5.3, R9.0, R9.1; ONS 15310 MA SONET R7.2.3, R8.5.3,

Table A-23

CTM GateWay/CORBA Mapping for the ONS 15310 CL R7.2.3, R8.5.3, R9.0, R9.1; ONS 15310 MA SONET R7.2.3, R8.5.3, R9.0, R9.1; ONS 15310 MA SDH R9.0, R9.1; ONS 15327 R7.2.3; ONS 15454 SONET R4.1.4, R7.2.3, R8.5.2, R8.5.3, R9.0, R9.1; ONS 15454 SDH R8.5.2, R8.5.3, R9.0, R9.1 (continued)

TMF Mapping UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED FOP_APS UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED LOS UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED

NE Native Probable Cause Client synchronization loss frames detected by GFP receiver Sequence mismatch Loss of alignment Out of useadministrative command Out of usetransport failure VCAT group down VCAT group degraded VCAT group incomplete K byte channel failure Industrial high temperature APS invalid mode IP address already in use within the same DCC area Node name already in use within the same DCC area Rear panel Ethernet link removed Manual switch to protect resulted in no traffic switch Manual switch back to working resulted in no traffic switch Forced switch to protection resulted in no traffic switch Forced switch back to working resulted in no traffic switch Incoming payload signal absent Incoming overhead signal absent Optical safety remote interlock on OSPF hello fail Automatic power control correction skipped Plug-in module range settings mismatch APC cannot set value due to range limits Automatic WDM ANS finished Port failure Unreachable port target power Port add power degrade low Port add power degrade high Port add power fail low Port add power fail high Equipment power failure at connector A Equipment power failure at connector B

CTM Internal Index (Not Reported in the Notification) 25598 25599 25600 25601 25602 25603 25604 25605 25606 25607 25608 25609 25610 25611 25612 25613 25614 25615 25616 25617 25618 25619 25620 25621 25622 25623 25624 25625 25626 25627 25628 25629 25630 25631

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual OL-19364-01

A-63

Appendix A Notifications, Fault Management, and Probable Cause Mapping A.5.7 CTM GateWay/CORBA Mapping ONS 15310 CL R7.2.3, R8.5.3, R9.0, R9.1; ONS 15310 MA SONET R7.2.3, R8.5.3,

Table A-23

CTM GateWay/CORBA Mapping for the ONS 15310 CL R7.2.3, R8.5.3, R9.0, R9.1; ONS 15310 MA SONET R7.2.3, R8.5.3, R9.0, R9.1; ONS 15310 MA SDH R9.0, R9.1; ONS 15327 R7.2.3; ONS 15454 SONET R4.1.4, R7.2.3, R8.5.2, R8.5.3, R9.0, R9.1; ONS 15454 SDH R8.5.2, R8.5.3, R9.0, R9.1 (continued)

TMF Mapping UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED PLM UNIDENTIFIED UNIDENTIFIED BER_SF LOF UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED AIS AIS AIS AIS UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED BER_SD

NE Native Probable Cause Equipment power failure at return connector A Equipment power failure at return connector B Far-end manual switch back to workingspan Far-end forced switch back to workingspan Universal transponder module hardware failure Universal transponder module communication failure Automatic power control terminated on manual request Fibre channel distance extension credit starvation GFP user payload mismatch GFP fibre channel distance extension mismatch GFP fibre channel distance extension buffer starvation GFP client signal fail detected GFP loss of frame delineation GFP extension header mismatch Signal loss on data interface Encapsulation mismatchpath Encapsulation mismatchVT Encapsulation mismatch high orderpath Encapsulation mismatch low orderpath Synchronization loss on data interface ODUk-1alarm indication signal ODUk-2alarm indication signal ODUk-3alarm indication signal ODUk-4alarm indication signal LCAS control word CRC check failure Duplicate serial number detected on a pluggable entity LCAS VCG member Tx side in DNU state LCAS VCG member Tx side in ADD state LCAS VCG member Rx side in FAIL state Optimized 1+1 APS primary facility Optimized 1+1 APS primary section mismatch Optimized 1+1 APS invalid primary section Composite clock high line voltage BER threshold exceeded for signal degradeVT

CTM Internal Index (Not Reported in the Notification) 25632 25633 25634 25635 25636 25637 25638 25639 25640 25641 25642 25643 25644 25645 25646 25647 25648 25649 25650 25651 25652 25653 25654 25655 25656 25657 25658 25659 25660 25661 25662 25663 25664 25665

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual

A-64

OL-19364-01

Appendix A

Notifications, Fault Management, and Probable Cause Mapping A.5.7 CTM GateWay/CORBA Mapping ONS 15310 CL R7.2.3, R8.5.3, R9.0, R9.1; ONS 15310 MA SONET R7.2.3, R8.5.3,

Table A-23

CTM GateWay/CORBA Mapping for the ONS 15310 CL R7.2.3, R8.5.3, R9.0, R9.1; ONS 15310 MA SONET R7.2.3, R8.5.3, R9.0, R9.1; ONS 15310 MA SDH R9.0, R9.1; ONS 15327 R7.2.3; ONS 15454 SONET R4.1.4, R7.2.3, R8.5.2, R8.5.3, R9.0, R9.1; ONS 15454 SDH R8.5.2, R8.5.3, R9.0, R9.1 (continued)

TMF Mapping BER_SF UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED TIM UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED TIM UNIDENTIFIED SECURITY_VIOLATION SECURITY_VIOLATION SECURITY_VIOLATION TIM TIM UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED

NE Native Probable Cause BER threshold exceeded for signal failureVT Alarms suppressed on out-of-group VCAT member Span length out of range Temperature reading mismatch between SC cards Voltage reading mismatch between SC cards VT path trace identifier mismatch BLSR software version mismatch Bridge and roll occurred Bridge and roll is pending a valid signal Open I/O slot(s) ISIS adjacency failure Session time limit expired User password change required Remote authentication fail Section trace identifier mismatch Regenerator section trace identifier mismatch Switching matrix module failureworking Switching matrix module failureprotect Provisioning mismatch Slot communication disabled MSSP software version mismatch Archival of audit log failed RPR wrapped Software mismatch Link layer keepalive failure Bad packet count exceeds threshold Autonegotiation remote failure indication Shelf communication failure Duplicated shelf identifier Ring is squelching STS traffic Ring is squelching VT traffic Clock bus failureshelf controller A Clock bus failureshelf controller B Loss of clock from mate shelf controller

CTM Internal Index (Not Reported in the Notification) 25666 25667 25668 25669 25670 25671 25672 25673 25674 25675 25676 25677 25678 25679 25680 25681 25682 25683 25684 25685 25686 25687 25688 25689 25690 25691 25692 25693 25694 25695 25696 25697 25698 25699

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual OL-19364-01

A-65

Appendix A Notifications, Fault Management, and Probable Cause Mapping A.5.7 CTM GateWay/CORBA Mapping ONS 15310 CL R7.2.3, R8.5.3, R9.0, R9.1; ONS 15310 MA SONET R7.2.3, R8.5.3,

Table A-23

CTM GateWay/CORBA Mapping for the ONS 15310 CL R7.2.3, R8.5.3, R9.0, R9.1; ONS 15310 MA SONET R7.2.3, R8.5.3, R9.0, R9.1; ONS 15310 MA SDH R9.0, R9.1; ONS 15327 R7.2.3; ONS 15454 SONET R4.1.4, R7.2.3, R8.5.2, R8.5.3, R9.0, R9.1; ONS 15454 SDH R8.5.2, R8.5.3, R9.0, R9.1 (continued)

TMF Mapping UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED

NE Native Probable Cause Payload missing indication Forward defect indication Optical termination incomplete Span loss not checked Ring is squelching higher order traffic Ring is squelching lower order traffic Trail signal fail DS1 loopback command sent to far end Multiplex sectionsignal degraded Multiplex sectionexcessive errors High-order pathsignal degraded High-order pathexcessive errors Low-order pathsignal degraded Low-order pathexcessive errors Regenerator sectionDCC termination failure Network memory pool low OSPF routing table overflow Auto laser shutdown disabled RPR protection is active Max RPR station number exceeded RPR protection configuration mismatched Reserved bandwidth link rate exceeded on ringlet 0 Reserved bandwidth link rate exceeded on ringlet 1 RPR interface in pass-through mode RPR peer node is missing RPR RI failure RPR signal failure RPR signal degrade RPR span mismatch LMP failure LMP signal degrade LMP signal failure LMP unallocated data link APC wrong gain setpoint

CTM Internal Index (Not Reported in the Notification) 25700 25701 25702 25703 25704 25705 25706 25707 25708 25709 25710 25711 25712 25713 25714 25715 25716 25717 25718 25719 25720 25721 25722 25723 25724 25725 25726 25727 25728 25729 25730 25731 25732 25733

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual

A-66

OL-19364-01

Appendix A

Notifications, Fault Management, and Probable Cause Mapping A.5.7 CTM GateWay/CORBA Mapping ONS 15310 CL R7.2.3, R8.5.3, R9.0, R9.1; ONS 15310 MA SONET R7.2.3, R8.5.3,

Table A-23

CTM GateWay/CORBA Mapping for the ONS 15310 CL R7.2.3, R8.5.3, R9.0, R9.1; ONS 15310 MA SONET R7.2.3, R8.5.3, R9.0, R9.1; ONS 15310 MA SDH R9.0, R9.1; ONS 15327 R7.2.3; ONS 15454 SONET R4.1.4, R7.2.3, R8.5.2, R8.5.3, R9.0, R9.1; ONS 15454 SDH R8.5.2, R8.5.3, R9.0, R9.1 (continued)

TMF Mapping EQPT EQPT UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED EQPT UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED

NE Native Probable Cause Non-Cisco PPM inserted Unqualified PPM inserted Fast automatic protection switching Fast automatic protection switching config mismatch ADM peer cards interlink failure Fan tray mismatch Fibre channel distance extension function not established LCAS sink group error LCAS VCG member Rx side in DNU state Card/ports unable to provide protection TCC front port link loss Shutter insertion loss variation degrade low Shutter insertion loss variation degrade high Idle signal condition Idle signal condition in TX Automatic power control correction skipped Port add power fail low Port add power fail high Span length out of range Port add power degrade low Port add power degrade high DCU loss failure OCHNC maintenance K-byte channel failure PRP protection configuration mismatched Reserved bandwidth link rate exceeded on ring Let0 Reserved bandwidth link rate exceeded on ring Let1 Security invalid loginlocked out Security invalid loginalready logged on Syslog messages Configuration events Link up/link down trap Cold/warm start trap Authentication failure notification

CTM Internal Index (Not Reported in the Notification) 25734 25735 25736 25737 25738 25739 25740 25741 25742 25743 25744 25745 25746 25747 25748 25749 25750 25751 25752 25753 25754 25755 25756 25757 25758 25759 25760 25761 25762 28000 28001 28002 28003 28004

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual OL-19364-01

A-67

Appendix A Notifications, Fault Management, and Probable Cause Mapping A.5.8 CTM GateWay/CORBA MappingONS 15310 CL, ONS 15454 SONET, and ONS 15454 SDH R8.5.x

A.5.8 CTM GateWay/CORBA MappingONS 15310 CL, ONS 15454 SONET, and ONS 15454 SDH R8.5.x
The following table lists the CTM GateWay/CORBA mapping for the ONS 15310 CL, ONS 15454 SONET, and ONS 15454 SDH R8.5.x.
Table A-24 CTM GateWay/CORBA Mapping for the ONS 15310 CL, ONS 15454 SONET, ONS 15454 SDH R8.5.x

TMF Mapping UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED

NE Native Probable Cause BERT enabled BERT synchronization status failed Work queue full

CTM Internal Index (Not Reported in the Notification) 25763 25764 25765

A.5.9 CTM GateWay/CORBA MappingONS 15530


The following table lists the CTM GateWay/CORBA mapping for the ONS 15530.
Table A-25 CTM GateWay/CORBA Mapping for the ONS 15530

TMF Mapping
FAN Alarms

NE Native Probable Cause Two or more fans failed One fan failed Unknown alarm detected SRC diag failure PCI diag failure PCMCIA diag failure Cannot access multiple line card IDPROM/backplane slot mismatch Cannot access backplane IDPROM Inconsistent redun states Read invalid SRC Unprotected; peer missing Unprotected; peer not responding Standby with lower capabilities Access to TSP card failed Access to IDPROM failed Line laser failure detected Trunk laser degrade detected

CTM Internal Index (Not Reported in the Notification) 9021 9022 9051 9052 9053 9054 9055 9056 9057 9058 9059 9060 9061 9062 9501 9502 9503 9504

EQPT EQPT
CPU Alarms

UNIDENTIFIED EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT
TSP Alarms

EQPT EQPT TX_FAIL TX_DEGRADE

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual

A-68

OL-19364-01

Appendix A

Notifications, Fault Management, and Probable Cause Mapping A.5.9 CTM GateWay/CORBA MappingONS 15530

Table A-25

CTM GateWay/CORBA Mapping for the ONS 15530 (continued)

TMF Mapping UNIDENTIFIED UNIDENTIFIED


MDSUBCARD Alarms

NE Native Probable Cause Trunk laser lambda deviation Wavelength mismatch error Access to IDPROM failed Loss of lock event Loss of signal event Loss of sync event SONET loss of frame event SONET severely errored frame Laser shut down by forward laser control Laser shut down by open fibre control Loss of lock event Loss of signal event Loss of sync event SONET loss of frame event SONET severely errored frame Laser shut down by forward laser control Laser shut down by laser safety control Link down Chassis fan tray missing Chassis temp > critical limit Chassis temp > major limit Chassis temp > minor limit Chassis temp less than 5 C Chassis power supply 0 missing Chassis power supply 1 missing Power supply unit failed Loss of lock event Loss of signal event Loss of lock event

CTM Internal Index (Not Reported in the Notification) 9505 9506 9601 9701 9702 9703 9704 9705 9706 9707 9801 9802 9803 9804 9805 9806 9807 9903 12601 12602 12603 12604 12605 12606 12607 12701 10101 10102 10201

EQPT
Client Port Alarms

UNIDENTIFIED LOS UNIDENTIFIED LOF UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED


Wave Port Alarms

UNIDENTIFIED LOS UNIDENTIFIED LOF UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED


Chassis Alarm

EQPT ENV ENV ENV ENV ENV ENV


Power Supply Alarms

EQPT
Wave OSC Alarms

UNIDENTIFIED OSC_LOS
Wave Ethernet Phy Alarms

UNIDENTIFIED

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual OL-19364-01

A-69

Appendix A A.5.9 CTM GateWay/CORBA MappingONS 15530

Notifications, Fault Management, and Probable Cause Mapping

Table A-25

CTM GateWay/CORBA Mapping for the ONS 15530 (continued)

TMF Mapping LOS UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED


Ten Gig Ethernet Phy Alarms

NE Native Probable Cause Loss of signal event Loss of sync event Laser shut down by forward laser control Laser shut down by laser safety control Loss of lock event Loss of signal event Loss of sync event Laser shut down by forward laser control Laser shut down by laser safety control Loss of lock event Loss of signal event Loss of sync event Laser disabled event Local failure, laser disabled Transmit laser failed Access to 10G card failed Access to IDPROM failed Ethernet DCC loopback from PSC failed 10G internal loopback failed 10G internal loopback through PSC failed Laser failure detected Laser wavelength deviation Access to ESCON card failed Access to IDPROM failed ESCON card internal loopback failed ESCON card internal loopback through PSC failed Access to card failed Access to IDPROM failed Ethernet DCC loopback from PSC failed

CTM Internal Index (Not Reported in the Notification) 10202 10203 10206 10207 10301 10302 10303 10306 10307 10401 10402 10403 10411 10412 10501 10601 10602 10603 10604 10605 10606 10607 10701 10702 10703 10704 10801 10802 10803

UNIDENTIFIED LOS UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED


ESCON Port Alarms

UNIDENTIFIED LOS UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED


ESCON SFP Alarms

TX_FAIL
10G Card Alarms

EQPT EQPT UNIDENTIFIED EQPT EQPT TX_FAIL UNIDENTIFIED


ESCON Card Alarms

EQPT EQPT EQPT EQPT


OSC MB Alarms

EQPT EQPT UNIDENTIFIED


OSC Subcard Alarms

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual

A-70

OL-19364-01

Appendix A

Notifications, Fault Management, and Probable Cause Mapping A.5.9 CTM GateWay/CORBA MappingONS 15530

Table A-25

CTM GateWay/CORBA Mapping for the ONS 15530 (continued)

TMF Mapping EQPT EQPT UNIDENTIFIED TX_FAIL UNIDENTIFIED


VOA and PEQ SubCard Alarms

NE Native Probable Cause Access to card failed Access to IDPROM failed Ethernet DCC loopback from OSCMB failed Laser failure detected Laser wavelength deviation Access to card failed Access to IDPROM failed CVRD failure threshold exceeded CVRD degrade threshold exceeded CDL HEC failure threshold exceeded CDL HEC degrade threshold exceeded SONET/SDH CV-S failure threshold exceeded SONET/SDH CV-S degrade threshold exceeded CDL header CRC failure threshold exceeded CDL header CRC degrade threshold exceeded ESCON encapsulation packet errors failure threshold exceeded

CTM Internal Index (Not Reported in the Notification) 10901 10902 10903 10904 10905 11001 11002 9976 9977 9978 9979 9980 9981 9982 9983 9984

EQPT EQPT
IF-THRESHOLD Alarms

UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED
CDL Alarms

ESCON encapsulation packet errors degrade threshold exceeded 9985 CDL hop-by-hop backward defect indication CDL hop-by-hop forward defect indication CDL end-by-end forward defect indication CDL end-by-end backward defect indication Laser failure Access to 2.5G card failed Access to IDPROM failed Ethernet DCC loopback from PSC failed 2.5G internal loopback failed 2.5G internal loopback through PSC failed Laser failure detected Laser wavelength deviation Access to card failed 10001 10002 10003 10004 11501 11601 11602 11603 11604 11605 11606 11607 11701

UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED


Transceiver Alarms

TX_FAIL
2.5G Card Alarms

EQPT EQPT UNIDENTIFIED EQPT EQPT TX_FAIL UNIDENTIFIED


FCGE Card Alarms

EQPT

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual OL-19364-01

A-71

Appendix A A.5.10 CTM GateWay/CORBA MappingONS 15540

Notifications, Fault Management, and Probable Cause Mapping

Table A-25

CTM GateWay/CORBA Mapping for the ONS 15530 (continued)

TMF Mapping EQPT EQPT EQPT

NE Native Probable Cause Access to IDPROM failed Card internal loopback failed Card internal loopback through PSC failed

CTM Internal Index (Not Reported in the Notification) 11702 11704 11705

A.5.10 CTM GateWay/CORBA MappingONS 15540


The following table lists the CTM GateWay/CORBA mapping for the ONS 15540.
Table A-26 CTM GateWay/CORBA Mapping for the ONS 15540

TMF Mapping
Chassis Alarms

NE Native Probable Cause Chassis fan tray missing Chassis temp > critical limit Chassis temp > major limit Chassis temp > minor limit Chassis temp less than 15 C Chassis power supply A failed Chassis power supply B failed Two or more fans failed One fan failed Unknown alarm detected SRC diag failure PCI diag failure PCMCIA diag failure Cannot access multiple line card IDPROM/backplane slot mismatch Cannot access backplane IDPROM Inconsistent redun states Read invalid SRC Unprotected; peer missing Unprotected; peer not responding Standby with lower capabilities

CTM Internal Index (Not Reported in the Notification) 9001 9002 9003 9004 9005 9006 9007 9021 9022 9051 9052 9053 9054 9055 9056 9057 9058 9059 9060 9061 9062

EQPT ENV ENV ENV ENV ENV ENV


FAN Alarms

EQPT EQPT
CPU Alarms

UNIDENTIFIED EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual

A-72

OL-19364-01

Appendix A

Notifications, Fault Management, and Probable Cause Mapping A.5.10 CTM GateWay/CORBA MappingONS 15540

Table A-26

CTM GateWay/CORBA Mapping for the ONS 15540 (continued)

TMF Mapping
LCMB Alarms

NE Native Probable Cause Access to LRC failed Access to IDPROM failed Waveport 0 opt switch failed Waveport 1 opt switch failed Waveport 2 opt switch failed Waveport 3 opt switch failed Ethernet DCC loopback from PSC failed Access to LRC failed Access to IDPROM failed OSC hardware failure detected Trunk laser failure detected Trunk laser lambda deviation Ethernet DCC loopback from PSC failed Access to LRC failed Access to IDPROM failed Ethernet DCC loopback from PSC failed Access to TSP card failed Access to IDPROM failed Line laser failure detected Trunk laser failure detected Trunk laser lambda deviation Wavelength mismatch error Access to IDPROM failed Loss of lock event Loss of signal event Loss of sync event SONET loss of frame event SONET severely errored frame Laser shut down by forward laser control

CTM Internal Index (Not Reported in the Notification) 9201 9202 9203 9204 9205 9206 9207 9301 9302 9303 9304 9305 9306 9401 9402 9406 9501 9502 9503 9504 9505 9506 9601 9701 9702 9703 9704 9705 9706

EQPT EQPT UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED


MDMBOSC Alarms

EQPT EQPT EQPT TX_FAIL UNIDENTIFIED UNIDENTIFIED


MDMB Alarms

EQPT EQPT UNIDENTIFIED


TSP1 Alarms

EQPT EQPT TX_FAIL TX_FAIL UNIDENTIFIED UNIDENTIFIED


MD Subcard Alarms

EQPT
Client Port Alarms

UNIDENTIFIED LOS UNIDENTIFIED LOF UNIDENTIFIED UNIDENTIFIED

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual OL-19364-01

A-73

Appendix A A.5.10 CTM GateWay/CORBA MappingONS 15540

Notifications, Fault Management, and Probable Cause Mapping

Table A-26

CTM GateWay/CORBA Mapping for the ONS 15540 (continued)

TMF Mapping UNIDENTIFIED


Wave Port Alarms

NE Native Probable Cause Laser shut down by open fibre control Loss of lock event Loss of signal event Loss of sync event SONET loss of frame event SONET severely errored frame Laser shut down by forward laser control Laser shut down by laser safety control Link down CVRD failure threshold exceeded CVRD degrade threshold exceeded HEC failure threshold exceeded HEC degrade threshold exceeded SONET/SDH CV-S failure threshold exceeded SONET/SDH CV-S degrade threshold exceeded CDL hop-by-hop backward defect indication CDL hop-by-hop forward defect indication CDL end-by-end forward defect indication CDL end-by-end backward defect indication Loss of lock event Loss of signal event Loss of sync event Laser shut down by forward laser control Laser shut down by laser safety control Loss of lock event Loss of signal event in Cisco OPT-MON-MIB Loss of sync event Laser shut down by forward laser control Trunk laser shut down by laser safety control

CTM Internal Index (Not Reported in the Notification) 9707 9801 9802 9803 9804 9805 9806 9807 9903 9976 9977 9978 9979 9980 9981 10001 10002 10003 10004 10201 10202 10203 10206 10207 10301 10302 10303 10306 10307

UNIDENTIFIED LOS UNIDENTIFIED LOF UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED


IF-THRESHOLD Alarms

UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED


CDL Alarms

UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED


Wave Ethernet Phy Alarms

UNIDENTIFIED LOS UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED


Ten Gig Ethernet Phy Alarms

UNIDENTIFIED LOS UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual

A-74

OL-19364-01

Appendix A

Notifications, Fault Management, and Probable Cause Mapping A.5.10 CTM GateWay/CORBA MappingONS 15540

Table A-26

CTM GateWay/CORBA Mapping for the ONS 15540 (continued)

TMF Mapping
10G Card Alarms

NE Native Probable Cause Access to card failed Access to IDPROM failed 10G internal loopback failed Line laser failed Trunk laser failure Trunk laser wavelength deviation Access to LRC failed Access to IDPROM failed Waveport 0 opt switch failed Waveport 1 opt switch failed Waveport 2 opt switch failed Waveport 3 opt switch failed Ethernet DCC loopback from PSC failed Access to subcard failed Access to IDPROM failed Access to TSP2 card failed Access to IDPROM failed Line laser failure Trunk laser failure detected Trunk laser lambda deviation Laser failure

CTM Internal Index (Not Reported in the Notification) 11101 11102 11103 11104 11105 11106 11201 11202 11203 11204 11205 11206 11207 11301 11302 11401 11402 11403 11404 11405 11501

EQPT EQPT EQPT TX_FAIL TX_FAIL UNIDENTIFIED


10G MB Alarms

EQPT EQPT UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED


Dummy TSP for 10GE Alarms

EQPT EQPT
TSP2 Alarms

EQPT EQPT TX_FAIL TX_FAIL UNIDENTIFIED


Transceiver Alarms

TX_FAIL

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual OL-19364-01

A-75

Appendix A A.5.11 Optical Monitoring AlarmsONS 15530 and ONS 15540

Notifications, Fault Management, and Probable Cause Mapping

A.5.11 Optical Monitoring AlarmsONS 15530 and ONS 15540


The following table lists the optical monitoring alarms applicable to both the ONS 15530 and ONS 15540.
Table A-27 Optical Monitoring Alarms for the ONS 15530, ONS 15540

TMF Mapping
Power Optical Monitor Alarms

NE Native Probable Cause Rx optical power exceeds high alarm threshold Tx optical power exceeds high alarm threshold Rx optical power exceeds high warning threshold Tx optical power exceeds high warning threshold Rx optical power below low alarm threshold Tx optical power exceeds high alarm threshold Rx optical power below low warning threshold Tx optical power below low warning threshold Rx optical AC power exceeds high alarm threshold Tx optical AC power exceeds high alarm threshold Rx optical AC power exceeds high warning threshold Tx optical AC power exceeds high warning threshold Rx optical AC power below low alarm threshold Tx optical AC power below low alarm threshold Rx optical AC power below low warning threshold Tx optical AC power below low warning threshold Rx ambient temp exceeds high alarm threshold Tx ambient temp exceeds high alarm threshold Rx ambient temp exceeds high warning threshold Tx ambient temp exceeds high warning threshold Rx ambient temp below low alarm threshold Tx ambient temp below low alarm threshold Rx ambient temp below low warning threshold Tx ambient temp below low warning threshold Rx laser temp exceeds high alarm threshold Tx laser temp exceeds high alarm threshold Rx laser temp exceeds high warning threshold Tx laser temp exceeds high warning threshold

CTM Internal Index (Not Reported in the Notification) 14501 14502 14503 14504 14505 14506 14507 14508 14516 14517 14518 14519 14520 14521 14522 14523 14531 14532 14533 14534 14535 14536 14537 14538 14546 14547 14548 14549

UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED

AC Power Optical Monitor Alarms

Ambient Temp Power Optical Monitor Alarms

Laser Temp Power Optical Monitor Alarms

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual

A-76

OL-19364-01

Appendix A

Notifications, Fault Management, and Probable Cause Mapping A.5.11 Optical Monitoring AlarmsONS 15530 and ONS 15540

Table A-27

Optical Monitoring Alarms for the ONS 15530, ONS 15540 (continued)

TMF Mapping UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED


Bias Temp Monitor Alarms

NE Native Probable Cause Rx laser temp below low alarm threshold Tx laser temp below low alarm threshold Rx laser temp below low warning threshold Tx laser temp below low warning threshold Rx bias current exceeds high alarm threshold Tx bias current exceeds high alarm threshold Rx bias current exceeds high warning threshold Tx bias current exceeds high warning threshold Rx bias current below low alarm threshold Tx bias current below low alarm threshold Rx bias current below low warning threshold Tx bias current below low warning threshold Rx laser Peltier current exceeds high alarm threshold Tx laser Peltier current exceeds high alarm threshold Rx laser Peltier current exceeds high warning threshold Tx laser Peltier current exceeds high warning threshold Rx laser Peltier current below low alarm threshold Tx laser Peltier current below low alarm threshold Rx laser Peltier current below low warning threshold Tx laser Peltier current below low warning threshold Rx transceiver voltage exceeds high alarm threshold Tx transceiver voltage exceeds high alarm threshold Rx transceiver voltage exceeds high warning threshold Tx transceiver voltage exceeds high warning threshold Rx transceiver voltage below low alarm threshold Tx transceiver voltage below low alarm threshold Rx transceiver voltage below low warning threshold Tx transceiver voltage below low warning threshold

CTM Internal Index (Not Reported in the Notification) 14550 14551 14552 14553 14561 14562 14563 14564 14565 14566 14567 14568 14576 14577 14578 14579 14580 14581 14582 14583 14591 14592 14593 14594 14595 14596 14597 14598

UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED

Laser Peltier Current Monitor Alarms

Transceiver Voltage Monitor Alarms

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual OL-19364-01

A-77

Appendix A A.5.12 CTM GateWay/CORBA MappingONS 15600 SONET

Notifications, Fault Management, and Probable Cause Mapping

A.5.12 CTM GateWay/CORBA MappingONS 15600 SONET


A.5.12.1 ONS 15600 SONET R5.0
The following table lists the CTM GateWay/CORBA mapping for the ONS 15600 SONET R5.0.
Table A-28 CTM GateWay/CORBA Mapping for the ONS 15600 SONET R5.0

TMF Mapping EQPT UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED ENV DCC_FAILURE DCC_FAILURE AIS AIS AIS FOP_APS FOP_APS FOP_APS FOP_APS FOP_APS FOP_APS ENV FOP_APS FOP_APS FOP_APS UNIDENTIFIED LOF LOP LOS RAI RAI BER_SD BER_SD

NE Native Probable Cause Alarms/events suppressed for this object Audit log 100 percent full Audit log 80 percent full BLSR out of sync BLSR multinode table update completed TSC switched to alternate Ethernet port Failure detected external to the NE DCC channel loss SDCC termination failure Alarm indication signal Alarm indication signalline Alarm indication signalpath Byte failure Protection switching channel match failure Automatic protection switch mode mismatch Connection loss Default K byte Far-end protection line failure APS channelfar-end protection line signal degrade Improper APS code Inconsistent APS code Node ID mismatch STS concatenation error Loss of frame Loss of pointerpath Loss of signal Remote failure indicationline Remote failure indicationpath BER threshold exceeded for signal degradeline BER threshold exceeded for signal degradepath

CTM Internal Index (Not Reported in the Notification) 17501 17502 17503 17504 17505 17506 17507 17508 17509 17510 17511 17512 17513 17514 17515 17516 17517 17518 17519 17520 17521 17522 17523 17524 17525 17526 17527 17528 17529 17530

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual

A-78

OL-19364-01

Appendix A

Notifications, Fault Management, and Probable Cause Mapping A.5.12 CTM GateWay/CORBA MappingONS 15600 SONET

Table A-28

CTM GateWay/CORBA Mapping for the ONS 15600 SONET R5.0 (continued)

TMF Mapping ENV ENV BER_SF BER_SF ENV ENV UNIDENTIFIED UNEQ UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED TIM ENV ENV EQPT UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED

NE Native Probable Cause Far-end BER threshold passed for signal degradering Far-end BER threshold passed for signal degradespan BER threshold exceeded for signal failureline BER threshold exceeded for signal failurepath Far-end BER threshold passed for signal failurering Far-end BER threshold passed for signal failurespan Payload defect indicationpath Unequippedpath Dont use for synchronization Failed to receive synchronization status message Synchronization status messages are disabled on this interface Primary reference sourcestratum 1 traceable Reserved for network synchronization use SONET minimum clock traceable Stratum 2 traceable Stratum 3 traceable Stratum 3E traceable Stratum 4 traceable Synchronizedtraceability unknown Transit node clock traceable Fifth synchronization reference failure Fourth synchronization reference failure Synchronization reference frequency out of bounds Primary synchronization reference failure Secondary synchronization reference failure Sixth synchronization reference failure Third synchronization reference failure STS path trace identifier mismatch NE power failure at connector A NE power failure at connector B Power fuse failure Free running synchronization mode Stratum 3E fast start synchronization mode Holdover synchronization mode Autonomous messages inhibited

CTM Internal Index (Not Reported in the Notification) 17531 17532 17533 17534 17535 17536 17537 17538 17539 17540 17541 17542 17543 17544 17545 17546 17547 17548 17549 17550 17551 17552 17553 17554 17555 17556 17557 17558 17559 17560 17561 17562 17563 17564 17565

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual OL-19364-01

A-79

Appendix A A.5.12 CTM GateWay/CORBA MappingONS 15600 SONET

Notifications, Fault Management, and Probable Cause Mapping

Table A-28

CTM GateWay/CORBA Mapping for the ONS 15600 SONET R5.0 (continued)

TMF Mapping UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED ENV ENV EQPT UNIDENTIFIED UNIDENTIFIED EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT UNIDENTIFIED EQPT EQPT EQPT EQPT UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED EQPT EQPT EQPT EQPT UNIDENTIFIED EQPT EQPT UNIDENTIFIED

NE Native Probable Cause Autonomous PM report message inhibited Mismatch of equipment and attributes Ring topology is under construction Software faultdata integrity fault Airflow failure Equipment fails to boot Connection ID mismatch on CXC 0 Connection ID mismatch on CXC 1 Clock module failure Control bus failureTSC A Control bus failureTSC B Clock bus failureTSC A Clock bus failureTSC B Control communication equipment failure Primary nonvolatile backup memory failure Manufacturing data memory (EEPROM) failure Payload bus failurematrix A Payload bus failurematrix B CXC operations suspended Equipment failure Diagnostics failure Equipment failurehigh temperature Invalid MAC address Failure to switch to protection Failure to switch to protectionpath Failure to switch to protectionring Failure to switch to protectionspan Fan failure Partial fan failurespeed degradation Partial fan failureparts failure Clock module frequency mismatch OSPF hello fail Laser bias current high High laser temperature Software download failed

CTM Internal Index (Not Reported in the Notification) 17566 17567 17568 17569 17570 17571 17572 17573 17574 17575 17576 17577 17578 17579 17580 17581 17582 17583 17584 17585 17586 17587 17588 17589 17590 17591 17592 17593 17594 17595 17596 17597 17598 17599 17600

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual

A-80

OL-19364-01

Appendix A

Notifications, Fault Management, and Probable Cause Mapping A.5.12 CTM GateWay/CORBA MappingONS 15600 SONET

Table A-28

CTM GateWay/CORBA Mapping for the ONS 15600 SONET R5.0 (continued)

TMF Mapping UNIDENTIFIED EQPT EQPT EQPT UNIDENTIFIED EQPT UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED SECURITY_VIOLATION SECURITY_VIOLATION UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED EQPT UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED EQPT EQPT EQPT EQPT EQPT UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED

NE Native Probable Cause Different software version Synchronization equipment unavailable Unprotected synchronization equipment Unprotected matrix equipment System upgrade in progress Matrix equipment unavailable Loopbackcross connect Loopback facility Loopback payload Loopback Securityinvalid login (see audit trail) Invalid login attempt threshold exceeded Normal condition Performance monitor threshold crossing alert Duplicate node ID Improper removal Both ends of fiber provisioned as east Far end of fiber is provisioned with different ring ID Protection switch Equipment power failure Equipment power failure at connector A Equipment power failure at connector B Equipment power failure at return connector A Equipment power failure at return connector B Automatic reset Automatic path-protection switch caused by AIS Automatic path-protection switch caused by LOP Automatic path-protection switch caused by PDI Automatic path-protection switch caused by SDBER Automatic path-protection switch caused by SFBER Automatic path-protection switch caused by UNEQ Cold restart Exercise ring Exercising ring successfully Far-end exercise ring

CTM Internal Index (Not Reported in the Notification) 17601 17602 17603 17604 17605 17606 17607 17608 17609 17610 17611 17612 17613 17614 17615 17616 17617 17618 17619 17620 17621 17622 17623 17624 17625 17626 17627 17628 17629 17630 17631 17632 17633 17634 17635

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual OL-19364-01

A-81

Appendix A A.5.12 CTM GateWay/CORBA MappingONS 15600 SONET

Notifications, Fault Management, and Probable Cause Mapping

Table A-28

CTM GateWay/CORBA Mapping for the ONS 15600 SONET R5.0 (continued)

TMF Mapping UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED EQPT EQPT UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED

NE Native Probable Cause Exercise request on ring failed Exercise span Exercising span successfully Far-end exercise span Exercise request on span failed Force switch request on facility/equipment Force switch request on ring Force switch request on span

CTM Internal Index (Not Reported in the Notification) 17636 17637 17638 17639 17640 17641 17642 17643

Far-end working facility forced to switch to protection unitring 17644 Far-end working facility forced to switch to protection unitspan 17645 Bidirectional full pass-through is active Unidirectional full pass-through is active Inhibit switch to protect request on equipment Inhibit switch to working request on equipment K bytes pass-through is active Far-end lockout of protectionall spans Far-end lockout of protectionring Far-end lockout of workingring Far-end lockout of workingspan Far-end lockout of protectionspan Lockout of protection Lockout of protectionring Lockout of protectionspan Lockout of workingring Lockout of workingspan Lockout switch request on facility/equipment Lockout switch request on ring Manual reset Far-end manual switch of working facility to protection unitring Far-end manual switch of working facility to protection unitspan Manual switch to fifth reference Manual switch to fourth reference Manual switch to internal clock Manual switch to primary reference 17646 17647 17648 17649 17650 17651 17652 17653 17654 17655 17656 17657 17658 17659 17660 17661 17662 17663 17664 17665 17666 17667 17668 17669

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual

A-82

OL-19364-01

Appendix A

Notifications, Fault Management, and Probable Cause Mapping A.5.12 CTM GateWay/CORBA MappingONS 15600 SONET

Table A-28

CTM GateWay/CORBA Mapping for the ONS 15600 SONET R5.0 (continued)

TMF Mapping UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED ENV UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED

NE Native Probable Cause Manual switch to second reference Manual switch to sixth reference Manual switch to third reference Manual switch request on facility/equipment Manual switch request on ring Manual switch request on span Powerfail restart Ring is segmented Ring switch is active on the east side Ring switch is active on the west side Span switch is active on the east side Span switch is active on the west side Ring is squelching traffic Squelching path Software download in progress Switch to fifth reference Switch to fourth reference Switch to primary reference Switch to second reference Switch to sixth reference Switch to third reference System reboot Extra traffic preempted Switched back to working unit Switched to protection unit Warm restart Wait to restore Ring is in wait-to-restore state Span is in wait-to-restore state Bridge and roll has occurred Bridge and roll is pending a valid signal Admin logout of user Admin lockout of user Admin lockout clear Automatic logout of idle user

CTM Internal Index (Not Reported in the Notification) 17670 17671 17672 17673 17674 17675 17676 17677 17678 17679 17680 17681 17682 17683 17684 17685 17686 17687 17688 17689 17690 17691 17692 17693 17694 17695 17696 17697 17698 17699 17700 17701 17702 17703 17704

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual OL-19364-01

A-83

Appendix A A.5.12 CTM GateWay/CORBA MappingONS 15600 SONET

Notifications, Fault Management, and Probable Cause Mapping

Table A-28

CTM GateWay/CORBA Mapping for the ONS 15600 SONET R5.0 (continued)

TMF Mapping UNIDENTIFIED SECURITY_VIOLATION SECURITY_VIOLATION SECURITY_VIOLATION SECURITY_VIOLATION UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED EQPT UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED EQPT EQPT UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED PLM UNIDENTIFIED UNIDENTIFIED BER_SF LOF UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED

NE Native Probable Cause Login of user Invalid loginlocked out Invalid loginalready logged on Invalid loginpassword Invalid loginusername Logout of user User locked out Open I/O slot(s) Improper matrix equipment inserted Equipment fails to boot No description Firewall has been disabled Loss of clock from mate TSC Alarms suppressed for maintenance SNTP host failure Disable inactive user Disable inactive clear Suspend user Duplicate serial number detected on a pluggable entity Equipment problem on carrier or PIM Equipment problem on PIM or PPM Suspend user clear Forced switch to primary reference Forced switch to secondary reference Forced switch to third reference Forced switch to internal clock GFP user payload mismatch GFP fibre channel distance extension mismatch GFP fibre channel distance extension buffer starvation GFP client signal fail detected GFP loss of frame delineation GFP extension header mismatch Carrier loss on the LAN Encapsulation type mismatch Transport layer failure

CTM Internal Index (Not Reported in the Notification) 17705 17706 17707 17708 17709 17710 17711 17712 17713 17714 17715 17716 17717 17718 17719 17720 17721 17722 17723 17724 17725 17726 17727 17728 17729 17730 17731 17732 17733 17734 17735 17736 17737 17738 17739

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual

A-84

OL-19364-01

Appendix A

Notifications, Fault Management, and Probable Cause Mapping A.5.12 CTM GateWay/CORBA MappingONS 15600 SONET

Table A-28

CTM GateWay/CORBA Mapping for the ONS 15600 SONET R5.0 (continued)

TMF Mapping PLM DCC_FAILURE UNIDENTIFIED UNIDENTIFIED SECURITY_VIOLATION UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED ENV UNIDENTIFIED

NE Native Probable Cause Payload label mismatchpath Line DCC termination failure K byte channel failure BLSR software version mismatch Security intrusion attempt detectedsee audit log IP address already in use within the same DCC area Node name already in use within the same DCC area Free memory on card near zero Free memory on card very low NE power failure at connector Standby database out of sync

CTM Internal Index (Not Reported in the Notification) 17740 17741 17742 17743 17744 17745 17746 17747 17748 17749 17750

A.5.12.2 ONS 15600 SONET R8.0, R9.0, and R9.1


The following table lists the CTM GateWay/CORBA mapping for the ONS 15600 SONET R8.0, R9.0, and R9.1.
Table A-29 CTM GateWay/CORBA Mapping for the ONS 15600 SONET R8.0, R9.0, R9.1

TMF Mapping EQPT UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED ENV DCC_FAILURE DCC_FAILURE AIS AIS AIS FOP_APS FOP_APS FOP_APS FOP_APS FOP_APS

NE Native Probable Cause Alarms/events suppressed for this object Audit log 100 percent full Audit log 80 percent full BLSR out of sync BLSR multinode table update completed TSC switched to alternate Ethernet port Failure detected external to the NE DCC channel loss SDCC termination failure Alarm indication signal Alarm indication signalline Alarm indication signalpath Byte failure Protection switching channel match failure Automatic protection switch mode mismatch Connection loss Default K byte

CTM Internal Index (Not Reported in the Notification) 17501 17502 17503 17504 17505 17506 17507 17508 17509 17510 17511 17512 17513 17514 17515 17516 17517

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual OL-19364-01

A-85

Appendix A A.5.12 CTM GateWay/CORBA MappingONS 15600 SONET

Notifications, Fault Management, and Probable Cause Mapping

Table A-29

CTM GateWay/CORBA Mapping for the ONS 15600 SONET R8.0, R9.0, R9.1 (continued)

TMF Mapping FOP_APS FOP_APS FOP_APS FOP_APS FOP_APS UNIDENTIFIED LOF LOP LOS RAI RAI BER_SD BER_SD BER_SD BER_SD BER_SF BER_SF BER_SF BER_SF UNIDENTIFIED UNEQ UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED

NE Native Probable Cause Far-end protection line failure APS channelfar-end protection line signal degrade Improper APS code Inconsistent APS code Node ID mismatch STS concatenation error Loss of frame Loss of pointerpath Loss of signal Remote failure indicationline Remote failure indicationpath BER threshold exceeded for signal degradeline BER threshold exceeded for signal degradepath Far-end BER threshold passed for signal degradering Far-end BER threshold passed for signal degradespan BER threshold exceeded for signal failureline BER threshold exceeded for signal failurepath Far-end BER threshold passed for signal failurering Far-end BER threshold passed for signal failurespan Payload defect indicationpath Unequippedpath Dont use for synchronization Failed to receive synchronization status message Synchronization status messages are disabled on this interface Primary reference sourcestratum 1 traceable Reserved for network synchronization use SONET minimum clock traceable Stratum 2 traceable Stratum 3 traceable Stratum 3E traceable Stratum 4 traceable Synchronizedtraceability unknown Transit node clock traceable Fifth synchronization reference failure Fourth synchronization reference failure

CTM Internal Index (Not Reported in the Notification) 17518 17519 17520 17521 17522 17523 17524 17525 17526 17527 17528 17529 17530 17531 17532 17533 17534 17535 17536 17537 17538 17539 17540 17541 17542 17543 17544 17545 17546 17547 17548 17549 17550 17551 17552

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual

A-86

OL-19364-01

Appendix A

Notifications, Fault Management, and Probable Cause Mapping A.5.12 CTM GateWay/CORBA MappingONS 15600 SONET

Table A-29

CTM GateWay/CORBA Mapping for the ONS 15600 SONET R8.0, R9.0, R9.1 (continued)

TMF Mapping UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED TIM ENV ENV EQPT UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED ENV ENV EQPT UNIDENTIFIED UNIDENTIFIED EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT UNIDENTIFIED EQPT EQPT EQPT

NE Native Probable Cause Synchronization reference frequency out of bounds Primary synchronization reference failure Secondary synchronization reference failure Sixth synchronization reference failure Third synchronization reference failure STS path trace identifier mismatch NE power failure at connector A NE power failure at connector B Power fuse failure Free running synchronization mode Stratum 3E fast start synchronization mode Holdover synchronization mode Autonomous messages inhibited Autonomous PM report message inhibited Mismatch of equipment and attributes Ring topology is under construction Software faultdata integrity fault Airflow failure Equipment fails to boot Connection ID mismatch on CXC 0 Connection ID mismatch on CXC 1 Clock module failure Control bus failureI/OTSC A Control bus failureI/OTSC B Clock bus failureTSC A Clock bus failureTSC B Control communication equipment failure Primary nonvolatile backup memory failure Manufacturing data memory (EEPROM) failure Payload bus failurematrix A Payload bus failurematrix B CXC operations suspended Equipment failure Diagnostics failure Equipment failurehigh temperature

CTM Internal Index (Not Reported in the Notification) 17553 17554 17555 17556 17557 17558 17559 17560 17561 17562 17563 17564 17565 17566 17567 17568 17569 17570 17571 17572 17573 17574 17575 17576 17577 17578 17579 17580 17581 17582 17583 17584 17585 17586 17587

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual OL-19364-01

A-87

Appendix A A.5.12 CTM GateWay/CORBA MappingONS 15600 SONET

Notifications, Fault Management, and Probable Cause Mapping

Table A-29

CTM GateWay/CORBA Mapping for the ONS 15600 SONET R8.0, R9.0, R9.1 (continued)

TMF Mapping EQPT UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED EQPT EQPT EQPT EQPT UNIDENTIFIED EQPT EQPT UNIDENTIFIED UNIDENTIFIED EQPT EQPT EQPT UNIDENTIFIED EQPT UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED SECURITY_VIOLATION SECURITY_VIOLATION UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED EQPT UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED EQPT EQPT EQPT

NE Native Probable Cause Invalid MAC address Failure to switch to protection Failure to switch to protectionpath Failure to switch to protectionring Failure to switch to protectionspan Fan failure Partial fan failurespeed degradation Partial fan failureparts failure Clock module frequency mismatch OSPF hello fail Laser bias current high High laser temperature Software download failed Different software version Synchronization equipment unavailable Unprotected synchronization equipment Unprotected matrix equipment System upgrade in progress Matrix equipment unavailable Loopbackcross connect Loopback facility Loopback payload Loopback Securityinvalid login (see audit trail) Invalid login attempt threshold exceeded Normal condition Performance monitor threshold crossing alert Duplicate node ID Improper removal Both ends of fiber provisioned as east Far end of fiber is provisioned with different ring ID Protection switch Equipment power failure Equipment power failure at connector A Equipment power failure at connector B

CTM Internal Index (Not Reported in the Notification) 17588 17589 17590 17591 17592 17593 17594 17595 17596 17597 17598 17599 17600 17601 17602 17603 17604 17605 17606 17607 17608 17609 17610 17611 17612 17613 17614 17615 17616 17617 17618 17619 17620 17621 17622

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual

A-88

OL-19364-01

Appendix A

Notifications, Fault Management, and Probable Cause Mapping A.5.12 CTM GateWay/CORBA MappingONS 15600 SONET

Table A-29

CTM GateWay/CORBA Mapping for the ONS 15600 SONET R8.0, R9.0, R9.1 (continued)

TMF Mapping EQPT EQPT UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED EQPT EQPT UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED

NE Native Probable Cause Equipment power failure at return connector A Equipment power failure at return connector B Automatic reset Automatic path-protection switch caused by AIS Automatic path-protection switch caused by LOP Automatic path-protection switch caused by PDI Automatic path-protection switch caused by SDBER Automatic path-protection switch caused by SFBER Automatic path-protection switch caused by UNEQ Cold restart Exercise ring Exercising ring successfully Far-end exercise ring Exercise request on ring failed Exercise span Exercising span successfully Far-end exercise span Exercise request on span failed Force switch request on facility/equipment Force switch request on ring Force switch request on span Far-end working facility forced to switch to protection unitspan Bidirectional full pass-through is active Unidirectional full pass-through is active Inhibit switch to protect request on equipment Inhibit switch to working request on equipment K bytes pass-through is active Far-end lockout of protectionall spans Far-end lockout of protectionring Far-end lockout of workingring Far-end lockout of workingspan Far-end lockout of protectionspan Lockout of protection Lockout of protectionring

CTM Internal Index (Not Reported in the Notification) 17623 17624 17625 17626 17627 17628 17629 17630 17631 17632 17633 17634 17635 17636 17637 17638 17639 17640 17641 17642 17643 17645 17646 17647 17648 17649 17650 17651 17652 17653 17654 17655 17656 17657

Far-end working facility forced to switch to protection unitring 17644

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual OL-19364-01

A-89

Appendix A A.5.12 CTM GateWay/CORBA MappingONS 15600 SONET

Notifications, Fault Management, and Probable Cause Mapping

Table A-29

CTM GateWay/CORBA Mapping for the ONS 15600 SONET R8.0, R9.0, R9.1 (continued)

TMF Mapping UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED ENV

NE Native Probable Cause Lockout of protectionspan Lockout of workingring Lockout of workingspan Lockout switch request on facility/equipment Lockout switch request on ring Manual reset Far-end manual switch of working facility to protection unitring Far-end manual switch of working facility to protection unitspan Manual switch to fifth reference Manual switch to fourth reference Manual switch to internal clock Manual switch to primary reference Manual switch to second reference Manual switch to sixth reference Manual switch to third reference Manual switch request on facility/equipment Manual switch request on ring Manual switch request on span Powerfail restart Ring is segmented Ring switch is active on the east side Ring switch is active on the west side Span switch is active on the east side Span switch is active on the west side Ring is squelching traffic Squelching path Software download in progress Switch to fifth reference Switch to fourth reference Switch to primary reference Switch to second reference Switch to sixth reference Switch to third reference System reboot

CTM Internal Index (Not Reported in the Notification) 17658 17659 17660 17661 17662 17663 17664 17665 17666 17667 17668 17669 17670 17671 17672 17673 17674 17675 17676 17677 17678 17679 17680 17681 17682 17683 17684 17685 17686 17687 17688 17689 17690 17691

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual

A-90

OL-19364-01

Appendix A

Notifications, Fault Management, and Probable Cause Mapping A.5.12 CTM GateWay/CORBA MappingONS 15600 SONET

Table A-29

CTM GateWay/CORBA Mapping for the ONS 15600 SONET R8.0, R9.0, R9.1 (continued)

TMF Mapping UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED SECURITY_VIOLATION SECURITY_VIOLATION SECURITY_VIOLATION SECURITY_VIOLATION UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED EQPT UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED EQPT EQPT UNIDENTIFIED

NE Native Probable Cause Extra traffic preempted Switched back to working unit Switched to protection unit Warm restart Wait to restore Ring is in wait-to-restore state Span is in wait-to-restore state Bridge and roll has occurred Bridge and roll is pending a valid signal Admin logout of user Admin lockout of user Admin lockout clear Automatic logout of idle user Login of user Invalid loginlocked out Invalid loginalready logged on Invalid loginpassword Invalid loginusername Logout of user User locked out Open I/O slot(s) Improper matrix equipment inserted Equipment fails to boot No description Firewall has been disabled Loss of clock from mate TSC Alarms suppressed for maintenance SNTP host failure Disable inactive user Disable inactive clear Suspend user Duplicate serial number detected on a pluggable entity Equipment problem on carrier or PIM Equipment problem on PIM or PPM Suspend user clear

CTM Internal Index (Not Reported in the Notification) 17692 17693 17694 17695 17696 17697 17698 17699 17700 17701 17702 17703 17704 17705 17706 17707 17708 17709 17710 17711 17712 17713 17714 17715 17716 17717 17718 17719 17720 17721 17722 17723 17724 17725 17726

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual OL-19364-01

A-91

Appendix A A.5.12 CTM GateWay/CORBA MappingONS 15600 SONET

Notifications, Fault Management, and Probable Cause Mapping

Table A-29

CTM GateWay/CORBA Mapping for the ONS 15600 SONET R8.0, R9.0, R9.1 (continued)

TMF Mapping UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED PLM UNIDENTIFIED UNIDENTIFIED BER_SF LOF UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED PLM DCC_FAILURE UNIDENTIFIED UNIDENTIFIED SECURITY_VIOLATION UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED ENV UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED EQPT EQPT EQPT EQPT EQPT EQPT UNIDENTIFIED UNIDENTIFIED

NE Native Probable Cause Forced switch to primary reference Forced switch to secondary reference Forced switch to third reference Forced switch to internal clock GFP user payload mismatch GFP fibre channel distance extension mismatch GFP fibre channel distance extension buffer starvation GFP client signal fail detected GFP loss of frame delineation GFP extension header mismatch Carrier loss on the LAN Encapsulation type mismatch Transport layer failure Payload label mismatchpath Line DCC termination failure K byte channel failure BLSR software version mismatch Security intrusion attempt detectedsee audit log IP address already in use within the same DCC area Node name already in use within the same DCC area Free memory on card near zero Free memory on card very low NE power failure at connector Standby database out of sync Database backup failed Database restore failed ISIS adjacency failure Equipment high laser bias Equipment high Rx power Equipment high Tx power Equipment low laser bias Equipment low Rx power Equipment low Tx power Provisioning mismatch Illegal route addition to the network

CTM Internal Index (Not Reported in the Notification) 17727 17728 17729 17730 17731 17732 17733 17734 17735 17736 17737 17738 17739 17740 17741 17742 17743 17744 17745 17746 17747 17748 17749 17750 17751 17752 17753 17754 17755 17756 17757 17758 17759 17760 17761

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual

A-92

OL-19364-01

Appendix A

Notifications, Fault Management, and Probable Cause Mapping A.5.12 CTM GateWay/CORBA MappingONS 15600 SONET

Table A-29

CTM GateWay/CORBA Mapping for the ONS 15600 SONET R8.0, R9.0, R9.1 (continued)

TMF Mapping UNIDENTIFIED UNIDENTIFIED SECURITY_VIOLATION UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED TIM MS-AIS RAI BER_SF BER_SD DCC_FAILURE UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED AU-AIS LOP BER_SF BER_SD PLM TIM RAI UNEQ UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED

NE Native Probable Cause Session time limit expired User password change required User authentication rejected APS invalid mode Far-end manual switch back to workingspan Far-end forced switch back to workingspan Alarms suppressed by user command Ring is squelching STS traffic REPT^DBCHG messages inhibited Regenerator section trace identifier mismatch AISmultiplex sectionalarm indication signal RFImultiplex sectionremote failure/alarm indication Multiplex sectionexcessive BER Multiplex sectionsignal degrade Multiplex section DCC termination failure G811primary reference clock traceable G812Ttransit node clock traceable G812Llocal node clock traceable G813synchronous equipment timing source traceable MS-SPRing out of sync AISadministration unitalarm indication signal LOPadministration unitloss of pointer High-order pathexcessive BER High-order pathsignal degrade SLMFPLM high orderpath label mismatch TIM high ordertrace identifier mismatch failure RFIhigh orderremote failure/alarm indication SLMFunequipped high orderpath unequipped Automatic SNCP switch caused by AIS Automatic SNCP switch caused by LOP Automatic SNCP switch caused by UNEQ Automatic SNCP switch caused by SFBER Automatic SNCP switch caused by SDBER Failure to switch to protectionhigh-order path MSSP multinode table update completed

CTM Internal Index (Not Reported in the Notification) 17762 17763 17764 17765 17766 17767 17768 17769 17770 17771 17772 17773 17774 17775 17776 17777 17778 17779 17780 17781 17782 17783 17784 17785 17786 17787 17788 17789 17790 17791 17792 17793 17794 17795 17796

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual OL-19364-01

A-93

Appendix A A.5.13 CTM GateWay/CORBA MappingONS 15600 SDH

Notifications, Fault Management, and Probable Cause Mapping

Table A-29

CTM GateWay/CORBA Mapping for the ONS 15600 SONET R8.0, R9.0, R9.1 (continued)

TMF Mapping UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED DCC_FAILURE EQPT UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED EQPT EQPT UNIDENTIFIED EQPT EQPT

NE Native Probable Cause Bipolar violation High-order pathpayload defect indication MSSP software version mismatch Regenerator sectionDCC termination failure Battery failure Extreme high voltage Extreme low voltage High voltage Low voltage Voltage reading mismatch between SC cards Wavelength out of lock Automatic laser shutdown Ring is squelching high-order traffic Non-Cisco PPM inserted Unqualified PPM inserted

CTM Internal Index (Not Reported in the Notification) 17797 17798 17799 17800 17801 17802 17803 17804 17805 17806 17807 17808 17809 17810 17811

A.5.13 CTM GateWay/CORBA MappingONS 15600 SDH


A.5.13.1 ONS 15600 SDH R1.4
The following table lists the CTM GateWay/CORBA mapping for the ONS 15600 SDH R1.4.
Table A-30 CTM GateWay/CORBA Mapping for the ONS 15600 SDH R1.4

TMF Mapping UNIDENTIFIED EQPT DCC_FAILURE DCC_FAILURE AIS AIS AIS FOP_APS FOP_APS FOP_APS FOP_APS

NE Native Probable Cause Normal condition Alarms/events suppressed for this object DCC channel loss SDCC termination failure Alarm indication signal Alarm indication signalline Alarm indication signalpath Byte failure Protection switching channel match failure Automatic protection switch mode mismatch Connection loss

CTM Internal Index (Not Reported in the Notification) 50000 50001 50002 50003 50004 50005 50006 50007 50008 50009 50010

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual

A-94

OL-19364-01

Appendix A

Notifications, Fault Management, and Probable Cause Mapping A.5.13 CTM GateWay/CORBA MappingONS 15600 SDH

Table A-30

CTM GateWay/CORBA Mapping for the ONS 15600 SDH R1.4 (continued)

TMF Mapping FOP_APS FOP_APS ENV FOP_APS FOP_APS FOP_APS UNIDENTIFIED LOF LOP LOS RAI RAI BER_SD BER_SD ENV ENV BER_SF BER_SF ENV ENV UNIDENTIFIED UNEQ UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED

NE Native Probable Cause Default K byte Far-end protection line failure APS channelfar-end protection line signal degrade Improper APS code Inconsistent APS code Node ID mismatch STS concatenation error Loss of frame Loss of pointerpath Loss of signal Remote failure indicationline Remote failure indicationpath BER threshold exceeded for signal degradeline BER threshold exceeded for signal degradepath Far-end BER threshold passed for signal degradering Far-end BER threshold passed for signal degradespan BER threshold exceeded for signal failureline BER threshold exceeded for signal failurepath Far-end BER threshold passed for signal failurering Far-end BER threshold passed for signal failurespan Payload defect indicationpath Unequippedpath Dont use for synchronization Failed to receive synchronization status message Synchronization status messages are disabled on this interface Primary reference sourcestratum 1 traceable Reserved for network synchronization use SONET minimum clock traceable Stratum 2 traceable Stratum 3 traceable Stratum 3E traceable Stratum 4 traceable Synchronizedtraceability unknown Transit node clock traceable Fifth synchronization reference failure

CTM Internal Index (Not Reported in the Notification) 50011 50012 50013 50014 50015 50016 50017 50018 50019 50020 50021 50022 50023 50024 50025 50026 50027 50028 50029 50030 50031 50032 50033 50034 50035 50036 50037 50038 50039 50040 50041 50042 50043 50044 50045

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual OL-19364-01

A-95

Appendix A A.5.13 CTM GateWay/CORBA MappingONS 15600 SDH

Notifications, Fault Management, and Probable Cause Mapping

Table A-30

CTM GateWay/CORBA Mapping for the ONS 15600 SDH R1.4 (continued)

TMF Mapping UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED TIM ENV ENV EQPT ENV UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED ENV EQPT UNIDENTIFIED UNIDENTIFIED EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT UNIDENTIFIED EQPT EQPT EQPT UNIDENTIFIED

NE Native Probable Cause Fourth synchronization reference failure Synchronization reference frequency out of bounds Primary synchronization reference failure Secondary synchronization reference failure Third synchronization reference failure STS path trace identifier mismatch NE power failure at connector A NE power failure at connector B Power fuse failure Failure detected external to the NE Extra traffic preempted Free running synchronization mode Stratum 3E fast start synchronization mode Holdover synchronization mode Autonomous messages inhibited Autonomous PM report message inhibited Airflow failure Equipment fails to boot Connection ID mismatch on CXC 0 Connection ID mismatch on CXC 1 Clock module failure Control bus failureTSC 0 Control bus failureTSC 1 Clock bus failureTSC 0 Clock bus failureTSC 1 Control communication equipment failure Primary nonvolatile backup memory failure Manufacturing data memory (EEPROM) failure Payload bus failureCXC 0 Payload bus failureCXC 1 CXC operations suspended Equipment failure Equipment failurehigh temperature Invalid MAC address Failure to switch to protectionpath

CTM Internal Index (Not Reported in the Notification) 50046 50047 50048 50049 50051 50052 50053 50054 50055 50056 50057 50058 50059 50060 50061 50062 50063 50064 50065 50066 50067 50068 50069 50070 50071 50072 50073 50074 50075 50076 50077 50078 50080 50081 50083

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual

A-96

OL-19364-01

Appendix A

Notifications, Fault Management, and Probable Cause Mapping A.5.13 CTM GateWay/CORBA MappingONS 15600 SDH

Table A-30

CTM GateWay/CORBA Mapping for the ONS 15600 SDH R1.4 (continued)

TMF Mapping UNIDENTIFIED UNIDENTIFIED EQPT EQPT EQPT EQPT UNIDENTIFIED EQPT EQPT UNIDENTIFIED EQPT EQPT EQPT UNIDENTIFIED EQPT UNIDENTIFIED ENV UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED SECURITY_VIOLATION SECURITY_VIOLATION UNIDENTIFIED EQPT UNIDENTIFIED EQPT EQPT EQPT EQPT EQPT UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED

NE Native Probable Cause Failure to switch to protectionring Failure to switch to protectionspan Fan failure Partial fan failurespeed degradation Partial fan failureparts failure Clock module frequency mismatch OSPF hello fail Laser bias current high High laser temperature Different software version Synchronization equipment unavailable Unprotected synchronization equipment Unprotected matrix equipment System upgrade in progress Matrix equipment unavailable Mismatch of equipment and attributes Software faultdata integrity fault Loopbackcross connect Loopback facility Loopback payload Loopback, terminal Securityinvalid login (see audit trail) Invalid login attempt threshold exceeded Performance monitor threshold crossing alert Improper removal Both ends of fiber provisioned as east Equipment power failure Equipment power failure at connector A Equipment power failure at connector B Equipment power failure at return connector A Equipment power failure at return connector B Automatic system reset Automatic path-protection switch caused by AIS Automatic path-protection switch caused by LOP Automatic path-protection switch caused by PDI

CTM Internal Index (Not Reported in the Notification) 50084 50085 50086 50087 50088 50089 50090 50091 50092 50093 50094 50095 50096 50097 50098 50099 50100 50101 50102 50103 50104 50105 50106 50107 50108 50109 50110 50111 50112 50113 50114 50115 50116 50117 50118

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual OL-19364-01

A-97

Appendix A A.5.13 CTM GateWay/CORBA MappingONS 15600 SDH

Notifications, Fault Management, and Probable Cause Mapping

Table A-30

CTM GateWay/CORBA Mapping for the ONS 15600 SDH R1.4 (continued)

TMF Mapping UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED

NE Native Probable Cause Automatic path-protection switch caused by SDBER Automatic path-protection switch caused by SFBER Automatic path-protection switch caused by UNEQ Exercise request on ring Far-end exercise ring Exercise span Far-end exercise span Force switch request on facility/equipment Force switch request on ring Force switch request on span Far-end working facility forced to switch to protectring Far-end working facility forced to switch to protectspan Far-end lockout of protectionall spans Far-end lockout of protectionring Far-end lockout of workingring Far-end lockout of workingspan Lockout switch request on facility/equipment Lockout switch request on ring Lockout of protection Lockout of protectionring Lockout of protectionspan Lockout of workingring Lockout of workingspan Manual system reset Far-end manual switch of working facility to protectring Far-end manual switch of working facility to protectspan Manual switch to internal clock Manual switch to primary reference Manual switch to second reference Manual switch to third reference Manual switch request on facility/equipment Manual switch request on ring Manual switch request on span Powerfail restart Ring switch is active on the east side

CTM Internal Index (Not Reported in the Notification) 50119 50120 50121 50123 50124 50125 50126 50127 50128 50129 50130 50131 50132 50133 50134 50135 50136 50137 50138 50139 50140 50141 50142 50143 50144 50145 50148 50149 50150 50152 50153 50154 50155 50156 50157

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual

A-98

OL-19364-01

Appendix A

Notifications, Fault Management, and Probable Cause Mapping A.5.13 CTM GateWay/CORBA MappingONS 15600 SDH

Table A-30

CTM GateWay/CORBA Mapping for the ONS 15600 SDH R1.4 (continued)

TMF Mapping UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED ENV UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED

NE Native Probable Cause Ring switch is active on the west side Span switch is active on the east side Span switch is active on the west side Ring is squelching traffic Squelching path Software download in progress Switch to primary reference Switch to second reference Switch to third reference System reboot Switched back to working unit Switched to protection unit Warm restart Waiting to restore Bridge and roll has occurred Bridge and roll is pending a valid signal Inhibit switch to protect request on equipment Inhibit switch to working request on equipment Exercise request on ring failed Exercise request on span failed Exercising ring successfully Exercising span successfully Unidirectional full pass-through is active Bidirectional full pass-through is active K bytes pass-through is active Ring is segmented Ring topology is under construction Duplicate node ID Far end of fiber is provisioned with different ring ID BLSR multinode table update completed MSSP multinode table update completed BLSR out of sync MSSP out of sync Far-end lockout of protectionspan Admin logout of user

CTM Internal Index (Not Reported in the Notification) 50158 50159 50160 50161 50162 50163 50166 50167 50169 50170 50171 50172 50173 50174 50175 50176 50177 50178 50179 50180 50181 50182 50185 50186 50187 50188 50189 50190 50191 50192 50193 50194 50195 50196 50198

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual OL-19364-01

A-99

Appendix A A.5.13 CTM GateWay/CORBA MappingONS 15600 SDH

Notifications, Fault Management, and Probable Cause Mapping

Table A-30

CTM GateWay/CORBA Mapping for the ONS 15600 SDH R1.4 (continued)

TMF Mapping UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED SECURITY_VIOLATION SECURITY_VIOLATION SECURITY_VIOLATION SECURITY_VIOLATION UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED BER_SD BER_SF UNIDENTIFIED TIM TIM AIS UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED AU_AIS LOP UNIDENTIFIED UNIDENTIFIED TIM

NE Native Probable Cause Admin lockout of user Admin lockout clear Automatic logout of idle user Login of user Invalid loginlocked out Invalid loginalready logged on Invalid loginpassword Invalid loginusername Logout of user User locked out Audit log 80 percent full Audit log 100 percent full TSC switched to alternate Ethernet port Open I/O slot(s) Software download failed SNTP host failure Equipment boot in progress Signal degrade Signal failure Incorrect BPV density TIMsectiontrace identifier mismatch TIMregeneration sectiontrace identifier mismatch AISmultiplex sectionalarm indication signal RDImultiplex sectionremote defect indication Synchronization status messageprimary reference clock traceable (G811) Synchronization status messagesync supply unit (transfer node) (G812T)

CTM Internal Index (Not Reported in the Notification) 50199 50200 50201 50202 50203 50204 50205 50206 50207 50208 50209 50210 50211 50212 50213 50214 50215 50216 50217 50218 50219 50220 50221 50222 50223 50224

Synchronization status messagesync supply unit (local node) 50225 (G812L) Synchronization status messageSDH equipment clock (G813) 50226 AISadministration unitalarm indication signal LOPadministration unitloss of pointer High-order pathexcessive BER High-order pathsignal degrade TIM high ordertrace identifier mismatch failure 50227 50228 50229 50230 50231

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual

A-100

OL-19364-01

Appendix A

Notifications, Fault Management, and Probable Cause Mapping A.5.13 CTM GateWay/CORBA MappingONS 15600 SDH

Table A-30

CTM GateWay/CORBA Mapping for the ONS 15600 SDH R1.4 (continued)

TMF Mapping UNIDENTIFIED UNEQ UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED DCC_FAILURE UNIDENTIFIED

NE Native Probable Cause RDIhigh orderremote defect indication SLMFunequipped high orderpath unequipped Automatic SNCP switch caused by AIS Automatic SNCP switch caused by LOP Automatic SNCP switch caused by UNEQ Automatic SNCP switch caused by PDI Automatic SNCP switch caused by SFBER Automatic SNCP switch caused by SDBER RS-DCC termination failure Payload defect indication

CTM Internal Index (Not Reported in the Notification) 50232 50233 50234 50235 50236 50237 50238 50239 50240 50241

A.5.13.2 ONS 15600 SDH R8.0, R9.0, and R9.1


The following table lists the CTM GateWay/CORBA mapping for the ONS 15600 SDH R8.0, R9.0, and R9.1.
Table A-31 CTM GateWay/CORBA Mapping for the ONS 15600 SDH R8.0, R9.0, R9.1

TMF Mapping EQPT UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED ENV DCC_FAILURE DCC_FAILURE AIS AIS AIS FOP_APS FOP_APS FOP_APS FOP_APS FOP_APS FOP_APS

NE Native Probable Cause Alarms/events suppressed for this object Audit log 100 percent full Audit log 80 percent full BLSR out of sync BLSR multinode table update completed TSC switched to alternate Ethernet port Failure detected external to the NE DCC channel loss SDCC termination failure Alarm indication signal Alarm indication signalline Alarm indication signalpath Byte failure Protection switching channel match failure Automatic protection switch mode mismatch Connection loss Default K byte Far-end protection line failure

CTM Internal Index (Not Reported in the Notification) 17501 17502 17503 17504 17505 17506 17507 17508 17509 17510 17511 17512 17513 17514 17515 17516 17517 17518

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual OL-19364-01

A-101

Appendix A A.5.13 CTM GateWay/CORBA MappingONS 15600 SDH

Notifications, Fault Management, and Probable Cause Mapping

Table A-31

CTM GateWay/CORBA Mapping for the ONS 15600 SDH R8.0, R9.0, R9.1 (continued)

TMF Mapping FOP_APS FOP_APS FOP_APS FOP_APS UNIDENTIFIED LOF LOP LOS RAI RAI BER_SD BER_SD BER_SD BER_SD BER_SF BER_SF BER_SF BER_SF UNIDENTIFIED UNEQ UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED

NE Native Probable Cause APS channelfar-end protection line signal degrade Improper APS code Inconsistent APS code Node ID mismatch STS concatenation error Loss of frame Loss of pointerpath Loss of signal Remote failure indicationline Remote failure indicationpath BER threshold exceeded for signal degradeline BER threshold exceeded for signal degradepath Far-end BER threshold passed for signal degradering Far-end BER threshold passed for signal degradespan BER threshold exceeded for signal failureline BER threshold exceeded for signal failurepath Far-end BER threshold passed for signal failurering Far-end BER threshold passed for signal failurespan Payload defect indicationpath Unequippedpath Dont use for synchronization Failed to receive synchronization status message Synchronization status messages are disabled on this interface Primary reference sourcestratum 1 traceable Reserved for network synchronization use SONET minimum clock traceable Stratum 2 traceable Stratum 3 traceable Stratum 3E traceable Stratum 4 traceable Synchronizedtraceability unknown Transit node clock traceable Fifth synchronization reference failure Fourth synchronization reference failure Synchronization reference frequency out of bounds

CTM Internal Index (Not Reported in the Notification) 17519 17520 17521 17522 17523 17524 17525 17526 17527 17528 17529 17530 17531 17532 17533 17534 17535 17536 17537 17538 17539 17540 17541 17542 17543 17544 17545 17546 17547 17548 17549 17550 17551 17552 17553

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual

A-102

OL-19364-01

Appendix A

Notifications, Fault Management, and Probable Cause Mapping A.5.13 CTM GateWay/CORBA MappingONS 15600 SDH

Table A-31

CTM GateWay/CORBA Mapping for the ONS 15600 SDH R8.0, R9.0, R9.1 (continued)

TMF Mapping UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED TIM ENV ENV EQPT UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED ENV ENV EQPT UNIDENTIFIED UNIDENTIFIED EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT EQPT UNIDENTIFIED EQPT EQPT EQPT EQPT

NE Native Probable Cause Primary synchronization reference failure Secondary synchronization reference failure Sixth synchronization reference failure Third synchronization reference failure STS path trace identifier mismatch NE power failure at connector A NE power failure at connector B Power fuse failure Free running synchronization mode Stratum 3E fast start synchronization mode Holdover synchronization mode Autonomous messages inhibited Autonomous PM report message inhibited Mismatch of equipment and attributes Ring topology is under construction Software faultdata integrity fault Airflow failure Equipment fails to boot Connection ID mismatch on CXC 0 Connection ID mismatch on CXC 1 Clock module failure Control bus failureI/OTSC A Control bus failureI/OTSC B Clock bus failureTSC A Clock bus failureTSC B Control communication equipment failure Primary nonvolatile backup memory failure Manufacturing data memory (EEPROM) failure Payload bus failurematrix A Payload bus failurematrix B CXC operations suspended Equipment failure Diagnostics failure Equipment failurehigh temperature Invalid MAC address

CTM Internal Index (Not Reported in the Notification) 17554 17555 17556 17557 17558 17559 17560 17561 17562 17563 17564 17565 17566 17567 17568 17569 17570 17571 17572 17573 17574 17575 17576 17577 17578 17579 17580 17581 17582 17583 17584 17585 17586 17587 17588

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual OL-19364-01

A-103

Appendix A A.5.13 CTM GateWay/CORBA MappingONS 15600 SDH

Notifications, Fault Management, and Probable Cause Mapping

Table A-31

CTM GateWay/CORBA Mapping for the ONS 15600 SDH R8.0, R9.0, R9.1 (continued)

TMF Mapping UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED EQPT EQPT EQPT EQPT UNIDENTIFIED EQPT EQPT UNIDENTIFIED UNIDENTIFIED EQPT EQPT EQPT UNIDENTIFIED EQPT UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED SECURITY_VIOLATION SECURITY_VIOLATION UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED EQPT UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED EQPT EQPT EQPT EQPT

NE Native Probable Cause Failure to switch to protection Failure to switch to protectionpath Failure to switch to protectionring Failure to switch to protectionspan Fan failure Partial fan failurespeed degradation Partial fan failureparts failure Clock module frequency mismatch OSPF hello fail Laser bias current high High laser temperature Software download failed Different software version Synchronization equipment unavailable Unprotected synchronization equipment Unprotected matrix equipment System upgrade in progress Matrix equipment unavailable Loopbackcross connect Loopback facility Loopback payload Loopback Securityinvalid login (see audit trail) Invalid login attempt threshold exceeded Normal condition Performance monitor threshold crossing alert Duplicate node ID Improper removal Both ends of fiber provisioned as east Far end of fiber is provisioned with different ring ID Protection switch Equipment power failure Equipment power failure at connector A Equipment power failure at connector B Equipment power failure at return connector A

CTM Internal Index (Not Reported in the Notification) 17589 17590 17591 17592 17593 17594 17595 17596 17597 17598 17599 17600 17601 17602 17603 17604 17605 17606 17607 17608 17609 17610 17611 17612 17613 17614 17615 17616 17617 17618 17619 17620 17621 17622 17623

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual

A-104

OL-19364-01

Appendix A

Notifications, Fault Management, and Probable Cause Mapping A.5.13 CTM GateWay/CORBA MappingONS 15600 SDH

Table A-31

CTM GateWay/CORBA Mapping for the ONS 15600 SDH R8.0, R9.0, R9.1 (continued)

TMF Mapping EQPT UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED EQPT EQPT UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED

NE Native Probable Cause Equipment power failure at return connector B Automatic reset Automatic path-protection switch caused by AIS Automatic path-protection switch caused by LOP Automatic path-protection switch caused by PDI Automatic path-protection switch caused by SDBER Automatic path-protection switch caused by SFBER Automatic path-protection switch caused by UNEQ Cold restart Exercise ring Exercising ring successfully Far-end exercise ring Exercise request on ring failed Exercise span Exercising span successfully Far-end exercise span Exercise request on span failed Force switch request on facility/equipment Force switch request on ring Force switch request on span

CTM Internal Index (Not Reported in the Notification) 17624 17625 17626 17627 17628 17629 17630 17631 17632 17633 17634 17635 17636 17637 17638 17639 17640 17641 17642 17643

Far-end working facility forced to switch to protection unitring 17644 Far-end working facility forced to switch to protection unitspan 17645 Bidirectional full pass-through is active Unidirectional full pass-through is active Inhibit switch to protect request on equipment Inhibit switch to working request on equipment K bytes pass-through is active Far-end lockout of protectionall spans Far-end lockout of protectionring Far-end lockout of workingring Far-end lockout of workingspan Far-end lockout of protectionspan Lockout of protection Lockout of protectionring Lockout of protectionspan 17646 17647 17648 17649 17650 17651 17652 17653 17654 17655 17656 17657 17658

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual OL-19364-01

A-105

Appendix A A.5.13 CTM GateWay/CORBA MappingONS 15600 SDH

Notifications, Fault Management, and Probable Cause Mapping

Table A-31

CTM GateWay/CORBA Mapping for the ONS 15600 SDH R8.0, R9.0, R9.1 (continued)

TMF Mapping UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED ENV UNIDENTIFIED

NE Native Probable Cause Lockout of workingring Lockout of workingspan Lockout switch request on facility/equipment Lockout switch request on ring Manual reset Far-end manual switch of working facility to protection unitring Far-end manual switch of working facility to protection unitspan Manual switch to fifth reference Manual switch to fourth reference Manual switch to internal clock Manual switch to primary reference Manual switch to second reference Manual switch to sixth reference Manual switch to third reference Manual switch request on facility/equipment Manual switch request on ring Manual switch request on span Powerfail restart Ring is segmented Ring switch is active on the east side Ring switch is active on the west side Span switch is active on the east side Span switch is active on the west side Ring is squelching traffic Squelching path Software download in progress Switch to fifth reference Switch to fourth reference Switch to primary reference Switch to second reference Switch to sixth reference Switch to third reference System reboot Extra traffic preempted

CTM Internal Index (Not Reported in the Notification) 17659 17660 17661 17662 17663 17664 17665 17666 17667 17668 17669 17670 17671 17672 17673 17674 17675 17676 17677 17678 17679 17680 17681 17682 17683 17684 17685 17686 17687 17688 17689 17690 17691 17692

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual

A-106

OL-19364-01

Appendix A

Notifications, Fault Management, and Probable Cause Mapping A.5.13 CTM GateWay/CORBA MappingONS 15600 SDH

Table A-31

CTM GateWay/CORBA Mapping for the ONS 15600 SDH R8.0, R9.0, R9.1 (continued)

TMF Mapping UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED SECURITY_VIOLATION SECURITY_VIOLATION SECURITY_VIOLATION SECURITY_VIOLATION UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED EQPT UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED EQPT EQPT UNIDENTIFIED UNIDENTIFIED

NE Native Probable Cause Switched back to working unit Switched to protection unit Warm restart Wait to restore Ring is in wait-to-restore state Span is in wait-to-restore state Bridge and roll has occurred Bridge and roll is pending a valid signal Admin logout of user Admin lockout of user Admin lockout clear Automatic logout of idle user Login of user Invalid loginlocked out Invalid loginalready logged on Invalid loginpassword Invalid loginusername Logout of user User locked out Open I/O slot(s) Improper matrix equipment inserted Equipment fails to boot No description Firewall has been disabled Loss of clock from mate TSC Alarms suppressed for maintenance SNTP host failure Disable inactive user Disable inactive clear Suspend user Duplicate serial number detected on a pluggable entity EQPT problem on carrier or PIM EQPT problem on PIM or PPM Suspend user clear Forced switch to primary reference

CTM Internal Index (Not Reported in the Notification) 17693 17694 17695 17696 17697 17698 17699 17700 17701 17702 17703 17704 17705 17706 17707 17708 17709 17710 17711 17712 17713 17714 17715 17716 17717 17718 17719 17720 17721 17722 17723 17724 17725 17726 17727

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual OL-19364-01

A-107

Appendix A A.5.13 CTM GateWay/CORBA MappingONS 15600 SDH

Notifications, Fault Management, and Probable Cause Mapping

Table A-31

CTM GateWay/CORBA Mapping for the ONS 15600 SDH R8.0, R9.0, R9.1 (continued)

TMF Mapping UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED PLM UNIDENTIFIED UNIDENTIFIED BER_SF LOF UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED PLM DCC_FAILURE UNIDENTIFIED UNIDENTIFIED SECURITY_VIOLATION UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED ENV UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED EQPT EQPT EQPT EQPT EQPT EQPT UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED

NE Native Probable Cause Forced switch to secondary reference Forced switch to third reference Forced switch to internal clock GFP user payload mismatch GFP fibre channel distance extension mismatch GFP fibre channel distance extension buffer starvation GFP client signal fail detected GFP loss of frame delineation GFP extension header mismatch Carrier loss on the LAN Encapsulation type mismatch Transport layer failure Payload label mismatchpath Line DCC termination failure K byte channel failure BLSR software version mismatch Security intrusion attempt detectedsee audit log IP address already in use within the same DCC area Node name already in use within the same DCC area Free memory on card near zero Free memory on card very low NE power failure at connector Standby database out of sync Database backup failed Database restore failed ISIS adjacency failure Equipment high laser bias Equipment high Rx power Equipment high Tx power Equipment low laser bias Equipment low Rx power Equipment low Tx power Provisioning mismatch Illegal route addition to the network Session time limit expired

CTM Internal Index (Not Reported in the Notification) 17728 17729 17730 17731 17732 17733 17734 17735 17736 17737 17738 17739 17740 17741 17742 17743 17744 17745 17746 17747 17748 17749 17750 17751 17752 17753 17754 17755 17756 17757 17758 17759 17760 17761 17762

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual

A-108

OL-19364-01

Appendix A

Notifications, Fault Management, and Probable Cause Mapping A.5.13 CTM GateWay/CORBA MappingONS 15600 SDH

Table A-31

CTM GateWay/CORBA Mapping for the ONS 15600 SDH R8.0, R9.0, R9.1 (continued)

TMF Mapping UNIDENTIFIED SECURITY_VIOLATION UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED TIM MS-AIS RAI BER_SF BER_SD DCC_FAILURE UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED AU-AIS LOP BER_SF BER_SD PLM TIM RAI UNEQ UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED

NE Native Probable Cause User password change required User authentication rejected APS invalid mode Far-end manual switch back to workingspan Far-end forced switch back to workingspan Alarms suppressed by user command Ring is squelching STS traffic REPT^DBCHG messages inhibited Regenerator section trace identifier mismatch AISmultiplex sectionalarm indication signal RFImultiplex sectionremote failure/alarm indication Multiplex sectionexcessive BER Multiplex sectionsignal degrade Multiplex section DCC termination failure G811primary reference clock traceable G812Ttransit node clock traceable G812Llocal node clock traceable G813synchronous equipment timing source traceable MS-SPRing out of sync AISadministration unitalarm indication signal LOPadministration unitloss of pointer High-order pathexcessive BER High-order pathsignal degrade SLMFPLM high orderpath label mismatch TIM high ordertrace identifier mismatch failure RFIhigh orderremote failure/alarm indication SLMFunequipped high orderpath unequipped Automatic SNCP switch caused by AIS Automatic SNCP switch caused by LOP Automatic SNCP switch caused by UNEQ Automatic SNCP switch caused by SFBER Automatic SNCP switch caused by SDBER Failure to switch to protectionhigh-order path MSSP multinode table update completed Bipolar violation

CTM Internal Index (Not Reported in the Notification) 17763 17764 17765 17766 17767 17768 17769 17770 17771 17772 17773 17774 17775 17776 17777 17778 17779 17780 17781 17782 17783 17784 17785 17786 17787 17788 17789 17790 17791 17792 17793 17794 17795 17796 17797

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual OL-19364-01

A-109

Appendix A A.5.13 CTM GateWay/CORBA MappingONS 15600 SDH

Notifications, Fault Management, and Probable Cause Mapping

Table A-31

CTM GateWay/CORBA Mapping for the ONS 15600 SDH R8.0, R9.0, R9.1 (continued)

TMF Mapping UNIDENTIFIED UNIDENTIFIED DCC_FAILURE EQPT UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED UNIDENTIFIED EQPT EQPT UNIDENTIFIED EQPT EQPT

NE Native Probable Cause High-order pathpayload defect indication MSSP software version mismatch Regenerator sectionDCC termination failure Battery failure Extreme high voltage Extreme low voltage High voltage Low voltage Voltage reading mismatch between SC cards Wavelength out of lock Automatic laser shutdown Ring is squelching high-order traffic Non-Cisco PPM inserted Unqualified PPM inserted

CTM Internal Index (Not Reported in the Notification) 17798 17799 17800 17801 17802 17803 17804 17805 17806 17807 17808 17809 17810 17811

Cisco Transport Manager Release 9.1 GateWay/CORBA User Guide and Programmer Manual

A-110

OL-19364-01

Você também pode gostar