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
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
|
-- JUNIPER-MOBILITY-CHARGING-MIB
-- Copyright (c) 2011-2013, Juniper Networks, Inc.
-- All rights reserved.
--
-- The contents of this document are subject to change without notice.
--
JUNIPER-MOBILITY-CHARGING-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE,
Counter32, Counter64, Gauge32, Integer32, Unsigned32, IpAddress
FROM SNMPv2-SMI
TruthValue
FROM SNMPv2-TC
TEXTUAL-CONVENTION, DisplayString, RowStatus, TruthValue
FROM SNMPv2-TC
MODULE-COMPLIANCE, OBJECT-GROUP, NOTIFICATION-GROUP
FROM SNMPv2-CONF
jnxMbgGwIndex, jnxMbgGwName
FROM JUNIPER-MOBILE-GATEWAYS
jnxMobileGatewayPgwGgsn
FROM JUNIPER-MBG-SMI;
jnxMbgPgwChargingMib MODULE-IDENTITY
LAST-UPDATED "201006151430Z" -- Tue Jun 15 14:30:00 2010 UTC
ORGANIZATION "Juniper Networks, Inc."
CONTACT-INFO
"Juniper Technical Assistance Center
Juniper Networks, Inc.
1133 Innovation Way
Sunnyvale, CA 94089
E-mail: support@juniper.net"
DESCRIPTION
"This is Juniper Networks implementation of Mobility Charging MIB for
PGW (Packet Data Networks Gateway ) in 3GPP LTE network and the
Gateway GPRS Support Node (GGSN) in the 3GPP 3G Network."
-- revision history --
REVISION "201006151430Z" -- 15 June, 2010
DESCRIPTION
"Initial version."
REVISION "201110101430Z" -- 10 Oct, 2011
DESCRIPTION
"CGF group and CGF tables index keys has changed to
gateway id and profile id. Gateway id and gateway name has
added to all the traps."
REVISION "201203161430Z" -- 16 March, 2012
DESCRIPTION
"GGSN/PGW Charging global statistics table has added."
::= { jnxMobileGatewayPgwGgsn 3 }
jnxMbgPgwCgNotifications OBJECT IDENTIFIER ::= { jnxMbgPgwChargingMib 0 }
jnxMbgPgwChargingObjects OBJECT IDENTIFIER ::= { jnxMbgPgwChargingMib 1 }
jnxMbgPgwCgLcStorageStats OBJECT IDENTIFIER ::= {
jnxMbgPgwChargingObjects 1 }
jnxMbgPgwCgCgfGroupsStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF JnxMbgPgwCgCgfGrpStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table listing the stats for all (Charging Gateway Function) CGF
Groups configured on the PGW."
::= { jnxMbgPgwChargingObjects 2 }
jnxMbgPgwCgNotificationVars OBJECT IDENTIFIER ::= {
jnxMbgPgwChargingObjects 3 }
jnxMbgPgwCgCgfStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF JnxMbgPgwCgCgfStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table listing the statistics for all CGF configured on the PGW."
::= { jnxMbgPgwChargingObjects 4 }
jnxMbgPgwCgLpsStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF JnxMbgPgwCgLpsStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table listing the stats for all Local persistent storage stats
configured on the PGW."
::= { jnxMbgPgwChargingObjects 5 }
jnxMbgPgwCgTspStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF JnxMbgPgwCgTspStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table listing the stats for all (Charging Gateway Function) CGF
Groups configured on the PGW."
::= { jnxMbgPgwChargingObjects 6 }
jnxMbgPgwCgPeerStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF JnxMbgPgwCgPeerStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table listing the statistics for all CGF configured on the PGW."
::= { jnxMbgPgwChargingObjects 7 }
jnxMbgPgwCgGlobalStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF JnxMbgPgwCgGlobalStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table listing the charging global statistics of the PGW."
::= { jnxMbgPgwChargingObjects 8 }
--
-- Local Storage Stats
--
jnxMbgPgwCgFilesOnLcStorage OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"The number of Files containing Charging Data Records (CDRs) present
on the Local Storage Device.Incremented when a file containing CDRs
is closed on the Local storage device Decremented when sftp is done
and a file is removed from the Local storage device"
::= { jnxMbgPgwCgLcStorageStats 1 }
jnxMbgPgwCgLcStorageAvailSpace OBJECT-TYPE
SYNTAX Counter64
UNITS "MBytes"
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"The space available on the Local Storage Device in MB."
::= { jnxMbgPgwCgLcStorageStats 2 }
--
-- CG LPS Stats
--
jnxMbgPgwCgLpsStatsEntry OBJECT-TYPE
SYNTAX JnxMbgPgwCgLpsStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A conceptual row listing the statistics for each
LPS configured on the PGW."
INDEX { jnxMbgGwIndex }
::= { jnxMbgPgwCgLpsStatsTable 1 }
JnxMbgPgwCgLpsStatsEntry ::= SEQUENCE {
jnxMbgPgwCgLpsFilesOnLcStorage Gauge32,
jnxMbgPgwCgLpsStorageAvailSpace Gauge32
}
jnxMbgPgwCgLpsFilesOnLcStorage OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of Files containing Charging Data Records (CDRs) present
on the Local Storage Device.Incremented when a file containing CDRs
is closed on the Local storage device Decremented when sftp is done
and a file is removed from the Local storage device"
::= { jnxMbgPgwCgLpsStatsEntry 1 }
jnxMbgPgwCgLpsStorageAvailSpace OBJECT-TYPE
SYNTAX Gauge32
UNITS "MBytes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The space available on the Local Storage Device in MB."
::= { jnxMbgPgwCgLpsStatsEntry 2 }
--
-- CGF Group Stats
--
jnxMbgPgwCgCgfGroupStatsEntry OBJECT-TYPE
SYNTAX JnxMbgPgwCgCgfGrpStatsEntry
MAX-ACCESS not-accessible
STATUS obsolete
DESCRIPTION
"A conceptual row listing the statistics for each
CGF Server configured on the PGW."
INDEX { jnxMbgPgwCgCgfGrpProfName }
::= { jnxMbgPgwCgCgfGroupsStatsTable 1 }
JnxMbgPgwCgCgfGrpStatsEntry ::= SEQUENCE {
jnxMbgPgwCgCgfGrpProfName DisplayString,
jnxMbgPgwCgCgfGrpDRTReqTx Counter32,
jnxMbgPgwCgCgfGrpDRTReqRx Counter32,
jnxMbgPgwCgCgfGrpDRTReqTmout Counter32,
jnxMbgPgwCgCgfGrpDRTSucRspRx Counter32,
jnxMbgPgwCgCgfGrpDRTErrRspRx Counter32,
jnxMbgPgwCgCgfGrpRediReqRx Counter32,
jnxMbgPgwCgCgfGrpRediRspTx Counter32,
jnxMbgPgwCgCgfGrpSwitchovers Counter32,
jnxMbgPgwCgCgfGrpBatchReqTx Counter32,
jnxMbgPgwCgCgfGrpBatchRspErrors Counter32,
jnxMbgPgwCgCgfGrpBatchCDRsTx Counter32,
jnxMbgPgwCgCgfGroupTotalWFA Counter32
}
jnxMbgPgwCgCgfGrpProfName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..127))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A string that uniquely identifies the CGF group profile."
::= { jnxMbgPgwCgCgfGroupStatsEntry 1 }
jnxMbgPgwCgCgfGrpDRTReqTx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of the DRT (Detailed Record Time) request transmitted
for the CGF group"
::= { jnxMbgPgwCgCgfGroupStatsEntry 2 }
jnxMbgPgwCgCgfGrpDRTReqRx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of the DRT request received for the CGF group"
::= { jnxMbgPgwCgCgfGroupStatsEntry 3 }
jnxMbgPgwCgCgfGrpDRTReqTmout OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of the DRT request timeouts happend for the CGF group"
::= { jnxMbgPgwCgCgfGroupStatsEntry 4 }
jnxMbgPgwCgCgfGrpDRTSucRspRx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Total number of the DRT success responses received"
::= { jnxMbgPgwCgCgfGroupStatsEntry 5 }
jnxMbgPgwCgCgfGrpDRTErrRspRx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of the DRT error responses received for the CGF group"
::= { jnxMbgPgwCgCgfGroupStatsEntry 6 }
jnxMbgPgwCgCgfGrpRediReqRx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of the redirection responses received for the CGF group"
::= { jnxMbgPgwCgCgfGroupStatsEntry 7 }
jnxMbgPgwCgCgfGrpRediRspTx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of the redirection responses transmitted for the CGF group"
::= { jnxMbgPgwCgCgfGroupStatsEntry 8 }
jnxMbgPgwCgCgfGrpSwitchovers OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Total number of the switch overs on the CGF group"
::= { jnxMbgPgwCgCgfGroupStatsEntry 9 }
jnxMbgPgwCgCgfGrpBatchReqTx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Total number of the batch req transmitted for the CGF group"
::= { jnxMbgPgwCgCgfGroupStatsEntry 10 }
jnxMbgPgwCgCgfGrpBatchRspErrors OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Tatal number of the batch response errors for the CGF group"
::= { jnxMbgPgwCgCgfGroupStatsEntry 11 }
jnxMbgPgwCgCgfGrpBatchCDRsTx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Total number of the batch CDRs transmitted for the CGF group"
::= { jnxMbgPgwCgCgfGroupStatsEntry 12 }
jnxMbgPgwCgCgfGroupTotalWFA OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Total WFA available for the CGF group"
::= { jnxMbgPgwCgCgfGroupStatsEntry 13 }
-- CGF Group Stats
--
jnxMbgPgwCgTspStatsEntry OBJECT-TYPE
SYNTAX JnxMbgPgwCgTspStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A conceptual row listing the statistics for each
CGF Server configured on the PGW."
INDEX { jnxMbgGwIndex, jnxMbgPgwCgTspProfId }
::= { jnxMbgPgwCgTspStatsTable 1 }
JnxMbgPgwCgTspStatsEntry ::= SEQUENCE {
jnxMbgPgwCgTspProfId Unsigned32,
jnxMbgPgwCgTspDRTReqTx Counter32,
jnxMbgPgwCgTspDRTReqTmout Counter32,
jnxMbgPgwCgTspDRTSucRspRx Counter32,
jnxMbgPgwCgTspDRTErrRspRx Counter32,
jnxMbgPgwCgTspRediReqRx Counter32,
jnxMbgPgwCgTspRediRspTx Counter32,
jnxMbgPgwCgTspSwitchovers Counter32,
jnxMbgPgwCgTspBatchReqTx Counter32,
jnxMbgPgwCgTspBatchRspErrors Counter32,
jnxMbgPgwCgTspBatchCDRsTx Counter32,
jnxMbgPgwCgTspTotalWFA Counter32,
jnxMbgPgwCgTspProfName DisplayString
}
jnxMbgPgwCgTspProfId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This will identify the CGF Group profile id uniquely and used as
secondary key for CGF group table"
::= { jnxMbgPgwCgTspStatsEntry 1 }
jnxMbgPgwCgTspDRTReqTx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of the DRT (Detailed Record Time) request transmitted
for the CGF group"
::= { jnxMbgPgwCgTspStatsEntry 2}
jnxMbgPgwCgTspDRTReqTmout OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of the DRT request timeouts happend for the CGF group"
::= { jnxMbgPgwCgTspStatsEntry 3 }
jnxMbgPgwCgTspDRTSucRspRx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Total number of the DRT success responses received"
::= { jnxMbgPgwCgTspStatsEntry 4 }
jnxMbgPgwCgTspDRTErrRspRx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of the DRT error responses received for the CGF group"
::= { jnxMbgPgwCgTspStatsEntry 5 }
jnxMbgPgwCgTspRediReqRx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of the redirection responses received for the CGF group"
::= { jnxMbgPgwCgTspStatsEntry 6 }
jnxMbgPgwCgTspRediRspTx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of the redirection responses transmitted
for the CGF group"
::= { jnxMbgPgwCgTspStatsEntry 7}
jnxMbgPgwCgTspSwitchovers OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Total number of the switch overs on the CGF group"
::= { jnxMbgPgwCgTspStatsEntry 8 }
jnxMbgPgwCgTspBatchReqTx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Total number of the batch req transmitted for the CGF group"
::= { jnxMbgPgwCgTspStatsEntry 9 }
jnxMbgPgwCgTspBatchRspErrors OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Tatal number of the batch response errors for the CGF group"
::= { jnxMbgPgwCgTspStatsEntry 10 }
jnxMbgPgwCgTspBatchCDRsTx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Total number of the batch CDRs transmitted for the CGF group"
::= { jnxMbgPgwCgTspStatsEntry 11 }
jnxMbgPgwCgTspTotalWFA OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Total WFA available for the CGF group"
::= { jnxMbgPgwCgTspStatsEntry 12 }
jnxMbgPgwCgTspProfName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A string that uniquely identifies the TSP Profile."
::= { jnxMbgPgwCgTspStatsEntry 13 }
--
-- CGF Stats
--
jnxMbgPgwCgCgfStatsEntry OBJECT-TYPE
SYNTAX JnxMbgPgwCgCgfStatsEntry
MAX-ACCESS not-accessible
STATUS obsolete
DESCRIPTION
"A conceptual row listing the statistics for each
CGF Server configured on the PGW."
INDEX { jnxMbgPgwCgCgfIndex }
::= { jnxMbgPgwCgCgfStatsTable 1 }
JnxMbgPgwCgCgfStatsEntry ::= SEQUENCE {
jnxMbgPgwCgCgfProfName DisplayString,
jnxMbgPgwCgCgfIndex Integer32,
jnxMbgPgwCgCgfIpAddress IpAddress,
jnxMbgPgwCgCgfStatus INTEGER,
jnxMbgPgwCgCgfUpDuration Counter64,
jnxMbgPgwCgCgfDownDuration Counter64,
jnxMbgPgwCgCgfEchoReqTx Counter64,
jnxMbgPgwCgCgfEchoReqRx Counter64,
jnxMbgPgwCgCgfEchoReqTmout Counter64,
jnxMbgPgwCgCgfEchoRespTx Counter64,
jnxMbgPgwCgCgfEchoRespRx Counter64,
jnxMbgPgwCgCgfVerUnsuppTx Counter64,
jnxMbgPgwCgCgfVerUnsuppRx Counter64,
jnxMbgPgwCgCgfNodeAliveReqTx Counter64,
jnxMbgPgwCgCgfNodeAliveReqRx Counter64,
jnxMbgPgwCgCgfNodeAliveReqTmout Counter64,
jnxMbgPgwCgCgfNodeAliveRespTx Counter64,
jnxMbgPgwCgCgfNodeAliveRespRx Counter64,
jnxMbgPgwCgCgfRedirectReqRx Counter64,
jnxMbgPgwCgCgfRedirectRespTx Counter64,
jnxMbgPgwCgCgfDRTReqTx Counter64,
jnxMbgPgwCgCgfDRTReqTmout Counter64,
jnxMbgPgwCgCgfDRTSuccRespRx Counter64,
jnxMbgPgwCgCgfDRTErrRespRx Counter64,
jnxMbgPgwCgCgfCdrTx Counter64,
jnxMbgPgwCgCgfDRTRTTMean Counter64,
jnxMbgPgwCgCgfDRTRTTMin Counter64,
jnxMbgPgwCgCgfDRTRTTMax Counter64,
jnxMbgPgwCgCgfTransToDownState Counter64,
jnxMbgPgwCgCgfContainers Counter64
}
jnxMbgPgwCgCgfProfName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..127))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A string that uniquely identifies the CGF Profile."
::= { jnxMbgPgwCgCgfStatsEntry 1 }
jnxMbgPgwCgCgfIndex OBJECT-TYPE
SYNTAX Integer32 (1..48)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A number representing each CGF Server whose statistics
is being generated."
::= { jnxMbgPgwCgCgfStatsEntry 2 }
jnxMbgPgwCgCgfIpAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION "CGF Server IP-address."
::= { jnxMbgPgwCgCgfStatsEntry 3 }
jnxMbgPgwCgCgfStatus OBJECT-TYPE
SYNTAX INTEGER {
up(1), -- server is up
down(2) -- server is not reachable or unconfigured
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This indicates the state of the CGF Server i.e UP or DOWN."
::= { jnxMbgPgwCgCgfStatsEntry 4 }
jnxMbgPgwCgCgfUpDuration OBJECT-TYPE
SYNTAX Counter64
UNITS "minutes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Total duration in minutes for which the CGF Server
was in UP State."
::= { jnxMbgPgwCgCgfStatsEntry 5 }
jnxMbgPgwCgCgfDownDuration OBJECT-TYPE
SYNTAX Counter64
UNITS "minutes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Total duration in minutes for which the CGF Server
was in DOWN State."
::= { jnxMbgPgwCgCgfStatsEntry 6 }
jnxMbgPgwCgCgfEchoReqTx OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Total number of Echo Requests transmitted to the CGF Server."
::= { jnxMbgPgwCgCgfStatsEntry 7 }
jnxMbgPgwCgCgfEchoReqRx OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Total number of Echo Requests received from the CGF Server."
::= { jnxMbgPgwCgCgfStatsEntry 8 }
jnxMbgPgwCgCgfEchoReqTmout OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Total number of Echo Requests to the CGF Server that
timed out."
::= { jnxMbgPgwCgCgfStatsEntry 9 }
jnxMbgPgwCgCgfEchoRespTx OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Total number of Echo Responses transmitted to the CGF Server."
::= { jnxMbgPgwCgCgfStatsEntry 10 }
jnxMbgPgwCgCgfEchoRespRx OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Total number of Echo Responses received from the CGF Server."
::= { jnxMbgPgwCgCgfStatsEntry 11 }
jnxMbgPgwCgCgfVerUnsuppTx OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Total number of Version Unsupported messages transmitted to
the CGF Server."
::= { jnxMbgPgwCgCgfStatsEntry 12 }
jnxMbgPgwCgCgfVerUnsuppRx OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Total number of Version Unsupported messages received
from the CGF Server."
::= { jnxMbgPgwCgCgfStatsEntry 13 }
jnxMbgPgwCgCgfNodeAliveReqTx OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Total number of Node Alive Requests transmitted to the
CGF Server."
::= { jnxMbgPgwCgCgfStatsEntry 14 }
jnxMbgPgwCgCgfNodeAliveReqRx OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Total number of Node Alive Requests received from
the CGF Server."
::= { jnxMbgPgwCgCgfStatsEntry 15 }
jnxMbgPgwCgCgfNodeAliveReqTmout OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Total number of Node Alive Requests to the CGF Server
that timed out."
::= { jnxMbgPgwCgCgfStatsEntry 16 }
jnxMbgPgwCgCgfNodeAliveRespTx OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Total number of Node Alive Responses transmitted
to the CGF Server."
::= { jnxMbgPgwCgCgfStatsEntry 17 }
jnxMbgPgwCgCgfNodeAliveRespRx OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Total number of Node Alive Responses received from
the CGF Server."
::= { jnxMbgPgwCgCgfStatsEntry 18 }
jnxMbgPgwCgCgfRedirectReqRx OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Total number of Redirect Requests received from
the CGF Server."
::= { jnxMbgPgwCgCgfStatsEntry 19 }
jnxMbgPgwCgCgfRedirectRespTx OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Total number of Redirect Responses transmitted
to the CGF Server."
::= { jnxMbgPgwCgCgfStatsEntry 20 }
jnxMbgPgwCgCgfDRTReqTx OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Total number of Data Record Transfer Requests transmitted to
the CGF Server.This includes the retransmission counts also."
::= { jnxMbgPgwCgCgfStatsEntry 21 }
jnxMbgPgwCgCgfDRTReqTmout OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Total number of Data Record Transfer Requests to the CGF
Server that timed out after the configured number of retries."
::= { jnxMbgPgwCgCgfStatsEntry 22 }
jnxMbgPgwCgCgfDRTSuccRespRx OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Total number of Data Record Transfer Responses indicating
success received from the CGF Server."
::= { jnxMbgPgwCgCgfStatsEntry 23 }
jnxMbgPgwCgCgfDRTErrRespRx OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Total number of Data Record Transfer Responses indicating
error received from the CGF Server."
::= { jnxMbgPgwCgCgfStatsEntry 24 }
jnxMbgPgwCgCgfCdrTx OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Total number of Call Data Records (CDRs) transmitted
to the CGF Server."
::= { jnxMbgPgwCgCgfStatsEntry 25 }
jnxMbgPgwCgCgfDRTRTTMean OBJECT-TYPE
SYNTAX Counter64
UNITS "seconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Mean Round Trip Time of the Data Record Transfer Request and Response
to and from the CGF Server in seconds. This is calculated from the
average of the minimum and maximum round trip times of the Data Record
Transfer Request. This is applicable for CGF Servers which are
connected via UDP protocol."
::= { jnxMbgPgwCgCgfStatsEntry 26 }
jnxMbgPgwCgCgfDRTRTTMin OBJECT-TYPE
SYNTAX Counter64
UNITS "seconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Minimum Round Trip Time of the Data Record Transfer Request and
Response to and from the CGF Server in seconds. This is
applicable for CGF Servers which are connected via UDP protocol."
::= { jnxMbgPgwCgCgfStatsEntry 27 }
jnxMbgPgwCgCgfDRTRTTMax OBJECT-TYPE
SYNTAX Counter64
UNITS "seconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Maximum Round Trip Time of the Data Record Transfer Request and
Response to and from the CGF Server in seconds.This is
applicable for CGF Servers which are connected via UDP protocol."
::= { jnxMbgPgwCgCgfStatsEntry 28 }
jnxMbgPgwCgCgfTransToDownState OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Total number of transitions of the CGF Server to
the DOWN state."
::= { jnxMbgPgwCgCgfStatsEntry 29 }
jnxMbgPgwCgCgfContainers OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Total number of closed containers to the CGF Server."
::= { jnxMbgPgwCgCgfStatsEntry 30 }
--
-- CGF Stats
--
jnxMbgPgwCgPeerStatsEntry OBJECT-TYPE
SYNTAX JnxMbgPgwCgPeerStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A conceptual row listing the statistics for each
CGF Server configured on the PGW."
INDEX { jnxMbgGwIndex, jnxMbgPgwCgPeerIndex }
::= { jnxMbgPgwCgPeerStatsTable 1 }
JnxMbgPgwCgPeerStatsEntry ::= SEQUENCE {
jnxMbgPgwCgPeerIndex Unsigned32,
jnxMbgPgwCgPeerIpAddress IpAddress,
jnxMbgPgwCgPeerStatus INTEGER,
jnxMbgPgwCgPeerEchoReqTx Counter64,
jnxMbgPgwCgPeerEchoReqRx Counter64,
jnxMbgPgwCgPeerEchoReqTmout Counter64,
jnxMbgPgwCgPeerEchoRespTx Counter64,
jnxMbgPgwCgPeerEchoRespRx Counter64,
jnxMbgPgwCgPeerVerUnsuppTx Counter64,
jnxMbgPgwCgPeerVerUnsuppRx Counter64,
jnxMbgPgwCgPeerNodeAliveReqRx Counter64,
jnxMbgPgwCgPeerNodeAliveRespTx Counter64,
jnxMbgPgwCgPeerRedirectReqRx Counter64,
jnxMbgPgwCgPeerRedirectRespTx Counter64,
jnxMbgPgwCgPeerDRTReqTx Counter64,
jnxMbgPgwCgPeerDRTSuccRespRx Counter64,
jnxMbgPgwCgPeerDRTErrRespRx Counter64,
jnxMbgPgwCgPeerProfileName DisplayString
}
jnxMbgPgwCgPeerIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A number representing each CGF Server whose statistics
is being generated."
::= { jnxMbgPgwCgPeerStatsEntry 1 }
jnxMbgPgwCgPeerIpAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION "CGF Server IP-address."
::= { jnxMbgPgwCgPeerStatsEntry 2 }
jnxMbgPgwCgPeerStatus OBJECT-TYPE
SYNTAX INTEGER {
up(1), -- server is up
down(2) -- server is not reachable or unconfigured
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This indicates the state of the CGF Server i.e UP or DOWN."
::= { jnxMbgPgwCgPeerStatsEntry 3 }
jnxMbgPgwCgPeerEchoReqTx OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Total number of Echo Requests transmitted to the CGF Server."
::= { jnxMbgPgwCgPeerStatsEntry 4 }
jnxMbgPgwCgPeerEchoReqRx OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Total number of Echo Requests received from the CGF Server."
::= { jnxMbgPgwCgPeerStatsEntry 5 }
jnxMbgPgwCgPeerEchoReqTmout OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Total number of Echo Requests to the CGF Server that
timed out."
::= { jnxMbgPgwCgPeerStatsEntry 6 }
jnxMbgPgwCgPeerEchoRespTx OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Total number of Echo Responses transmitted to the CGF Server."
::= { jnxMbgPgwCgPeerStatsEntry 7 }
jnxMbgPgwCgPeerEchoRespRx OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Total number of Echo Responses received from the CGF Server."
::= { jnxMbgPgwCgPeerStatsEntry 8 }
jnxMbgPgwCgPeerVerUnsuppTx OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Total number of Version Unsupported messages transmitted to
the CGF Server."
::= { jnxMbgPgwCgPeerStatsEntry 9 }
jnxMbgPgwCgPeerVerUnsuppRx OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Total number of Version Unsupported messages received
from the CGF Server."
::= { jnxMbgPgwCgPeerStatsEntry 10 }
jnxMbgPgwCgPeerNodeAliveReqRx OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Total number of Node Alive Requests received from
the CGF Server."
::= { jnxMbgPgwCgPeerStatsEntry 11 }
jnxMbgPgwCgPeerNodeAliveRespTx OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Total number of Node Alive Responses transmitted
to the CGF Server."
::= { jnxMbgPgwCgPeerStatsEntry 12 }
jnxMbgPgwCgPeerRedirectReqRx OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Total number of Redirect Requests received from
the CGF Server."
::= { jnxMbgPgwCgPeerStatsEntry 13 }
jnxMbgPgwCgPeerRedirectRespTx OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Total number of Redirect Responses transmitted
to the CGF Server."
::= { jnxMbgPgwCgPeerStatsEntry 14 }
jnxMbgPgwCgPeerDRTReqTx OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Total number of Data Record Transfer Requests transmitted to
the CGF Server.This includes the retransmission counts also."
::= { jnxMbgPgwCgPeerStatsEntry 15 }
jnxMbgPgwCgPeerDRTSuccRespRx OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Total number of Data Record Transfer Responses indicating
success received from the CGF Server."
::= { jnxMbgPgwCgPeerStatsEntry 16 }
jnxMbgPgwCgPeerDRTErrRespRx OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Total number of Data Record Transfer Responses indicating
error received from the CGF Server."
::= { jnxMbgPgwCgPeerStatsEntry 17 }
jnxMbgPgwCgPeerProfileName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A string that uniquely identifies the CGF Peer Profile."
::= { jnxMbgPgwCgPeerStatsEntry 18 }
jnxMbgPgwCgGlobalStatsEntry OBJECT-TYPE
SYNTAX JnxMbgPgwCgGlobalStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A conceptual row listing the statistics for each
PGW charging global statistics."
INDEX { jnxMbgGwIndex }
::= { jnxMbgPgwCgGlobalStatsTable 1 }
JnxMbgPgwCgGlobalStatsEntry ::= SEQUENCE {
jnxMbgPgwCgCdrSendErrors Counter64,
jnxMbgPgwCgCdrEncodeErrors Counter64,
jnxMbgPgwCgCdrAllocFailures Counter64,
jnxMbgPgwCgContFailures Counter64,
jnxMbgPgwCgCmBearersCreated Counter64,
jnxMbgPgwCgCmBearersDeleted Counter64
}
--Charging Global Stats*/
jnxMbgPgwCgCdrSendErrors OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Total number of CDR send errors to charging module"
::= { jnxMbgPgwCgGlobalStatsEntry 1 }
jnxMbgPgwCgCdrEncodeErrors OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Total number of CDR (charging data record) encoding errors."
::= { jnxMbgPgwCgGlobalStatsEntry 2 }
jnxMbgPgwCgCdrAllocFailures OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Total number of CDR memory allocation failures."
::= { jnxMbgPgwCgGlobalStatsEntry 3 }
jnxMbgPgwCgContFailures OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Total number of container failures."
::= { jnxMbgPgwCgGlobalStatsEntry 4 }
jnxMbgPgwCgCmBearersCreated OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Total number bearers created."
::= { jnxMbgPgwCgGlobalStatsEntry 5 }
jnxMbgPgwCgCmBearersDeleted OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Total number of bearers deleted."
::= { jnxMbgPgwCgGlobalStatsEntry 6 }
jnxMbgPgwCgServerName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..31))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"A string that uniquely identifies the CGF server name."
::= { jnxMbgPgwCgNotificationVars 1 }
jnxMbgPgwCgServicePicName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..31))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This identifies the session-pic, in the form ms-a/b/0,
where <a> is the slot and <b> could be either 0 or 1."
::= { jnxMbgPgwCgNotificationVars 2 }
jnxMbgPgwCgCDRDest OBJECT-TYPE
SYNTAX INTEGER {
cdrcgf (1),
cdrbackup (2),
cdrnobackup (3) }
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This indicates any transisitions in the state of the CGF.
Value 1 indicates one of the CGF for the Group came up. Redirecting CDRs to the Active CGF.
Value 2 indicates last active CGF for the Group went down. CDRs being written to backup Local storage device.
Value 3 indicates last active CGF for the Group went down. Backup Local storage device not configured."
::= { jnxMbgPgwCgNotificationVars 3 }
jnxMbgPgwCgActiveCgfIpAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION "CGF Server IP-address."
::= { jnxMbgPgwCgNotificationVars 4 }
jnxMbgPgwCgTSPName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..31))
MAX-ACCESS accessible-for-notify
STATUS deprecated
DESCRIPTION
"A string that uniquely identifies the Transport Profile."
::= { jnxMbgPgwCgNotificationVars 5 }
jnxMbgPgwCgMemLimit OBJECT-TYPE
SYNTAX INTEGER {
memfulldisconnectnew (1),
memfulldisconnectnewrslvd (2),
memfulldisconnectexistnew (3),
memfulldisconnectexistnewrslvd(4)
}
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This indicates any transisitions in the state of the CGF.
Value 1 indicates System has reached Level 1 critical memory threshold.
Action - Check the CGF server connections. If local storage is enabled,
please ftp the charging records immediately.
If local storage is not enabled, please enable it so the
charging records can be stored in local persistent storage.
Risk - No new sessions will be allowed.
Value 2 indicates System reaching Level 1 critical memory threshold
condition has been resolved.
Value 3 indicates System has reached Level 2 critical memory threshold.
Action - Check the CGF server connections. If local storage is enabled,
please ftp the charging records immediately.
If local storage is not enabled, please enable it so the
charging records can be stored in local persistent storage.
Risk - New and existing sessions will be not be allowed.
Value 4 indicates System reaching Level 2 critical memory threshold
condition has been resolved."
::= { jnxMbgPgwCgNotificationVars 6 }
jnxMbgPgwCgLcsSpace OBJECT-TYPE
SYNTAX INTEGER {
localstoragememlevel1 (1),
localstoragememlevel2 (2),
localstoragememlevel3 (3)
}
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Water marking for the local storage levels in charged of RE."
::= { jnxMbgPgwCgNotificationVars 7 }
jnxMbgPgwCgLcsUtil OBJECT-TYPE
SYNTAX Gauge32
UNITS "percent"
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The percentage of the total of Local Storage
Space by one the Charged on RE"
::= { jnxMbgPgwCgNotificationVars 8 }
jnxMbgPgwCgAlarmStatus OBJECT-TYPE
SYNTAX INTEGER {
raised (1),
cleared (2)
}
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Value 1 indicates that the Alarm for a particular condition is present.
Value 2 indicates that the Alarm for a particular condition is absent."
::= { jnxMbgPgwCgNotificationVars 9 }
jnxMbgPgwCgProfileName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS accessible-for-notify
STATUS deprecated
DESCRIPTION
"A string that identifies a charging profile ."
::= { jnxMbgPgwCgNotificationVars 10 }
jnxMbgPgwCgPrevMMState OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"A string that indicates the maintenance-mode state ."
::= { jnxMbgPgwCgNotificationVars 11 }
jnxMbgPgwCgNewMMState OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"A string that indicates the maintenance-mode state ."
::= { jnxMbgPgwCgNotificationVars 12 }
jnxMbgPgwCgTProfileName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS accessible-for-notify
STATUS deprecated
DESCRIPTION
"A string that identifies a charging profile ."
::= { jnxMbgPgwCgNotificationVars 13 }
jnxMbgPgwCgTPrevMMState OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS accessible-for-notify
STATUS deprecated
DESCRIPTION
"A string that indicates the maintenance-mode state ."
::= { jnxMbgPgwCgNotificationVars 14 }
jnxMbgPgwCgTNewMMState OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS accessible-for-notify
STATUS deprecated
DESCRIPTION
"A string that indicates the maintenance-mode state ."
::= { jnxMbgPgwCgNotificationVars 15 }
jnxMbgPgwCgPeerProfName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"A string that uniquely identifies the CGF Profile."
::= { jnxMbgPgwCgNotificationVars 16 }
jnxMbgPgwCgGtpGWUpNotif NOTIFICATION-TYPE
OBJECTS { jnxMbgPgwCgServerName,
jnxMbgPgwCgServicePicName }
STATUS deprecated
DESCRIPTION
"This notification signifies that the specified server has been
marked alive. The ServerName identifies the server and the
SPIdentfier identifies the session-pic which originated this
notification."
::= { jnxMbgPgwCgNotifications 1 }
jnxMbgPgwCgGtpGWDownNotif NOTIFICATION-TYPE
OBJECTS { jnxMbgPgwCgServerName,
jnxMbgPgwCgServicePicName }
STATUS deprecated
DESCRIPTION
"This notification signifies that the specified server has been
marked dead. The ServerName identifies the server and the
SPIdentfier identifies the session-pic which originated this
notification."
::= { jnxMbgPgwCgNotifications 2 }
jnxMbgPgwCgCDRDestNotif NOTIFICATION-TYPE
OBJECTS { jnxMbgPgwCgCDRDest,
jnxMbgPgwCgTSPName,
jnxMbgPgwCgActiveCgfIpAddr }
STATUS deprecated
DESCRIPTION
"This signifies change in the destination of the CDRs
(Charging Data Record)"
::= { jnxMbgPgwCgNotifications 3 }
jnxMbgPgwCgMemThresNotif NOTIFICATION-TYPE
OBJECTS { jnxMbgPgwCgAlarmStatus,
jnxMbgPgwCgMemLimit,
jnxMbgPgwCgTSPName,
jnxMbgPgwCgServicePicName }
STATUS deprecated
DESCRIPTION
"This signifies the internal memory unavalability in the system."
::= { jnxMbgPgwCgNotifications 4 }
jnxMbgPgwCgLcsThresNotif NOTIFICATION-TYPE
OBJECTS { jnxMbgPgwCgLcsSpace,
jnxMbgPgwCgLcsUtil }
STATUS deprecated
DESCRIPTION
"This signifies the memory unavailability in the local storage in
the system."
::= { jnxMbgPgwCgNotifications 5 }
jnxMbgPgwCgServiceUpNotif NOTIFICATION-TYPE
OBJECTS { jnxMbgPgwCgServicePicName }
STATUS deprecated
DESCRIPTION
"This signifies the Charging daemon is UP on the SP."
::= { jnxMbgPgwCgNotifications 6 }
jnxMbgPgwCgMMStateChange NOTIFICATION-TYPE
OBJECTS { jnxMbgPgwCgProfileName,
jnxMbgPgwCgPrevMMState,
jnxMbgPgwCgNewMMState }
STATUS deprecated
DESCRIPTION
"This indicates that the given charging profile underwent a change
in the maintenance-mode."
::= { jnxMbgPgwCgNotifications 7 }
jnxMbgPgwCgTMMStateChange NOTIFICATION-TYPE
OBJECTS { jnxMbgPgwCgTProfileName,
jnxMbgPgwCgTPrevMMState,
jnxMbgPgwCgTNewMMState }
STATUS deprecated
DESCRIPTION
"This indicates that the given transport profile underwent a change
in the maintenance-mode."
::= { jnxMbgPgwCgNotifications 8 }
jnxMbgPgwCgGtpGWUpNotify NOTIFICATION-TYPE
OBJECTS { jnxMbgGwName,
jnxMbgPgwCgServerName,
jnxMbgPgwCgServicePicName }
STATUS current
DESCRIPTION
"This notification signifies that the specified server has been
marked alive. The ServerName identifies the server and the
SPIdentfier identifies the session-pic which originated this
notification."
::= { jnxMbgPgwCgNotifications 9 }
jnxMbgPgwCgGtpGWDownNotify NOTIFICATION-TYPE
OBJECTS { jnxMbgGwName,
jnxMbgPgwCgServerName,
jnxMbgPgwCgServicePicName }
STATUS current
DESCRIPTION
"This notification signifies that the specified server has been
marked dead. The ServerName identifies the server and the
SPIdentfier identifies the session-pic which originated this
notification."
::= { jnxMbgPgwCgNotifications 10 }
jnxMbgPgwCgCDRDestNotify NOTIFICATION-TYPE
OBJECTS { jnxMbgGwName,
jnxMbgPgwCgCDRDest,
jnxMbgPgwCgPeerProfName,
jnxMbgPgwCgActiveCgfIpAddr }
STATUS current
DESCRIPTION
"This signifies change in the destination of the CDRs
(Charging Data Record)"
::= { jnxMbgPgwCgNotifications 11 }
jnxMbgPgwCgServiceUpNotify NOTIFICATION-TYPE
OBJECTS { jnxMbgGwName,
jnxMbgPgwCgServicePicName }
STATUS current
DESCRIPTION
"This signifies the Charging daemon is UP on the SP."
::= { jnxMbgPgwCgNotifications 12 }
jnxMbgPgwCgMMStateChangeNotify NOTIFICATION-TYPE
OBJECTS { jnxMbgGwName,
jnxMbgPgwCgPeerProfName,
jnxMbgPgwCgPrevMMState,
jnxMbgPgwCgNewMMState }
STATUS current
DESCRIPTION
"This indicates that the given charging profile underwent a change
in the maintenance-mode."
::= { jnxMbgPgwCgNotifications 13 }
jnxMbgPgwCgTMMStateChangeNotify NOTIFICATION-TYPE
OBJECTS { jnxMbgGwName,
jnxMbgPgwCgPeerProfName,
jnxMbgPgwCgPrevMMState,
jnxMbgPgwCgNewMMState }
STATUS current
DESCRIPTION
"This indicates that the given transport profile underwent a change
in the maintenance-mode."
::= { jnxMbgPgwCgNotifications 14 }
jnxMbgPgwCgMemHighThresNotify NOTIFICATION-TYPE
OBJECTS { jnxMbgGwName,
jnxMbgPgwCgPeerProfName,
jnxMbgPgwCgServicePicName,
jnxMbgPgwCgMemLimit,
jnxMbgPgwCgAlarmStatus }
STATUS current
DESCRIPTION
"This trap indicates the alarm status on the node associated with the utilization of inernal memory space for charging records. This alarm is sent outwhen the utilization exceeds or falls below configured high threshold value. Thealarm status (Active/Clear)is indicated by the jnxMbgPgwCgAlarmStatus variable."
::= { jnxMbgPgwCgNotifications 15 }
jnxMbgPgwCgMemMediumThresNotify NOTIFICATION-TYPE
OBJECTS { jnxMbgGwName,
jnxMbgPgwCgPeerProfName,
jnxMbgPgwCgServicePicName,
jnxMbgPgwCgMemLimit,
jnxMbgPgwCgAlarmStatus }
STATUS current
DESCRIPTION
"This trap indicates the alarm status on the node associated with the utilization of inernal memory space for charging records. This alarm is sent outwhen the utilization exceeds or falls below configured medium threshold value. The alarm status (Active/Clear)is indicated by the jnxMbgPgwCgAlarmStatus variable."
::= { jnxMbgPgwCgNotifications 16 }
jnxMbgPgwCgMemLowThresNotify NOTIFICATION-TYPE
OBJECTS { jnxMbgGwName,
jnxMbgPgwCgPeerProfName,
jnxMbgPgwCgServicePicName,
jnxMbgPgwCgMemLimit,
jnxMbgPgwCgAlarmStatus }
STATUS current
DESCRIPTION
"This trap indicates the alarm status on the node associated with the utilization of inernal memory space for charging records. This alarm is sent outwhen the utilization exceeds or falls below configured low threshold value. The alarm status (Active/Clear)is indicated by the jnxMbgPgwCgAlarmStatus variable."
::= { jnxMbgPgwCgNotifications 17 }
jnxMbgPgwCgLcsThresHighNotify NOTIFICATION-TYPE
OBJECTS { jnxMbgGwName,
jnxMbgPgwCgAlarmStatus,
jnxMbgPgwCgLcsUtil }
STATUS current
DESCRIPTION
"This trap indicates the alarm status on the node associated with the utilization of local storage space for charging records. This alarm is sent out when the utilization exceeds or falls below configured high threshold of available disk space. The alarm status (Active/Clear)is indicated by the jnxMbgPgwCgAlarmStatus variable."
::= { jnxMbgPgwCgNotifications 18 }
jnxMbgPgwCgLcsThresMediumNotify NOTIFICATION-TYPE
OBJECTS { jnxMbgGwName,
jnxMbgPgwCgAlarmStatus,
jnxMbgPgwCgLcsUtil }
STATUS current
DESCRIPTION
"This trap indicates the alarm status on the node associated with the utilization of local storage space for charging records. This alarm is sent out when the utilization exceeds or falls below configured medium threshold of available disk space. The alarm status (Active/Clear)is indicated by the jnxMbgPgwCgAlarmStatus variable."
::= { jnxMbgPgwCgNotifications 19 }
jnxMbgPgwCgLcsThresLowNotify NOTIFICATION-TYPE
OBJECTS { jnxMbgGwName,
jnxMbgPgwCgAlarmStatus,
jnxMbgPgwCgLcsUtil }
STATUS current
DESCRIPTION
"This trap indicates the alarm status on the node associated with the utilization of local storage space for charging records. This alarm is sent out when the utilization exceeds or falls below configured low threshold of available disk space. The alarm status (Active/Clear)is indicated by the jnxMbgPgwCgAlarmStatus variable."
::= { jnxMbgPgwCgNotifications 20 }
END
|