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
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
|
LUM-INVENTORY-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE,
Unsigned32, Integer32, Counter32
FROM SNMPv2-SMI
OBJECT-GROUP, NOTIFICATION-GROUP, MODULE-COMPLIANCE
FROM SNMPv2-CONF
TEXTUAL-CONVENTION, AutonomousType, TruthValue,
DateAndTime, TestAndIncr, DisplayString, RowPointer
FROM SNMPv2-TC
SnmpAdminString
FROM SNMP-FRAMEWORK-MIB
lumModules, lumInventoryMIB
FROM LUM-REG
MgmtNameString
FROM LUM-TC;
lumInventoryMIBModule MODULE-IDENTITY
LAST-UPDATED
"201706150000Z" -- June 15th 2017
ORGANIZATION
"Infinera Corporation"
CONTACT-INFO
"techsupport@infinera.com"
DESCRIPTION
"The inventory MIB.
In large parts modeled after the Entity MIB
version 2 see RFC2737.
- General
- Physical entitites
"
REVISION
"201706150000Z" -- June 15th 2017
DESCRIPTION
"Changes made for release r29.0:
- Changed ORGANIZATION and CONTACT-INFO"
REVISION
"201409300000Z" -- Sep 30th 2014
DESCRIPTION
"Set invPhysVendorType to deprecated since it is not
used any more."
REVISION
"200509140000Z" -- September 14th 2005
DESCRIPTION
"Added minimal compliance groups."
REVISION
"200409300000Z" -- September 30th 2004
DESCRIPTION
"Added table sizes."
REVISION
"200203080000Z" -- March 8th 2002
DESCRIPTION
"Put back softwareRev."
REVISION
"200110300000Z" -- October 30th 2001
DESCRIPTION
"MIB version and testAndIncr hidden - not supported yet.
Changed lastChange to DateAndTime."
REVISION
"200107170000Z" -- July 17th 2001
DESCRIPTION
"Added notifications. Added general group with version
and testAndIncr.
Added addtional alias and persistence
meta-information."
REVISION
"200105110000Z" -- May 11th 2001
DESCRIPTION
"Replaced softwareRev with productDataRev.
Removed alias and assetId."
REVISION
"200105100000Z" -- May 10th 2001
DESCRIPTION
"The initial revision of this module."
::= { lumModules 5 }
-- tbd Further work: Add user configurable asset id for physical entities(?)
-- tbd Further work: Add timestamp on physical entries and the notifications
-- ... created and lastChange, or is it sufficient with just lastChangeTime?
-- ----------------------------------------------------
-- Conformance area, containing groups and complicance
-- specifications.
-- ----------------------------------------------------
lumInventoryConfs OBJECT IDENTIFIER ::= { lumInventoryMIB 1 }
lumInventoryGroups OBJECT IDENTIFIER ::= { lumInventoryConfs 1 }
lumInventoryCompl OBJECT IDENTIFIER ::= { lumInventoryConfs 2 }
lumInventoryMinimalGroups OBJECT IDENTIFIER ::= { lumInventoryConfs 3 }
lumInventoryMinimalCompl OBJECT IDENTIFIER ::= { lumInventoryConfs 4 }
-- ----------------------------------------------------
-- Root for objects in the inventory MIB
-- ----------------------------------------------------
lumInventoryMIBObjects OBJECT IDENTIFIER ::= { lumInventoryMIB 2 }
-- ----------------------------------------------------
-- This MIB contains the following groups:
-- ----------------------------------------------------
invPhysical OBJECT IDENTIFIER ::= { lumInventoryMIBObjects 1 }
invGeneral OBJECT IDENTIFIER ::= { lumInventoryMIBObjects 2 }
lumentisInvNotifications OBJECT IDENTIFIER ::= { lumInventoryMIBObjects 3 }
invEntities OBJECT IDENTIFIER ::= { lumInventoryMIBObjects 4 }
invRelations OBJECT IDENTIFIER ::= { lumInventoryMIBObjects 5 }
invInsRemLog OBJECT IDENTIFIER ::= { lumInventoryMIBObjects 6 }
-- ----------------------------------------------------
-- Textual Conventions
-- ----------------------------------------------------
PhysicalClass ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"An enumerated value which provides an
indication of the general hardware type
of a particular physical entity.
There are no restrictions as to the number of
invPhysicalEntries of each invPhysicalClass,
which must be instantiated by an agent.
The enumeration 'other' is applicable if the
physical entity class is known, but does not
match any of the supported values.
The enumeration 'unknown' is applicable if
the physical entity class is unknown to the
agent.
The enumeration 'chassis' is applicable if the physical
entity class is an overall container for networking
equipment. Any class of physical entity except a stack may
be contained within a chassis, and a chassis may only be
contained within a stack.
The enumeration 'backplane' is applicable if the physical
entity class is some sort of device for aggregating and
forwarding networking traffic, such as a shared backplane in
a modular ethernet switch. Note that an agent may model a
backplane as a single physical entity, which is actually
implemented as multiple discrete physical components (within
a chassis or stack).
The enumeration 'container' is applicable if the physical
entity class is capable of containing one or more removable
physical entities, possibly of different types. For example,
each (empty or full) slot in a chassis will be modeled as a
container. Note that all removable physical entities should
be modeled within a container entity, such as field-
replaceable modules, fans, or power supplies. Note that all
known containers should be modeled by the agent, including
empty containers.
The enumeration 'powerSupply' is applicable if the physical
entity class is a power-supplying component.
The enumeration 'fan' is applicable if the physical entity
class is a fan or other heat-reduction component.
The enumeration 'sensor' is applicable if the physical
entity class is some sort of sensor, such as a temperature
sensor within a router chassis.
The enumeration 'module' is applicable if the physical
entity class is some sort of self-contained sub-system. If
it is removable, then it should be modeled within a
container entity, otherwise it should be modeled directly
within another physical entity (e.g., a chassis or another
module).
The enumeration 'port' is applicable if the physical entity
class is some sort of networking port, capable of receiving
and/or transmitting networking traffic.
The enumeration 'stack' is applicable if the physical entity
class is some sort of super-container (possibly virtual),
intended to group together multiple chassis entities. A
stack may be realized by a 'virtual' cable, a real
interconnect cable, attached to multiple chassis, or may in
fact be comprised of multiple interconnect cables. A stack
should not be modeled within any other physical entities,
but a stack may be contained within another stack. Only
chassis entities should be contained within a stack."
SYNTAX INTEGER {
undefined (0),
other(1),
unknown(2),
chassis(3),
backplane(4),
container(5), -- e.g., chassis slot or daughter-card holder
powerSupply(6),
fan(7),
sensor(8),
module(9), -- e.g., plug-in card or daughter-card
port(10),
stack(11) } -- e.g., stack of multiple chassis entities
EntityClass ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"tbd"
SYNTAX INTEGER {
undefined (0),
other(1),
unknown(2),
chassis(3),
backplane(4),
container(5), -- e.g., chassis slot or daughter-card holder
powerSupply(6),
fan(7),
sensor(8),
module(9), -- e.g., plug-in card or daughter-card
port(10),
stack(11), -- e.g., stack of multiple chassis entities
logical(12) } -- e.g. traffic object realized in software }
InsRemEventType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Type of equipment logging event"
SYNTAX INTEGER {
insert (0),
remove (1) }
-- ----------------------------------------------------
-- Physical entities group
-- ----------------------------------------------------
invPhysTable OBJECT-TYPE
SYNTAX SEQUENCE OF InvPhysEntry
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."
::= { invPhysical 1 }
invPhysEntry OBJECT-TYPE
SYNTAX InvPhysEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information about a particular physical
entity.
Each entry provides objects (invPhysicalDescr,
invPhysicalVendorType, and invPhysicalClass)
to help an NMS identify and characterize the
entry, and objects (invPhysicalContainedIn
and invPhysicalParentRelPos) to help an NMS
relate the particular entry to other entries
in this table.
"
INDEX { invPhysIndex }
::= { invPhysTable 1 }
InvPhysEntry ::= SEQUENCE {
invPhysIndex Unsigned32,
invPhysDescr SnmpAdminString,
invPhysVendorType AutonomousType,
invPhysContainedIn Unsigned32,
invPhysClass PhysicalClass,
invPhysParentRelPos Integer32,
invPhysName MgmtNameString,
invPhysHardwareRev SnmpAdminString,
invPhysFirmwareRev SnmpAdminString,
invPhysProductDataRev SnmpAdminString,
invPhysSerialNum SnmpAdminString,
invPhysMfgName SnmpAdminString,
invPhysModelName SnmpAdminString,
invPhysIsFRU TruthValue,
invPhysSoftwareRev SnmpAdminString,
invPhysSoftwareProduct SnmpAdminString,
invPhysClei DisplayString,
invPhysAid DisplayString}
invPhysIndex OBJECT-TYPE
SYNTAX Unsigned32 (1..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The index for this entry.
"
::= { invPhysEntry 1 }
invPhysDescr OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A textual description of physical entity. This
object should contain a string which identifies
the manufacturers name for the physical entity,
and should be set to a distinct value for each
version or model of the physical entity.
"
::= { invPhysEntry 2 }
invPhysVendorType OBJECT-TYPE
SYNTAX AutonomousType
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"An indication of the vendor-specific hardware
type of the physical entity. Note that this is
different from the definition of MIB-IIs
sysObjectID.
An agent should set this object to a
enterprise-specific registration identifier value
indicating the specific equipment type in detail.
The associated instance of invPhysClass is used
to indicate the general type of hardware device.
If no vendor-specific registration identifier
exists for this physical entity, or the value
is unknown by this agent, then the value { 0 0 }
is returned.
"
::= { invPhysEntry 3 }
invPhysContainedIn OBJECT-TYPE
SYNTAX Unsigned32 (0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of invPhysIndex for the physical
entity which 'contains' this physical entity.
A value of zero indicates this physical entity
is not contained in any other physical entity.
Note that the set of 'containment' relationships
define a strict hierarchy; that is, recursion
is not allowed.
In the event a physical entity is contained by
more than one physical entity (e.g., double-wide
modules), this object should identify the
containing entity with the lowest value
of invPhysIndex.
"
::= { invPhysEntry 4 }
invPhysClass OBJECT-TYPE
SYNTAX PhysicalClass
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An indication of the general hardware type of
the physical entity.
An agent should set this object to the standard
enumeration value which most accurately indicates
the general class of the physical entity, or the
primary class if there is more than one.
If no appropriate standard registration
identifier exists for this physical entity, then
the value 'other(1)' is returned. If the value
is unknown by this agent, then the value
'unknown(2)' is returned.
"
::= { invPhysEntry 5 }
invPhysParentRelPos OBJECT-TYPE
SYNTAX Integer32 (-1..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An indication of the relative position of this
'child' component among all its 'sibling'
components. Sibling components are defined as
invPhysEntries which share the same instance
values of each of the invPhysContainedIn
and invPhysClass objects.
An NMS can use this object to identify the
relative ordering for all sibling components
of a particular parent (identified by the
invPhysContainedIn instance in each sibling
entry).
This value should match any external labeling
of the physical component if possible. For example,
for a container (e.g., card slot) labeled as
'slot #3', invPhysParentRelPos should have the
value '3'. Note that the invPhysEntry for the
module plugged in slot 3 should have an
invPhysParentRelPos value of '1'.
If the physical position of this component
does not match any external numbering or clearly
visible ordering, then user documentation or
other external reference material should be
used to determine the parent-relative position.
If this is not possible, then the the agent should
assign a consistent (but possibly arbitrary)
ordering to a given set of 'sibling' components,
perhaps based on internal representation of the
components.
If the agent cannot determine the parent-relative
position for some reason, or if the associated
value of invPhysContainedIn is '0', then the
value '-1' is returned. Otherwise a non-negative
integer is returned, indicating the parent-relative
position of this physical entity.
Parent-relative ordering normally starts from
'1' and continues to 'N', where 'N' represents
the highest positioned child entity. However,
if the physical entities (e.g., slots) are labeled
from a starting position of zero, then the first
sibling should be associated with a
invPhysParentRelPos value of '0'. Note that this
ordering may be sparse or dense, depending on agent
implementation.
The actual values returned are not globally
meaningful, as each 'parent' component may use
different numbering algorithms. The ordering is
only meaningful among siblings of the same parent
component.
The agent should retain parent-relative position
values across reboots, either through algorithmic
assignment or use of non-volatile storage.
"
::= { invPhysEntry 6 }
invPhysName OBJECT-TYPE
SYNTAX MgmtNameString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The textual name of the physical entity. The
value of this object should be the name of the
component as assigned by the local device and
should be suitable for use in commands entered
at the 'console' of the device. This might be a
text name, such as 'console' or a simple component
number (e.g., port or module number), such as '1',
depending on the physical component naming syntax
of the device.
If there is no local name, or this object is
otherwise not applicable, then this object
contains a zero-length string.
Note that the value of invPhysName for two
physical entities will be the same in the event
that the console interface does not distinguish
between them, e.g., slot-1 and the card in slot-1.
"
::= { invPhysEntry 7 }
invPhysHardwareRev OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The vendor-specific hardware revision string for
the physical entity. The preferred value is the
hardware revision identifier actually printed on
the component itself (if present).
Note that if revision information is stored
internally in a non-printable (e.g., binary)
format, then the agent must convert such
information to a printable format, in an
implementation-specific manner.
If no specific hardware revision string is
associated with the physical component, or this
information is unknown to the agent, then this
object will contain a zero-length string.
"
::= { invPhysEntry 8 }
invPhysFirmwareRev OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The vendor-specific firmware revision string for
the physical entity.
Note that if revision information is stored
internally in a non-printable (e.g., binary)
format, then the agent must convert such
information to a printable format, in an
implementation-specific manner.
If no specific firmware programs are associated
with the physical component, or this information
is unknown to the agent, then this object will
contain a zero-length string.
"
::= { invPhysEntry 9 }
invPhysProductDataRev OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The vendor-specific product data revision string
for the physical entity.
Note that if revision information is stored
internally in a non-printable (e.g., binary)
format, then the agent must convert such
information to a printable format, in an
implementation-specific manner.
If no specific software programs are associated
with the physical component, or this information
is unknown to the agent, then this object will
contain a zero-length string.
"
::= { invPhysEntry 10 }
invPhysSerialNum OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The vendor-specific serial number string for the
physical entity. The preferred value is the
serial number string actually printed on the
component itself (if present).
On the first instantiation of an physical entity,
the value of invPhysSerialNum associated with
that entity is set to the correct vendor-assigned
serial number, if this information is available
to the agent. If a serial number is unknown or
non-existent, the invPhysSerialNum will be
set to a zero-length string instead.
"
::= { invPhysEntry 11 }
invPhysMfgName OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name of the manufacturer of this physical
component. The preferred value is the manufacturer
name string actually printed on the component
itself (if present).
If the manufacturer name string associated with
the physical component is unknown to the agent,
then this object will contain a zero-length
string.
"
::= { invPhysEntry 12 }
invPhysModelName OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The vendor-specific model name identifier string
associated with this physical component. The
preferred value is the customer-visible
product/part number, which may be printed on the
component itself.
If the model name string associated with the
physical component is unknown to the agent,
then this object will contain a zero-length string.
"
::= { invPhysEntry 13 }
invPhysIsFRU OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates whether or not this
physical entity is considered a 'field replaceable
unit' by the vendor. If this object contains
the value 'true(1)' then this invPhysEntry
identifies a field replaceable unit. For all
invPhysEntries which represent components that
are permanently contained within a field
replaceable unit, the value 'false(2)' should
be returned for this object.
"
::= { invPhysEntry 14 }
invPhysSoftwareRev OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The vendor-specific software revision string
for the physical entity.
If no specific software revision string is
associated with the physical component, or
this information is unknown to the agent, then
this object will contain a zero-length string.
"
::= { invPhysEntry 15 }
invPhysSoftwareProduct OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The vendor-specific software part/product number
string for the physical entity.
If no specific software part/product number
string is associated with the physical component,
or this information is unknown to the agent,
then this object will contain a zero-length string.
"
::= { invPhysEntry 16 }
invPhysClei OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..10))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Common Language Equipment Identifier (CLEI)
code for the product.
The format is according to RFC 4152.
"
::= { invPhysEntry 17 }
invPhysAid OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The access identifier (AID) of the equipment.
The format is according to GR-833.
"
::= { invPhysEntry 18 }
-- ----------------------------------------------------
-- General group
-- ----------------------------------------------------
invGeneralLastChangeTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The time the inventory list was last changed.
"
::= { invGeneral 1 }
invGeneralTestAndIncr OBJECT-TYPE
SYNTAX TestAndIncr
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Protection against simultaneous access from
multiple managers. See SNMPv2-TC.
"
::= { invGeneral 2 }
invGeneralMibSpecVersion OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The version of the MIB specification.
"
DEFVAL { "" }
::= { invGeneral 3 }
invGeneralMibImplVersion OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The version of the MIB implementation.
"
DEFVAL { "" }
::= { invGeneral 4 }
invGeneralConfigLastChangeTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The time when the configuration of the MIB was
last changed.
"
::= { invGeneral 5 }
invGeneralPhysTableSize OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of rows available in the
physical entities list.
"
::= { invGeneral 6 }
invGeneralEntityTableSize OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of rows available in the
logical entity list.
"
::= { invGeneral 7 }
invGeneralRelationTableSize OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of rows available in the
relation list.
"
::= { invGeneral 8 }
invGeneralInsRemTableSize OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of rows available in the
insert and remove list.
"
::= { invGeneral 9 }
invGeneralInsRemLastSeqNumber OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The sequence number last used when creating
a new entry in the insert remove log.
"
::= { invGeneral 10 }
-- ----------------------------------------------------
-- Notifications
-- ----------------------------------------------------
invNotifyPrefix OBJECT IDENTIFIER ::= { lumentisInvNotifications 0 }
invNotificationPhysAdded NOTIFICATION-TYPE
OBJECTS {
invPhysIndex,
invPhysDescr,
invPhysVendorType,
invPhysContainedIn,
invPhysClass,
invPhysParentRelPos,
invPhysName,
invPhysHardwareRev,
invPhysFirmwareRev,
invPhysProductDataRev,
invPhysSerialNum,
invPhysMfgName,
invPhysModelName,
invPhysIsFRU }
STATUS current
DESCRIPTION
"Sent when a physical entity is added to the
inventory.
"
::= { invNotifyPrefix 1 }
invNotificationPhysRemoved NOTIFICATION-TYPE
OBJECTS {
invPhysIndex,
invPhysDescr,
invPhysVendorType,
invPhysContainedIn,
invPhysClass,
invPhysParentRelPos,
invPhysName,
invPhysHardwareRev,
invPhysFirmwareRev,
invPhysProductDataRev,
invPhysSerialNum,
invPhysMfgName,
invPhysModelName,
invPhysIsFRU }
STATUS current
DESCRIPTION
"Sent when a physical entity is removed from the
inventory.
"
::= { invNotifyPrefix 2 }
-- ----------------------------------------------------
-- Object model group
-- ----------------------------------------------------
invEntityTable OBJECT-TYPE
SYNTAX SEQUENCE OF InvEntityEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The entity table."
::= { invEntities 1 }
invEntityEntry OBJECT-TYPE
SYNTAX InvEntityEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the entity table.
"
INDEX { invEntityIndex }
::= { invEntityTable 1 }
InvEntityEntry ::= SEQUENCE {
invEntityIndex Unsigned32,
invEntityName MgmtNameString,
invEntityObject RowPointer,
invEntityClass EntityClass }
invEntityIndex OBJECT-TYPE
SYNTAX Unsigned32 (1..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An arbitrary index assigned to each entry.
"
::= { invEntityEntry 1 }
invEntityName OBJECT-TYPE
SYNTAX MgmtNameString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The management name of the object this entry is
related to.
"
::= { invEntityEntry 2 }
invEntityObject OBJECT-TYPE
SYNTAX RowPointer
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Pointer to the object related to this entry.
"
::= { invEntityEntry 3 }
invEntityClass OBJECT-TYPE
SYNTAX EntityClass
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the type of entity.
"
::= { invEntityEntry 4 }
-- ----------------------------------------------------
-- Object relation group
-- ----------------------------------------------------
invRelationTable OBJECT-TYPE
SYNTAX SEQUENCE OF InvRelationEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Relation table."
::= { invRelations 1 }
invRelationEntry OBJECT-TYPE
SYNTAX InvRelationEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the relation table.
"
INDEX { invRelationIndex }
::= { invRelationTable 1 }
InvRelationEntry ::= SEQUENCE {
invRelationIndex Unsigned32,
invRelationEntityIndex1 Unsigned32,
invRelationEntityName1 MgmtNameString,
invRelationType INTEGER,
invRelationEntityIndex2 Unsigned32,
invRelationEntityName2 MgmtNameString }
invRelationIndex OBJECT-TYPE
SYNTAX Unsigned32 (1..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An arbitrary index assigned to each entry.
"
::= { invRelationEntry 1 }
invRelationEntityIndex1 OBJECT-TYPE
SYNTAX Unsigned32 (1..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Index in to the entity table.
"
::= { invRelationEntry 2 }
invRelationEntityName1 OBJECT-TYPE
SYNTAX MgmtNameString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Index in to the entity table.
"
::= { invRelationEntry 3 }
invRelationType OBJECT-TYPE
SYNTAX INTEGER {
undefined (0),
containedIn (1),
dependsOn (2) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates how entity 2 is related to entity 1.
containedIn - Physical containment. Entity 2 is
physically contained within entity 1.
dependsOn - The correct function of entity 2
depends on the function of entity 1.
"
::= { invRelationEntry 4 }
invRelationEntityIndex2 OBJECT-TYPE
SYNTAX Unsigned32 (1..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Index in to the entity table.
"
::= { invRelationEntry 5 }
invRelationEntityName2 OBJECT-TYPE
SYNTAX MgmtNameString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Name of the object.
"
::= { invRelationEntry 6 }
-- ----------------------------------------------------
-- Insert/remove log group
-- ----------------------------------------------------
invInsRemTable OBJECT-TYPE
SYNTAX SEQUENCE OF InvInsRemEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains one row per insert or
remove event of any physical entity."
::= { invInsRemLog 1 }
invInsRemEntry OBJECT-TYPE
SYNTAX InvInsRemEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information about a particular insert
or remove entry.
"
INDEX { invInsRemIndex }
::= { invInsRemTable 1 }
InvInsRemEntry ::= SEQUENCE {
invInsRemIndex Unsigned32,
invInsRemName MgmtNameString,
invInsRemEvent InsRemEventType,
invInsRemTimestamp DateAndTime,
invInsRemEquipmentType PhysicalClass,
invInsRemPhysicalLocation DisplayString,
invInsRemClei DisplayString,
invInsRemSerialNumber DisplayString,
invInsRemPartNumber DisplayString,
invInsRemSeqNumber Counter32 }
invInsRemIndex OBJECT-TYPE
SYNTAX Unsigned32 (1..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The index for this entry.
"
::= { invInsRemEntry 1 }
invInsRemName OBJECT-TYPE
SYNTAX MgmtNameString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The management name of the object this entry
is related to.
"
::= { invInsRemEntry 2 }
invInsRemEvent OBJECT-TYPE
SYNTAX InsRemEventType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of event.
"
::= { invInsRemEntry 3 }
invInsRemTimestamp OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The time when the event occurred.
"
::= { invInsRemEntry 4 }
invInsRemEquipmentType OBJECT-TYPE
SYNTAX PhysicalClass
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Part Number of the product.
"
::= { invInsRemEntry 5 }
invInsRemPhysicalLocation OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The physical location of the product.
"
::= { invInsRemEntry 6 }
invInsRemClei OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..10))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Common Language Equipment Identifier
(CLEI) code for the product.
"
::= { invInsRemEntry 7 }
invInsRemSerialNumber OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The serial number string for the
physical entity.
"
::= { invInsRemEntry 8 }
invInsRemPartNumber OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Part Number of the product.
"
::= { invInsRemEntry 9 }
invInsRemSeqNumber OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The last sequence number used when
this event occurred.
"
::= { invInsRemEntry 10 }
-- ----------------------------------------------------
-- Object and event groups
-- ----------------------------------------------------
invPhysGroup OBJECT-GROUP
OBJECTS {
invPhysIndex,
invPhysDescr,
invPhysVendorType,
invPhysContainedIn,
invPhysClass,
invPhysParentRelPos,
invPhysName,
invPhysHardwareRev,
invPhysFirmwareRev,
invPhysProductDataRev,
invPhysSerialNum,
invPhysMfgName,
invPhysModelName,
invPhysIsFRU }
STATUS deprecated
DESCRIPTION
"The physical inventory objects."
::= { lumInventoryGroups 1 }
invGeneralGroup OBJECT-GROUP
OBJECTS {
invGeneralLastChangeTime,
invGeneralMibSpecVersion,
invGeneralMibImplVersion,
invGeneralTestAndIncr }
STATUS deprecated
DESCRIPTION
"The physical inventory objects."
::= { lumInventoryGroups 2 }
invEventGroup NOTIFICATION-GROUP
NOTIFICATIONS {
invNotificationPhysAdded,
invNotificationPhysRemoved }
STATUS current
DESCRIPTION
"The inventory notifications."
::= { lumInventoryGroups 3 }
invGeneralGroupV2 OBJECT-GROUP
OBJECTS {
invGeneralLastChangeTime }
STATUS deprecated
DESCRIPTION
"The physical inventory objects."
::= { lumInventoryGroups 4 }
invPhysGroupV2 OBJECT-GROUP
OBJECTS {
invPhysIndex,
invPhysDescr,
invPhysVendorType,
invPhysContainedIn,
invPhysClass,
invPhysParentRelPos,
invPhysName,
invPhysHardwareRev,
invPhysFirmwareRev,
invPhysProductDataRev,
invPhysSerialNum,
invPhysMfgName,
invPhysModelName,
invPhysIsFRU,
invPhysSoftwareRev }
STATUS deprecated
DESCRIPTION
"The physical inventory objects V2."
::= { lumInventoryGroups 5 }
invPhysGroupV3 OBJECT-GROUP
OBJECTS {
invPhysIndex,
invPhysDescr,
invPhysVendorType,
invPhysContainedIn,
invPhysClass,
invPhysParentRelPos,
invPhysName,
invPhysHardwareRev,
invPhysFirmwareRev,
invPhysProductDataRev,
invPhysSerialNum,
invPhysMfgName,
invPhysModelName,
invPhysIsFRU,
invPhysSoftwareRev,
invPhysSoftwareProduct }
STATUS deprecated
DESCRIPTION
"The physical inventory objects V3."
::= { lumInventoryGroups 6 }
invEntityGroup OBJECT-GROUP
OBJECTS {
invEntityIndex,
invEntityName,
invEntityObject,
invEntityClass }
STATUS current
DESCRIPTION
"The entity objects V1."
::= { lumInventoryGroups 7 }
invRelationGroup OBJECT-GROUP
OBJECTS {
invRelationIndex,
invRelationEntityIndex1,
invRelationEntityName1,
invRelationType,
invRelationEntityIndex2,
invRelationEntityName2 }
STATUS current
DESCRIPTION
"The relation objects V1."
::= { lumInventoryGroups 8 }
invGeneralGroupV3 OBJECT-GROUP
OBJECTS {
invGeneralLastChangeTime,
invGeneralConfigLastChangeTime}
STATUS deprecated
DESCRIPTION
"The physical inventory objects."
::= { lumInventoryGroups 9 }
invGeneralGroupV4 OBJECT-GROUP
OBJECTS {
invGeneralLastChangeTime,
invGeneralConfigLastChangeTime,
invGeneralPhysTableSize,
invGeneralEntityTableSize,
invGeneralRelationTableSize}
STATUS deprecated
DESCRIPTION
"The physical inventory objects v4."
::= { lumInventoryGroups 10 }
invPhysGroupV4 OBJECT-GROUP
OBJECTS {
invPhysIndex,
invPhysDescr,
invPhysContainedIn,
invPhysClass,
invPhysParentRelPos,
invPhysName,
invPhysHardwareRev,
invPhysFirmwareRev,
invPhysProductDataRev,
invPhysSerialNum,
invPhysMfgName,
invPhysModelName,
invPhysIsFRU,
invPhysSoftwareRev,
invPhysSoftwareProduct }
STATUS deprecated
DESCRIPTION
"The physical inventory objects V4 (release R23.1)."
::= { lumInventoryGroups 11 }
invPhysGroupV5 OBJECT-GROUP
OBJECTS {
invPhysIndex,
invPhysDescr,
invPhysContainedIn,
invPhysClass,
invPhysParentRelPos,
invPhysName,
invPhysHardwareRev,
invPhysFirmwareRev,
invPhysProductDataRev,
invPhysSerialNum,
invPhysMfgName,
invPhysModelName,
invPhysIsFRU,
invPhysSoftwareRev,
invPhysSoftwareProduct,
invPhysClei,
invPhysAid }
STATUS current
DESCRIPTION
"The physical inventory objects V5 (release R28)."
::= { lumInventoryGroups 12 }
invInsRemGroup OBJECT-GROUP
OBJECTS {
invInsRemIndex,
invInsRemName,
invInsRemEvent,
invInsRemTimestamp,
invInsRemEquipmentType,
invInsRemPhysicalLocation,
invInsRemClei,
invInsRemSerialNumber,
invInsRemPartNumber,
invInsRemSeqNumber }
STATUS current
DESCRIPTION
"The insert remove events objects V1 (release R28)."
::= { lumInventoryGroups 13 }
invGeneralGroupV5 OBJECT-GROUP
OBJECTS {
invGeneralLastChangeTime,
invGeneralConfigLastChangeTime,
invGeneralPhysTableSize,
invGeneralEntityTableSize,
invGeneralRelationTableSize,
invGeneralInsRemTableSize,
invGeneralInsRemLastSeqNumber }
STATUS current
DESCRIPTION
"The physical inventory objects V5 (release R28)."
::= { lumInventoryGroups 14 }
-- ----------------------------------------------------
-- Compliance
-- ----------------------------------------------------
lumInventoryBasicComplV1 MODULE-COMPLIANCE
STATUS deprecated
DESCRIPTION
"Basic implementation requirements for the
inventory MIB."
MODULE
MANDATORY-GROUPS {
invPhysGroup,
invGeneralGroup,
invEventGroup }
::= { lumInventoryCompl 1 }
lumInventoryBasicComplV2 MODULE-COMPLIANCE
STATUS deprecated
DESCRIPTION
"Basic implementation requirements for the
inventory MIB v2."
MODULE
MANDATORY-GROUPS {
invGeneralGroupV2,
invPhysGroup,
invEventGroup }
::= { lumInventoryCompl 2 }
lumInventoryBasicComplV3 MODULE-COMPLIANCE
STATUS deprecated
DESCRIPTION
"Basic implementation requirements for the
inventory MIB v3."
MODULE
MANDATORY-GROUPS {
invGeneralGroupV2,
invPhysGroupV2,
invEventGroup }
::= { lumInventoryCompl 3 }
lumInventoryBasicComplV4 MODULE-COMPLIANCE
STATUS deprecated
DESCRIPTION
"Basic implementation requirements for the
inventory MIB v4."
MODULE
MANDATORY-GROUPS {
invGeneralGroupV2,
invPhysGroupV3,
invEventGroup }
::= { lumInventoryCompl 4 }
lumInventoryBasicComplV5 MODULE-COMPLIANCE
STATUS deprecated
DESCRIPTION
"Basic implementation requirements for the
inventory MIB v5."
MODULE
MANDATORY-GROUPS {
invGeneralGroupV2,
invPhysGroupV3,
invEventGroup,
invEntityGroup,
invRelationGroup }
::= { lumInventoryCompl 5 }
lumInventoryBasicComplV6 MODULE-COMPLIANCE
STATUS deprecated
DESCRIPTION
"Basic implementation requirements for the
inventory MIB v6."
MODULE
MANDATORY-GROUPS {
invGeneralGroupV3,
invPhysGroupV3,
invEventGroup,
invEntityGroup,
invRelationGroup }
::= { lumInventoryCompl 6 }
lumInventoryBasicComplV7 MODULE-COMPLIANCE
STATUS deprecated
DESCRIPTION
"Basic implementation requirements for the
inventory MIB v7."
MODULE
MANDATORY-GROUPS {
invGeneralGroupV4,
invPhysGroupV3,
invEventGroup,
invEntityGroup,
invRelationGroup }
::= { lumInventoryCompl 7 }
lumInventoryBasicComplV8 MODULE-COMPLIANCE
STATUS deprecated
DESCRIPTION
"Basic implementation requirements for the
inventory MIB v8."
MODULE
MANDATORY-GROUPS {
invGeneralGroupV4,
invPhysGroupV4,
invEventGroup,
invEntityGroup,
invRelationGroup }
::= { lumInventoryCompl 8 }
lumInventoryBasicComplV9 MODULE-COMPLIANCE
STATUS deprecated
DESCRIPTION
"Basic implementation requirements for the
inventory MIB v9."
MODULE
MANDATORY-GROUPS {
invGeneralGroupV4,
invPhysGroupV5,
invEventGroup,
invEntityGroup,
invRelationGroup }
::= { lumInventoryCompl 9 }
lumInventoryBasicComplV10 MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"Basic implementation requirements for the
inventory MIB v10. (R28.0)"
MODULE
MANDATORY-GROUPS {
invGeneralGroupV5,
invPhysGroupV5,
invEventGroup,
invEntityGroup,
invRelationGroup,
invInsRemGroup }
::= { lumInventoryCompl 10 }
-- ----------------------------------------------------
-- Minimal object and event groups
-- ----------------------------------------------------
inventoryGeneralMinimalGroupV1 OBJECT-GROUP
OBJECTS {
invGeneralLastChangeTime,
invGeneralConfigLastChangeTime,
invGeneralPhysTableSize,
invGeneralEntityTableSize,
invGeneralRelationTableSize }
STATUS current
DESCRIPTION
"The minimal general inventory objects."
::= { lumInventoryMinimalGroups 1 }
-- ----------------------------------------------------
-- Minimal Compliance
-- ----------------------------------------------------
lumInventoryMinimalComplV1 MODULE-COMPLIANCE
STATUS deprecated
DESCRIPTION
"Minimal implementation requirements for the inventory MIB v1."
MODULE
MANDATORY-GROUPS {
inventoryGeneralMinimalGroupV1,
invPhysGroupV3,
invEntityGroup,
invRelationGroup }
::= { lumInventoryMinimalCompl 1 }
lumInventoryMinimalComplV2 MODULE-COMPLIANCE
STATUS deprecated
DESCRIPTION
"Minimal implementation requirements for the inventory MIB v1."
MODULE
MANDATORY-GROUPS {
inventoryGeneralMinimalGroupV1,
invPhysGroupV4,
invEntityGroup,
invRelationGroup }
::= { lumInventoryMinimalCompl 2 }
lumInventoryMinimalComplV3 MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"Minimal implementation requirements for the inventory MIB v2."
MODULE
MANDATORY-GROUPS {
inventoryGeneralMinimalGroupV1,
invPhysGroupV5,
invEntityGroup,
invRelationGroup }
::= { lumInventoryMinimalCompl 3 }
END
|