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
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
|
BENU-IPPOOL-MIB DEFINITIONS ::= BEGIN
IMPORTS
Counter64, Gauge32, Unsigned32, MODULE-IDENTITY, OBJECT-TYPE,
OBJECT-IDENTITY, NOTIFICATION-TYPE, mib-2, Integer32 FROM SNMPv2-SMI
TEXTUAL-CONVENTION, DisplayString, TruthValue FROM SNMPv2-TC
InetAddressType, InetAddress, InetAddressIPv4,
InetAddressIPv6, InetPortNumber FROM INET-ADDRESS-MIB
benuWAG FROM BENU-WAG-MIB;
benuIPPoolMIB MODULE-IDENTITY
LAST-UPDATED "201508110000Z" -- August 11, 2015
ORGANIZATION "Benu Networks,Inc"
CONTACT-INFO "Benu Networks,Inc
Corporate Headquarters
300 Concord Road, Suite 110
Billerica, MA 01821 USA
Tel: +1 978-223-4700
Fax: +1 978-362-1908
Email: info@benunets.com"
DESCRIPTION
"The MIB module defines management information
related to the IP Address Pools
Copyright (C) 2013 by Benu Networks, Inc.
All rights reserved."
REVISION "201508110000Z" -- August 11, 2015
DESCRIPTION "Added notifications for bIPPoolAddrExhausted and
bIPv6PoolPrefixExhausted."
REVISION "201501050000Z" -- January 05, 2015
DESCRIPTION "Updated notification assignments to comply with standards (RFC 2578)."
REVISION "201310210000Z" -- October 21, 2013
DESCRIPTION "Version includes IPv6 pools"
::= { benuWAG 5 }
-- declare top-level MIB objects for each component
bIPPoolNotifications OBJECT-IDENTITY
STATUS current
DESCRIPTION
"IP Pool notifications are defined in this branch."
::= { benuIPPoolMIB 0 }
bIPv4PoolMIBObjects OBJECT-IDENTITY
STATUS current
DESCRIPTION
"IPv4 Pool MIB objects information is defined in this branch."
::= { benuIPPoolMIB 1 }
bIPv4PoolNotifObjects OBJECT-IDENTITY
STATUS current
DESCRIPTION
"IPv4 Pool Notifications are defined in this branch."
::= { benuIPPoolMIB 2 }
bIPv6PoolMIBObjects OBJECT-IDENTITY
STATUS current
DESCRIPTION
"IPv6 Pool MIB objects information is defined in this branch."
::= { benuIPPoolMIB 3 }
bIPv6PoolNotifObjects OBJECT-IDENTITY
STATUS current
DESCRIPTION
"IPv6 Pool Notifications are defined in this branch."
::= { benuIPPoolMIB 4 }
-- bIPPoolObjects Group
bIPPoolTable OBJECT-TYPE
SYNTAX SEQUENCE OF BIPPoolEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of IP Pools that are configured in this server."
::= { bIPv4PoolMIBObjects 1 }
bIPPoolEntry OBJECT-TYPE
SYNTAX BIPPoolEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A logical row in the bIPPoolTable."
INDEX {
bIPPoolStatsInterval,
bIPPoolIndex
}
::= { bIPPoolTable 1 }
BIPPoolEntry ::= SEQUENCE {
bIPPoolStatsInterval Integer32,
bIPPoolIndex Integer32,
bIPPoolIntervalDuration Integer32,
bIPPoolName DisplayString,
bIPPoolStartAddress InetAddressIPv4,
bIPPoolEndAddress InetAddressIPv4,
bIPPoolTotalAddresses Unsigned32,
bIPPoolReservedAddresses Unsigned32,
bIPPoolPeakFreeAddresses Unsigned32,
bIPPoolPeakUsedAddresses Unsigned32,
bIPPoolUsedAddrLowThreshold Unsigned32,
bIPPoolUsedAddrHighThreshold Unsigned32,
bIPPoolGrpName DisplayString
}
bIPPoolStatsInterval OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The interval where the measurements were accumulated.
The interval index one indicates the latest interval for which statistics
accumulation was completed. Older the statistics interval data greater the
interval index value.
In a system supporting a history of n intervals with IntervalCount(1) and
IntervalCount(n) the most and least recent intervals respectively, the following
applies at the end of a interval:
- discard the value of IntervalCount(n)
- the value of IntervalCount(i) becomes that
of IntervalCount(i+1) for 1 <= i <n .
- the value of IntervalCount(1) becomes that
of CurrentCount"
::= { bIPPoolEntry 1 }
bIPPoolIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Index of the IP Pool entry in the table."
::= { bIPPoolEntry 2 }
bIPPoolIntervalDuration OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Duration of the interval in minutes."
::= { bIPPoolEntry 3 }
bIPPoolName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name of the IP Pool entry in the table."
::= { bIPPoolEntry 4 }
bIPPoolStartAddress OBJECT-TYPE
SYNTAX InetAddressIPv4
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The start address of the IP Pool range."
::= { bIPPoolEntry 5 }
bIPPoolEndAddress OBJECT-TYPE
SYNTAX InetAddressIPv4
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The end address of the IP Pool range."
::= { bIPPoolEntry 6 }
bIPPoolTotalAddresses OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of addresses configured in the IP Pool."
::= { bIPPoolEntry 7 }
bIPPoolReservedAddresses OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of reserved addresses configured in the IP Pool."
::= { bIPPoolEntry 8 }
bIPPoolPeakFreeAddresses OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The max number of free addresses reached in the periodic interval ."
::= { bIPPoolEntry 9 }
bIPPoolPeakUsedAddresses OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The max number of used addresses reached in the periodic interval ."
::= { bIPPoolEntry 10 }
bIPPoolUsedAddrLowThreshold OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The low threshold for used IP addresses in this IP Pool.
If the value for used IP addresses in this IP Pool
becomes equal to or less than this value and the current
condition for bIPPoolUsedAddrHigh is raised, then a
bIPPoolUsedAddrLow event will be generated. No more
bIPPoolUsedAddrLow events will be generated for this
IP Pool during its execution until the value for outstanding
used addresses has exceeded the value of
bIPPoolUsedAddrHighThreshold."
::= { bIPPoolEntry 11 }
bIPPoolUsedAddrHighThreshold OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The high threshold for used addresses in this IP Pool.
If a bIPPoolUsedAddrLow event has been generated ( or no
bIPPoolUsedAddrHigh was generated previously ) for this IP Pool,
and the value for used addresses has exceeded the value of
bIPPoolUsedAddrHighThreshold, then a
bIPPoolUsedAddrHigh event will be generated. No more
bIPPoolUsedAddrHigh events will be generated for this
IP Pool during this execution until the value for used addesses
becomes equal to or less than the value of
bIPPoolUsedAddrLowThreshold."
::= { bIPPoolEntry 12 }
bIPPoolGrpName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name of the IP Pool Group."
::= { bIPPoolEntry 13 }
-- IP Pool Group Table
bIPPoolGroupTable OBJECT-TYPE
SYNTAX SEQUENCE OF BIPPoolGroupEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of IP Pool Groups that are configured in this server."
::= { bIPv4PoolMIBObjects 2 }
bIPPoolGroupEntry OBJECT-TYPE
SYNTAX BIPPoolGroupEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A logical row in the bIPPoolGroupTable."
INDEX {
bIPPoolGroupStatsInterval,
bIPPoolGroupIndex
}
::= { bIPPoolGroupTable 1 }
BIPPoolGroupEntry ::= SEQUENCE {
bIPPoolGroupStatsInterval Integer32,
bIPPoolGroupIndex Integer32,
bIPPoolGroupIntervalDuration Integer32,
bIPPoolGroupName DisplayString,
bIPPoolGroupTotalAddresses Unsigned32,
bIPPoolGroupReservedAddresses Unsigned32,
bIPPoolGroupPeakFreeAddresses Unsigned32,
bIPPoolGroupPeakUsedAddresses Unsigned32
}
bIPPoolGroupStatsInterval OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The interval where the measurements were accumulated.
The interval index one indicates the latest interval for which statistics
accumulation was completed. Older the statistics interval data greater the
interval index value.
In a system supporting a history of n intervals with IntervalCount(1) and
IntervalCount(n) the most and least recent intervals respectively, the following
applies at the end of a interval:
- discard the value of IntervalCount(n)
- the value of IntervalCount(i) becomes that
of IntervalCount(i+1) for 1 <= i <n .
- the value of IntervalCount(1) becomes that
of CurrentCount"
::= { bIPPoolGroupEntry 1 }
bIPPoolGroupIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Index of the IP Pool Group entry in the table."
::= { bIPPoolGroupEntry 2 }
bIPPoolGroupIntervalDuration OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Duration of the interval in minutes."
::= { bIPPoolGroupEntry 3 }
bIPPoolGroupName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name of the IP Pool Group entry in the table."
::= { bIPPoolGroupEntry 4 }
bIPPoolGroupTotalAddresses OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of addresses configured in the IP Pool Group."
::= { bIPPoolGroupEntry 5 }
bIPPoolGroupReservedAddresses OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of reserved addresses configured in the IP Pool Group."
::= { bIPPoolGroupEntry 6 }
bIPPoolGroupPeakFreeAddresses OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The max number of free addresses reached in the periodic interval ."
::= { bIPPoolGroupEntry 7 }
bIPPoolGroupPeakUsedAddresses OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The max number of used addresses reached in the periodic interval ."
::= { bIPPoolGroupEntry 8 }
-- IP Pool Global Table
bIPPoolGlobalTable OBJECT-TYPE
SYNTAX SEQUENCE OF BIPPoolGlobalEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of IP Pool Global information in this server."
::= { bIPv4PoolMIBObjects 3 }
bIPPoolGlobalEntry OBJECT-TYPE
SYNTAX BIPPoolGlobalEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A logical row in the bIPPoolGlobalTable."
INDEX {
bIPPoolGlobalStatsInterval,
bIPPoolClientIndex
}
::= { bIPPoolGlobalTable 1 }
BIPPoolGlobalEntry ::= SEQUENCE {
bIPPoolGlobalStatsInterval Integer32,
bIPPoolClientIndex Integer32,
bIPPoolClientName DisplayString,
bIPPoolGlobalAllocReq Unsigned32,
bIPPoolGlobalAllocReqSucc Unsigned32,
bIPPoolGlobalAllocReqUnSucc Unsigned32,
bIPPoolGlobalDupAllocReq Unsigned32,
bIPPoolGlobalStaticAllocReq Unsigned32,
bIPPoolGlobalAllocResponses Unsigned32,
bIPPoolGlobalDeAllocReq Unsigned32,
bIPPoolGlobalDeAllocReqSucc Unsigned32,
bIPPoolGlobalDeAllocReqUnSucc Unsigned32,
bIPPoolGlobalInvalidReq Unsigned32,
bIPPoolGlobalNotAvailCount Unsigned32,
bIPPoolGlobalPoolExhaustedCount Unsigned32,
bIPPoolGlobalGroupExhaustedCount Unsigned32,
bIPPoolGlobalInvalidPoolNameCount Unsigned32,
bIPPoolGlobalInvalidGroupNameCount Unsigned32,
bIPPoolGlobalInvalidIPAddrCount Unsigned32,
bIPPoolGlobalHashInsertFail Unsigned32,
bIPPoolGlobalHashDeleteFail Unsigned32,
bIPPoolGlobalRequestedAllocatedMismacth Unsigned32,
bIPPoolGlobalRequestedIPNotFree Unsigned32,
bIPPoolGlobalGenErrCount Unsigned32,
bIPPoolGlobalAddrRelDueToIntAdd Unsigned32,
bIPPoolGlobalGroupDeAllocReq Unsigned32,
bIPPoolGlobalGroupDeAllocReqSucc Unsigned32,
bIPPoolGlobalGroupDeAllocReqUnSucc Unsigned32,
bIPPoolTotalPoolCreatedEvents Unsigned32,
bIPPoolTotalPoolDeletedEvents Unsigned32,
bIPPoolGlobalIntervalDuration Integer32
}
bIPPoolGlobalStatsInterval OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The interval where the measurements were accumulated.
The interval index one indicates the latest interval for which statistics
accumulation was completed. Older the statistics interval data greater the
interval index value.
In a system supporting a history of n intervals with IntervalCount(1) and
IntervalCount(n) the most and least recent intervals respectively, the following
applies at the end of a interval:
- discard the value of IntervalCount(n)
- the value of IntervalCount(i) becomes that
of IntervalCount(i+1) for 1 <= i <n .
- the value of IntervalCount(1) becomes that
of CurrentCount"
::= { bIPPoolGlobalEntry 1 }
bIPPoolClientIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A number uniquely identifying client which uses IP Pool"
::= { bIPPoolGlobalEntry 2 }
bIPPoolClientName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"IP Pool client name"
::= { bIPPoolGlobalEntry 3 }
bIPPoolGlobalAllocReq OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The count of IP Address allocation requests."
::= { bIPPoolGlobalEntry 4 }
bIPPoolGlobalAllocReqSucc OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The count of IP Address allocation requests for which
allocation was successful."
::= { bIPPoolGlobalEntry 5 }
bIPPoolGlobalAllocReqUnSucc OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The count of IP Address allocation requests for which
allocation was Unsuccessful."
::= { bIPPoolGlobalEntry 6 }
bIPPoolGlobalDupAllocReq OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The count of duplicate IP Address allocation requests."
::= { bIPPoolGlobalEntry 7 }
bIPPoolGlobalStaticAllocReq OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The count of static IP Address allocation requests."
::= { bIPPoolGlobalEntry 8 }
bIPPoolGlobalAllocResponses OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of IP address allocation responses ."
::= { bIPPoolGlobalEntry 9 }
bIPPoolGlobalDeAllocReq OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The count of IP Address deallocation requests."
::= { bIPPoolGlobalEntry 10 }
bIPPoolGlobalDeAllocReqSucc OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The count of IP Address deallocation requests which
are successful."
::= { bIPPoolGlobalEntry 11 }
bIPPoolGlobalDeAllocReqUnSucc OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The count of IP Address deallocation requests which
are unsuccessful."
::= { bIPPoolGlobalEntry 12 }
bIPPoolGlobalInvalidReq OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The count of invalid IP Address allocation requests."
::= { bIPPoolGlobalEntry 13 }
bIPPoolGlobalNotAvailCount OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The count of requests for which the requested IP pool is unavailable."
::= { bIPPoolGlobalEntry 14 }
bIPPoolGlobalPoolExhaustedCount OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The count of requests for which the requested IP pool is exhausted."
::= { bIPPoolGlobalEntry 15 }
bIPPoolGlobalGroupExhaustedCount OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The count of requests for which the requested IP pool group is exhausted."
::= { bIPPoolGlobalEntry 16 }
bIPPoolGlobalInvalidPoolNameCount OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The count of requests with invalid IP pool name."
::= { bIPPoolGlobalEntry 17 }
bIPPoolGlobalInvalidGroupNameCount OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The count of requests with invalid IP pool group name."
::= { bIPPoolGlobalEntry 18 }
bIPPoolGlobalInvalidIPAddrCount OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of release requests with invalid IP addresses ."
::= { bIPPoolGlobalEntry 19 }
bIPPoolGlobalHashInsertFail OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The count of addresses for which hash insert failed."
::= { bIPPoolGlobalEntry 20 }
bIPPoolGlobalHashDeleteFail OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The count of addresses for which hash delete failed."
::= { bIPPoolGlobalEntry 21 }
bIPPoolGlobalRequestedAllocatedMismacth OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of requests for which allocated and requested IP address do not match ."
::= { bIPPoolGlobalEntry 22 }
bIPPoolGlobalRequestedIPNotFree OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The count of requested addresses which were not free."
::= { bIPPoolGlobalEntry 23 }
bIPPoolGlobalGenErrCount OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of errors like memory allocation failures."
::= { bIPPoolGlobalEntry 24 }
bIPPoolGlobalAddrRelDueToIntAdd OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The count of addresses released due to interface addition."
::= { bIPPoolGlobalEntry 25 }
bIPPoolGlobalGroupDeAllocReq OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The count of group deallocation requests."
::= { bIPPoolGlobalEntry 26 }
bIPPoolGlobalGroupDeAllocReqSucc OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The count of group deallocation requests which
are successful."
::= { bIPPoolGlobalEntry 27 }
bIPPoolGlobalGroupDeAllocReqUnSucc OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The count of group deallocation requests which
are unsuccessful."
::= { bIPPoolGlobalEntry 28 }
bIPPoolTotalPoolCreatedEvents OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of ip pool create events."
::= { bIPPoolGlobalEntry 29}
bIPPoolTotalPoolDeletedEvents OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of ip pool delete events."
::= { bIPPoolGlobalEntry 30}
bIPPoolGlobalIntervalDuration OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Duration of the interval in minutes."
::= { bIPPoolGlobalEntry 31 }
-- IPv4 Pool Notifications
bIPPoolUsedAddrLow NOTIFICATION-TYPE
OBJECTS {
bIPPoolName,
bIPPoolTotalAddresses,
bIPPoolUsedAddrLowThreshold
}
STATUS current
DESCRIPTION
"This notification signifies that the number of used addresses
for a particular IP Pool is cleared , meaning that it
has fallen below the value of bIPPoolUsedAddrLowThreshold
for that IP Pool."
::= { bIPPoolNotifications 1 }
bIPPoolUsedAddrHigh NOTIFICATION-TYPE
OBJECTS {
bIPPoolName,
bIPPoolTotalAddresses,
bIPPoolUsedAddrHighThreshold
}
STATUS current
DESCRIPTION
"This notification signifies that the number of used
addresses for a particular IP Pool has risen above the
value of bIPPoolUsedAddrHighThreshold for that IP Pool."
::= { bIPPoolNotifications 2 }
bIPPoolAddrExhausted NOTIFICATION-TYPE
OBJECTS {
bIPPoolName,
bIPPoolTotalAddresses
}
STATUS current
DESCRIPTION
"This notification signifies that the particular IPv4 pool
is exhausted."
::= { bIPPoolNotifications 5 }
-- bIPv6PoolObjects Group
bIPv6PoolTable OBJECT-TYPE
SYNTAX SEQUENCE OF BIPv6PoolEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of IPv6 Pools that are configured in this server."
::= { bIPv6PoolMIBObjects 1 }
bIPv6PoolEntry OBJECT-TYPE
SYNTAX BIPv6PoolEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A logical row in the bIPv6PoolTable."
INDEX {
bIPv6PoolStatsInterval,
bIPv6PoolIndex
}
::= { bIPv6PoolTable 1 }
BIPv6PoolEntry ::= SEQUENCE {
bIPv6PoolStatsInterval Integer32,
bIPv6PoolIndex Integer32,
bIPv6PoolIntervalDuration Integer32,
bIPv6PoolName DisplayString,
bIPv6PoolStartPrefix InetAddressIPv6,
bIPv6PoolEndPrefix InetAddressIPv6,
bIPv6PoolTotalPrefixes Unsigned32,
bIPv6PoolReservedPrefixes Unsigned32,
bIPv6PoolPeakFreePrefixes Unsigned32,
bIPv6PoolPeakUsedPrefixes Unsigned32,
bIPv6PoolUsedPrefixLowThreshold Unsigned32,
bIPv6PoolUsedPrefixHighThreshold Unsigned32,
bIPv6PoolGrpName DisplayString
}
bIPv6PoolStatsInterval OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The interval for acculating the measurements.
The interval index one indicates the latest interval for which statistics
accumulation was completed. Older the statistics interval data, greater the
interval index value.
In a system supporting a history of n intervals with IntervalCount(1) and
IntervalCount(n) the most and least recent intervals respectively, the following
applies at the end of a interval:
- discard the value of IntervalCount(n)
- the value of IntervalCount(i) becomes that
of IntervalCount(i+1) for 1 <= i < n
- the value of IntervalCount(1) becomes that
of CurrentCount"
::= { bIPv6PoolEntry 1 }
bIPv6PoolIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Index of the IPv6 Pool entry in the table."
::= { bIPv6PoolEntry 2 }
bIPv6PoolIntervalDuration OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Duration of the interval in minutes."
::= { bIPv6PoolEntry 3 }
bIPv6PoolName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name of the IPv6 Pool entry in the table."
::= { bIPv6PoolEntry 4 }
bIPv6PoolStartPrefix OBJECT-TYPE
SYNTAX InetAddressIPv6
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The start prefix of the IPv6 Pool range."
::= { bIPv6PoolEntry 5 }
bIPv6PoolEndPrefix OBJECT-TYPE
SYNTAX InetAddressIPv6
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The end prefix of the IPv6 Pool range."
::= { bIPv6PoolEntry 6 }
bIPv6PoolTotalPrefixes OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of prefixes configured in the IPv6 Pool."
::= { bIPv6PoolEntry 7 }
bIPv6PoolReservedPrefixes OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of reserved prefixes configured in the IPv6 Pool."
::= { bIPv6PoolEntry 8 }
bIPv6PoolPeakFreePrefixes OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum number of free prefixes reached in the periodic interval."
::= { bIPv6PoolEntry 9 }
bIPv6PoolPeakUsedPrefixes OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum number of used prefixes reached in the periodic interval."
::= { bIPv6PoolEntry 10 }
bIPv6PoolUsedPrefixLowThreshold OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The low threshold for used IPv6 prefixes in this IPv6 Pool.
If the value for used IPv6 prefixes in this IPv6 Pool
becomes equal to or less than this value and the current
condition for bIPv6PoolUsedPrefixHigh is raised, then a
bIPv6PoolUsedPrefixLow event will be generated. No more
bIPv6PoolUsedPrefixLow events will be generated for this
IPv6 Pool during this execution until the value for
used prefixes has exceeded the value of
bIPv6PoolUsedPrefixHighThreshold."
::= { bIPv6PoolEntry 11 }
bIPv6PoolUsedPrefixHighThreshold OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The high threshold for used prefixes in this IPv6 Pool.
If a bIPv6PoolUsedPrefixLow event has been generated (or no
bIPv6PoolUsedPrefixHigh was generated previously) for this IPv6 Pool,
and the value for used prefixes has exceeded the value of
bIPv6PoolUsedAddrHighThreshold, then a
bIPv6PoolUsedAddrHigh event will be generated. No more
bIPv6PoolUsedAddrHigh events will be generated for this
IPv6 Pool during this execution until the value for used prefixes
becomes equal to or less than the value of
bIPv6PoolUsedAddrLowThreshold."
::= { bIPv6PoolEntry 12 }
bIPv6PoolGrpName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name of the IPv6 Pool Group."
::= { bIPv6PoolEntry 13 }
-- IPv6 Pool Group Table
bIPv6PoolGroupTable OBJECT-TYPE
SYNTAX SEQUENCE OF BIPv6PoolGroupEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of IPv6 Pool Groups that are configured in this server."
::= { bIPv6PoolMIBObjects 2 }
bIPv6PoolGroupEntry OBJECT-TYPE
SYNTAX BIPv6PoolGroupEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A logical row in the bIPv6PoolGroupTable."
INDEX {
bIPv6PoolGroupStatsInterval,
bIPv6PoolGroupIndex
}
::= { bIPv6PoolGroupTable 1 }
BIPv6PoolGroupEntry ::= SEQUENCE {
bIPv6PoolGroupStatsInterval Integer32,
bIPv6PoolGroupIndex Integer32,
bIPv6PoolGroupIntervalDuration Integer32,
bIPv6PoolGroupName DisplayString,
bIPv6PoolGroupTotalPrefixes Unsigned32,
bIPv6PoolGroupReservedPrefixes Unsigned32,
bIPv6PoolGroupPeakFreePrefixes Unsigned32,
bIPv6PoolGroupPeakUsedPrefixes Unsigned32
}
bIPv6PoolGroupStatsInterval OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The interval for acculating the measurements.
The interval index one indicates the latest interval for which statistics
accumulation was completed. Older the statistics interval data, greater the
interval index value.
In a system supporting a history of n intervals with IntervalCount(1) and
IntervalCount(n) the most and least recent intervals respectively, the following
applies at the end of a interval:
- discard the value of IntervalCount(n)
- the value of IntervalCount(i) becomes that
of IntervalCount(i+1) for 1 <= i < n
- the value of IntervalCount(1) becomes that
of CurrentCount"
::= { bIPv6PoolGroupEntry 1 }
bIPv6PoolGroupIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Index of the IPv6 Pool Group entry in the table."
::= { bIPv6PoolGroupEntry 2 }
bIPv6PoolGroupIntervalDuration OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Duration of the interval in minutes."
::= { bIPv6PoolGroupEntry 3 }
bIPv6PoolGroupName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name of the IPv6 Pool Group entry in the table."
::= { bIPv6PoolGroupEntry 4 }
bIPv6PoolGroupTotalPrefixes OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of prefixes configured in the IPv6 Pool Group."
::= { bIPv6PoolGroupEntry 5 }
bIPv6PoolGroupReservedPrefixes OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of reserved prefixes configured in the IPv6 Pool Group."
::= { bIPv6PoolGroupEntry 6 }
bIPv6PoolGroupPeakFreePrefixes OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum number of free prefixes reached in the periodic interval."
::= { bIPv6PoolGroupEntry 7 }
bIPv6PoolGroupPeakUsedPrefixes OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum number of used prefixes reached in the periodic interval ."
::= { bIPv6PoolGroupEntry 8 }
-- IPv6 Pool Global Table
bIPv6PoolGlobalTable OBJECT-TYPE
SYNTAX SEQUENCE OF BIPv6PoolGlobalEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of IPv6 Pool Global information in this server."
::= { bIPv6PoolMIBObjects 3 }
bIPv6PoolGlobalEntry OBJECT-TYPE
SYNTAX BIPv6PoolGlobalEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A logical row in the bIPv6PoolGlobalTable."
INDEX {
bIPv6PoolGlobalStatsInterval,
bIPv6PoolClientIndex
}
::= { bIPv6PoolGlobalTable 1 }
BIPv6PoolGlobalEntry ::= SEQUENCE {
bIPv6PoolGlobalStatsInterval Integer32,
bIPv6PoolClientIndex Integer32,
bIPv6PoolClientName DisplayString,
bIPv6PoolGlobalAllocReq Unsigned32,
bIPv6PoolGlobalAllocReqSucc Unsigned32,
bIPv6PoolGlobalAllocReqUnSucc Unsigned32,
bIPv6PoolGlobalDupAllocReq Unsigned32,
bIPv6PoolGlobalStaticAllocReq Unsigned32,
bIPv6PoolGlobalAllocResponses Unsigned32,
bIPv6PoolGlobalDeAllocReq Unsigned32,
bIPv6PoolGlobalDeAllocReqSucc Unsigned32,
bIPv6PoolGlobalDeAllocReqUnSucc Unsigned32,
bIPv6PoolGlobalInvalidReq Unsigned32,
bIPv6PoolGlobalNotAvailCount Unsigned32,
bIPv6PoolGlobalPoolExhaustedCount Unsigned32,
bIPv6PoolGlobalGroupExhaustedCount Unsigned32,
bIPv6PoolGlobalInvalidPoolNameCount Unsigned32,
bIPv6PoolGlobalInvalidGroupNameCount Unsigned32,
bIPv6PoolGlobalInvalidIPAddrCount Unsigned32,
bIPv6PoolGlobalHashInsertFail Unsigned32,
bIPv6PoolGlobalHashDeleteFail Unsigned32,
bIPv6PoolGlobalRequestedAllocatedMismacth Unsigned32,
bIPv6PoolGlobalRequestedIPNotFree Unsigned32,
bIPv6PoolGlobalGenErrCount Unsigned32,
bIPv6PoolGlobalPrefixRelDueToIntAdd Unsigned32,
bIPv6PoolTotalPoolCreatedEvents Unsigned32,
bIPv6PoolTotalPoolDeletedEvents Unsigned32,
bIPv6PoolGlobalIntervalDuration Integer32
}
bIPv6PoolGlobalStatsInterval OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The interval for acculating the measurements.
The interval index one indicates the latest interval for which statistics
accumulation was completed. Older the statistics interval data, greater the
interval index value.
In a system supporting a history of n intervals with IntervalCount(1) and
IntervalCount(n) the most and least recent intervals respectively, the following
applies at the end of a interval:
- discard the value of IntervalCount(n)
- the value of IntervalCount(i) becomes that
of IntervalCount(i+1) for 1 <= i < n
- the value of IntervalCount(1) becomes that
of CurrentCount"
::= { bIPv6PoolGlobalEntry 1 }
bIPv6PoolClientIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A number uniquely identifying the client which uses IPv6 Pool."
::= { bIPv6PoolGlobalEntry 2 }
bIPv6PoolClientName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"IPv6 Pool client name."
::= { bIPv6PoolGlobalEntry 3 }
bIPv6PoolGlobalAllocReq OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The count of IPv6 prefix allocation requests."
::= { bIPv6PoolGlobalEntry 4 }
bIPv6PoolGlobalAllocReqSucc OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The count of IPv6 prefix allocation requests for which
allocation was successful."
::= { bIPv6PoolGlobalEntry 5 }
bIPv6PoolGlobalAllocReqUnSucc OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The count of IPv6 prefix allocation requests for which
allocation was unsuccessful."
::= { bIPv6PoolGlobalEntry 6 }
bIPv6PoolGlobalDupAllocReq OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The count of duplicate IPv6 prefix allocation requests."
::= { bIPv6PoolGlobalEntry 7 }
bIPv6PoolGlobalStaticAllocReq OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The count of static IPv6 allocation requests."
::= { bIPv6PoolGlobalEntry 8 }
bIPv6PoolGlobalAllocResponses OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of IPv6 prefix allocation responses."
::= { bIPv6PoolGlobalEntry 9 }
bIPv6PoolGlobalDeAllocReq OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The count of IPv6 prefix deallocation requests."
::= { bIPv6PoolGlobalEntry 10 }
bIPv6PoolGlobalDeAllocReqSucc OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The count of IPv6 prefix successful deallocation requests."
::= { bIPv6PoolGlobalEntry 11 }
bIPv6PoolGlobalDeAllocReqUnSucc OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The count of IPv6 prefix unsuccessful deallocation requests."
::= { bIPv6PoolGlobalEntry 12 }
bIPv6PoolGlobalInvalidReq OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The count of invalid IPv6 prefix allocation requests."
::= { bIPv6PoolGlobalEntry 13 }
bIPv6PoolGlobalNotAvailCount OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The count of requests for which the requested IPv6 pool is unavailable."
::= { bIPv6PoolGlobalEntry 14 }
bIPv6PoolGlobalPoolExhaustedCount OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The count of requests for which the requested IPv6 pool is exhausted."
::= { bIPv6PoolGlobalEntry 15 }
bIPv6PoolGlobalGroupExhaustedCount OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The count of requests for which the requested IPv6 pool group is exhausted."
::= { bIPv6PoolGlobalEntry 16 }
bIPv6PoolGlobalInvalidPoolNameCount OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The count of requests with invalid IPv6 pool name."
::= { bIPv6PoolGlobalEntry 17 }
bIPv6PoolGlobalInvalidGroupNameCount OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The count of requests with invalid IPv6 pool group name."
::= { bIPv6PoolGlobalEntry 18 }
bIPv6PoolGlobalInvalidIPAddrCount OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of release requests with invalid IPv6 prefixes."
::= { bIPv6PoolGlobalEntry 19 }
bIPv6PoolGlobalHashInsertFail OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The count of prefixes for which hash insert failed."
::= { bIPv6PoolGlobalEntry 20 }
bIPv6PoolGlobalHashDeleteFail OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The count of prefixes for which hash delete failed."
::= { bIPv6PoolGlobalEntry 21 }
bIPv6PoolGlobalRequestedAllocatedMismacth OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of requests for which allocated and requested IPv6 prefixes do not match."
::= { bIPv6PoolGlobalEntry 22 }
bIPv6PoolGlobalRequestedIPNotFree OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The count of requested prefixes which were not free."
::= { bIPv6PoolGlobalEntry 23 }
bIPv6PoolGlobalGenErrCount OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of errors like memory allocation failures."
::= { bIPv6PoolGlobalEntry 24 }
bIPv6PoolGlobalPrefixRelDueToIntAdd OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The count of prefixes released due to interface addition."
::= { bIPv6PoolGlobalEntry 25 }
bIPv6PoolTotalPoolCreatedEvents OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of ipv6 pool create events."
::= { bIPv6PoolGlobalEntry 26}
bIPv6PoolTotalPoolDeletedEvents OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of ipv6 pool deleted events."
::= { bIPv6PoolGlobalEntry 27}
bIPv6PoolGlobalIntervalDuration OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Duration of the interval in minutes."
::= { bIPv6PoolGlobalEntry 28 }
-- IPv6 Pool Notifications
bIPv6PoolUsedPrefixLow NOTIFICATION-TYPE
OBJECTS {
bIPv6PoolName,
bIPv6PoolTotalPrefixes,
bIPv6PoolUsedPrefixLowThreshold
}
STATUS current
DESCRIPTION
"This notification signifies that the number of used prefixes
for a particular IPv6 Pool is cleared, meaning that it
has fallen below the value of bIPv6PoolUsedPrefixLowThreshold
for that IPv6 Pool."
::= { bIPPoolNotifications 3 }
bIPv6PoolUsedPrefixHigh NOTIFICATION-TYPE
OBJECTS {
bIPv6PoolName,
bIPv6PoolTotalPrefixes,
bIPv6PoolUsedPrefixHighThreshold
}
STATUS current
DESCRIPTION
"This notification signifies that the number of used
prefixes for a particular IPv6 Pool has risen above the
value of bIPv6PoolUsedPrefixHighThreshold for that IPv6 Pool."
::= { bIPPoolNotifications 4 }
bIPv6PoolPrefixExhausted NOTIFICATION-TYPE
OBJECTS {
bIPv6PoolName,
bIPv6PoolTotalPrefixes
}
STATUS current
DESCRIPTION
"This notification signifies that the particular IPv6 pool is
exhausted."
::= { bIPPoolNotifications 6 }
END
|