|
|
This appendix provides a formal definition of the StrataView SNMP Proxy Agent Network Management Information Base (MIB).
-- /*
-- * $RCSfile: SV+Network.mib,v $ $Revision: 1.1.4.15.2.1.4.4 $
-- */
STRATACOM-STRATAVIEW-SVPLUS-MIB
DEFINITIONS ::= BEGIN
IMPORTS
enterprises,Counter,Gauge,TimeTicks,IpAddress FROM RFC1155-SMI
DisplayString FROM RFC1213-MIB
OBJECT-TYPE FROM RFC-1212;
-- the following are required for the SNMP Agent SMI compiler since it
-- doesn't support the IMPORTS clause. For other SMI compilers the
-- following lines may need to be commented out:
--
-- DisplayString ::= OCTET STRING (SIZE (0..255))
-- TimeTicks ::= INTEGER (0..4294967295)
--internet OBJECT IDENTIFIER ::= { iso(1) org(3) dod(6) 1 }
--private OBJECT IDENTIFIER ::= { internet 4 }
--enterprises OBJECT IDENTIFIER ::= { private 1 }
stratacom OBJECT IDENTIFIER ::= { enterprises 351 }
svplus OBJECT IDENTIFIER ::= { stratacom 1 }
rtc OBJECT IDENTIFIER ::= { stratacom 120 }
-- strmErrors OBJECT IDENTIFIER ::= { stratacom 910 }
-- StrataView Plus Generated events. Added br HJ and Sridhar
strataviewEvents OBJECT IDENTIFIER ::= { stratacom 920 }
--
-- Note that Object identifiers { svplus 1 } through { svplus 10 }
-- have been depricated.
--
topologyGroup OBJECT IDENTIFIER ::= {svplus 100}
-- aagTrapGroup represent the alarms from Asynchornous Alarm Generator (AAG)
-- which are converted into traps
aagTrapsGroup OBJECT IDENTIFIER ::= { svplus 102 }
nodeGroup OBJECT IDENTIFIER ::= { topologyGroup 1 }
networkGroup OBJECT IDENTIFIER ::= { topologyGroup 2 }
trunkGroup OBJECT IDENTIFIER ::= {nodeGroup 3}
lineGroup OBJECT IDENTIFIER ::= {nodeGroup 4}
Active ::= INTEGER {
inactive (1),
active (2)
}
-- Values currently used for "severity" in log records and
-- TRAP filters are "Clear", "Info", "Minor", "Major", and
-- "Updt" (for update). Others may be used in the future.
--
Severity ::= DisplayString (SIZE (0..5))
-----------------------------------------------------------------------
-- Node Group
-----------------------------------------------------------------------
nodeGrpName OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..10))
ACCESS read-only
STATUS mandatory
DESCRIPTION "Node Group name."
::= { nodeGroup 5 }
nodeGrpNetName OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..10))
ACCESS read-only
STATUS mandatory
DESCRIPTION "Network Name."
::= { nodeGroup 6 }
nodeGrpAlarmState OBJECT-TYPE
SYNTAX INTEGER {
clear (1),
minor (2),
major (3),
unreachable (5)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "Node Alarm State. Only low 6 bits are valid."
::= { nodeGroup 7 }
nodeGrpGateway OBJECT-TYPE
SYNTAX INTEGER {
not-a-gateway (1),
gateway (2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "Is this node acting as a gateway?"
::= { nodeGroup 8 }
nodeGrpActive OBJECT-TYPE
SYNTAX Active
ACCESS read-only
STATUS mandatory
DESCRIPTION "Active state of this Node."
::= { nodeGroup 9 }
nodeGrpPlatform OBJECT-TYPE
SYNTAX INTEGER {
ipx-platform (1),
bpx-platform (2),
axis-platform (3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "Platform type."
::= { nodeGroup 10 }
nodeGrpRelease OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..10))
ACCESS read-only
STATUS mandatory
DESCRIPTION "StrataView Plus release revison."
::= { nodeGroup 11 }
nodeFsIncRate OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "Node Foresight increase rate."
::= { nodeGroup 12 }
nodeFsDecRate OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "Node forsight normal decrease rate."
::= { nodeGroup 13 }
nodeFsFastRate OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "Node forsight fast decrease rate."
::= { nodeGroup 14 }
nodeRstTimeout OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "Timeout for resetting PVC rate to QIR."
::= { nodeGroup 15 }
alarmTrapSequenceNumber OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "The Sequence Number of the last trap
generated on the SNMP Proxy"
::= { nodeGroup 16 }
-----------------------------------------------------------------------
-----------------------------------------------------------------------
-- Trunk Group
-----------------------------------------------------------------------
trunkTable OBJECT-TYPE
SYNTAX SEQUENCE OF TrunkEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "The table of Trunk Lines."
::= { trunkGroup 2 }
trunkEntry OBJECT-TYPE
SYNTAX TrunkEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "An entry in the Trunk table."
INDEX { trunkLocalSlot, trunkLocalPort }
::= { trunkTable 1 }
TrunkEntry ::= SEQUENCE {
trunkLocalSlot INTEGER,
trunkLocalPort INTEGER,
trunkLocalLine INTEGER,
trunkCardType INTEGER,
trunkInterface INTEGER,
trunkLineLoad INTEGER,
trunkRemNodeId INTEGER,
trunkRemLineNumber INTEGER,
trunkRemSlol INTEGER,
trunkRemPort INTEGER,
trunkAlarmState INTEGER,
trunkComment DisplayString,
trunkActive Active,
trunkStatus INTEGER,
trunkStatReserve INTEGER,
trunkBurstyDataBQDepth INTEGER,
trunkBurstyDataBQEfcnThreshold INTEGER,
trunkClpHighDropThreshold INTEGER,
trunkClpLowDropThreshold INTEGER
}
trunkLocalSlot OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "Local Slot Number. These are numbered
starting at 1."
::= { trunkEntry 1 }
trunkLocalPort OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "Local Port Number. These are numbered
starting at 1."
::= { trunkEntry 2 }
trunkLocalLine OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "Local Line Number. These are numbered
starting at 1."
::= { trunkEntry 3 }
trunkCardType OBJECT-TYPE
SYNTAX INTEGER { txr(3),
bni(4),
ntc(22),
atm(31),
ait(34),
bni-t3(103),
bni-e3(104),
bni-oc3(110)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "Type of the card supporting the trunk line.
The card type is dependant on the value
of nodePlatform.
Additional types may exist with future
hardware."
::= { trunkEntry 4 }
trunkInterface OBJECT-TYPE
SYNTAX INTEGER { unknown (1),
t1-d4 (2),
t1-esf (3),
e1-30 (4),
e1-31 (5),
e1-32 (6),
subrate (7),
atm (8) }
ACCESS read-only
STATUS mandatory
DESCRIPTION "Trunk Line Interface Type. Indicates the
format of the packet line."
::= { trunkEntry 5 }
trunkLineLoad OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "Line Load in packets per second."
::= { trunkEntry 6 }
trunkRemNodeId OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "Remote StrataView Node ID."
::= { trunkEntry 7 }
trunkRemLineNumber OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "Remote Line Number."
::= { trunkEntry 8 }
trunkRemSlot OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "Remote Slot Number."
::= { trunkEntry 9 }
trunkRemPort OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "Remote Port Number."
::= { trunkEntry 10 }
trunkAlarmState OBJECT-TYPE
SYNTAX INTEGER {
clear (1),
minor (2),
major (3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "Trunk Line Alarm State."
::= { trunkEntry 11 }
trunkComment OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..20))
ACCESS read-only
STATUS mandatory
DESCRIPTION "StrataView user entered comment field used to
further qualify the trunk line."
::= { trunkEntry 12 }
trunkActive OBJECT-TYPE
SYNTAX Active
ACCESS read-only
STATUS mandatory
DESCRIPTION "Active State."
::= { trunkEntry 13 }
trunkStatus OBJECT-TYPE
SYNTAX INTEGER {
inactive(1),
clear(2),
fail(3),
down(4)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "Trunk line status."
::= { trunkEntry 14 }
trunkStatReserve OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "Trunk Line statistical reserve field."
::= { trunkEntry 15 }
trunkBurstyDataBQDepth OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "Trunk Line bursty data B queue depth."
::= { trunkEntry 16 }
trunkBurstyDataBQEfcnThreshold OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "Trunk Line bursty data B queue EFCN/FFCI threshold."
::= { trunkEntry 17 }
trunkClpHighDropThreshold OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "Trunk Line CLP high dropping threshold."
::= { trunkEntry 18 }
trunkClpLowDropThreshold OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "Trunk Line CLP low dropping threshold."
::= { trunkEntry 19 }
-----------------------------------------------------------------------
-- End of Trunk Group
-----------------------------------------------------------------------
-----------------------------------------------------------------------
-- Line Group
-----------------------------------------------------------------------
lineTable OBJECT-TYPE
SYNTAX SEQUENCE OF LineEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "The table of Circuit Lines."
::= { lineGroup 1 }
lineEntry OBJECT-TYPE
SYNTAX LineEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "An entry in the Line table."
INDEX { lineLineNumber, linePortNumber }
::= { lineTable 1 }
LineEntry ::= SEQUENCE {
lineLineNumber INTEGER,
lineCardType INTEGER,
lineInterface INTEGER,
lineComment DisplayString,
lineActive Active,
lineStatus INTEGER,
linePortNumber INTEGER
}
lineLineNumber OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "Circuit Line Number."
::= { lineEntry 3 }
lineCardType OBJECT-TYPE
SYNTAX INTEGER { txr (3),
cip (21),
frp (25),
cdp (29) }
ACCESS read-only
STATUS mandatory
DESCRIPTION "Circuit Card Type."
::= { lineEntry 4 }
lineInterface OBJECT-TYPE
SYNTAX INTEGER { unknown (1),
t1 (2),
e1 (3) }
ACCESS read-only
STATUS mandatory
DESCRIPTION "Circuit Line Interface Type. Indicates the
format of the circuit line."
::= { lineEntry 5 }
lineComment OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..22))
ACCESS read-only
STATUS mandatory
DESCRIPTION "Comment entered by StrataView user to further
qualify the Circuit Line."
::= { lineEntry 6 }
lineActive OBJECT-TYPE
SYNTAX Active
ACCESS read-only
STATUS mandatory
DESCRIPTION "Circuit Line Active State."
::= { lineEntry 7 }
lineStatus OBJECT-TYPE
SYNTAX INTEGER {
inactive(1),
clear(2),
fail(3),
down(4)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "Circuit Line Status."
::= { lineEntry 8 }
linePortNumber OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "Always returned as 0 for GET requests.
ASI port number is filled-in for TRAPs."
::= { lineEntry 9 }
-----------------------------------------------------------------------
-- End of Line Group
-----------------------------------------------------------------------
-----------------------------------------------------------------------
-- Network Group
-----------------------------------------------------------------------
-----------------------------------------------------------------------
-- Network Table
-----------------------------------------------------------------------
networkTable OBJECT-TYPE
SYNTAX SEQUENCE OF NetworkEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "The table of Networks."
::= { networkGroup 1 }
networkEntry OBJECT-TYPE
SYNTAX NetworkEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "An entry in the Network table."
INDEX { networkName }
::= { networkTable 1 }
NetworkEntry ::= SEQUENCE {
networkName DisplayString,
networkId INTEGER,
networkIpxId INTEGER
}
networkName OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..10))
ACCESS read-only
STATUS mandatory
DESCRIPTION "The name of the network as assigned
by the StrataView User."
::= { networkEntry 1 }
networkId OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "The unique ID of the network as assigned by the
StrataView system."
::= { networkEntry 2 }
networkIpxId OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "The IPX network ID."
::= { networkEntry 3 }
-----------------------------------------------------------------------
-- AAG Trap Scalars
-----------------------------------------------------------------------
trapSeverity OBJECT-TYPE
SYNTAX INTEGER {
clear (1),
warning (2),
minor (3),
major (4),
critical (5)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "The severity of the trap generated from
the AAG alarm"
::= { aagTrapsGroup 1 }
trapReason OBJECT-TYPE
SYNTAX INTEGER {
-- The following enums are applicable to Lines and Trunks
ok (1),
deactivated (2),
activated (3),
bipolar-violations (4),
tx-voice-packets-dropped (5),
tx-ts-packets-dropped (6),
tx-bda-packets (7),
tx-bdb-packets (8),
frames-slips (9),
frames-bit-errors (10),
packet-out-of-frames (11),
out-of-frames (12),
losses-of-signal (13),
bad-clock-errors (14),
crc-errors (15),
tx-nts-packets (16),
packet-crc-errors (17),
out-of-multi-frames (18),
all-ones-in-timeslot-16 (19),
line-code-violations (20),
line-parity-errors (21),
path-parity-errors (22),
bip-8-code-violations (23),
rx-voice-pkts-dropped (24),
rx-ts-pkts-dropped (25),
rx-bda-pkts-dropped (26),
rx-bdb-pkts-dropped (27),
rx-nts-pkts-dropped (28),
rx-hi-pri-pkts-dropped (29),
atm-cell-header-hec-errs (30),
frame-sync-errors (31),
rx-spacer-pkts-drpd (32),
bad-clock-path (33),
bad-clock-source (34),
communication-failure (35),
looped-back (36),
remote-cga (37),
remote-framing (38),
rmt-oom (39),
remote-alarm (40),
remote-yellow (41),
remote-e3-ferf (42),
path-yellow (43),
rmt-oof (44),
local-cga (45),
frame-sync-alarm (46),
out-of-mfm (47),
loss-of-cell (48),
loss-of-pointer (49),
path-ais (50),
ais-16 (51),
out-of-pkt-frm (52),
frm-err-rate (53),
ais (54),
out-of-frm (55),
loss-of-signal (56),
bad-clock (57),
txr-missing (58),
pic-missing (59),
backcard-missing (60),
cip-missing (61),
ntc-missing (62),
cdp-missing (63),
frp-missing (64),
atm-missing (65),
bni-t3-missing (66),
bni-e3-missing (67),
asi-t3-missing (68),
asi-e3-missing (69),
ait-missing (70),
asi0-t3-missing (71),
asi0-e3-missing (72),
asi-oc3-missing (73),
bni-oc3-missing (74),
ftc-missing (75),
bxm-missing (76),
btm-hp-missing (77),
path-trace-failure (78),
section-trace-failure (79),
cgw-discard-pkts (80),
cgw-discard-cells (81),
-- The following enums are applicable to Ports
port-communication-failure (1001),
communication-failure-cleared(1002),
ftc-communication-failure (1003),
ftc-communication-failure-cleared(1004),
-- The following enums are applicable to Connections
connection-failed (2001),
connection-down (2002),
connection-clear (2003),
-- The following enums are applicable to Cards
programming-aborted (3001),
failure-cleared (3002),
intermittent-failure (3003),
failed (3004),
failed-no-backup-available (3005),
failed-activated-backup (3006),
missing-card-freed (3007),
removed (3008),
removed-no-backup-available (3009),
removed-activated-failed-backup(3010),
failed-card-removed (3011),
failed-card-removed-no-backup-available(3012),
failed-card-removed-activated-failed-backup(3013),
hardware-failure (3014),
hardware-failure-no-backup-available(3015),
hardware-failure-activated-backup(3016),
hardware-failure-activated-failed-backup(3017),
failed-due-to-hardware-failure(3018),
failed-due-to-hardware-failure-no-backup-available(3019),
failed-due-to-hardware-failure-activated-backup(3020),
failed-due-to-hardware-failure-activated-failed-backup(3021),
power-supply-monitor-hardware-failure (3022),
failed-power-supply-monitor-hardware-failure(3023),
asm-hardware-failure (3024),
card-inserted (3025),
failed-card-inserted (3026),
power-supply-monitor-failure-cleared(3027),
asm-failure-cleared (3028),
power-supply-monitor-intermittent-failure(3029),
asm-intermittent-failure(3030),
power-supply-monitor-failed (3031),
asm-failed (3032),
power-supply-monitor-hardware-failure (3033),
asm-hardware-failure (3034),
power-supply-monitor-inserted(3035),
asm-inserted (3036),
power-supply-monitor-removed (3037),
failed-power-supply-monitor-removed(3038),
asm-removed (3039),
failed-asm-removed (3040),
bus-failed (3041),
bus-failed-no-backup-available(3042),
bus-failed-activated-backup (3043),
bus-failed-activated-failed-backup (3044),
card-not-responding (3045),
failed-card-freed (3046),
card-freed (3047),
card-sar-failure (3048),
card-sar-clear (3049),
card-up-failure (3050),
card-up-clear (3051),
card-arbiter-failure (3052),
card-arbiter-clear (3053),
-- The following enums are applicable to Peripherals
power-supply-failed (4002),
power-supply-removed (4003) ,
failed-power-supply-removed (4004),
power-supply-hardware-failure(4005),
power-supply-inserted (4006),
cabinet-fans-alarm (4007),
cabinet-temperature-alarm (4008),
cabinet-fan-alarm-cleared (4009),
cabinet-temperature-alarm-cleared (4010)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "The string describing the reason why the trap was generated.
This is used to provide more detailed information on
the cause of the trap."
::= { aagTrapsGroup 2}
trapConnEndPointString OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "This object will have both the local and remote end point
description of the connection in the following format.
For FR connections
<lslot>.<lport>.<lDLCI>-<rslot>.<rport>.<rDLCI>
For ATM connectins
<lslot>.<lport>.<lVPI><lVCI>-<rslot>.<rport>.<rVPI><rVCI>
For FastPad Connections
<lslot>.<lport>.<lfpdslot><lfpdport><lfpdDLCI>-
<rslot>.<rport>.<rfpdslot><rfpdport><rfpdDLCI>
"
::= { aagTrapsGroup 3}
trapLineIdString OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "This object will have the following format for various ports.
<slot>.<port> for multi port cards (e.g. ASI) and
<slot> for single port cards (e.g. FRP)."
::= { aagTrapsGroup 4}
trapTrunkType OBJECT-TYPE
SYNTAX INTEGER {
unknown(1),
physical-trunk (2),
virtual-trunk (3),
feeder-trunk (4)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "Indicates the type of the trunk."
::= { aagTrapsGroup 5}
trapVirtualTrunkId OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "This field will have non-zero value for virtual trunks."
::= { aagTrapsGroup 6}
trapTrunkIdString OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "This object will the values in the following formats.
<slot>.<port>.<vtrkid> for virtual trunks and
<slot>.<port> for physical trunks.
"
::= { aagTrapsGroup 7}
trapPortIdString OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "This object will have the following format for
various ports.
<slot>.<port> for multi port cards (e.g. ASI) and
<slot> for single port cards (e.g. CDP/VDP)."
::= { aagTrapsGroup 8}
trapCardStatus OBJECT-TYPE
SYNTAX INTEGER {
clear (1),
failed (2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "The alarm status of the card."
::= { aagTrapsGroup 9}
trapCardType OBJECT-TYPE
SYNTAX INTEGER {
ipx-pcc (1),
vdp (2),
txr (3),
pic (4),
vcd (5),
vdp-vcd (6),
psm (7),
ps (8),
sdp (9),
bslot (10),
mback (11),
sdp-back-cd (12),
txr2 (13),
xdp (14),
ldp (15),
xdp-back-cd (16),
ldp-back-cd (17),
sback-cd (18),
lback-cd (19),
fdp (20),
cip (21),
ntc (22),
uback-cd (23),
uni (24),
frp (25),
fback-cd (26),
frp-back-cd (27),
mt3 (28),
cdp (29),
e1t1-port (30),
atm (31),
npc (32),
arc (33),
ait (34),
ftc (35),
ftcback-cd (36),
ufm1 (37),
ufm1-u (38),
btm-hp (39),
bcc (101),
asm (102),
bni-t3 (103),
bin-e3 (104),
mfrp (105),
asi-t3-2 (106),
asi-e3-2 (107),
asi0-t3 (108),
asi0-e3 (109),
bni-oc3 (110),
asi-oc3 (111),
bpx-bslot (112),
bcc3 (113),
unknown (114)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "The specfic card type from which the trap is generated."
::= { aagTrapsGroup 10}
trapCardSlotNumber OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "The slot number of the card."
::= { aagTrapsGroup 11}
trapPeripheralType OBJECT-TYPE
SYNTAX INTEGER {
unknown (1),
power-supply (2),
cabinate-fan (3),
local-bus (4),
temperature-sensor (5)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "The peripheral type on which the trap is generated."
::= { aagTrapsGroup 12}
trapPeripheralStatus OBJECT-TYPE
SYNTAX INTEGER {
clear (1),
failed (2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "The alarm status of the peripheral."
::= { aagTrapsGroup 13}
trapPeripheralUnitNumber OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "The unit number of the peripheral on which
trap is generated."
::= { aagTrapsGroup 14}
-----------------------------------------------------------------------
-- End of AAG Trap Scalars
-----------------------------------------------------------------------
-----------------------------------------------------------------------
-- Start of AAG Traps
-----------------------------------------------------------------------
connectionAlarm TRAP-TYPE
ENTERPRISE svplus
VARIABLES {
alarmTrapSequenceNumber,
nodeGrpName,
trapSeverity,
trapReason,
connectionOpStatus,
connectionType,
trapConnEndPointString
}
DESCRIPTION "This trap is generated whenever a connection alarm
status is received."
::= 20000
lineAlarm TRAP-TYPE
ENTERPRISE svplus
VARIABLES {
alarmTrapSequenceNumber,
nodeGrpName,
trapSeverity,
trapReason,
lineStatus,
lineCardType,
lineInterface,
lineLineNumber,
linePortNumber,
trapLineIdString
}
DESCRIPTION "This trap is generated whenever a line alarm
status is received."
::= 20001
trunkAlarm TRAP-TYPE
ENTERPRISE svplus
VARIABLES {
alarmTrapSequenceNumber,
nodeGrpName,
trapSeverity,
trapReason,
trunkStatus,
trunkCardType,
trapTrunkType,
trunkLocalSlot,
trunkLocalPort,
trapVirtualTrunkId,
trapTrunkIdString
}
DESCRIPTION "This trap is generated whenever a trunk alarm
status is received."
::= 20002
portAlarm TRAP-TYPE
ENTERPRISE svplus
VARIABLES {
alarmTrapSequenceNumber,
nodeGrpName,
trapSeverity,
trapReason,
portState,
trapCardType,
portSlot,
portPort,
trapPortIdString
}
DESCRIPTION "This trap is generated whenever a port alarm
status is received."
::= 20003
cardAlarm TRAP-TYPE
ENTERPRISE svplus
VARIABLES {
alarmTrapSequenceNumber,
nodeGrpName,
trapSeverity,
trapReason,
trapCardStatus,
trapCardType,
trapCardSlotNumber
}
DESCRIPTION "This trap is generated whenever a card alarm
status is received."
::= 20004
peripheralAlarm TRAP-TYPE
ENTERPRISE svplus
VARIABLES {
alarmTrapSequenceNumber,
nodeGrpName,
trapSeverity,
trapReason,
trapPeripheralStatus,
trapPeripheralType,
trapPeripheralUnitNumber
}
DESCRIPTION "This trap is generated whenever a peripheral alarm
status is received."
::= 20005
-- The following traps with suffix "_bc" indicate their existence for the
-- sake of backward compatibility.
-- The old TRAPs (numbered from 0 thr' 3) are not used any more.
connectionAlarm_bc TRAP-TYPE
ENTERPRISE svplus
VARIABLES {
alarmTrapSequenceNumber,
nodeGrpName,
trapSeverity,
trapReason,
connectionOpStatus,
connectionType,
trapConnEndPointString
}
DESCRIPTION "This trap is generated whenever a connection alarm
status is received."
::= 500
lineAlarm_bc TRAP-TYPE
ENTERPRISE svplus
VARIABLES {
alarmTrapSequenceNumber,
nodeGrpName,
trapSeverity,
trapReason,
lineStatus,
lineCardType,
lineInterface,
lineLineNumber,
linePortNumber,
trapLineIdString
}
DESCRIPTION "This trap is generated whenever a line alarm
status is received."
::= 501
trunkAlarm_bc TRAP-TYPE
ENTERPRISE svplus
VARIABLES {
alarmTrapSequenceNumber,
nodeGrpName,
trapSeverity,
trapReason,
trunkStatus,
trunkCardType,
trapTrunkType,
trunkLocalSlot,
trunkLocalPort,
trapVirtualTrunkId,
trapTrunkIdString
}
DESCRIPTION "This trap is generated whenever a trunk alarm
status is received."
::= 502
portAlarm_bc TRAP-TYPE
ENTERPRISE svplus
VARIABLES {
alarmTrapSequenceNumber,
nodeGrpName,
trapSeverity,
trapReason,
portState,
trapCardType,
portSlot,
portPort,
trapPortIdString
}
DESCRIPTION "This trap is generated whenever a port alarm
status is received."
::= 503
-----------------------------------------------------------------------
-- End of AAG Traps
-----------------------------------------------------------------------
END
|
|