summaryrefslogtreecommitdiff
path: root/MIBS/arris/d5/ARRIS-D5-ENT-CHASSIS-MIB
blob: 9561cea19b128563bd8ffbca16f4109976b0e888 (plain)
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
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
	ARRIS-D5-ENT-CHASSIS-MIB DEFINITIONS ::= BEGIN
 
		IMPORTS
			arrisD5UEQam			
				FROM ARRIS-MIB			
			entPhysicalIndex, entPhysicalEntry			
				FROM ENTITY-MIB			
			OBJECT-GROUP, MODULE-COMPLIANCE			
				FROM SNMPv2-CONF			
			OBJECT-TYPE, MODULE-IDENTITY			
				FROM SNMPv2-SMI			
			TEXTUAL-CONVENTION			
				FROM SNMPv2-TC;

	
		-- 1.3.6.1.4.1.4115.1.8.1.6
		arrisEntChassisMIB MODULE-IDENTITY 
			LAST-UPDATED "201009071432Z" -- 07 Sept 2010 YYYYMMDDHHMMZ
			ORGANIZATION 
				"Arris"
			CONTACT-INFO 
				"Initial MIB creator: Michael B. Sullivan
				Postal: Arris Interactive
				        3871 Lakefield Drive
				        Suite 300
				        Suwanee, GA 30024-1242
				        U.S.A.
				Phone:  +1 770 622 8400
				E-mail: michael.b.sullivan@arrisi.com"
			DESCRIPTION 
				"This is the extension to RFC 2737 ENTITY-MIB to support chassis
				management information."
			REVISION "200512070000Z"		-- December 07, 2005 at 00:00 GMT
			DESCRIPTION 
				"MIB created"
			REVISION "201009070000Z"		-- September 07, 2010 at 00:00 GMT
			DESCRIPTION 
				"Modified the CardType enumeration values back
				to their original values"
			::= { arrisD5UEQam 6 }

		
	
--
-- Textual conventions
--
	
		CardType ::= TEXTUAL-CONVENTION
			STATUS current
			DESCRIPTION 
				"Indicates the type of card in a slot."
			SYNTAX INTEGER
				{
				notApplicable(0),
				mon(1),
				wan(2),
				qam(3),
				doc(4),
				powermodule(5),
				fan(6) 
				}

		AdminState ::= TEXTUAL-CONVENTION
			STATUS current
			DESCRIPTION 
				"Indicates whether the system should attempt to bring a resource
				into service (up) or keep it offline (down)."
			SYNTAX INTEGER
				{
				notApplicable(0),
				up(1),
				down(2)
				}

		OperationalState ::= TEXTUAL-CONVENTION
			STATUS current
			DESCRIPTION 
				"Indicates whether a resource is ready to provide service (IS)
				or is not (OOS)."
			SYNTAX INTEGER
				{
				notApplicable(0),
				is(1),
				oos(2)
				}

		OperationalSubState ::= TEXTUAL-CONVENTION
			STATUS current
			DESCRIPTION 
				"Indicates why a card isn't fully operational when the cause is
				booting-related (DNLD/PUMP/INIT), administrative state-related
				(MAN), runtime-related (ALRM), or unexpected (FLT)."
			SYNTAX INTEGER
				{
				notApplicable(0),
				manual(1),
				fault(2),
				fwPump(3),
				initializing(4),
				alarm(5),
				unequipped(6),
				detecting(7),
				upgrading(8),
				diagnostic(9)
				}

		SlotOwner ::= TEXTUAL-CONVENTION
			STATUS current
			DESCRIPTION 
				"Indicates whether the slot is assigned to WAN-7 or WAN-8"
			SYNTAX INTEGER
				{
				notApplicable(0),
				wan7(7),
				wan8(8)
				}

