-
Notifications
You must be signed in to change notification settings - Fork 124
/
Copy pathCISCO-GGSN-SERVICE-AWARE-MIB-V1SMI.my
2539 lines (2308 loc) · 83.3 KB
/
CISCO-GGSN-SERVICE-AWARE-MIB-V1SMI.my
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
-- MIB file created 16-Aug-2010 14:42:44, by
-- SMICng version 2.2.11-beta(PRO)(Solaris), January 20, 2001. Enterprise key cisco.com
CISCO-GGSN-SERVICE-AWARE-MIB DEFINITIONS ::= BEGIN
-- From file: "CISCO-GGSN-SERVICE-AWARE-MIB.my"
-- Compile options "4 7 F H N W 03 06 0B 0G 0N 0T"
IMPORTS
TruthValue, RowStatus
FROM SNMPv2-TC-v1
InetAddressType, InetAddress, InetPortNumber
FROM INET-ADDRESS-MIB
SnmpAdminString
FROM SNMP-FRAMEWORK-MIB
cGgsnNotifPdpImsi, cGgsnNotifPdpMsisdn
FROM CISCO-GGSN-MIB
ciscoMgmt
FROM CISCO-SMI
Counter, Gauge
FROM RFC1155-SMI
OBJECT-TYPE
FROM RFC-1212
TRAP-TYPE
FROM RFC-1215;
cGgsnSAMIB OBJECT IDENTIFIER ::= { ciscoMgmt 497 }
-- MODULE-IDENTITY
-- LastUpdated
-- 201008060000Z
-- OrgName
-- Cisco Systems, Inc.
-- ContactInfo
-- Cisco Systems
-- Customer Service
--
-- Postal: 170 W Tasman Drive
-- San Jose, CA 95134
-- USA
--
-- Tel: +1 800 553-NETS
--
-- E-mail: [email protected]
-- Descr
-- This MIB module manages the service-aware feature of
-- Gateway GPRS Support Node (GGSN).
--
-- This MIB is an enhancement of the CISCO-GGSN-MIB.
--
-- There needs to be a tight coupling between GGSN and CSG
-- in order to realize the enhanced GGSN, which is capable
-- of categorizing traffic flowing within a PDP context to
-- different services.
--
-- An enhanced version of Diameter Credit Control
-- Application (DCCA) will be used for implementing
-- real-time credit control of end users in the IPS
-- framework. The GGSN will act as DCCA client and will
-- interact with DCCA server for quota negotiation and
-- usage reporting.
--
-- The credit control request (CCR) message is used between
-- DCCA-Client (DCCA-C) and DCCA-Server to request credit
-- authorization for a given service. The credit control
-- request has one mandatory AVP (Attribute Value Pair)
-- called CCR. For a session based credit control
-- several interrogation required, the first, intermediate
-- and final. The first interrogation must be sent
-- before the DCCA-C allows any service event to the
-- user, CCR type is set to INITIAL in this case. When all
-- the granted service units for one unit type are spent
-- by the end user or the validity time is expired
-- the DCCA-C must send a new credit control (CC) request
-- to CC server, this is the intermediate interrogation
-- and the CCR type AVP is set to the value UPDATE.
-- When the end user terminates a service session the
-- DCCA-C must send a final CCR request message to the
-- CC server. The CCR type AVP is set to the FINAL
-- or TERMINATION_REQUSET.
--
-- CSG will be responsible for categorizing the traffic,
-- quota management activities and usage reporting
-- functions. GGSN will act as a quota server for CSG.
-- A proprietary interface based on GTP' will be used
-- between GGSN and CSG.
--
-- Acronyms and terms:
--
-- APN Access Point Name
-- CCA Credit Control Answer
-- CCR Credit Control Request
-- CCFH Credit Control Failure Handling
-- CDR Charging Data Record
-- CLCI Closed Loop Charging Interface
-- CSG Content Service Gateway
-- DCCA Diameter Credit Control Application
-- ETSI European Telecommunications Standards Institute
-- GGSN Gateway GPRS Support Node
-- GPRS General Packet Radio Service
-- GSM Global System for Mobile communication
-- GTP GPRS Tunneling Protocol
-- MS Mobile Station
-- MSISDN Mobile Station ISDN number
-- PDP Packet Data Protocol
-- PLMN Public Land Mobile Network
-- SGSN Serving GPRS support Node
-- SLB Server Load Balancing
-- TFT Traffic Flow Template
-- UMTS Universal Mobile Telecommunications System
-- QS Quota Server
-- UE User Equipment
--
-- REFERENCE
--
-- [1] GSM 03.60: Digital cellular telecommunications
-- system (Phase 2+); General Packet Radio Service
-- (GPRS); Service description; Stage 2. V7.1.0
--
-- [2] GSM 09.60: Digital cellular telecommunication
-- system (Phase 2+); General Packet Radio Service
-- (GPRS); GPRS Tunnelling Protocol (GTP) across
-- Gn and Gp Interface. V7.3.0
--
-- [3] 3GPP; Technical Specification Group Services
-- and System Aspects; QoS Concept and Architecture.
-- 3G TS 23.107 v3.2.0.
--
-- [4] 3GPP; Technical Specification Group Core Network;
-- General Packet Radio Service(GPRS); GPRS
-- Tunnelling Protocol (GTP) across Gn and Gp
-- Interface (Release 1999). 3G TS 29.060 v3.5.0.
-- RevDate
-- 201008060000Z
-- RevDescr
-- The following changes have been made.
--
-- [1] Modified description for the following.
--
-- cGgsnSADccaTriggerSgsnChange,
-- cGgsnSADccaTriggerQosChange,
-- cGgsnSADccaTriggerPlmnChange,
-- cGgsnSADccaTriggerRatChange,
-- cGgsnSADccaTriggerUserLocChange,
-- cGgsnSADccaClci.
--
-- [2] Added the enumeration 'none' to object
-- cGgsnSADccaClci and changed its default value
-- to 'none'.
-- RevDate
-- 200912160000Z
-- RevDescr
-- Added new TEXTUAL-CONVENTION CGgsnCsgPathState.
--
-- Added the following objects to
-- cGgsnSACsgTable.
-- cGgsnSACsgAaaAcctGroup,
-- cGgsnSACsgPathState,
-- cGgsnSACsgNumPdps.
--
-- Added cggsnSACsgStatisticsTable and the
-- following objects to the table.
-- cGgsnSACsgStatsOutboundMsgs,
-- cGgsnSACsgStatsOutboundOctets,
-- cGgsnSACsgStatsInboundMsgs,
-- cGgsnSACsgStatsInboundOctets,
-- cGgsnSACsgStatsServiceAuthReqs,
-- cGgsnSACsgStatsServiceAuthResps,
-- cGgsnSACsgStatsServiceReAuthReqs,
-- cGgsnSACsgStatsQuotaReturns,
-- cGgsnSACsgStatsQuotaReturnReqs,
-- cGgsnSACsgStatsQuotaReturnAccept,
-- cGgsnSACsgStatsServiceStopMsgs,
-- cGgsnSACsgStatsServiceStopReqs,
-- cGgsnSACsgStatsQuotaPushMsgs,
-- cGgsnSACsgStatsQuotaPushRsps,
-- cGgsnSACsgStatsGtpAcks.
--
-- deprecated the following objects
-- cGgsnSACsgOutboundMsgs,
-- cGgsnSACsgOutboundOctets,
-- cGgsnSACsgInboundMsgs,
-- cGgsnSACsgInboundOctets,
-- cGgsnSACsgServiceAuthReqs,
-- cGgsnSACsgServiceAuthResps,
-- cGgsnSACsgServiceReAuthReqs,
-- cGgsnSACsgQuotaReturns,
-- cGgsnSACsgQuotaReturnReqs,
-- cGgsnSACsgQuotaPushResps,
-- cGgsnSACsgServiceStopMsgs,
-- cGgsnSACsgServiceStopReqs,
-- cGgsnSACsgQuotaPushMsgs,
-- cGgsnSACsgQuotaPushRsps,
-- cGgsnSACsgGtpAcks.
--
-- Deprecated cGgsnSACsgStateUpNotif
-- and cGgsnSACsgStateDownNotif.
-- Added new notifications cGgsnSACsgR100StateUpNotif
-- and cGgsnSACsgR100StateDownNotif and added below objects
-- to the notifications
-- cGgsnSANotifCsgName
-- cGgsnSANotifCsgRealAddressType
-- cGgsnSANotifCsgRealAddress
-- cGgsnSANotifCsgVirtualAddrType
-- cGgsnSANotifCsgVirtualAddress
-- cGgsnSANotifCsgPort.
--
-- Deprecated OBJECT-GROUPs cGgsnSAStatisticsGroup and
-- cGgsnSANotifGroup.
-- Added following OBJECT-GROUPs
-- cGgsnSAConfigurationsGroupR100,
-- cGgsnSAStatisticsGroupR100,
-- cGgsnSANotifInfoGroupR100,
-- cGgsnSANotifGroupR100.
-- Created new MODULE-COMPLIANCE cGgsnSAMIBComplianceRev4.
-- RevDate
-- 200909170000Z
-- RevDescr
-- Added cGgsnSAQuotaServerSvcMsgEnabled to
-- cGgsnSAQuotaServerEntry.
--
-- Added following OBJECT-GROUP
-- cGgsnSAConfigurationsGroupSup1
--
-- Added MODULE-COMPLIANCE cGgsnSAMIBComplianceRev3,
-- which deprecates cGgsnSAMIBComplianceRev2.
-- RevDate
-- 200812100000Z
-- RevDescr
-- Added cGgsnSADccaTriggerUserLocChange to
-- cGgsnSADccaProfileTable.
-- RevDate
-- 200605041700Z
-- RevDescr
-- Added following objects to cGgsnSADccaProfileTable:
-- cGgsnSADccaTriggerPlmnChange,
-- cGgsnSADccaTriggerRatChange.
-- Added following group to cGgsnSAMIBGroups:
-- cGgsnSAExtConfigurationsGroup.
-- Added following compliance to cGgsnSAMIBCompliances:
-- cGgsnSAMIBComplianceRev1.
-- RevDate
-- 200510110900Z
-- RevDescr
-- Initial version of this MIB module.
cGgsnSAMIBObjects OBJECT IDENTIFIER ::= { cGgsnSAMIB 1 }
cGgsnSAStatistics OBJECT IDENTIFIER ::= { cGgsnSAMIBObjects 1 }
cGgsnSACsgStatistics OBJECT IDENTIFIER ::= { cGgsnSAStatistics 1 }
cGgsnSAQuotaServerStatistics OBJECT IDENTIFIER ::= { cGgsnSAStatistics 2 }
cGgsnSAServiceAwareStatistics OBJECT IDENTIFIER ::= { cGgsnSAStatistics 3 }
cGgsnSANotifMgmt OBJECT IDENTIFIER ::= { cGgsnSAMIBObjects 2 }
cGgsnSAConfigurations OBJECT IDENTIFIER ::= { cGgsnSAMIBObjects 3 }
cGgsnSANotifInfo OBJECT IDENTIFIER ::= { cGgsnSAMIBObjects 4 }
cGgsnSAMIBNotificationPrefix OBJECT IDENTIFIER ::= { cGgsnSAMIB 2 }
cGgsnSANotifications OBJECT IDENTIFIER ::= { cGgsnSAMIBNotificationPrefix 0 }
cGgsnSAMIBConformance OBJECT IDENTIFIER ::= { cGgsnSAMIB 3 }
cGgsnSAMIBCompliances OBJECT IDENTIFIER ::= { cGgsnSAMIBConformance 1 }
cGgsnSAMIBGroups OBJECT IDENTIFIER ::= { cGgsnSAMIBConformance 2 }
CGgsnCsgPathState ::= OCTET STRING(SIZE(1..2))
-- BITS are:
-- down(0)
-- up(1)
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- This data type is used to specify the CSG
-- Path State. CSG path indicates the link between
-- GGSN and configured CSG. Values down/up indicates
-- the state of the link.
cGgsnSACsgOutboundMsgs OBJECT-TYPE
SYNTAX Counter
-- Units
-- packets
ACCESS read-only
STATUS deprecated
DESCRIPTION
"The aggregate number of echo request, echo response, and node
alive messages sent. This object is deprecated and replaced by
cGgsnSACsgStatsOutboundMsgs object."
::= { cGgsnSACsgStatistics 1 }
cGgsnSACsgOutboundOctets OBJECT-TYPE
SYNTAX Counter
-- Units
-- octets
ACCESS read-only
STATUS deprecated
DESCRIPTION
"The aggregate number of echo request, echo response, and node
alive messages sent in terms of octets. This object is
deprecated and replaced by cGgsnSACsgStatsOutboundOctets."
::= { cGgsnSACsgStatistics 2 }
cGgsnSACsgInboundMsgs OBJECT-TYPE
SYNTAX Counter
-- Units
-- packets
ACCESS read-only
STATUS deprecated
DESCRIPTION
"The aggregate number of echo request, echo response, and node
alive messages received. This object is deprecated and replaced
by cGgsnSACsgStatsInboundMsgs object."
::= { cGgsnSACsgStatistics 3 }
cGgsnSACsgInboundOctets OBJECT-TYPE
SYNTAX Counter
-- Units
-- octets
ACCESS read-only
STATUS deprecated
DESCRIPTION
"The aggregate number of echo request, echo response, and node
alive messages received in terms of octets. This object is
deprecated and replaced by cGgsnSACsgStatsInboundOctets."
::= { cGgsnSACsgStatistics 4 }
cGgsnSACsgServiceAuthReqs OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS deprecated
DESCRIPTION
"This object indicates the number of requests by the CSG for
initial quota grant of a particular category. Currently,
the CSG allows only synchronous quota grants (i.e., grants due
to explicit requests from it). This object is deprecated and
replaced by cGgsnSACsgStatsServiceAuthReqs object."
::= { cGgsnSACsgStatistics 5 }
cGgsnSACsgServiceAuthResps OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS deprecated
DESCRIPTION
"This object indicates the number of responses given to the
CSG for service authorization requests. This object is
deprecated and replaced by cGgsnSACsgStatsServiceAuthResps."
::= { cGgsnSACsgStatistics 6 }
cGgsnSACsgServiceReAuthReqs OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS deprecated
DESCRIPTION
"This object indicates the number of service re-authorization
requests by the CSG for a category verification. This object is
deprecated and replaced by cGgsnSACsgStatsServiceReAuthReqs."
::= { cGgsnSACsgStatistics 7 }
cGgsnSACsgQuotaReturns OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS deprecated
DESCRIPTION
"This object indicates the number of quota return messages by
the CSG. The CSG sends quota return message when validity
timer expires or there is no response message from the QS.
On receipt of quota return message, QS returns the usage of
a particular category. This object is deprecated and replaced
by cGgsnSACsgStatsQuotaReturns object."
::= { cGgsnSACsgStatistics 8 }
cGgsnSACsgQuotaReturnReqs OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS deprecated
DESCRIPTION
"This object indicates the number of quota return requests
by the QS. QS may send this message to cause CSG to
return unused quota for the target service.
QS sends the quota return request when the validity timer
expires, this in turn triggers the CCR update. The DCCA server
grants quota in response to quota return request. This object is
deprecated and replaced by cGgsnSACsgStatsQuotaReturnReqs."
::= { cGgsnSACsgStatistics 9 }
cGgsnSACsgQuotaPushResps OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS deprecated
DESCRIPTION
"This object indicates the number of quota push responses
by the CSG. The purpose of quota push response is mainly
to convey session ID to QS, so that QS can save it for
subsequent transactions it originates. This object is
deprecated and replaced by cGgsnSACsgStatsQuotaReturnAccept
object."
::= { cGgsnSACsgStatistics 10 }
cGgsnSACsgServiceStopMsgs OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS deprecated
DESCRIPTION
"This object indicates the number of service stop messages
by the CSG.
The following list summarizes the situations under which user
is disconnected from the service:
- When the CSG removes the user, by a RADIUS Accounting
(stop) message, the CSG sends the service stop message for
each service for which user had an active session.
- When the idle timer on the CSG expires, it will send service
stop for the category.
- If the QS sends service stop request message.
The CSG will report the usage and remaining quota.
This object is deprecated and replaced by
cGgsnSACsgStatsServiceStopMsgs object."
::= { cGgsnSACsgStatistics 11 }
cGgsnSACsgServiceStopReqs OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS deprecated
DESCRIPTION
"This object indicates the number of service stop messages
received by the CSG.
If following a quota push message and update request from
SGSN, GGSN sent a CCR update and received CCA update with
terminate category, in this case GGSN will generate service
stop request to CSG. This object is deprecated and replaced
by cGgsnSACsgStatsServiceStopReqs object."
::= { cGgsnSACsgStatistics 12 }
cGgsnSACsgQuotaPushMsgs OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS deprecated
DESCRIPTION
"This object indicates the number of quota push messages sent
by the GGSN.
GGSN sends the quota push message in the following
conditions:
- When DCCA server returns non zero quota.
- When category is blacklisted or unknown.
- When retransmit (Tx) timer, associated with DCCA client,
expires.
- When credit control not required.
This object is deprecated and replaced by
cGgsnSACsgStatsQuotaPushMsgs object."
::= { cGgsnSACsgStatistics 13 }
cGgsnSACsgQuotaPushRsps OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS deprecated
DESCRIPTION
"This object indicates the number of quota push responses by
the CSG. The CSG respond to the quota push with the quota push
response. The cause IE in the GTP' header indicates
success/failure. The category whose quota is pushed must be
statically configured on the CSG. If it is not configured,
CSG sends the reject cause 255 in its quota push response.
This object is deprecated and replaced by
cGgsnSACsgStatsQuotaPushRsps object."
::= { cGgsnSACsgStatistics 14 }
cGgsnSACsgGtpAcks OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS deprecated
DESCRIPTION
"This object indicates the number of GTP' level
acknowledgements by the CSG for some requests from the QS
(e.g., quota return request and service stop request).
The acknowledgements do not contain the user index and service
ID TLVs, which are helpful for category lookup. However,
they contain the sequence number in the GTP' header that
matches with that of the corresponding requests. This object
is deprecated and replaced by cGgsnSACsgStatsGtpAcks object."
::= { cGgsnSACsgStatistics 15 }
cggsnSACsgStatisticsTable OBJECT-TYPE
SYNTAX SEQUENCE OF CggsnSACsgStatisticsEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table contains the path statistics of
each CSG Group on this GGSN."
::= { cGgsnSACsgStatistics 16 }
cggsnSACsgStatisticsEntry OBJECT-TYPE
SYNTAX CggsnSACsgStatisticsEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Entry for each CSG path statistics table."
INDEX { cGgsnSACsgGroupName }
-- Augments cGgsnSACsgEntry
::= { cggsnSACsgStatisticsTable 1 }
CggsnSACsgStatisticsEntry ::= SEQUENCE {
cGgsnSACsgStatsOutboundMsgs Counter,
cGgsnSACsgStatsOutboundOctets Counter,
cGgsnSACsgStatsInboundMsgs Counter,
cGgsnSACsgStatsInboundOctets Counter,
cGgsnSACsgStatsServiceAuthReqs Counter,
cGgsnSACsgStatsServiceAuthResps Counter,
cGgsnSACsgStatsServiceReAuthReqs Counter,
cGgsnSACsgStatsQuotaReturns Counter,
cGgsnSACsgStatsQuotaReturnReqs Counter,
cGgsnSACsgStatsQuotaReturnAccept Counter,
cGgsnSACsgStatsServiceStopMsgs Counter,
cGgsnSACsgStatsServiceStopReqs Counter,
cGgsnSACsgStatsQuotaPushMsgs Counter,
cGgsnSACsgStatsQuotaPushRsps Counter,
cGgsnSACsgStatsGtpAcks Counter
}
cGgsnSACsgStatsOutboundMsgs OBJECT-TYPE
SYNTAX Counter
-- Units
-- packets
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The aggregate number of echo request, echo response, and node
alive messages sent."
::= { cggsnSACsgStatisticsEntry 1 }
cGgsnSACsgStatsOutboundOctets OBJECT-TYPE
SYNTAX Counter
-- Units
-- octets
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The aggregate number of echo request, echo response, and node
alive messages sent in terms of octets."
::= { cggsnSACsgStatisticsEntry 2 }
cGgsnSACsgStatsInboundMsgs OBJECT-TYPE
SYNTAX Counter
-- Units
-- packets
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The aggregate number of echo request, echo response, and node
alive messages received."
::= { cggsnSACsgStatisticsEntry 3 }
cGgsnSACsgStatsInboundOctets OBJECT-TYPE
SYNTAX Counter
-- Units
-- octets
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The aggregate number of echo request, echo response, and node
alive messages received in terms of octets."
::= { cggsnSACsgStatisticsEntry 4 }
cGgsnSACsgStatsServiceAuthReqs OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the number of requests by the CSG for
initial quota grant of a particular category. Currently,
the CSG allows only synchronous quota grants (i.e., grants due
to explicit requests from it)."
::= { cggsnSACsgStatisticsEntry 5 }
cGgsnSACsgStatsServiceAuthResps OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the number of responses given to the
CSG for service authorization requests."
::= { cggsnSACsgStatisticsEntry 6 }
cGgsnSACsgStatsServiceReAuthReqs OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the number of service re-authorization
requests by the CSG for a category verification."
::= { cggsnSACsgStatisticsEntry 7 }
cGgsnSACsgStatsQuotaReturns OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the number of quota return messages by
the CSG. The CSG sends quota return message when validity
timer expires or there is no response message from the QS.
On receipt of quota return message, QS returns the usage of
a particular category."
::= { cggsnSACsgStatisticsEntry 8 }
cGgsnSACsgStatsQuotaReturnReqs OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the number of quota return requests
by the QS. QS may send this message to cause CSG to
return unused quota for the target service.
QS sends the quota return request when the validity timer
expires, this in turn triggers the CCR update. The DCCA server
grants quota in response to quota return request."
::= { cggsnSACsgStatisticsEntry 9 }
cGgsnSACsgStatsQuotaReturnAccept OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the number of quota return responses
by the CSG. The purpose of quota return response is mainly
to convey session ID to QS, so that QS can save it for
subsequent transactions it originates."
::= { cggsnSACsgStatisticsEntry 10 }
cGgsnSACsgStatsServiceStopMsgs OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the number of service stop messages
by the CSG to QS.
The following list summarizes the situations under which user
is disconnected from the service:
- When the CSG removes the user, by a RADIUS Accounting
(stop) message, the CSG sends the service stop message for
each service for which user had an active session.
- When the idle timer on the CSG expires, it will send service
stop for the category.
- If the QS sends service stop request message.
The CSG will report the usage and remaining quota."
::= { cggsnSACsgStatisticsEntry 11 }
cGgsnSACsgStatsServiceStopReqs OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the number of service stop messages
received by the CSG.
If following a quota push message and update request from
SGSN, GGSN sent a CCR update and received CCA update with
terminate category, in this case GGSN will generate service
stop request to CSG."
::= { cggsnSACsgStatisticsEntry 12 }
cGgsnSACsgStatsQuotaPushMsgs OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the number of quota push messages sent
by the GGSN.
GGSN sends the quota push message in the following
conditions:
- When DCCA server returns non zero quota.
- When category is blacklisted or unknown.
- When retransmit (Tx) timer, associated with DCCA client,
expires.
- When credit control not required."
::= { cggsnSACsgStatisticsEntry 13 }
cGgsnSACsgStatsQuotaPushRsps OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the number of quota push responses sent
by the CSG. The CSG respond to the quota push message with the
quota push response. The cause IE in the GTP header indicates
success/failure. The category whose quota is pushed must be
statically configured on the CSG. If it is not configured,
CSG sends the reject cause 255 in its quota push response."
::= { cggsnSACsgStatisticsEntry 14 }
cGgsnSACsgStatsGtpAcks OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the number of GTP's level
acknowledgements by the CSG for some requests from the QS
(e.g., quota return request and service stop request).
The acknowledgements do not contain the user index and service
ID TLVs, which are helpful for category lookup. However,
they contain the sequence number in the GTP header that
matches with that of the corresponding requests."
::= { cggsnSACsgStatisticsEntry 15 }
cGgsnSAQsRcvdRequests OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the number of request messages
received from the CSG. The counter is incremented
when QS receives the messages as listed below:
- User profile request.
- Service authorization request.
- Service re-authorization request.
- Content authorization request."
::= { cGgsnSAQuotaServerStatistics 1 }
cGgsnSAQsRcvdResponses OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the number of responses received from
the CSG for the corresponding requests."
::= { cGgsnSAQuotaServerStatistics 2 }
cGgsnSAQsSentRequests OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the number of request messages
sent to the CSG. The counter is incremented for every
request sent from the QS, like,
- Quota return request
- Service stop request
- User disconnect request."
::= { cGgsnSAQuotaServerStatistics 3 }
cGgsnSAQsSentResponses OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates number of responses sent, for the
requests received from CSG. The counter is incremented
when QS sends the response, like,
- User profile response
- Service authorization response
- Content authorization response."
::= { cGgsnSAQuotaServerStatistics 4 }
cGgsnSAQsRcvdPathRequests OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the number of echo request and node
alive request received from the CSG. Both CSG and QS use
echoes to detect health of path between them. The CSG sends
the real address while sending the request."
::= { cGgsnSAQuotaServerStatistics 5 }
cGgsnSAQsRcvdPathResponses OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the number of responses received for
path management request messages from QS."
::= { cGgsnSAQuotaServerStatistics 6 }
cGgsnSAQsSentPathRequests OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the number of echo request messages
sent by the QS, to check the health of the path between
QS and CSG."
::= { cGgsnSAQuotaServerStatistics 7 }
cGgsnSAQsSentPathResponses OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the number of path responses sent
by the QS. The QS sends the node alive response to the CSG
for node alive request and it sends the response for the echo
request made by CSG, with valid restart counter."
::= { cGgsnSAQuotaServerStatistics 8 }
cGgsnSAQsRcvdNegativeResponses OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the number of negative responses
received from the CSG. The CSG sends negative GTP'
acknowledgement and also the failure cause code in the
quota push response."
::= { cGgsnSAQuotaServerStatistics 9 }
cGgsnSAQsRequestsUnreplied OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the number of pending requests which
are waiting for the response from CSG."
::= { cGgsnSAQuotaServerStatistics 10 }
cGgsnSAQsSeqnumFailures OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the number of messages received
without proper sequence number.
The QS uses different pool of sequence numbers for
quota management and path management messages. To manage
these sequence numbers, QS utilizes the service of sequence
number manager. For quota management messages the sequence
numbers start from 1 and increases till 65535 and then wraps
around."
::= { cGgsnSAQuotaServerStatistics 11 }
cGgsnSAQsDroppedMsgs OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the number of dropped messages. The QS
verifies the GTP' header content before queuing an
inbound message to the QS process. If any field is bad, it
will drop the message before queuing."
::= { cGgsnSAQuotaServerStatistics 12 }
cGgsnSAQsUnknownMsgs OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the number of unknown messages
in the QS."
::= { cGgsnSAQuotaServerStatistics 13 }
cGgsnSAQsUnknownResponses OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the number of unknown responses
received by the QS."
::= { cGgsnSAQuotaServerStatistics 14 }
cGgsnSAQsIEErrorMsgs OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the number of messages received with
IE error."
::= { cGgsnSAQuotaServerStatistics 15 }
cGgsnSAQsBadSrcAddressMsgs OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the number of messages with
bad source address."
::= { cGgsnSAQuotaServerStatistics 16 }
cGgsnSAQsVersionUnSupportedMsgs OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the number of messages with a higher
version. The QS and CSG uses version '0' of GTP' for
communication between them. If CSG sends message with
higher version, QS will respond with the message
'version not supported'."
::= { cGgsnSAQuotaServerStatistics 17 }
cGgsnSAQsMandTlvMissingMsgs OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the number of messages sent by CSG with
mandatory TLV missing. The message will be dropped."
::= { cGgsnSAQuotaServerStatistics 18 }
cGgsnSAQsMandTlvIncorrectMsgs OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the number of messages sent by the CSG
with incorrect mandatory TLV."
::= { cGgsnSAQuotaServerStatistics 19 }
cGgsnSAQsInvalidMsgFormats OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the number of messages sent by the CSG
with TLV of unexpected length. The QS will drop the message."
::= { cGgsnSAQuotaServerStatistics 20 }
cGgsnSAQsNoResponseToMsgs OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the number of messages sent from QS, for
which there is no response from the CSG after n3/t3
retransmission."
::= { cGgsnSAQuotaServerStatistics 21 }
cGgsnSANumServiceAwareApns OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the total number of service
aware APNs."
::= { cGgsnSAServiceAwareStatistics 1 }
cGgsnSATotalGgsnEvents OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the total number of GGSN events."
::= { cGgsnSAServiceAwareStatistics 2 }
cGgsnSATotalCsgEvents OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the total number of CSG events."
::= { cGgsnSAServiceAwareStatistics 3 }
cGgsnSATotalDccaEvents OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the total number of DCCA events."
::= { cGgsnSAServiceAwareStatistics 4 }
cGgsnSATotalCreatedCategories OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the total number of categories
that are created. Categories will not be statically
configured in GGSN. GGSN learn about the categories for
particular PDP session dynamically by DCCA server and CSG."
::= { cGgsnSAServiceAwareStatistics 5 }
cGgsnSATotalCreatedSyncObjs OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the total number of synchronization
objects that get created for each of the trigger, which keep
track of the affected categories and their current state.
The synchronization object contains:
-Type of object
-List of affected categories."
::= { cGgsnSAServiceAwareStatistics 6 }
cGgsnSACategoryFsmRtnErrors OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the number of errors, returned by
category FSM."
::= { cGgsnSAServiceAwareStatistics 7 }
cGgsnSATotalServiceAuthMsgs OBJECT-TYPE
SYNTAX Counter
ACCESS read-only