summaryrefslogtreecommitdiff
path: root/MIBS/telco-systems/binos/PRVT-PROXY-MANAGER-MIB
blob: ed1bb0d71a0c011c0f1329b3342596678ccc89fe (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
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
PRVT-PROXY-MANAGER-MIB DEFINITIONS ::= BEGIN

IMPORTS
MODULE-IDENTITY,
OBJECT-TYPE,
Unsigned32,
IpAddress,
NOTIFICATION-TYPE,
Integer32
FROM SNMPv2-SMI

TEXTUAL-CONVENTION,
RowStatus,
MacAddress
FROM SNMPv2-TC

ipSwitch
FROM PRVT-SWITCH-MIB;


prvtProxyManager MODULE-IDENTITY
LAST-UPDATED "200901160000Z"

ORGANIZATION "BATM Advanced Communication"
CONTACT-INFO
" BATM/Telco Systems Support team
Email:
For North America: techsupport@telco.com
For North Europe: support@batm.de, info@batm.de
For the rest of the world: techsupport@telco.com"
DESCRIPTION
"The MIB module for management of the PRVT-PROXY-MANAGER product."

-- Revision history.
REVISION "200901160000Z"
DESCRIPTION "Added prvtProxySecurityEnabled, prvtProxyAcceptInforms,
prvtProxyManMappingAuthenticated, prvtProxyManagerUnauthenticatedDevice"

REVISION "200711130000Z"
DESCRIPTION "Initial version"

::= { ipSwitch 6 }

prvtProxyManNotifications OBJECT IDENTIFIER ::= { prvtProxyManager 0 } -- traps
prvtProxyManObjects OBJECT IDENTIFIER ::= { prvtProxyManager 1 } -- tables

PrvtProxyManStates ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "The the switch on/off states of the Proxy Manager
modes."
SYNTAX INTEGER {
enable(1),
disable(2)
}

PrvtProxyManProtocols ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "The the switch on/off states of the Proxy Manager
modes."
SYNTAX INTEGER {
unknown(0),
snmp-udp(1),
snmptrap-udp(2),
telnet-tcp(3),
ssh-tcp(4),
tftp-udp(5),
syslog-udp(6)
}

PrvtProxyManPortTypes ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "The the switch on/off states of the Proxy Manager
modes."
SYNTAX INTEGER {
unknown(0),
tcp(1),
udp(2)
}

PrvtProxyManDirection ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "Specifices the traffic flow direction "
SYNTAX INTEGER {
noDirection(0),
inbound(1),
outbound(2)
}

PrvtProxyManAuthentication ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "Authenticated state of Managed device"
SYNTAX INTEGER {
authenticated(0),
unauthenticated(1)
}

PrvtProxySecurity ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "State of Proxy Security"
SYNTAX INTEGER {
securityEnabled(0),
securityDisabled(1)
}

PrvtProxyAcceptInformsType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "State of Proxy Inform Accept"
SYNTAX INTEGER {
informsEnabled(0),
informsDisabled(1)
}

-- Proxy scalar object

prvtProxyManDeviceAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The object represents the discovered device address.
It is used only for topology change notifications."
::= { prvtProxyManObjects 1 }

-- Proxy Manager instance table
-- This table is used to configure the global parameters of the Proxy Manager.
prvtProxyManConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF PrvtProxyManConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table of containing the global configuration of the Proxy Manager instance."
::= { prvtProxyManObjects 2 }

prvtProxyManConfigEntry OBJECT-TYPE
SYNTAX PrvtProxyManConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry represents configuration for a ProxyManager instance."
INDEX { prvtProxyManIndex }
::= { prvtProxyManConfigTable 1 }

PrvtProxyManConfigEntry ::= SEQUENCE {
prvtProxyManIndex Unsigned32,
prvtProxyManStatus PrvtProxyManStates,
prvtProxyManAutoMapMode PrvtProxyManStates,
prvtProxyManVlan Unsigned32,
prvtProxyManIpAddr IpAddress,
prvtProxyManIpMask Unsigned32,
prvtProxyManIpRangeStart IpAddress,
prvtProxyManIpRangeEnd IpAddress,
prvtProxyManLeasePeriod Unsigned32,
prvtProxyManRowStatus RowStatus,
prvtProxySecurityEnabled PrvtProxySecurity,
prvtProxyAcceptInforms PrvtProxyAcceptInformsType

}

prvtProxyManIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index of this prvtProxyManConfigEntry. This is the
instance index of the ProxyManager.

Currently only one instance is supported."
::= { prvtProxyManConfigEntry 1 }

prvtProxyManStatus OBJECT-TYPE
SYNTAX PrvtProxyManStates
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The object indicates whether the Proxy manger is enabled(1)
or disabled(2). In order to enable the Proxy Manager,
prvtProxyManIpRangeEnd, prvtProxyManIpRangeStart,
prvtProxyManIpMask, prvtProxyManIpAddr, prvtProxyManVlan, must
be correctly set and consistent.

In order to enable the manager prvtProxyManRowStatus should be active.
"
::= { prvtProxyManConfigEntry 2 }

prvtProxyManAutoMapMode OBJECT-TYPE
SYNTAX PrvtProxyManStates
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The object indicates whether the devices will be configured
automatically - enabled(1) or manually - disabled(2).

If the object is set to disable, the configuration can be
managed via prvtProxyManMappingTable"
DEFVAL { 1 }
::= { prvtProxyManConfigEntry 3 }

prvtProxyManVlan OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The vlan of the network specified for proxy managment.

This field is mandatory for the Proxy Manager in order
to work correctly"
::= { prvtProxyManConfigEntry 4 }

prvtProxyManIpAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The ip address of the device manged by the Proxy
Manager.

This field is mandatory for the Proxy Manager in order
to work correctly"
::= { prvtProxyManConfigEntry 5 }

prvtProxyManIpMask OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The bit mask of the network where the proxy manager resides.

This field is mandatory for the Proxy Manager in order
to work correctly"
::= { prvtProxyManConfigEntry 6 }

prvtProxyManIpRangeStart OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The start of the ip address range, used by DHCP to provide
ip addresses for the discuvered devices

This field is mandatory for the Proxy Manager in order
to work correctly"
::= { prvtProxyManConfigEntry 7 }

prvtProxyManIpRangeEnd OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The end of the ip address range, used by DHCP to provide
ip addresses for the discuvered devices

This field is mandatory for the Proxy Manager in order
to work correctly"
::= { prvtProxyManConfigEntry 8 }

prvtProxyManLeasePeriod OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The period for which the mapped devices are available in
the proxy manager. After it expire, the mapped device
can request new lease again. Valid range is <0-604800> seconds. Default value is 300."
::= { prvtProxyManConfigEntry 9 }

prvtProxyManRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the state of the configuration entry. It
is read-only and can not be used to create or destroy or manually change
the state. Only one configuration entry is supported.
The only valid values are:
- notReady(3) - the ProxyManger is not correctly configured and there are some field inconsistencies.
- acitive(1) - the ProxyManger is configured and the proxy manager is ready to be enabled.

The objects which are checked for consistency are:
prvtProxyManIpRangeEnd - the ip range should be in the network, defined by the ip address/mask objects
prvtProxyManIpRangeStart - the ip range should be in the network defined by the ip address/mask objects
prvtProxyManIpMask - shoudl be valid ip mask
prvtProxyManIpAddr - should be valid ip address.
prvtProxyManVlan - the vlan should exists"
::= { prvtProxyManConfigEntry 10 }

prvtProxySecurityEnabled OBJECT-TYPE
SYNTAX PrvtProxySecurity
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The attribute is used to specify the proxy security, The default is securityDisabled(1)."
::= { prvtProxyManConfigEntry 11 }

prvtProxyAcceptInforms OBJECT-TYPE
SYNTAX PrvtProxyAcceptInformsType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The attribute is used to specify the accept policy for DHCP Informs messaged. The default if informsDisabled(1)."
::= { prvtProxyManConfigEntry 12 }

-- Global table for supported protocols
-- This table contains all the protocols which will be managed by Proxy Managers.

prvtProxyManProtoTable OBJECT-TYPE
SYNTAX SEQUENCE OF PrvtProxyManProtoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table of containing all supported protocols,
which will be processed by an active ProxyManager
instance

This table is read-only.
"
::= { prvtProxyManObjects 3 }

prvtProxyManProtoEntry OBJECT-TYPE
SYNTAX PrvtProxyManProtoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry represents a hardcoded protocol supported by Proxy Manager."
INDEX { prvtProxyManProtoIndex }
::= { prvtProxyManProtoTable 1 }

PrvtProxyManProtoEntry ::= SEQUENCE {
prvtProxyManProtoIndex PrvtProxyManProtocols,
prvtProxyManProtoSvcPort Integer32,
prvtProxyManProtoSvcPortType PrvtProxyManPortTypes,
prvtProxyManProtoSrcPort Integer32,
prvtProxyManProtoDirection PrvtProxyManDirection,
prvtProxyManProtoStatus PrvtProxyManStates
}

prvtProxyManProtoIndex OBJECT-TYPE
SYNTAX PrvtProxyManProtocols
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index of prvtProxyManProtoTable. It is an enumeration
representing all supported protocols by Proxy Manager"
::= { prvtProxyManProtoEntry 1 }

prvtProxyManProtoSvcPort OBJECT-TYPE
SYNTAX Integer32 (1..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The object represents the number of the port for the supported standard protocol."
::= { prvtProxyManProtoEntry 2 }

prvtProxyManProtoSvcPortType OBJECT-TYPE
SYNTAX PrvtProxyManPortTypes
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The object represents the type of the managed standard port in the
transport porotocol."
::= { prvtProxyManProtoEntry 3 }

prvtProxyManProtoSrcPort OBJECT-TYPE
SYNTAX Integer32 (1..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"TBD"
::= { prvtProxyManProtoEntry 4 }

prvtProxyManProtoDirection OBJECT-TYPE
SYNTAX PrvtProxyManDirection
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The object identifies direction of the traffic flow (noDirection/inbound/outbound)."
::= { prvtProxyManProtoEntry 5 }

prvtProxyManProtoStatus OBJECT-TYPE
SYNTAX PrvtProxyManStates
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates whether the protocol is to be
managed by Proxy manager - enable(1) or not - disable(2)."
::= { prvtProxyManProtoEntry 6 }


-- Proxy Manager mapping table
-- This table shows and allow to comfigure mannually the according to the its active mode.

prvtProxyManMappingTable OBJECT-TYPE
SYNTAX SEQUENCE OF PrvtProxyManMappingEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table show the mapping between the deiscoverd devices and the ports they are mapped by the proxy manager.
It is also used to create mannual mappings between devices and ports if the prvtProxyManAutoMapMode is disabled"
::= { prvtProxyManObjects 4 }

prvtProxyManMappingEntry OBJECT-TYPE
SYNTAX PrvtProxyManMappingEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry represents a mapped device to a port."
INDEX {prvtProxyManMappingDevice, prvtProxyManMappingIndex, prvtProxyManMappingProto }
::= { prvtProxyManMappingTable 1 }

PrvtProxyManMappingEntry ::= SEQUENCE {
prvtProxyManMappingDevice Unsigned32,
prvtProxyManMappingIndex Unsigned32,
prvtProxyManMappingProto PrvtProxyManProtocols,
prvtProxyManMappingDirection PrvtProxyManDirection,
prvtProxyManMappingGlobalPort Integer32,
prvtProxyManMappingLocalSrcPort Integer32,
prvtProxyManMappingLocalDstPort Integer32,
prvtProxyManMappingRowStatus RowStatus,
prvtProxyManMappingMAC MacAddress,
prvtProxyManMappingIfIndex Integer32,
prvtProxyManMappingAuthenticated PrvtProxyManAuthentication
}

prvtProxyManMappingDevice OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The object represents the id of the deiscovered device in the LAN.
It is index in the prvtProxyManMappingTable"
::= { prvtProxyManMappingEntry 1 }

prvtProxyManMappingIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The object represents the index of the mapping entry.
It is unique per device and is index in the prvtProxyManMappingTable"
::= { prvtProxyManMappingEntry 2 }

prvtProxyManMappingProto OBJECT-TYPE
SYNTAX PrvtProxyManProtocols
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The object represents the protocol, which will be processed.
It is index in prvtProxyManMappingTable. "
::= { prvtProxyManMappingEntry 3 }

prvtProxyManMappingDirection OBJECT-TYPE
SYNTAX PrvtProxyManDirection
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The object identifies the traffic flow direction.(inbound/outbound)."
::= { prvtProxyManMappingEntry 4 }

prvtProxyManMappingGlobalPort OBJECT-TYPE
SYNTAX Integer32 (1..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"TBD"
::= { prvtProxyManMappingEntry 5 }

prvtProxyManMappingLocalSrcPort OBJECT-TYPE
SYNTAX Integer32 (1..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"TBD "
::= { prvtProxyManMappingEntry 6 }

prvtProxyManMappingLocalDstPort OBJECT-TYPE
SYNTAX Integer32 (1..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"TBD"
::= { prvtProxyManMappingEntry 7 }

prvtProxyManMappingRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Indicates the state of the mapping entry.
- notReady(3) - the mapping entry is not configured yet
- notInService(3) - the mapping entry is configured but the configuration is not applied yet
- acitive(3) - the mapping entry is configured and the configuration is applied

The objects which need to be configured in order
to apply the cinfiguration are:
prvtProxyManMappingMAC
prvtProxyManMappingPort"
::= { prvtProxyManMappingEntry 8 }

prvtProxyManMappingMAC OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The mac address of the managed device.

This field is manadatory"
::= { prvtProxyManMappingEntry 9 }

prvtProxyManMappingIfIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object shows the ifIndex associated with the managed device."
::= { prvtProxyManMappingEntry 10 }

prvtProxyManMappingAuthenticated OBJECT-TYPE
SYNTAX PrvtProxyManAuthentication
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object shows the authenticated state of the managed device."
::= { prvtProxyManMappingEntry 11 }

prvtProxyManagerNewDevice NOTIFICATION-TYPE
OBJECTS {
prvtProxyManDeviceAddress
}
STATUS current
DESCRIPTION
"This notification is triggered, when a new managed device is descovered
and added in the proxy manager's list"
::= { prvtProxyManNotifications 1 }

prvtProxyManagerRemovedDevice NOTIFICATION-TYPE
OBJECTS {
prvtProxyManDeviceAddress
}
STATUS current
DESCRIPTION
"This notification is triggered, when a managed device is removed from
the proxy manager's list"
::= { prvtProxyManNotifications 2 }

prvtProxyManagerUnauthenticatedDevice NOTIFICATION-TYPE
OBJECTS {
prvtProxyManDeviceAddress
}
STATUS current
DESCRIPTION
"This notification is triggered, when a managed device failed to be authenticated from
the proxy manager's list"
::= { prvtProxyManNotifications 3 }

END