1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
|
-- *****************************************************************
-- Retimer Module MIB
-- *****************************************************************
SL-RETIMER-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, Integer32,
NOTIFICATION-TYPE, Gauge32,
Counter64 FROM SNMPv2-SMI
DisplayString, TruthValue,
DateAndTime FROM SNMPv2-TC
MODULE-COMPLIANCE, OBJECT-GROUP,
NOTIFICATION-GROUP FROM SNMPv2-CONF
InterfaceIndex FROM IF-MIB
slService FROM SL-NE-MIB;
slRetimer MODULE-IDENTITY
LAST-UPDATED "200508171200Z" -- 17 Jan. 2005 12:00:00 EST
ORGANIZATION "PacketLight Networks Ltd."
CONTACT-INFO
"Omri_Viner@PacketLight.com"
DESCRIPTION
"This MIB module describes the Retimer"
::= { slService 14 }
-- The Retimer MIB consists of the following groups:
-- Configuration
-- Status
-- Pm
-- Traps
slRetimerConfig OBJECT IDENTIFIER ::= { slRetimer 1 }
slRetimerStat OBJECT IDENTIFIER ::= { slRetimer 2 }
slRetimerPm OBJECT IDENTIFIER ::= { slRetimer 3 }
slRetimerTraps OBJECT IDENTIFIER ::= { slRetimer 7 }
-- Textual Conventions
--
-- The Retimer Configuration Table
--
slRetimerConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF SlRetimerConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The Retimer Configuration table."
::= { slRetimerConfig 1 }
slRetimerConfigEntry OBJECT-TYPE
SYNTAX SlRetimerConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the Retimer Configuration table."
INDEX { slRetimerLineIndex }
::= { slRetimerConfigTable 1 }
SlRetimerConfigEntry ::=
SEQUENCE {
slRetimerLineIndex InterfaceIndex,
slRetimerResetPmCounters INTEGER
}
slRetimerLineIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object should be made equal to the ifIndex of the SFP."
::= { slRetimerConfigEntry 1 }
slRetimerResetPmCounters OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Setting this object to 1 reset the current interval PM
counters of the retimer."
::= { slRetimerConfigEntry 2 }
--
-- The PM Current Table
--
slRetimerCurrentTable OBJECT-TYPE
SYNTAX SEQUENCE OF SlRetimerCurrentEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The Ethernet current table contains various statistics
being collected for the current 15 minute
interval."
::= { slRetimerPm 1 }
slRetimerCurrentEntry OBJECT-TYPE
SYNTAX SlRetimerCurrentEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the Retimer Current table."
INDEX { slRetimerCurrentIndex }
::= { slRetimerCurrentTable 1 }
SlRetimerCurrentEntry ::=
SEQUENCE {
slRetimerCurrentIndex InterfaceIndex,
slRetimerCurrentRxRllES INTEGER,
slRetimerCurrentRxK285ES INTEGER
}
slRetimerCurrentIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The index value which uniquely identifies the
Ethernet interface to which this entry is applicable.
The interface identified by a particular value of
this index is the same interface as identified by
the same value as a the ifIndex of the SFP."
::= { slRetimerCurrentEntry 1 }
slRetimerCurrentRxRllES OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of Errored Seconds with RLL error."
::= { slRetimerCurrentEntry 2 }
slRetimerCurrentRxK285ES OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of Errored Seconds with K28.5 error."
::= { slRetimerCurrentEntry 3 }
-- ---------------------------------------------
-- Retimer Traps
-- ---------------------------------------------
slRetimerStatusChange NOTIFICATION-TYPE
OBJECTS { slRetimerLineIndex }
STATUS current
DESCRIPTION
""
::= { slRetimerTraps 1 }
END
|