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
|
HP-ENTITY-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE
FROM SNMPv2-SMI
TDomain, TAddress, DisplayString, TEXTUAL-CONVENTION,
AutonomousType, RowPointer, TimeStamp
FROM SNMPv2-TC
MODULE-COMPLIANCE, OBJECT-GROUP, NOTIFICATION-GROUP
FROM SNMPv2-CONF
icf
FROM HP-ICF-OID;
hpEntityMIB MODULE-IDENTITY
LAST-UPDATED "200011030636Z" -- November 3, 2000
ORGANIZATION "Hewlett Packard Company,
Network Infrastructure Solutions"
CONTACT-INFO
"Hewlett Packard Company
8000 Foothills Blvd.
Roseville, CA 95747"
DESCRIPTION
"The MIB module for representing multiple logical
entities supported by a single SNMP agent.
This is an exact copy of draft 7 of the IETF
Entity MIB. The only changes are to actually
assign an OID to it, and add hp to the beginning
of all the labels. This was done only because
a product that uses this MIB is scheduled to ship
before the IETF MIB will be published as an RFC,
and we needed to give it an OID.
It is expected that this MIB module will only be
supported until the IETF actually publishes the
official version as an RFC. At that time, we will
support the IETF version of this MIB."
REVISION "200011030636Z" -- November 3, 2000
DESCRIPTION
"Update division name. Since this MIB was only
supported on a single product, and all subsequent
products now support the IETF Entity MIB, mark the
entire MIB as obsolete."
REVISION "9703060326Z" -- March 6, 1997
DESCRIPTION
"Uncommented NOTIFICATION-GROUP, and add import."
REVISION "9609062135Z" -- September 6, 1996
DESCRIPTION
"Initial (and probably only) revision of this MIB module.
Released with the AdvanceStack 10BaseT Switching Hubs."
::= { icf 9 }
hpEntityMIBObjects OBJECT IDENTIFIER ::= { hpEntityMIB 1 }
-- MIB contains four groups
hpEntityPhysical OBJECT IDENTIFIER ::= { hpEntityMIBObjects 1 }
hpEntityLogical OBJECT IDENTIFIER ::= { hpEntityMIBObjects 2 }
hpEntityMapping OBJECT IDENTIFIER ::= { hpEntityMIBObjects 3 }
hpEntityGeneral OBJECT IDENTIFIER ::= { hpEntityMIBObjects 4 }
-- Textual Conventions
PhysicalIndex ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"An arbitrary value which uniquely identifies the physical
entity. The value is a small positive integer; index values
for different physical entities are not necessarily
contiguous."
SYNTAX INTEGER (1..2147483647)
PhysicalClass ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"An enumerated value which provides an indication of the
general hardware type of a particular physical entity."
SYNTAX INTEGER {
other(1),
unknown(2),
chassis(3),
backplane(4),
container(5), -- e.g. slot or daughter-card holder
powerSupply(6),
fan(7),
sensor(8),
module(9), -- e.g. plug-in card or daughter-card
port(10)
}
-- The Physical Entity Table
hpEntPhysicalTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpEntPhysicalEntry
MAX-ACCESS not-accessible
STATUS obsolete
DESCRIPTION
"This table contains one row per physical entity. There is
always at least one row for an 'overall' physical entity."
::= { hpEntityPhysical 1 }
hpEntPhysicalEntry OBJECT-TYPE
SYNTAX HpEntPhysicalEntry
MAX-ACCESS not-accessible
STATUS obsolete
DESCRIPTION
"Information about a particular physical entity.
Each entry provides objects (hpEntPhysicalDescr,
hpEntPhysicalVendorType, and hpEntPhysicalClass) to help an NMS
identify and characterize the entry, and objects
(hpEntPhysicalContainedIn and hpEntPhysicalParentRelPos) to help
an NMS relate the particular entry to other entries in this
table."
INDEX { hpEntPhysicalIndex }
::= { hpEntPhysicalTable 1 }
HpEntPhysicalEntry ::= SEQUENCE {
hpEntPhysicalIndex PhysicalIndex,
hpEntPhysicalDescr DisplayString,
hpEntPhysicalVendorType AutonomousType,
hpEntPhysicalContainedIn INTEGER,
hpEntPhysicalClass PhysicalClass,
hpEntPhysicalParentRelPos INTEGER,
hpEntPhysicalName DisplayString
}
hpEntPhysicalIndex OBJECT-TYPE
SYNTAX PhysicalIndex
MAX-ACCESS not-accessible
STATUS obsolete
DESCRIPTION
"The index for this entry."
::= { hpEntPhysicalEntry 1 }
hpEntPhysicalDescr OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"A textual description of physical entity. This object
should contain a string which identifies the manufacturer's
name for the physical entity, and should be set to a
distinct value for each version or model of the physical
entity. "
::= { hpEntPhysicalEntry 2 }
hpEntPhysicalVendorType OBJECT-TYPE
SYNTAX AutonomousType
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"An indication of the vendor-specific hardware type of the
physical entity. Note that this is different from the
definition of MIB-II's 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
hpEntPhysicalClass 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."
::= { hpEntPhysicalEntry 3 }
hpEntPhysicalContainedIn OBJECT-TYPE
SYNTAX INTEGER (0..2147483647)
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"The value of hpEntPhysicalIndex 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."
::= { hpEntPhysicalEntry 4 }
hpEntPhysicalClass OBJECT-TYPE
SYNTAX PhysicalClass
MAX-ACCESS read-only
STATUS obsolete
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."
::= { hpEntPhysicalEntry 5 }
hpEntPhysicalParentRelPos OBJECT-TYPE
SYNTAX INTEGER (-1..2147483647)
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"An indication of the relative position of this 'child'
component among all its 'sibling' components. Sibling
components are defined as hpEntPhysicalEntries which share the
same instance values of each of the hpEntPhysicalContainedIn
and hpEntPhysicalClass objects.
An NMS can use this object to identify the relative ordering
for all sibling components of a particular parent
(identified by the hpEntPhysicalContainedIn instance in each
sibling entry).
This value should match any external labeling of the
physical component if possible. For example, for a module
labeled as 'card #3', hpEntPhysicalParentRelPos should have
the value '3'.
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
hpEntPhysicalContainedIn 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
hpEntPhysicalParentRelPos 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."
::= { hpEntPhysicalEntry 6 }
hpEntPhysicalName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS obsolete
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 device's `console'. 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 hpEntPhysicalName 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."
::= { hpEntPhysicalEntry 7 }
-- The Logical Entity Table
hpEntLogicalTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpEntLogicalEntry
MAX-ACCESS not-accessible
STATUS obsolete
DESCRIPTION
"This table contains one row per logical entity. At least
one entry must exist."
::= { hpEntityLogical 1 }
hpEntLogicalEntry OBJECT-TYPE
SYNTAX HpEntLogicalEntry
MAX-ACCESS not-accessible
STATUS obsolete
DESCRIPTION
"Information about a particular logical entity. Entities
may be managed by this agent or other SNMP agents (possibly)
in the same chassis."
INDEX { hpEntLogicalIndex }
::= { hpEntLogicalTable 1 }
HpEntLogicalEntry ::= SEQUENCE {
hpEntLogicalIndex INTEGER,
hpEntLogicalDescr DisplayString,
hpEntLogicalType AutonomousType,
hpEntLogicalCommunity OCTET STRING,
hpEntLogicalTAddress TAddress,
hpEntLogicalTDomain TDomain
}
hpEntLogicalIndex OBJECT-TYPE
SYNTAX INTEGER (1..2147483647)
MAX-ACCESS not-accessible
STATUS obsolete
DESCRIPTION
"The value of this object uniquely identifies the logical
entity. The value is a small positive integer; index values
for different logical entities are are not necessarily
contiguous."
::= { hpEntLogicalEntry 1 }
hpEntLogicalDescr OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"A textual description of the logical entity. This object
should contain a string which identifies the manufacturer's
name for the logical entity, and should be set to a distinct
value for each version of the logical entity. "
::= { hpEntLogicalEntry 2 }
hpEntLogicalType OBJECT-TYPE
SYNTAX AutonomousType
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"An indication of the type of logical entity. This will
typically be the OBJECT IDENTIFIER name of the node in the
SMI's naming hierarchy which represents the major MIB
module, or the majority of the MIB modules, supported by the
logical entity. For example:
a logical entity of a regular host/router -> mib-2
a logical entity of a 802.1d bridge -> dot1dBridge
a logical entity of a 802.3 repeater -> snmpDot3RptrMgmt
If an appropriate node in the SMI's naming hierarchy cannot
be identified, the value 'mib-2' should be used."
::= { hpEntLogicalEntry 3 }
hpEntLogicalCommunity OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..255))
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"An SNMPv1 or SNMPv2C community-string which can be used to
access detailed management information for this logical
entity. The agent should allow read access with this
community string (to an appropriate subset of all managed
objects) and may also choose to return a community string
based on the privileges of the request used to read this
object. Note that an agent may choose to return a community
string with read-only privileges, even if this object is
accessed with a read-write community string. However, the
agent must take care not to return a community string which
allows more privileges than the community string used to
access this object.
A compliant SNMP agent may wish to conserve naming scopes by
representing multiple logical entities in a single 'main'
naming scope. This is possible when the logical entities
represented by the same value of hpEntLogicalCommunity have no
object instances in common. For example, 'bridge1' and
'repeater1' may be part of the main naming scope, but at
least one additional community string is needed to represent
'bridge2' and 'repeater2'.
Logical entities 'bridge1' and 'repeater1' would be
represented by sysOREntries associated with the 'main'
naming scope.
For agents not accessible via SNMPv1 or SNMPv2C, the value
of this object is the empty-string."
::= { hpEntLogicalEntry 4 }
hpEntLogicalTAddress OBJECT-TYPE
SYNTAX TAddress
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"The transport service address by which the logical entity
receives network management traffic, formatted according to
the corresponding value of hpEntLogicalTDomain.
For snmpUDPDomain, a TAddress is 6 octets long, the initial
4 octets containing the IP-address in network-byte order and
the last 2 containing the UDP port in network-byte order.
Consult 'Transport Mappings for Version 2 of the Simple
Network Management Protocol' (RFC 1906 [8]) for further
information on snmpUDPDomain."
::= { hpEntLogicalEntry 5 }
hpEntLogicalTDomain OBJECT-TYPE
SYNTAX TDomain
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"Indicates the kind of transport service by which the
logical entity receives network management traffic.
Possible values for this object are presently found in the
Transport Mappings for SNMPv2 document (RFC 1906 [8])."
::= { hpEntLogicalEntry 6 }
hpEntLPMappingTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpEntLPMappingEntry
MAX-ACCESS not-accessible
STATUS obsolete
DESCRIPTION
"This table contains zero or more rows of logical entity to
physical equipment associations. For each logical entity
known by this agent, there are zero or more mappings to the
physical resources which are used to realize that logical
entity.
An agent should limit the number and nature of entries in
this table such that only meaningful and non-redundant
information is returned. For example, in a system which
contains a single power supply, mappings between logical
entities and the power supply are not useful and should not
be included.
Also, only the most appropriate physical component which is
closest to the root of a particular containment tree should
be identified in an hpEntLPMapping entry.
For example, suppose a bridge is realized on a particular
module, and all ports on that module are ports on this
bridge. A mapping between the bridge and the module would be
useful, but additional mappings between the bridge and each
of the ports on that module would be redundant (since the
hpEntPhysicalContainedIn hierarchy can provide the same
information). If, on the other hand, more than one bridge
was utilizing ports on this module, then mappings between
each bridge and the ports it used would be appropriate.
Also, in the case of a single backplane repeater, a mapping
for the backplane to the single repeater entity is not
necessary."
::= { hpEntityMapping 1 }
hpEntLPMappingEntry OBJECT-TYPE
SYNTAX HpEntLPMappingEntry
MAX-ACCESS not-accessible
STATUS obsolete
DESCRIPTION
"Information about a particular logical entity to physical
equipment association. Note that the nature of the
association is not specifically identified in this entry. It
is expected that sufficient information exists in the MIBs
used to manage a particular logical entity to infer how
physical component information is utilized."
INDEX { hpEntLogicalIndex, hpEntLPPhysicalIndex }
::= { hpEntLPMappingTable 1 }
HpEntLPMappingEntry ::= SEQUENCE {
hpEntLPPhysicalIndex PhysicalIndex
}
hpEntLPPhysicalIndex OBJECT-TYPE
SYNTAX PhysicalIndex
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"The value of this object identifies the index value of a
particular hpEntPhysicalEntry associated with the indicated
hpEntLogicalEntity."
::= { hpEntLPMappingEntry 1 }
-- logical entity/component to alias table
hpEntAliasMappingTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpEntAliasMappingEntry
MAX-ACCESS not-accessible
STATUS obsolete
DESCRIPTION
"This table contains zero or more rows, representing
mappings of logical entity and physical component to
external MIB identifiers. Each physical port in the system
may be associated with a mapping to an external identifier,
which itself is associated with a particular logical
entity's naming scope. A 'wildcard' mechanism is provided to
indicate that an identifier is associated with more than one
logical entity."
::= { hpEntityMapping 2 }
hpEntAliasMappingEntry OBJECT-TYPE
SYNTAX HpEntAliasMappingEntry
MAX-ACCESS not-accessible
STATUS obsolete
DESCRIPTION
"Information about a particular physical equipment, logical
entity to external identifier binding. Each logical
entity/physical component pair may be associated with one
alias mapping. The logical entity index may also be used as
a 'wildcard' (refer to the hpEntAliasLogicalIndexOrZero object
DESCRIPTION clause for details.)
Note that only hpEntPhysicalIndex values which represent
physical ports (i.e. associated hpEntPhysicalClass value is
'port(10)') are permitted to exist in this table."
INDEX { hpEntPhysicalIndex, hpEntAliasLogicalIndexOrZero }
::= { hpEntAliasMappingTable 1 }
HpEntAliasMappingEntry ::= SEQUENCE {
hpEntAliasLogicalIndexOrZero INTEGER,
hpEntAliasMappingIdentifier RowPointer
}
hpEntAliasLogicalIndexOrZero OBJECT-TYPE
SYNTAX INTEGER (0..2147483647)
MAX-ACCESS not-accessible
STATUS obsolete
DESCRIPTION
"The value of this object uniquely identifies the logical
entity which defines the naming scope for the associated
instance of the 'hpEntAliasMappingIdentifier' object.
If this object has a non-zero value, then it identifies the
logical entity named by the same value of hpEntLogicalIndex.
If this object has a value of zero, then the mapping between
the physical component and the alias identifier for this
hpEntAliasMapping entry is associated with all unspecified
logical entities. That is, a value of zero (the default
mapping) identifies any logical entity which does not have
an explicit entry in this table for a particular
hpEntPhysicalIndex/hpEntAliasMappingIdentifier pair.
For example, to indicate that a particular interface (e.g.
physical component 33) is identified by the same value of
ifIndex for all logical entities, the following instance
might exist:
hpEntAliasMappingIdentifier.33.0 = ifIndex.5
In the event an hpEntPhysicalEntry is associated differently
for some logical entities, additional hpEntAliasMapping
entries may exist, e.g.:
hpEntAliasMappingIdentifier.33.0 = ifIndex.6
hpEntAliasMappingIdentifier.33.4 = ifIndex.1
hpEntAliasMappingIdentifier.33.5 = ifIndex.1
hpEntAliasMappingIdentifier.33.10 = ifIndex.12
Note that entries with non-zero hpEntAliasLogicalIndexOrZero
index values have precedence over any zero-indexed entry. In
this example, all logical entities except 4, 5, and 10,
associate physical entity 33 with ifIndex.6."
::= { hpEntAliasMappingEntry 1 }
hpEntAliasMappingIdentifier OBJECT-TYPE
SYNTAX RowPointer
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"The value of this object identifies a particular conceptual
row associated with the indicated hpEntPhysicalIndex and
hpEntLogicalIndex pair.
Since only physical ports are modeled in this table, only
entries which represent interfaces or ports are allowed. If
an ifEntry exists on behalf of a particular physical port,
then this object should identify the associated 'ifEntry'.
For repeater ports, the appropriate row in the
'rptrPortGroupTable' should be identified instead.
For example, suppose a physical port was represented by
hpEntPhysicalEntry.3, hpEntLogicalEntry.15 existed for a
repeater, and hpEntLogicalEntry.22 existed for a bridge. Then
there might be two related instances of
hpEntAliasMappingIdentifier:
hpEntAliasMappingIdentifier.3.15 == rptrPortGroupIndex.5.2
hpEntAliasMappingIdentifier.3.22 == ifIndex.17
It is possible that other mappings (besides interfaces and
repeater ports) may be defined in the future, as required.
Bridge ports are identified by examining the Bridge MIB and
appropriate ifEntries associated with each 'dot1dBasePort',
and are thus not represented in this table."
::= { hpEntAliasMappingEntry 2 }
-- physical mapping table
hpEntPhysicalContainsTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpEntPhysicalContainsEntry
MAX-ACCESS not-accessible
STATUS obsolete
DESCRIPTION
"A table which exposes the container/containee relationships
between physical entities. This table provides equivalent
information found by constructing the virtual containment
tree for a given hpEntPhysicalTable but in a more direct
format."
::= { hpEntityMapping 3 }
hpEntPhysicalContainsEntry OBJECT-TYPE
SYNTAX HpEntPhysicalContainsEntry
MAX-ACCESS not-accessible
STATUS obsolete
DESCRIPTION
"A single container/containee relationship."
INDEX { hpEntPhysicalIndex, hpEntPhysicalChildIndex }
::= { hpEntPhysicalContainsTable 1 }
HpEntPhysicalContainsEntry ::= SEQUENCE {
hpEntPhysicalChildIndex PhysicalIndex
}
hpEntPhysicalChildIndex OBJECT-TYPE
SYNTAX PhysicalIndex
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"The value of hpEntPhysicalIndex for the contained physical
entity."
::= { hpEntPhysicalContainsEntry 1 }
-- last change time stamp for the whole MIB
hpEntLastChangeTime OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"The value of sysUpTime at the time any of these events
occur:
* a conceptual row is created or deleted in any
of these tables:
- hpEntPhysicalTable
- hpEntLogicalTable
- hpEntLPMappingTable
- hpEntAliasMappingTable
- hpEntPhysicalContainsTable
* any instance in the following list of objects
changes value:
- hpEntPhysicalDescr
- hpEntPhysicalVendorType
- hpEntPhysicalContainedIn
- hpEntPhysicalClass
- hpEntPhysicalParentRelPos
- hpEntPhysicalName
- hpEntLogicalDescr
- hpEntLogicalType
- hpEntLogicalCommunity
- hpEntLogicalTAddress
- hpEntLogicalTDomain
- hpEntAliasMappingIdentifier "
::= { hpEntityGeneral 1 }
-- Entity MIB Trap Definitions
hpEntityMIBTraps OBJECT IDENTIFIER ::= { hpEntityMIB 2 }
hpEntityMIBTrapPrefix OBJECT IDENTIFIER ::= { hpEntityMIBTraps 0 }
hpEntConfigChange NOTIFICATION-TYPE
STATUS obsolete
DESCRIPTION
"An hpEntConfigChange trap is sent when the value of
hpEntLastChangeTime changes. It can be utilized by an NMS to
trigger logical/physical entity table maintenance polls.
An agent must not generate more than one hpEntConfigChange
'trap-event' in a five second period, where a 'trap-event'
is the transmission of a single trap PDU to a list of trap
destinations. If additional configuration changes occur
within the five second 'throttling' period, then these
trap-events should be suppressed by the agent. An NMS should
periodically check the value of hpEntLastChangeTime to detect
any missed hpEntConfigChange trap-events, e.g. due to
throttling or transmission loss."
::= { hpEntityMIBTrapPrefix 1 }
-- conformance information
hpEntityConformance OBJECT IDENTIFIER ::= { hpEntityMIB 3 }
hpEntityCompliances OBJECT IDENTIFIER ::= { hpEntityConformance 1 }
hpEntityGroups OBJECT IDENTIFIER ::= { hpEntityConformance 2 }
-- compliance statements
hpEntityCompliance MODULE-COMPLIANCE
STATUS obsolete
DESCRIPTION
"The compliance statement for SNMP entities which implement
the Entity MIB."
MODULE -- this module
MANDATORY-GROUPS { hpEntityPhysicalGroup,
hpEntityLogicalGroup,
hpEntityMappingGroup,
hpEntityGeneralGroup,
hpEntityNotificationsGroup }
::= { hpEntityCompliances 1 }
-- MIB groupings
hpEntityPhysicalGroup OBJECT-GROUP
OBJECTS {
hpEntPhysicalDescr,
hpEntPhysicalVendorType,
hpEntPhysicalContainedIn,
hpEntPhysicalClass,
hpEntPhysicalParentRelPos,
hpEntPhysicalName
}
STATUS obsolete
DESCRIPTION
"The collection of objects which are used to represent
physical system components, for which a single agent
provides management information."
::= { hpEntityGroups 1 }
hpEntityLogicalGroup OBJECT-GROUP
OBJECTS {
hpEntLogicalDescr,
hpEntLogicalType,
hpEntLogicalCommunity,
hpEntLogicalTAddress,
hpEntLogicalTDomain
}
STATUS obsolete
DESCRIPTION
"The collection of objects which are used to represent the
list of logical entities for which a single agent provides
management information."
::= { hpEntityGroups 2 }
hpEntityMappingGroup OBJECT-GROUP
OBJECTS {
hpEntLPPhysicalIndex,
hpEntAliasMappingIdentifier,
hpEntPhysicalChildIndex
}
STATUS obsolete
DESCRIPTION
"The collection of objects which are used to represent the
associations between multiple logical entities, physical
components, interfaces, and port identifiers for which a
single agent provides management information."
::= { hpEntityGroups 3 }
hpEntityGeneralGroup OBJECT-GROUP
OBJECTS {
hpEntLastChangeTime
}
STATUS obsolete
DESCRIPTION
"The collection of objects which are used to represent
general entity information for which a single agent provides
management information."
::= { hpEntityGroups 4 }
hpEntityNotificationsGroup NOTIFICATION-GROUP
NOTIFICATIONS { hpEntConfigChange }
STATUS obsolete
DESCRIPTION
"The collection of notifications used to indicate Entity MIB
data consistency and general status information."
::= { hpEntityGroups 5 }
END
|