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
|
RAPID-HA-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, Unsigned32, Integer32, Counter64, Gauge32,
OBJECT-IDENTITY, enterprises,
IpAddress, TimeTicks FROM SNMPv2-SMI
DateAndTime FROM SNMPv2-TC
rapidstream FROM RAPID-MIB;
rsInfoModule MODULE-IDENTITY
LAST-UPDATED "0211011200Z"
ORGANIZATION "WatchGuard Technologies, Inc."
CONTACT-INFO
" Ella Yu
WatchGuard Technologies, Inc.
1841 Zanker Road
San Jose, CA 95112
USA
408-519-4888
ella.yu@watchguard.com "
DESCRIPTION
"The MIB module describes general information
of RapidStream system. Mainly, the information
obtained from this MIB is used by rsInfoSystemMIB,
rsClientMIB, rsSystemStatisticsMIB, rsIpsecTunnelMIB,
rsHAMIB."
REVISION "200211011200Z"
DESCRIPTION
"Initial revision."
::= { rapidstream 6 }
rsHAMIB OBJECT-IDENTITY
STATUS current
DESCRIPTION
"This is the base object identifier for all HA related
branches."
::= { rsInfoModule 6 }
rsHALocal OBJECT-IDENTITY
STATUS current
DESCRIPTION
"This is the base object identifier for all objects which are
belong to local appliance."
::= { rsHAMIB 1 }
rsHAPeer OBJECT-IDENTITY
STATUS current
DESCRIPTION
"This is the base object identifier for all objects which are
belong to peer appliance."
::= { rsHAMIB 2 }
rsHAStatus OBJECT-TYPE
SYNTAX INTEGER {
disabled(0),
unknown(1),
as-primary-active(2),
as-secondary-active(3),
aa-primary-ative(4),
aa-secondary-active(5),
aa-primary-takeover(6),
aa-secondary-takeover(7),
standby(8),
admin(9),
failed(10),
unavailable(11)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates current status of local appliance.
disabled: The local appliance of HA system is not enabled.
unknown: The local appliance of HA system is in initialization
as-primary-active: The local appliance that is the primary appliance of
HA/AS system is in active mode. This status is also called
MASTER in some systems.
as-secondary-active: The local appliance that is the secondary appliance of
HA/AS system is in active mode. This status is also called
BACKUP in some systems.
aa-primary-ative: The local appliance that is the primary appliance of
HA/AA system is in active mode.
aa-secondary-active: The local appliance that is the secondary appliance of
HA/AA system is in active mode.
aa-primary-takeover: The local appliance that is the primary appliance of
HA/AA system has taken over the peer's duty.
aa-secondary-takeover: The local appliance of the secondary appliance of
HA/AA system has taken over the peer's duty.
standby: The local appliance of HA/AS system is in standby mode.
admin: The local appliance of HA system detects an mismatched
configuration and waits for system administrator to reslove
the conflict.
failed: The local appliance of the HA system is down due to forced failover
or other reasons.
unavailable: It's reported when local appliance of HA system is unabled
to get status information.
"
::= { rsHALocal 1 }
rsHAPeerStatus OBJECT-TYPE
SYNTAX INTEGER {
unavailable(0),
active(1),
standby(2),
admin(3),
failed(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates current status of peer appliance.
unavailable: It's reported when peer appliance of HA system is unabled
to get status information.
active: The peer applicance of HA system is in active mode.
standby: The peer applicance of HA system is in standby mode.
admin: The peer applicance of HA system dectects an mismatched
configuration and waits for system administrator to reslove the conflict.
failed: The peer appliance of HA system is down due to forced failover or other reasons.
"
::= {rsHALocal 2 }
rsHALastDBSyncTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The last DB synchronized time of local appliance."
::= { rsHALocal 3 }
rsHAError OBJECT-TYPE
SYNTAX INTEGER {
no-error(0),
mismatched-ha-id(1),
mismatched-software(2),
mismatched-database(3),
mismatched-hardware(4),
forced-fail(5),
invalid-ha-role(6),
link-down(7),
lost-mia-heartbeat(8),
mia-not-responding(9),
admin-command-failed(10),
detect-ha-error(11),
unavailable(12),
hotsync-failed(13),
config-sync-failed(14)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Reports the current error that occurred in local appliance ."
::= { rsHALocal 4 }
rsHAPeerError OBJECT-TYPE
SYNTAX INTEGER {
no-error(0),
mismatched-ha-id(1),
mismatched-software(2),
mismatched-database(3),
mismatched-hardware(4),
forced-fail(5),
invalid-ha-role(6),
link-down(7),
lost-mia-heartbeat(8),
mia-not-responding(9),
admin-command-failed(10),
detect-ha-error(11),
unavailable(12),
hotsync-failed(13),
config-sync-failed(14)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Reports the current error that occurred in peer appliance."
::= { rsHALocal 5 }
rsHAPeerSerialNumber OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The serial number of peer appliance."
::= { rsHAPeer 1 }
rsHAPeerLastDBSyncTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The last DB synchronized time of peer appliance."
::= { rsHAPeer 2}
rsHAPeerDevice OBJECT-IDENTITY
STATUS current
DESCRIPTION
"This is the base object for parameters and configuration
data of devices in this entity."
::= { rsHAPeer 3 }
rsHAPeerCounters OBJECT-IDENTITY
STATUS current
DESCRIPTION
"This is the base object for parameters and configuration
data of devices in this entity."
::= { rsHAPeer 4 }
rsHAPeerIfNumber OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of RapidCard installed in this entity."
::= { rsHAPeerDevice 1 }
rsHAPeerIfTable OBJECT-TYPE
SYNTAX SEQUENCE OF RSHAPeerIfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of RapidCard entries. The number of
entries is given by the value of rsHAPeerDeviceNumber."
::= { rsHAPeerDevice 2 }
rsHAPeerIfEntry OBJECT-TYPE
SYNTAX RSHAPeerIfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A RapidCard entry containing objects for a
particular RapidCard."
INDEX { rsHAPeerIfIndex }
::= { rsHAPeerIfTable 1 }
RSHAPeerIfEntry ::= SEQUENCE {
rsHAPeerIfIndex Unsigned32,
rsHAPeerIfIpAddr IpAddress,
rsHAPeerIfLinkStatus INTEGER
}
rsHAPeerIfIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The unique value for each interface."
::= { rsHAPeerIfEntry 1 }
rsHAPeerIfIpAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The ip address of the interface."
::= { rsHAPeerIfEntry 4 }
rsHAPeerIfLinkStatus OBJECT-TYPE
SYNTAX INTEGER {
down(0),
up(1),
other(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current state of the interface."
::= { rsHAPeerIfEntry 9 }
rsHAPeerSystemCpuUtil OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The CPU utilization of the peer system in last 5
seconds."
::= { rsHAPeerCounters 1 }
rsHAPeerSystemTotalSendBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of bytes sent since peer system
is up."
::= { rsHAPeerCounters 2 }
rsHAPeerSystemTotalRecvBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of bytes received since peer system
is up."
::= { rsHAPeerCounters 3 }
rsHAPeerSystemTotalSendPackets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets sent since peer system is
up."
::= { rsHAPeerCounters 4 }
rsHAPeerSystemTotalRecvPackets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets received since peer
system is up."
::= { rsHAPeerCounters 5 }
rsHAPeerSystemStreamReqTotal OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of the connection requests since
system is up."
::= { rsHAPeerCounters 6 }
rsHAPeerSystemStreamReqDrop OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of the connection requests being
dropped since system is up."
::= { rsHAPeerCounters 7 }
rsHAPeerSystemCurrIpsecTunnels OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of ipsec tunnels in the peer system
currently."
::= {rsHAPeerCounters 8 }
rsHAPeerSystemCpuUtil1 OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The CPU utilization of the peer system in last 1
minute."
::= { rsHAPeerCounters 9 }
rsHAPeerSystemCpuUtil5 OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The CPU utilization of the peer system in last 5
minutes."
::= { rsHAPeerCounters 10 }
rsHAPeerSystemCpuUtil15 OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The CPU utilization of the peer system in last 15
minutes."
::= { rsHAPeerCounters 11 }
END
|