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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
|
-- *****************************************************************
-- Chassis MIB
-- *****************************************************************
SL-CHASSIS-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE,
NOTIFICATION-TYPE, IpAddress FROM SNMPv2-SMI
DisplayString, TruthValue,
TimeStamp, RowStatus, PhysAddress FROM SNMPv2-TC
MODULE-COMPLIANCE, OBJECT-GROUP,
NOTIFICATION-GROUP FROM SNMPv2-CONF
InterfaceIndex FROM IF-MIB
PerfCurrentCount, PerfIntervalCount,
PerfTotalCount FROM PerfHist-TC-MIB
slMain FROM SL-MAIN-MIB;
slChassis MODULE-IDENTITY
LAST-UPDATED "201305050000Z"
ORGANIZATION "PacketLight Networks Ltd."
CONTACT-INFO
"Omri_Viner@PacketLight.com"
DESCRIPTION
"This MIB module describes the Multi-Chassis information"
::= { slMain 18 }
-- The Chassis MIB consists of the following groups:
-- General Chassis information
-- Chassis Slot table
slChassisInfo OBJECT IDENTIFIER ::= { slChassis 1 }
slChassisSlot OBJECT IDENTIFIER ::= { slChassis 2 }
slChassisInfoNodeSlotId OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The slot ID of the node.
This number is assigned to the node before it is a part of the chassis.
Slot ID should be assigned also to the GNE nodes.
The Slot ID should be unique in the chassis."
::= { slChassisInfo 1 }
slChassisInfoNodeRole OBJECT-TYPE
SYNTAX INTEGER {
gneNode(1),
internalSlotNode(2),
none(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The role of the node.
gneNode - for Master or Backup chassis GNE node.
internalSlotNode - for non gne node.
none - the node is in a simple chassis"
::= { slChassisInfo 2 }
slChassisInfoLanVrrpIp OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The VRRP ip of the node on the LAN interface."
::= { slChassisInfo 3 }
slChassisInfoOscVrrpIp OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The VRRP ip of the node on the OSC interface."
::= { slChassisInfo 4 }
slChassisInfoTopology OBJECT-TYPE
SYNTAX INTEGER {
osc(1), -- the OSC is used for the internal connections
lan(2), -- the LAN is used for internal connections
simple(3) -- No GNE (Legacy)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The topology mode of the multichassis:
osc - the management use the LAN IP of the GNE and VRRP.
lan - the management use the OSC IP of the GNE and VRRP.
simple - no GNE to the chassis. Used for display only"
::= { slChassisInfo 5 }
slChassisInfoVrrpEnable OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable/Disable the activation of the VRRP protocol by the GNE"
::= { slChassisInfo 6 }
-- The Chassis Slot Table
-- This table contains the Chassis Slot content
slChassisSlotTable OBJECT-TYPE
SYNTAX SEQUENCE OF SlChassisSlotEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains the chassis slots."
::= { slChassisSlot 1 }
slChassisSlotEntry OBJECT-TYPE
SYNTAX SlChassisSlotEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the Chassis Slot table."
INDEX { slChassisSlotId }
::= { slChassisSlotTable 1 }
SlChassisSlotEntry ::=
SEQUENCE {
slChassisSlotId INTEGER,
slChassisSlotRole INTEGER,
slChassisSlotInternalIp IpAddress,
slChassisSlotProductType OBJECT IDENTIFIER,
slChassisSlotSysName DisplayString,
slChassisSlotSnmp161Port INTEGER, -- not relevant for GNE
slChassisSlotSnmp162MinPort INTEGER, -- not relevant for GNE
slChassisSlotSnmp162MaxPort INTEGER, -- not relevant for GNE
slChassisSlotHttpPort INTEGER, -- not relevant for GNE
slChassisSlotTelnetPort INTEGER, -- not relevant for GNE
slChassisSlotFtpPort INTEGER, -- not relevant for GNE
slChassisSlotTL1Port INTEGER, -- not relevant for GNE
slChassisSlotPingIdentifier INTEGER, -- not relevant for GNE
slChassisSlotHttpsPort INTEGER, -- not relevant for GNE
slChassisSlotSshPort INTEGER, -- not relevant for GNE
slChassisSlotSTL1Port INTEGER -- not relevant for GNE
}
slChassisSlotId OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The slot ID of the node."
::= { slChassisSlotEntry 1 }
slChassisSlotRole OBJECT-TYPE
SYNTAX INTEGER {
gneNode(1),
internalNode(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The role of the node.
gneNode - for Master or Backup chassis GNE node.
internalNode - for non gne node"
::= { slChassisSlotEntry 2 }
slChassisSlotInternalIp OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The internal ip of the node.
This address is used to identify the node and not for management access."
::= { slChassisSlotEntry 3 }
slChassisSlotProductType OBJECT-TYPE
SYNTAX OBJECT IDENTIFIER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The sysObjectID of the node."
::= { slChassisSlotEntry 4 }
slChassisSlotSysName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The SysName of the node"
::= { slChassisSlotEntry 5 }
slChassisSlotSnmp161Port OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The SNMP Gte/Set port of the node."
::= { slChassisSlotEntry 6 }
slChassisSlotSnmp162MinPort OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The minimal SNMP Trap port of the node."
::= { slChassisSlotEntry 7 }
slChassisSlotSnmp162MaxPort OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximal SNMP Trap port of the node."
::= { slChassisSlotEntry 8 }
slChassisSlotHttpPort OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The HTTP port of the node."
::= { slChassisSlotEntry 9 }
slChassisSlotTelnetPort OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Telnet port of the node."
::= { slChassisSlotEntry 10 }
slChassisSlotFtpPort OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Ftp port of the node."
::= { slChassisSlotEntry 12 }
slChassisSlotTL1Port OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The TL1 port of the node."
::= { slChassisSlotEntry 13 }
slChassisSlotPingIdentifier OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The ping identifier of the node."
::= { slChassisSlotEntry 14 }
slChassisSlotHttpsPort OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The HTTPS port of the node."
::= { slChassisSlotEntry 15 }
slChassisSlotSshPort OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The SSH port of the node."
::= { slChassisSlotEntry 16 }
slChassisSlotSTL1Port OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The TL1 over SSH port of the node."
::= { slChassisSlotEntry 17 }
END
|