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
|
-- =================================================================
-- Copyright (C) 2006 New H3C Tech. Co., Ltd. All rights reserved.
--
-- Description: Private MIB for RCP information
-- Reference:
-- Version: V1.0
-- History:
-- V1.0 2006-09-20, Created by ChaiYongfu
-- =================================================================
HH3C-RCP-MIB DEFINITIONS ::= BEGIN
IMPORTS
hh3cRCP
FROM HH3C-OID-MIB
OBJECT-TYPE, MODULE-IDENTITY, Integer32
FROM SNMPv2-SMI
DisplayString, RowStatus, TruthValue
FROM SNMPv2-TC
InetAddressType, InetAddress
FROM INET-ADDRESS-MIB
InterfaceIndexOrZero
FROM IF-MIB;
hh3cRCPMIB MODULE-IDENTITY
LAST-UPDATED "200609200000Z"
ORGANIZATION
"New H3C Tech. Co., Ltd."
CONTACT-INFO
"Platform Team New H3C Tech. Co., Ltd.
Hai-Dian District Beijing P.R. China
http://www.h3c.com
Zip:100085
"
DESCRIPTION
"The MIB module is used for managing RCP protocol server."
REVISION "200609200000Z"
DESCRIPTION
"The Initial Version of hh3cRCPMIB."
::= { hh3cRCP 1 }
hh3cRCPLeaf OBJECT IDENTIFIER ::= { hh3cRCPMIB 1 }
hh3cRCPServerEnableStatus OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This attribute controls the system wide operation of RCP server.
The value TRUE means that the RCP server is enabled.
The value FALSE means that the RCP server is disabled."
::= { hh3cRCPLeaf 1 }
hh3cRCPConnTimeout OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies the maximum time in seconds that a RCP client connection
is idle."
::= { hh3cRCPLeaf 2 }
hh3cRCPRuleTimeout OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies the time in seconds before a RCP rule is aged out.
If its value is 0, it indicates RCP rule will not be aged out."
::= { hh3cRCPLeaf 3 }
hh3cRCPServerMaxConn OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies the maximum number of clients that permitted to connect with
RCP server at the same time."
::= { hh3cRCPLeaf 4 }
hh3cRCPServerCurConn OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current actual number of clients that connecting with RCP server."
::= { hh3cRCPLeaf 5 }
hh3cRCPConnTimeoutMaxValue OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Specifies the maximum value of hh3cRCPConnTimeout."
::= { hh3cRCPLeaf 6 }
hh3cRCPRuleTimeoutMaxValue OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Specifies the maximum value of hh3cRCPRuleTimeout."
::= { hh3cRCPLeaf 7 }
hh3cRCPServerMaxConnMaxValue OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Specifies the maximum value of hh3cRCPServerMaxConn."
::= { hh3cRCPLeaf 8 }
hh3cRCPBalanceGroupIdMinValue OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Specifies the minimum value of balance group identity."
::= { hh3cRCPLeaf 9 }
hh3cRCPBalanceGroupIdMaxValue OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Specifies the maximum value of balance group identity."
::= { hh3cRCPLeaf 10 }
hh3cRCPTotalUsers OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Specifies the total number of RCP user."
::= { hh3cRCPLeaf 11 }
hh3cRCPTotalClientIPs OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Specifies the total number of RCP client IP."
::= { hh3cRCPLeaf 12 }
hh3cRCPTable OBJECT IDENTIFIER ::= { hh3cRCPMIB 2 }
hh3cRCPUserTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cRCPUserEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"RCP User Info Table."
::= { hh3cRCPTable 1 }
hh3cRCPUserEntry OBJECT-TYPE
SYNTAX Hh3cRCPUserEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The entry of hh3cRCPUserTable."
INDEX
{
hh3cRCPUserName
}
::= { hh3cRCPUserTable 1 }
Hh3cRCPUserEntry ::= SEQUENCE
{
hh3cRCPUserName DisplayString,
hh3cRCPUserPassword DisplayString,
hh3cRCPUserRedirectInterface InterfaceIndexOrZero,
hh3cRCPUserRedirectBalanceGroup Integer32,
hh3cRCPUserRowStatus RowStatus
}
hh3cRCPUserName OBJECT-TYPE
SYNTAX DisplayString(SIZE(1..16))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The name of RCP user."
::= { hh3cRCPUserEntry 1 }
hh3cRCPUserPassword OBJECT-TYPE
SYNTAX DisplayString(SIZE(1..16))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
" The password of RCP user.
It is invisible to users and displayed as '***'."
::= { hh3cRCPUserEntry 2 }
hh3cRCPUserRedirectInterface OBJECT-TYPE
SYNTAX InterfaceIndexOrZero
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The redirect interface index of RCP user.
The RCP rule assigned by the user can be associated with the redirect
interface.
If the redirect interface is invalid, its value is set to be 0."
::= { hh3cRCPUserEntry 3 }
hh3cRCPUserRedirectBalanceGroup OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The redirect balance group identity of RCP user.
The RCP rule assigned by the user can be associated with the redirect
balance group.
If the balance group is invalid, its value is set to be 0."
::= { hh3cRCPUserEntry 4 }
hh3cRCPUserRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This manages the creation and deletion of rows, and shows
the current status of the indexed user name. This object has the
following values.
active(1) The indexed user name is configured on the device.
notInService(2) Not Supported.
notReady(3) Not Supported.
createAndGo(4) Create a new user.
createAndWait(5) Not Supported.
destroy(6) Delete this entry.
The associated entry can be modified when the value of
hh3cRCPUserRowStatus is active(1).
When deleting an inexistence entry, return noError."
::= { hh3cRCPUserEntry 5 }
hh3cRCPClientIPTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cRCPClientIPEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"RCP Client IP Table."
::= { hh3cRCPTable 2 }
hh3cRCPClientIPEntry OBJECT-TYPE
SYNTAX Hh3cRCPClientIPEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The entry of hh3cRCPClientIPTable."
INDEX
{
hh3cRCPClientIPType,
hh3cRCPClientIP
}
::= { hh3cRCPClientIPTable 1 }
Hh3cRCPClientIPEntry ::= SEQUENCE
{
hh3cRCPClientIPType InetAddressType,
hh3cRCPClientIP InetAddress,
hh3cRCPClientIPRowStatus RowStatus
}
hh3cRCPClientIPType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The IP address type (IPv4 or IPv6) of RCP client."
::= { hh3cRCPClientIPEntry 1 }
hh3cRCPClientIP OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The IP address of RCP client."
::= { hh3cRCPClientIPEntry 2 }
hh3cRCPClientIPRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This manages the creation and deletion or rows, and shows
the current status of the indexed client IP address. This object has
the following values.
active(1) The indexed client IP is configured on the device.
notInService(2) Not Supported.
notReady(3) Not Supported.
createAndGo(4) Create a new client IP.
createAndWait(5) Not Supported.
destroy(6) Delete this entry.
The associated entry can be modified when the value of
hh3cRCPClientIPRowStatus is active(1).
When deleting an inexistence entry, return noError."
::= { hh3cRCPClientIPEntry 3 }
hh3cRCPSessionTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cRCPSessionEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"RCP session Table."
::= { hh3cRCPTable 3 }
hh3cRCPSessionEntry OBJECT-TYPE
SYNTAX Hh3cRCPSessionEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The entry of hh3cRCPSessionTable."
INDEX
{
hh3cRCPSessionId
}
::= { hh3cRCPSessionTable 1 }
Hh3cRCPSessionEntry ::= SEQUENCE
{
hh3cRCPSessionId Integer32,
hh3cRCPSessionClientIPType InetAddressType,
hh3cRCPSessionClientIP InetAddress,
hh3cRCPSessionRunningStatus INTEGER,
hh3cRCPSessionUserName DisplayString
}
hh3cRCPSessionId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"RCP session identity."
::= { hh3cRCPSessionEntry 1 }
hh3cRCPSessionClientIPType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IP address type (IPv4 or IPv6) of RCP client."
::= { hh3cRCPSessionEntry 2 }
hh3cRCPSessionClientIP OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"RCP client IP address."
::= { hh3cRCPSessionEntry 3 }
hh3cRCPSessionRunningStatus OBJECT-TYPE
SYNTAX INTEGER
{
connected(1),
operational(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"RCP server running status.
It is one of the following status:
connected: The connection is established and the RCP client is waiting
for authentication.
operational: The RCP client is authenticated and the server is ready
for rule configuration request."
::= { hh3cRCPSessionEntry 4 }
hh3cRCPSessionUserName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"RCP user name."
::= { hh3cRCPSessionEntry 5 }
END
|