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
|
BENU-CGNAT-STATS-MIB DEFINITIONS ::= BEGIN
IMPORTS
Integer32, Unsigned32, Counter64, MODULE-IDENTITY, OBJECT-TYPE, OBJECT-IDENTITY, NOTIFICATION-TYPE
FROM SNMPv2-SMI
DisplayString, MacAddress
FROM SNMPv2-TC
InetAddressType, InetAddress
FROM INET-ADDRESS-MIB
benuWAG FROM BENU-WAG-MIB;
benuCgnatStatsMIB MODULE-IDENTITY
LAST-UPDATED "201701240000Z" -- January 24, 2017
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
"This MIB module defines CGNAT statistics of
Benu Wireless Access Gateway.
Copyright (C) 2014 by Benu Networks, Inc.
All rights reserved."
REVISION "201701240000Z" -- January 24, 2017
DESCRIPTION "Added scalar for DS-Lite Tunnel port blocks usage rising threshold."
REVISION "201701040000Z" -- January 4, 2017
DESCRIPTION "Added notification for Tunnel CGNAT port block allocation low threshold."
REVISION "201612220000Z" -- December 22, 2016
DESCRIPTION "Added notification for Tunnel CGNAT port block allocation high threshold."
REVISION "201501270000Z" -- 27 January, 2015
DESCRIPTION "Updated notification assignments to comply with standards (RFC 2578)."
REVISION "201412100000Z" -- 10 December 2014
DESCRIPTION "A separate table to show CGNAT subscribers
actively utilizing ports greater than the
configured threshold."
REVISION "201411240000Z" -- 24 November 2014
DESCRIPTION "Initial Version"
::= { benuWAG 9 }
-- declare top-level MIB objects for each component
bCgnatMIBObjects OBJECT-IDENTITY
STATUS current
DESCRIPTION
"WAG CGNAT objects are defined in this branch."
::= { benuCgnatStatsMIB 1 }
bCgnatNotifications OBJECT-IDENTITY
STATUS current
DESCRIPTION
"CGNAT notifications are defined in this branch."
::= { benuCgnatStatsMIB 0 }
bCgnatNotifObjects OBJECT-IDENTITY
STATUS current
DESCRIPTION
"MIB objects for CGNAT notifications are defined in this branch."
::= { benuCgnatStatsMIB 2 }
-- CGNAT Auth Stats Table
bCgnatAuthStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF BCgnatAuthStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of CGNAT statistics for authenticated subscribers."
::= { bCgnatMIBObjects 1 }
bCgnatAuthStatsEntry OBJECT-TYPE
SYNTAX BCgnatAuthStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A logical row in the bCgnatAuthStatsTable."
INDEX {
bCgnatAuthStatsIndex
}
::= { bCgnatAuthStatsTable 1 }
BCgnatAuthStatsEntry ::= SEQUENCE {
bCgnatAuthStatsIndex Integer32,
bCgnatAuthProfileName DisplayString,
bCgnatAuthDomainPublicIpZeroCount Counter64,
bCgnatAuthDomainNoFreePortCount Counter64,
bCgnatAuthFlowAddSuccessCount Counter64,
bCgnatAuthFlowAddFailureCount Counter64,
bCgnatAuthTimerAllocFailureCount Counter64,
bCgnatAuthFlowDeleteSuccessCount Counter64,
bCgnatAuthFlowDeleteFailureCount Counter64,
bCgnatAuthUnsupportedL4DropCount Counter64,
bCgnatAuthNatflowSyncFailureCount Counter64,
bCgnatAuthIcmpIdAllocSuccessCount Counter64,
bCgnatAuthTcpPortAllocSuccessCount Counter64,
bCgnatAuthUdpPortAllocSuccessCount Counter64,
bCgnatAuthIcmpIdAllocFailureCount Counter64,
bCgnatAuthTcpPortAllocFailureCount Counter64,
bCgnatAuthUdpPortAllocFailureCount Counter64,
bCgnatAuthIcmpIdReleaseSuccessCount Counter64,
bCgnatAuthTcpPortReleaseSuccessCount Counter64,
bCgnatAuthUdpPortReleaseSuccessCount Counter64,
bCgnatAuthIcmpIdReleaseFailureCount Counter64,
bCgnatAuthTcpPortReleaseFailureCount Counter64,
bCgnatAuthUdpPortReleaseFailureCount Counter64,
bCgnatAuthMaxCgnatPortsExceeded Counter64,
bCgnatAuthMaxIcmpIdsExceeded Counter64,
bCgnatAuthFlowDeleteRcvd Counter64,
bCgnatAuthFlowDeleteSent Counter64,
bCgnatAuthFlowDeleteFindFailure Counter64,
bCgnatAuthDnsFlowAlloc Counter64,
bCgnatAuthDnsFlowRelease Counter64,
bCgnatAuthDnsFlowAllocSuccessCount Counter64,
bCgnatAuthDnsFlowReleaseSuccessCount Counter64,
bCgnatAuthDnsFlowAllocFailureCount Counter64,
bCgnatAuthDnsFlowReleaseFailureCount Counter64,
bCgnatAuthPortsThresholdExceededSent Counter64,
bCgnatAuthPortsThresholdExceededRcvd Counter64,
bCgnatAuthPortsThresholdExceededInt Counter64,
bCgnatAuthPortsThresholdExceededErr Counter64,
bCgnatAuthUnsupportedActionIdRcvd Counter64,
bCgnatAuthNonTcpSynPortAllocDrop Counter64,
bCgnatAuthFlowDeletedTimer Counter64,
bCgnatAuthFlowDeletedSessionEnded Counter64,
bCgnatAuthFlowDeletedSubClear Counter64,
bCgnatAuthNatFlowDelErrSubIdMismatch Counter64,
bCgnatAuthNatFlowDelErrValidFlagNotSet Counter64,
bCgnatAuthIcmpPortUnreachableSent Counter64,
bCgnatAuthPortsNotAvailableDrop Counter64,
bCgnatAuthUnsupportedPrivatePortDropCount Counter64
}
bCgnatAuthStatsIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A number uniquely identifying this row in the CGNAT statistics table."
::= { bCgnatAuthStatsEntry 1 }
bCgnatAuthProfileName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name of the CGNAT profile."
::= { bCgnatAuthStatsEntry 2 }
bCgnatAuthDomainPublicIpZeroCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Domain Public IP as zero count."
::= { bCgnatAuthStatsEntry 3 }
bCgnatAuthDomainNoFreePortCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Domain no free port count."
::= { bCgnatAuthStatsEntry 4 }
bCgnatAuthFlowAddSuccessCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Flow add success count."
::= { bCgnatAuthStatsEntry 5 }
bCgnatAuthFlowAddFailureCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Flow add failure count."
::= { bCgnatAuthStatsEntry 6 }
bCgnatAuthTimerAllocFailureCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Timer allocation failure count."
::= { bCgnatAuthStatsEntry 7 }
bCgnatAuthFlowDeleteSuccessCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Flow delete success count."
::= { bCgnatAuthStatsEntry 8 }
bCgnatAuthFlowDeleteFailureCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Flow delete failure count."
::= { bCgnatAuthStatsEntry 9 }
bCgnatAuthUnsupportedL4DropCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Unsupported L4 Protocol packets drop count."
::= { bCgnatAuthStatsEntry 10 }
bCgnatAuthNatflowSyncFailureCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"NAT Flow sync failure count."
::= { bCgnatAuthStatsEntry 11 }
bCgnatAuthIcmpIdAllocSuccessCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"ICMP ID Allocation success count."
::= { bCgnatAuthStatsEntry 12 }
bCgnatAuthTcpPortAllocSuccessCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"TCP port allocation success count."
::= { bCgnatAuthStatsEntry 13 }
bCgnatAuthUdpPortAllocSuccessCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"UDP port allocation success count."
::= { bCgnatAuthStatsEntry 14 }
bCgnatAuthIcmpIdAllocFailureCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"ICMP ID Allocation failure count."
::= { bCgnatAuthStatsEntry 15 }
bCgnatAuthTcpPortAllocFailureCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"TCP Port allocation falire count."
::= { bCgnatAuthStatsEntry 16 }
bCgnatAuthUdpPortAllocFailureCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"UDP Port allocation failure count."
::= { bCgnatAuthStatsEntry 17 }
bCgnatAuthIcmpIdReleaseSuccessCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"ICMP ID release success count."
::= { bCgnatAuthStatsEntry 18 }
bCgnatAuthTcpPortReleaseSuccessCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"TCP Port release success count."
::= { bCgnatAuthStatsEntry 19 }
bCgnatAuthUdpPortReleaseSuccessCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"UDP Port release success count."
::= { bCgnatAuthStatsEntry 20 }
bCgnatAuthIcmpIdReleaseFailureCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"ICMP Id release failure count."
::= { bCgnatAuthStatsEntry 21 }
bCgnatAuthTcpPortReleaseFailureCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"TCP Port release failure count."
::= { bCgnatAuthStatsEntry 22 }
bCgnatAuthUdpPortReleaseFailureCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"UDP port release failure count."
::= { bCgnatAuthStatsEntry 23 }
bCgnatAuthMaxCgnatPortsExceeded OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Maximum CGNAT Ports exceeded count."
::= { bCgnatAuthStatsEntry 24 }
bCgnatAuthMaxIcmpIdsExceeded OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Maximum ICMP Id exceeded count."
::= { bCgnatAuthStatsEntry 25 }
bCgnatAuthFlowDeleteRcvd OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"CGNAT Flow delete received count."
::= { bCgnatAuthStatsEntry 26 }
bCgnatAuthFlowDeleteSent OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"CGNAT Flow delete sent count."
::= { bCgnatAuthStatsEntry 27 }
bCgnatAuthFlowDeleteFindFailure OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"CGNAT Flow delete find failure count."
::= { bCgnatAuthStatsEntry 28 }
bCgnatAuthDnsFlowAlloc OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"DNS Flow allocation count."
::= { bCgnatAuthStatsEntry 29 }
bCgnatAuthDnsFlowRelease OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"DNS Flow release count."
::= { bCgnatAuthStatsEntry 30 }
bCgnatAuthDnsFlowAllocSuccessCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"DNS Flow allocation success count."
::= { bCgnatAuthStatsEntry 31 }
bCgnatAuthDnsFlowReleaseSuccessCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"DNS Flow release success count."
::= { bCgnatAuthStatsEntry 32 }
bCgnatAuthDnsFlowAllocFailureCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"DNS Flow allocation failure count."
::= { bCgnatAuthStatsEntry 33 }
bCgnatAuthDnsFlowReleaseFailureCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"DNS Flow release failure count."
::= { bCgnatAuthStatsEntry 34 }
bCgnatAuthPortsThresholdExceededSent OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Port threshold exceeded sent count."
::= { bCgnatAuthStatsEntry 35 }
bCgnatAuthPortsThresholdExceededRcvd OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Port threshold exceeded received count."
::= { bCgnatAuthStatsEntry 36 }
bCgnatAuthPortsThresholdExceededInt OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Port threshold exceeded interrupt count."
::= { bCgnatAuthStatsEntry 37 }
bCgnatAuthPortsThresholdExceededErr OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Port threshold exceeded error count."
::= { bCgnatAuthStatsEntry 38 }
bCgnatAuthUnsupportedActionIdRcvd OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Unsupported action Id received count."
::= { bCgnatAuthStatsEntry 39 }
bCgnatAuthNonTcpSynPortAllocDrop OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Non TCP SYN Port allocation count."
::= { bCgnatAuthStatsEntry 40 }
bCgnatAuthFlowDeletedTimer OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"CGNAT Flows deleted due to timer."
::= { bCgnatAuthStatsEntry 41 }
bCgnatAuthFlowDeletedSessionEnded OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"CGNAT Flows deleted due to session ended."
::= { bCgnatAuthStatsEntry 42 }
bCgnatAuthFlowDeletedSubClear OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"CGNAT Flow delete due to clearing subescriber."
::= { bCgnatAuthStatsEntry 43 }
bCgnatAuthNatFlowDelErrSubIdMismatch OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"CGNAT Flow delete due to subscriber ID mismatch."
::= { bCgnatAuthStatsEntry 44 }
bCgnatAuthNatFlowDelErrValidFlagNotSet OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Flow delete error due to valid flag not set."
::= { bCgnatAuthStatsEntry 45 }
bCgnatAuthIcmpPortUnreachableSent OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"ICMP Port unreachable sent."
::= { bCgnatAuthStatsEntry 46 }
bCgnatAuthPortsNotAvailableDrop OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Packets dropped due to port not available."
::= { bCgnatAuthStatsEntry 47 }
bCgnatAuthUnsupportedPrivatePortDropCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Unsupported Private port drop count."
::= { bCgnatAuthStatsEntry 48 }
-- CGNAT unauth Stats Table
bCgnatUnauthStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF BCgnatUnauthStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of CGNAT statistics for unauthenticated subscribers."
::= { bCgnatMIBObjects 2 }
bCgnatUnauthStatsEntry OBJECT-TYPE
SYNTAX BCgnatUnauthStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A logical row in the bCgnatUnauthStatsTable."
INDEX {
bCgnatUnauthStatsIndex
}
::= { bCgnatUnauthStatsTable 1 }
BCgnatUnauthStatsEntry ::= SEQUENCE {
bCgnatUnauthStatsIndex Integer32,
bCgnatUnauthProfileName DisplayString,
bCgnatUnauthDomainPublicIpZeroCount Counter64,
bCgnatUnauthDomainNoFreePortCount Counter64,
bCgnatUnauthFlowAddSuccessCount Counter64,
bCgnatUnauthFlowAddFailureCount Counter64,
bCgnatUnauthTimerAllocFailureCount Counter64,
bCgnatUnauthFlowDeleteSuccessCount Counter64,
bCgnatUnauthFlowDeleteFailureCount Counter64,
bCgnatUnauthUnsupportedL4DropCount Counter64,
bCgnatUnauthNatflowSyncFailureCount Counter64,
bCgnatUnauthIcmpIdAllocSuccessCount Counter64,
bCgnatUnauthTcpPortAllocSuccessCount Counter64,
bCgnatUnauthUdpPortAllocSuccessCount Counter64,
bCgnatUnauthIcmpIdAllocFailureCount Counter64,
bCgnatUnauthTcpPortAllocFailureCount Counter64,
bCgnatUnauthUdpPortAllocFailureCount Counter64,
bCgnatUnauthIcmpIdReleaseSuccessCount Counter64,
bCgnatUnauthTcpPortReleaseSuccessCount Counter64,
bCgnatUnauthUdpPortReleaseSuccessCount Counter64,
bCgnatUnauthIcmpIdReleaseFailureCount Counter64,
bCgnatUnauthTcpPortReleaseFailureCount Counter64,
bCgnatUnauthUdpPortReleaseFailureCount Counter64,
bCgnatUnauthMaxCgnatPortsExceeded Counter64,
bCgnatUnauthMaxIcmpIdsExceeded Counter64,
bCgnatUnauthFlowDeleteRcvd Counter64,
bCgnatUnauthFlowDeleteSent Counter64,
bCgnatUnauthFlowDeleteFindFailure Counter64,
bCgnatUnauthDnsFlowAlloc Counter64,
bCgnatUnauthDnsFlowRelease Counter64,
bCgnatUnauthDnsFlowAllocSuccessCount Counter64,
bCgnatUnauthDnsFlowReleaseSuccessCount Counter64,
bCgnatUnauthDnsFlowAllocFailureCount Counter64,
bCgnatUnauthDnsFlowReleaseFailureCount Counter64,
bCgnatUnauthPortsThresholdExceededSent Counter64,
bCgnatUnauthPortsThresholdExceededRcvd Counter64,
bCgnatUnauthPortsThresholdExceededInt Counter64,
bCgnatUnauthPortsThresholdExceededErr Counter64,
bCgnatUnauthUnsupportedActionIdRcvd Counter64,
bCgnatUnauthNonTcpSynPortAllocDrop Counter64,
bCgnatUnauthFlowDeletedTimer Counter64,
bCgnatUnauthFlowDeletedSessionEnded Counter64,
bCgnatUnauthFlowDeletedSubClear Counter64,
bCgnatUnauthNatFlowDelErrSubIdMismatch Counter64,
bCgnatUnauthNatFlowDelErrValidFlagNotSet Counter64,
bCgnatUnauthIcmpPortUnreachableSent Counter64,
bCgnatUnauthPortsNotAvailableDrop Counter64,
bCgnatUnauthUnsupportedPrivatePortDropCount Counter64
}
bCgnatUnauthStatsIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A number uniquely identifying this row in the CGNAT statistics table."
::= { bCgnatUnauthStatsEntry 1 }
bCgnatUnauthProfileName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name of the CGNAT profile."
::= { bCgnatUnauthStatsEntry 2 }
bCgnatUnauthDomainPublicIpZeroCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Domain Public IP as zero count."
::= { bCgnatUnauthStatsEntry 3 }
bCgnatUnauthDomainNoFreePortCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Domain no free port count."
::= { bCgnatUnauthStatsEntry 4 }
bCgnatUnauthFlowAddSuccessCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Flow add success count."
::= { bCgnatUnauthStatsEntry 5 }
bCgnatUnauthFlowAddFailureCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Flow add failure count."
::= { bCgnatUnauthStatsEntry 6 }
bCgnatUnauthTimerAllocFailureCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Timer allocation failure count."
::= { bCgnatUnauthStatsEntry 7 }
bCgnatUnauthFlowDeleteSuccessCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Flow delete success count."
::= { bCgnatUnauthStatsEntry 8 }
bCgnatUnauthFlowDeleteFailureCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Flow delete failure count."
::= { bCgnatUnauthStatsEntry 9 }
bCgnatUnauthUnsupportedL4DropCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Unsupported L4 Protocol packets drop count."
::= { bCgnatUnauthStatsEntry 10 }
bCgnatUnauthNatflowSyncFailureCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"NAT Flow sync failure count."
::= { bCgnatUnauthStatsEntry 11 }
bCgnatUnauthIcmpIdAllocSuccessCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"ICMP ID Allocation success count."
::= { bCgnatUnauthStatsEntry 12 }
bCgnatUnauthTcpPortAllocSuccessCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"TCP port allocation success count."
::= { bCgnatUnauthStatsEntry 13 }
bCgnatUnauthUdpPortAllocSuccessCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"UDP port allocation success count."
::= { bCgnatUnauthStatsEntry 14 }
bCgnatUnauthIcmpIdAllocFailureCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"ICMP ID Allocation failure count."
::= { bCgnatUnauthStatsEntry 15 }
bCgnatUnauthTcpPortAllocFailureCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"TCP Port allocation falire count."
::= { bCgnatUnauthStatsEntry 16 }
bCgnatUnauthUdpPortAllocFailureCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"UDP Port allocation failure count."
::= { bCgnatUnauthStatsEntry 17 }
bCgnatUnauthIcmpIdReleaseSuccessCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"ICMP ID release success count."
::= { bCgnatUnauthStatsEntry 18 }
bCgnatUnauthTcpPortReleaseSuccessCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"TCP Port release success count."
::= { bCgnatUnauthStatsEntry 19 }
bCgnatUnauthUdpPortReleaseSuccessCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"UDP Port release success count."
::= { bCgnatUnauthStatsEntry 20 }
bCgnatUnauthIcmpIdReleaseFailureCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"ICMP Id release failure count."
::= { bCgnatUnauthStatsEntry 21 }
bCgnatUnauthTcpPortReleaseFailureCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"TCP Port release failure count."
::= { bCgnatUnauthStatsEntry 22 }
bCgnatUnauthUdpPortReleaseFailureCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"UDP port release failure count."
::= { bCgnatUnauthStatsEntry 23 }
bCgnatUnauthMaxCgnatPortsExceeded OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Maximum CGNAT Ports exceeded count."
::= { bCgnatUnauthStatsEntry 24 }
bCgnatUnauthMaxIcmpIdsExceeded OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Maximum ICMP Id exceeded count."
::= { bCgnatUnauthStatsEntry 25 }
bCgnatUnauthFlowDeleteRcvd OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"CGNAT Flow delete received count."
::= { bCgnatUnauthStatsEntry 26 }
bCgnatUnauthFlowDeleteSent OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"CGNAT Flow delete sent count."
::= { bCgnatUnauthStatsEntry 27 }
bCgnatUnauthFlowDeleteFindFailure OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"CGNAT Flow delete find failure count."
::= { bCgnatUnauthStatsEntry 28 }
bCgnatUnauthDnsFlowAlloc OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"DNS Flow allocation count."
::= { bCgnatUnauthStatsEntry 29 }
bCgnatUnauthDnsFlowRelease OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"DNS Flow release count."
::= { bCgnatUnauthStatsEntry 30 }
bCgnatUnauthDnsFlowAllocSuccessCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"DNS Flow allocation success count."
::= { bCgnatUnauthStatsEntry 31 }
bCgnatUnauthDnsFlowReleaseSuccessCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"DNS Flow release success count."
::= { bCgnatUnauthStatsEntry 32 }
bCgnatUnauthDnsFlowAllocFailureCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"DNS Flow allocation failure count."
::= { bCgnatUnauthStatsEntry 33 }
bCgnatUnauthDnsFlowReleaseFailureCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"DNS Flow release failure count."
::= { bCgnatUnauthStatsEntry 34 }
bCgnatUnauthPortsThresholdExceededSent OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Port threshold exceeded sent count."
::= { bCgnatUnauthStatsEntry 35 }
bCgnatUnauthPortsThresholdExceededRcvd OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Port threshold exceeded received count."
::= { bCgnatUnauthStatsEntry 36 }
bCgnatUnauthPortsThresholdExceededInt OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Port threshold exceeded interrupt count."
::= { bCgnatUnauthStatsEntry 37 }
bCgnatUnauthPortsThresholdExceededErr OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Port threshold exceeded error count."
::= { bCgnatUnauthStatsEntry 38 }
bCgnatUnauthUnsupportedActionIdRcvd OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Unsupported action Id received count."
::= { bCgnatUnauthStatsEntry 39 }
bCgnatUnauthNonTcpSynPortAllocDrop OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Non TCP SYN Port allocation count."
::= { bCgnatUnauthStatsEntry 40 }
bCgnatUnauthFlowDeletedTimer OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"CGNAT Flows deleted due to timer."
::= { bCgnatUnauthStatsEntry 41 }
bCgnatUnauthFlowDeletedSessionEnded OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"CGNAT Flows deleted due to session ended."
::= { bCgnatUnauthStatsEntry 42 }
bCgnatUnauthFlowDeletedSubClear OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"CGNAT Flow delete due to clearing subescriber."
::= { bCgnatUnauthStatsEntry 43 }
bCgnatUnauthNatFlowDelErrSubIdMismatch OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"CGNAT Flow delete due to subscriber ID mismatch."
::= { bCgnatUnauthStatsEntry 44 }
bCgnatUnauthNatFlowDelErrValidFlagNotSet OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Flow delete error due to valid flag not set."
::= { bCgnatUnauthStatsEntry 45 }
bCgnatUnauthIcmpPortUnreachableSent OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"ICMP Port unreachable sent."
::= { bCgnatUnauthStatsEntry 46 }
bCgnatUnauthPortsNotAvailableDrop OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Packets dropped due to port not available."
::= { bCgnatUnauthStatsEntry 47 }
bCgnatUnauthUnsupportedPrivatePortDropCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Unsupported Private port drop count."
::= { bCgnatUnauthStatsEntry 48 }
-- CGNAT Auth Subscriber Port Utilization Table
bCgnatAuthPortUtilTable OBJECT-TYPE
SYNTAX SEQUENCE OF BCgnatAuthPortUtilEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of CGNAT statistics for each authenticated subscriber that
has crossed port utilization threshold."
::= { bCgnatMIBObjects 3 }
bCgnatAuthPortUtilEntry OBJECT-TYPE
SYNTAX BCgnatAuthPortUtilEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A logical row in the bCgnatAuthPortUtilTable."
INDEX {
bCgnatAuthPortUtilIndex
}
::= { bCgnatAuthPortUtilTable 1 }
BCgnatAuthPortUtilEntry ::= SEQUENCE {
bCgnatAuthPortUtilIndex Unsigned32,
bCgnatAuthSubscriberMac MacAddress,
bCgnatAuthSubscriberPortsFree Unsigned32
}
bCgnatAuthPortUtilIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The Port utilization table index of the CGNAT subscriber
for which the current ports in use has crossed the
configured high water mark."
::= { bCgnatAuthPortUtilEntry 1 }
bCgnatAuthSubscriberMac OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The MAC address of the authenticated CGNAT subscriber
for which the current ports in use has crossed the
configured high water mark."
::= { bCgnatAuthPortUtilEntry 2 }
bCgnatAuthSubscriberPortsFree OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of free ports for the authenticated CGNAT subscriber
for which the current ports in use has crossed the
configured high water mark."
::= { bCgnatAuthPortUtilEntry 3 }
-- CGNAT Scalars
bCgnatAuthPortRisingThresholdCrossedSubCount OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The count of the total number of authenticated CGNAT subscribers
whose port usage is above the configured rising threshold."
::= { bCgnatMIBObjects 4 }
bDslitePortBlockRisingThresholdCrossedTunCount OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The count of the total number of DS-Lite tunnels
whose port blocks usage is above the configured rising threshold."
::= { bCgnatMIBObjects 5 }
-- Notification Definitions
bCgnatSubscriberMac OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"MAC address of the subscriber."
::= { bCgnatNotifObjects 1 }
bCgnatTotalPortBlocksPerSubscriber OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Number of port blocks available for the authenticated CGNAT subscriber."
::= { bCgnatNotifObjects 2 }
bCgnatPortBlocksUsedHighThreshold OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The high threshold for the number of used CGNAT port blocks by authenticated subscribers.
If the number of used port blocks exceeds this value,
a bCgnatPortBlocksUsedHighThresholdReached event
will be generated. No more bCgnatPortBlocksUsedHighThresholdReached
events will be generated until the value of the number of
used CGNAT port blocks becomes equal to or less than
the value of bCgnatPortBlocksUsedLowThreshold. The ratio of this
value to the total number of port blocks is reported as percentage in
this object.
Units: Percentage in the range 0 - 100."
::= { bCgnatNotifObjects 3 }
bCgnatPortBlocksUsedLowThreshold OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The low threshold for the number of used CGNAT port blocks by authenticated subscribers.
If a bCgnatPortBlocksUsedHighThresholdReached
event had previously been generated, and if the number of
used port blocks equals to or falls below this value, a
bCgnatPortBlocksUsedLowThresholdReached event will be generated.
No more bCgnatPortBlocksUsedLowThreshold events will be
generated until the value of the number of used CGNAT Port
blocks exceeds bCgnatPortBlocksUsedHighThresholdReached and a
bCgnatPortBlocksUsedHighThresholdReached is first generated.
The ratio of this value to the total number of port blocks is
reported as percentage in this object.
Units: Percentage in the range 0 - 100."
::= { bCgnatNotifObjects 4 }
bCgnatThresholdTunnelId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The Id of the CGNAT Tunnel using tunnel port blocks,
for which the current ports in use has crossed the
configured high water mark."
::= { bCgnatNotifObjects 5 }
bCgnatEvenPortsForTunnel OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Number of even free ports available for the tunnel
for which the current ports in use has crossed the
configured high/low water mark."
::= { bCgnatNotifObjects 6 }
bCgnatOddPortsForTunnel OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Number of odd free ports available for the tunnel
for which the current ports in use has crossed the
configured high/low water mark."
::= { bCgnatNotifObjects 7 }
bCgnatPortParity OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Port parity which hit the high/low watermark, 1 for odd port and 2 for Even"
::= { bCgnatNotifObjects 8 }
bCgnatTunnelPortBlocksUsedHighThreshold OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The high threshold for the number of used CGNAT port by a Dslite Tunnel.
If the number of used ports in the last port block allocated for the tunnel exceeds this value,
a bCgnatTunnelPortsUsedHighThresholdReached event
will be generated. No more bCgnatTunnelPortBlocksUsedHighThresholdReached
events will be generated until the value of the total number of
CGNAT available ports becomes equal to or less than half of the
the value of bCgnatTunnelPortsUsedHighThreshold. The ratio of this
value to the total number of ports is reported as percentage in
this object.
Units: Percentage in the range 0 - 100."
::= { bCgnatNotifObjects 9 }
bCgnatTunnelPortBlocksUsedLowThreshold OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The Low threshold for the number of used CGNAT port by a Dslite Tunnel.
If the total number of free ports from all the port blocks allocated for the tunnel exceeds this value,
a bCgnatTunnelPortsUsedLowThresholdReached event
will be generated. No more bCgnatTunnelPortBlocksUsedLowThresholdReached
events will be generated until a bCgnatTunnelPortBlocksUsedHighThresholdReached is generated.
Units: Percentage in the range 0 - 100."
::= { bCgnatNotifObjects 10 }
bCgnatPortBlocksUsedHighThresholdReached NOTIFICATION-TYPE
OBJECTS {
bCgnatSubscriberMac,
bCgnatTotalPortBlocksPerSubscriber,
bCgnatPortBlocksUsedHighThreshold
}
STATUS current
DESCRIPTION
"This notification signifies that the current number of
used CGNAT port blocks used for an authenticated subscriber has risen above
the value of bCgnatPortBlocksUsedHighThreshold."
::= { bCgnatNotifications 1 }
bCgnatPortBlocksUsedLowThresholdReached NOTIFICATION-TYPE
OBJECTS {
bCgnatSubscriberMac,
bCgnatTotalPortBlocksPerSubscriber,
bCgnatPortBlocksUsedLowThreshold
}
STATUS current
DESCRIPTION
"This notification signifies that the current number of
used CGNAT Port blocks for an authenticated subscriber has fallen below the value of
bCgnatPortBlocksUsedLowThreshold."
::= { bCgnatNotifications 2 }
bCgnatTunnelPortBlocksUsedHighThresholdReached NOTIFICATION-TYPE
OBJECTS {
bCgnatThresholdTunnelId,
bCgnatEvenPortsForTunnel,
bCgnatOddPortsForTunnel,
bCgnatPortParity,
bCgnatTunnelPortBlocksUsedHighThreshold
}
STATUS current
DESCRIPTION
"This notification signifies that the current number of
used CGNAT port blocks used for a Tunnel has risen above
the value of bCgnatTunnelPortBlocksUsedHighThreshold."
::= { bCgnatNotifications 3 }
bCgnatTunnelPortBlocksUsedLowThresholdReached NOTIFICATION-TYPE
OBJECTS {
bCgnatThresholdTunnelId,
bCgnatEvenPortsForTunnel,
bCgnatOddPortsForTunnel,
bCgnatPortParity,
bCgnatTunnelPortBlocksUsedLowThreshold
}
STATUS current
DESCRIPTION
"This notification signifies that the current number of
used CGNAT port blocks used for a Tunnel has fallen below
the value of bCgnatTunnelPortBlocksUsedLowThreshold."
::= { bCgnatNotifications 4 }
END
|