--
-- Node definitions
--
	
		-- 1.3.6.1.4.1.4115.1.8.1.6.1
		arrisEntChassisObjects OBJECT IDENTIFIER ::= { arrisEntChassisMIB 1 }

		
		-- 1.3.6.1.4.1.4115.1.8.1.6.1.1
		arrisEntTable OBJECT-TYPE
			SYNTAX SEQUENCE OF ArrisEntEntry
			MAX-ACCESS not-accessible
			STATUS current
			DESCRIPTION
				"This table contains one row per physical entity.  There is
				always at least one row for an 'overall' physical entity."
			::= { arrisEntChassisObjects 1 }

		
		-- 1.3.6.1.4.1.4115.1.8.1.6.1.1.1
		arrisEntEntry OBJECT-TYPE
			SYNTAX ArrisEntEntry
			MAX-ACCESS not-accessible
			STATUS current
			DESCRIPTION
				"Chassis management state information for a particular entity.
				
				Chassis management plays a key role in monitoring system
				resource status, managing service turn-up, and deleting
				resources."
			AUGMENTS { entPhysicalEntry }
			::= { arrisEntTable 1 }

		
		ArrisEntEntry ::=
			SEQUENCE { 
				arrisEntProvCardType
					CardType,
				arrisEntDetCardType
					CardType,
				arrisEntAdminState
					AdminState,
				arrisEntOperState
					OperationalState,
				arrisEntOperSubState
					OperationalSubState,
				arrisEntProductCode
					OCTET STRING,
				arrisEntProductRev
					OCTET STRING,
				arrisEntSlotOwner
					SlotOwner
			 }

		-- 1.3.6.1.4.1.4115.1.8.1.6.1.1.1.1
		arrisEntProvCardType OBJECT-TYPE
			SYNTAX CardType
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Indicates what type of card is intended to be used in a slot.
				This value is configured by the user and is persistent across
				reboots."
			::= { arrisEntEntry 1 }

		
		-- 1.3.6.1.4.1.4115.1.8.1.6.1.1.1.2
		arrisEntDetCardType OBJECT-TYPE
			SYNTAX CardType
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Indicates what type of card is actually inserted in a slot.
				This value is maintained by the system."
			::= { arrisEntEntry 2 }

		
		-- 1.3.6.1.4.1.4115.1.8.1.6.1.1.1.3
		arrisEntAdminState OBJECT-TYPE
			SYNTAX AdminState
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Indicates whether the system should attempt to bring a resource
				into service (up) or keep the resource offline (down).  This
				state is configured by the user and is persistent across
				reboots."
			::= { arrisEntEntry 3 }

		
		-- 1.3.6.1.4.1.4115.1.8.1.6.1.1.1.4
		arrisEntOperState OBJECT-TYPE
			SYNTAX OperationalState
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Indicates whether a resource is ready to provide service (IS)
				or is not (OOS).  This state is maintained by the system."
			::= { arrisEntEntry 4 }


		-- 1.3.6.1.4.1.4115.1.8.1.6.1.1.1.5
		arrisEntOperSubState OBJECT-TYPE
			SYNTAX OperationalSubState
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Indicates why a card isn't fully operational when the cause is
				booting-related (DNLD/PUMP/INIT), administrative state-related
				(MAN), runtime-related (ALRM), or unexpected (FLT).  This state
				is maintained by the system."
			::= { arrisEntEntry 5 }


		-- 1.3.6.1.4.1.4115.1.8.1.6.1.1.1.6
		arrisEntProductCode OBJECT-TYPE
			SYNTAX OCTET STRING (SIZE (0..32))
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Arris Product Code for the card"
			::= { arrisEntEntry 6 }

		
		-- 1.3.6.1.4.1.4115.1.8.1.6.1.1.1.7
		arrisEntProductRev OBJECT-TYPE
			SYNTAX OCTET STRING (SIZE (0..32))
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Arris Product Revision for the card"
			::= { arrisEntEntry 7 }


		-- 1.3.6.1.4.1.4115.1.8.1.6.1.1.1.8
		arrisEntSlotOwner OBJECT-TYPE
			SYNTAX SlotOwner
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Indicates whether the slot is assigned to WAN-7 or WAN-8"
			::= { arrisEntEntry 8 }


		-- 1.3.6.1.4.1.4115.1.8.1.6.2
		arrisEntChassisConformance OBJECT IDENTIFIER ::= { arrisEntChassisMIB 2 }

		
		-- 1.3.6.1.4.1.4115.1.8.1.6.2.1
		arrisEntChassisGroups OBJECT IDENTIFIER ::= { arrisEntChassisConformance 1 }

		
		-- 1.3.6.1.4.1.4115.1.8.1.6.2.1.1
		arrisEntChassisGroup OBJECT-GROUP
			OBJECTS { arrisEntProvCardType, arrisEntDetCardType, arrisEntAdminState, arrisEntOperState, arrisEntOperSubState, arrisEntSlotOwner
				 }
			STATUS current
			DESCRIPTION 
				"The collection of objects which are used to represent
				physical system component states, for which a single agent
				provides management information."
			::= { arrisEntChassisGroups 1 }

		
		-- 1.3.6.1.4.1.4115.1.8.1.6.2.2
		arrisEntChassisCompliances OBJECT IDENTIFIER ::= { arrisEntChassisConformance 2 }

		
		-- 1.3.6.1.4.1.4115.1.8.1.6.2.2.1
		arrisEntChassisCompliance MODULE-COMPLIANCE
			STATUS current
			DESCRIPTION 
				"Describes the requirements for conformance to the Arris
				Entity Chassis MIB module."
			MODULE ARRIS-D5-ENT-CHASSIS-MIB
				MANDATORY-GROUPS { arrisEntChassisGroup }
			::= { arrisEntChassisCompliances 1 }

		
	
	END