summaryrefslogtreecommitdiff
path: root/MIBS/dpstelecom/DPS-MIB-CG-V1
blob: c6257c65dbb0eed37e76a1024f4f0b28d03457ae (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
--  Title:    DPS_CG.MIB
--  Version:  v1.0 for SNMPv2c
--
--  Copyright @ 2013 DPS Inc. All Rights Reserved
--
--  This MIB defines objects to support Cellguard Battery System Monitoring on DPS Products.
--
--

DPS-MIB-CG-V1 DEFINITIONS ::= BEGIN

IMPORTS
	DisplayString
		FROM SNMPv2-TC
	enterprises
		FROM RFC1155-SMI
	MODULE-IDENTITY,
	NOTIFICATION-TYPE,	
	OBJECT-TYPE,
	Integer32
		FROM SNMPv2-SMI;
		
dpsCellguard	MODULE-IDENTITY
	LAST-UPDATED	"201310181200Z"  --October 18th, 2013 12:00 PDT
	ORGANIZATION	"DPS Telecom"
	CONTACT-INFO	"DPS Support Team 
			Web 	http://dpstele.com/support
			E-Mail 	support@dpstele.com
			Phone	(559)454-1600"
	DESCRIPTION	"MIB for Cellguard BSM support on DPS Products"

	REVISION	"201310181200Z"  --October 18th, 2013 12:00 PDT
	DESCRIPTION	"First Revision (CTS)"

	::= { dpsInc 2 }

	dpsInc OBJECT IDENTIFIER ::= {enterprises  2682}
	
--Table for accessing string measurement values

cgStringChannels OBJECT-TYPE
	SYNTAX  SEQUENCE OF CgStringEntry
	MAX-ACCESS  not-accessible
	STATUS  current
	DESCRIPTION "Holds information on Cellguard battery strings."
	::= {dpsCellguard 1}

cgStringEntry OBJECT-TYPE
	SYNTAX  CgStringEntry
	MAX-ACCESS  not-accessible
	STATUS  current
	DESCRIPTION "Information about a particular string."
	INDEX   {cgStrNumber}
	::= {cgStringChannels 1}
	
CgStringEntry ::= SEQUENCE	{	cgStrNumber	Integer32,
					cgStrEnabled	INTEGER,
					cgStrStatus	DisplayString,
					cgStrVoltage		DisplayString,
					cgStrCurrent	DisplayString,
					cgStrTempA DisplayString,
					cgStrTempB DisplayString,
					cgStrConductance DisplayString,
					cgStrLife DisplayString
				}

cgStrNumber OBJECT-TYPE
	SYNTAX  Integer32 (1..6)
	MAX-ACCESS  read-only
	STATUS  current
	DESCRIPTION "String number (1-6)"
	::= {cgStringEntry 1}	

cgStrEnabled OBJECT-TYPE
	SYNTAX  INTEGER	{	disabled	(0),
				enabled		(1)
			}		
	MAX-ACCESS  read-only
	STATUS  current
	DESCRIPTION "Enable status of string"
	::= {cgStringEntry 2}	
	
cgStrStatus OBJECT-TYPE
	SYNTAX  DisplayString 
	MAX-ACCESS  read-only
	STATUS  current
	DESCRIPTION "The alarm status of the string."
	::= {cgStringEntry 3}	
	
cgStrVoltage OBJECT-TYPE
	SYNTAX  DisplayString 
	MAX-ACCESS  read-only
	STATUS  current
	DESCRIPTION "The voltage measurement of the string."
	::= {cgStringEntry 4}	
	
cgStrCurrent OBJECT-TYPE
	SYNTAX  DisplayString 
	MAX-ACCESS  read-only
	STATUS  current
	DESCRIPTION "The current measurement of the string."
	::= {cgStringEntry 5}

cgStrTempA OBJECT-TYPE
	SYNTAX  DisplayString 
	MAX-ACCESS  read-only
	STATUS  current
	DESCRIPTION "Temperature sensor A measurement."
	::= {cgStringEntry 6}	

cgStrTempB OBJECT-TYPE
	SYNTAX  DisplayString 
	MAX-ACCESS  read-only
	STATUS  current
	DESCRIPTION "Temperature sensor B measurement."
	::= {cgStringEntry 7}		
	
cgStrConductance OBJECT-TYPE
	SYNTAX  DisplayString 
	MAX-ACCESS  read-only
	STATUS  current
	DESCRIPTION "The average conductance measurement of the string."
	::= {cgStringEntry 8}

cgStrLife OBJECT-TYPE
	SYNTAX  DisplayString 
	MAX-ACCESS  read-only
	STATUS  current
	DESCRIPTION "The average battery capacity of the string."
	::= {cgStringEntry 9}		

	
--Table for accessing battery measurement values

cgBatteryChannels OBJECT-TYPE
	SYNTAX  SEQUENCE OF CgBatteryEntry
	MAX-ACCESS  not-accessible
	STATUS  current
	DESCRIPTION "Holds information on batteries."
	::= {dpsCellguard 2}

cgBatteryEntry OBJECT-TYPE
	SYNTAX  CgBatteryEntry
	MAX-ACCESS  not-accessible
	STATUS  current
	DESCRIPTION "Information about a particular battery."
	INDEX   {cgStringNumber, cgBatteryNumber}
	::= {cgBatteryChannels 1}
	
CgBatteryEntry ::= SEQUENCE	{	cgStringNumber INTEGER,
					cgBatteryNumber	INTEGER,
					cgStatus	DisplayString,
					cgVoltage		DisplayString,
					cgTemperature DisplayString,
					cgStrapResist DisplayString,
					cgConductance DisplayString,
					cgBatteryLife DisplayString
				}

cgStringNumber OBJECT-TYPE
	SYNTAX  INTEGER (1..6)
	MAX-ACCESS  read-only
	STATUS  current
	DESCRIPTION "String number (1-6)"
	::= {cgBatteryEntry 1}	
	
cgBatteryNumber OBJECT-TYPE
	SYNTAX  INTEGER (1..240)
	MAX-ACCESS  read-only
	STATUS  current
	DESCRIPTION "Battery number (1-240)"
	::= {cgBatteryEntry 2}					

cgStatus OBJECT-TYPE
	SYNTAX  DisplayString 
	MAX-ACCESS  read-only
	STATUS  current
	DESCRIPTION "The alarm status of the battery."
	::= {cgBatteryEntry 3}	

cgVoltage OBJECT-TYPE
	SYNTAX  DisplayString 
	MAX-ACCESS  read-only
	STATUS  current
	DESCRIPTION "The voltage measurement of the battery."
	::= {cgBatteryEntry 4}	
	
cgTemperature OBJECT-TYPE
	SYNTAX  DisplayString 
	MAX-ACCESS  read-only
	STATUS  current
	DESCRIPTION "The temperature measurement of the battery."
	::= {cgBatteryEntry 5}		

cgStrapResist OBJECT-TYPE
	SYNTAX  DisplayString 
	MAX-ACCESS  read-only
	STATUS  current
	DESCRIPTION "The strap resistance measurement."
	::= {cgBatteryEntry 6}	
	
cgConductance OBJECT-TYPE
	SYNTAX  DisplayString 
	MAX-ACCESS  read-only
	STATUS  current
	DESCRIPTION "The conductance measurement of the battery."
	::= {cgBatteryEntry 7}	
	
cgBatteryLife OBJECT-TYPE
	SYNTAX  DisplayString 
	MAX-ACCESS  read-only
	STATUS  current
	DESCRIPTION "The capacity of the battery."
	::= {cgBatteryEntry 8}	
	
-- TRAP definitions
		
cellguardTrap OBJECT IDENTIFIER ::= {dpsCellguard 8000}

cgAlarmTrap NOTIFICATION-TYPE
    STATUS  current
    DESCRIPTION
            "Alarm info from Cellguard system."
    ::= { cellguardTrap 1 }
	
cgTrapType OBJECT-TYPE
	SYNTAX INTEGER {	unknown	(0),
				voltage (1),
				current (2),
				temperature (3),
				strapResistance (4),
				life (5),
				conductance (6)
			}	
	MAX-ACCESS  not-accessible
    STATUS  current
    DESCRIPTION
            "Trap threshold type."
    ::= { cellguardTrap 2 }
	
cgTrapStatus OBJECT-TYPE
	SYNTAX INTEGER {	noAlarm	(0),
				minorUnder		(1),
				minorOver (2),
				majorUnder (3),
				majorOver (4),
				notDetected (5)
			}		
	MAX-ACCESS  not-accessible
    STATUS  current
    DESCRIPTION
            "Trap threshold status."
    ::= { cellguardTrap 3 }
	
cgTrapValue OBJECT-TYPE
	SYNTAX  DisplayString 
	MAX-ACCESS  not-accessible
	STATUS  current
	DESCRIPTION "Trap most recent measurement reading."
	::= {cellguardTrap 4}	
	
END