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
|
PT-MONITOR-MIB DEFINITIONS::=BEGIN
IMPORTS
MODULE-IDENTITY,OBJECT-TYPE,Integer32
FROM SNMPv2-SMI
pt FROM PT-MIB
MODULE-COMPLIANCE,
OBJECT-GROUP FROM SNMPv2-CONF
TEXTUAL-CONVENTION FROM SNMPv2-TC;
ptMonitor MODULE-IDENTITY
LAST-UPDATED "201603091230Z"
ORGANIZATION "Ericsson"
CONTACT-INFO
"Anders Ekvall
Postal: Ericsson AB,
E-Mail: anders.ekvall@ericsson.com"
DESCRIPTION
"This is the MIB of PT specifics"
REVISION "201603091230Z"
DESCRIPTION
"Validated."
REVISION "201602101230Z"
DESCRIPTION
"The initial version of this MIB module."
::= { pt 4 }
ptMonitorConformance OBJECT IDENTIFIER ::= { ptMonitor 2 }
--
-- The textual conventions we define and use in this MIB.
--
HealthStatusTC ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"hw status."
SYNTAX INTEGER {
eOK (1),
eNOTOK (2),
eUNKNOWN (3)
}
---
---The HW Diagnostic Group definition
---
---
---hw diagnostic table definition
---
hwDiagnosticsTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwDiagnosticsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of interface entries. The number of entries is
given by the value of ExampleNumber."
::= { ptMonitor 1 }
hwDiagnosticsEntry OBJECT-TYPE
SYNTAX HwDiagnosticsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing management information applicable to a
particular interface."
INDEX { hwIndex }
::= { hwDiagnosticsTable 1 }
HwDiagnosticsEntry ::=
SEQUENCE {
hwIndex Integer32,
temperatureStatus OCTET STRING,
healthStatus HealthStatusTC
}
hwIndex OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"a unique index for hw that we diagnose, here it is the slotId"
::= { hwDiagnosticsEntry 1 }
temperatureStatus OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..80))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The temperature in degree Celsius."
::= { hwDiagnosticsEntry 2 }
healthStatus OBJECT-TYPE
SYNTAX HealthStatusTC
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is the hw running status, it has the following value:
eOK (1),
eNOT_OK (2),
eUNKNOWN (3)
"
::= { hwDiagnosticsEntry 3 }
--
-- Conformance
--
ptMonitorCompliances OBJECT IDENTIFIER ::= { ptMonitorConformance 1 }
ptMonitorGroups OBJECT IDENTIFIER ::= { ptMonitorConformance 2 }
ptMonitorFullCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for SNMP entities which implement everything."
MODULE -- This Module
MANDATORY-GROUPS { ptMonitorCompleteGroup}
::= { ptMonitorCompliances 1 }
ptMonitorCompleteGroup OBJECT-GROUP
OBJECTS
{
temperatureStatus,
healthStatus
}
STATUS current
DESCRIPTION
"A collection of all current objects in this MIB module."
::= { ptMonitorGroups 1 }
END
|