-
Notifications
You must be signed in to change notification settings - Fork 124
/
Copy pathCISCO-GGSN-EXT-MIB-V1SMI.my
2107 lines (1929 loc) · 65.9 KB
/
CISCO-GGSN-EXT-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 27-Jul-2011 17:15:39, by
-- SMICng version 2.2.11-beta(PRO)(Solaris), January 20, 2001. Enterprise key cisco.com
CISCO-GGSN-EXT-MIB DEFINITIONS ::= BEGIN
-- From file: "CISCO-GGSN-EXT-MIB.my"
-- Compile options "4 7 F H N W 03 06 0B 0G 0N 0T"
IMPORTS
DisplayString, TruthValue, TimeStamp, RowStatus
FROM SNMPv2-TC-v1
CounterBasedGauge64
FROM HCNUM-TC
InetAddress, InetAddressType
FROM INET-ADDRESS-MIB
SnmpAdminString
FROM SNMP-FRAMEWORK-MIB
TimeIntervalMin
FROM CISCO-TC
ciscoMgmt
FROM CISCO-SMI
Counter, Gauge
FROM RFC1155-SMI
OBJECT-TYPE
FROM RFC-1212
TRAP-TYPE
FROM RFC-1215;
ciscoGgsnExtMIB OBJECT IDENTIFIER ::= { ciscoMgmt 647 }
-- MODULE-IDENTITY
-- LastUpdated
-- 201103180000Z
-- 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 extends the CISCO-GGSN-MIB.
--
-- This MIB module manages the Gateway GPRS Support
-- Node (GGSN) devices.
--
-- A GGSN device provides interworking with external
-- packet-data network of a particular GPRS service
-- provider. It provides a combination of IP routing
-- and GPRS specific functionality to support mobile
-- users.
-- A PDP context on the GGSN device contains the mobile users
-- session information, during an active session. This
-- information is used by the device to control the session.
-- An active PDP context is created when a mobile station's
-- service request is authenticated and served by the GGSN device.
--
-- Acronyms and terms:
-- APN Access Point Name
-- CDR Call Detail Record
-- COA Change of Authorization
-- CSG2 Content Services Gateway (2nd Generation)
-- DT Direct Tunnel
-- DFP Dynamic Feedback Protocol
-- GGSN Gateway GPRS Support Node
-- GPRS General Packet Radio Service
-- GTP GPRS Tunneling Protocol
-- IE Information Element
-- IMEI International Mobile Equipment Identification
-- IMSI International Mobile Subscriber Identification
-- MCC Mobile Country Code
-- MNC Mobile Network Code
-- MS Mobile Station
-- MSISDN Mobile Station ISDN number
-- PDP Packet Data Protocol
-- PDN Packet Data Network
-- PPP Point-to-Point Protocol
-- RNC Radio Network Controller
-- SGSN Serving GPRS Support Node
--
-- 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 7). 3G TS 29.060 v7.5.1.
--
-- [5] 3GPP: Technical Specification Group Core Network;
-- Policy control over Go interface (Release 5).
-- 3GPP TS 29.207 V5.2.0
--
-- [6] 3GPP: Technical Specification Group Services and
-- System Aspects; General Packet Radio Service (GPRS);
-- Service Description (Release 7) 3GPP TS 23.060 V7.4.0
--
-- [7] 3GPP: Technical Specification Group Services and
-- System Aspects; One Tunnel Functional description;
-- (Release 7) 3GPP TR 23.809 V1.0.0
-- RevDate
-- 201103180000Z
-- RevDescr
-- The following changes have been made.
--
-- [1] Added a new OBJECT IDENTIFIER ciscoGgsnExtTraceStatistics
-- with the following objects.
--
-- cGgsnExtTraceActivatedSessions,
-- cGgsnExtTraceSignalActivations,
-- cGgsnExtTraceMgmtActivations,
-- cGgsnExtTraceNewSesActivations,
-- cGgsnExtTraceActSesActivations,
-- cGgsnExtTraceSignalActivFailures,
-- cGgsnExtTraceMgmtActivFailures,
-- cGgsnExtTraceDeactivatedSessions,
-- cGgsnExtTraceSignalDeactivations,
-- cGgsnExtTraceMgmtDeactivations,
-- cGgsnExtTraceSignalDeactivFailures,
-- cGgsnExtTraceMgmtDeactivFailures.
--
-- [2] Added a new OBJECT IDENTIFIER ciscoGgsnExtTraceXmlStatistics
-- with the following objects.
--
-- cGgsnExtTraceTotalXmlFiles,
-- cGgsnExtTraceTotalXmlFailNotifFiles,
-- cGgsnExtTraceXmlFileTransSucc,
-- cGgsnExtTraceXmlFileTransPri,
-- cGgsnExtTraceXmlFileTransSec,
-- cGgsnExtTraceXmlFileTotalTransFails,
-- cGgsnExtTraceXmlFileTransPriFails,
-- cGgsnExtTraceXmlFileTransRetries,
-- cGgsnExtTraceXmlFileTransSecFails.
--
-- [3] Two new statistics objects are added under
-- ciscoGgsnExtStatistics.
--
-- cGgsnExtConditionalIEMissingMsgs,
-- cGgsnExtInvalidReplyPeerMsgs.
--
-- [4] Two new configuration objects are added under
-- ciscoGgsnExtConfigurations.
--
-- cGgsnExtTraceBufferLimit,
-- cGgsnExtTraceXmlTransferInterval.
--
-- [5] A new table cGgsnExtSubscriberTraceProfileTable with
-- following objects have been added to
-- ciscoGgsnExtConfigurations.
--
-- cGgsnExtTraceProfile,
-- cGgsnExtTracePrimaryUrl,
-- cGgsnExtTraceSecondaryUrl,
-- cGgsnExtTraceInfoTxFailRetry,
-- cGgsnExtTraceInfoTxFailRetryInterval,
-- cGgsnExtTraceRowStatus.
--
-- [6] A new table ciscoGgsnExtTraceStatusTable with
-- following objects have been added to
-- ciscoGgsnExtStatus.
--
-- cGgsnExtTraceStatusImsi,
-- cGgsnExtTraceStatusImei,
-- cGgsnExtTraceStatusSource,
-- cGgsnExtTraceStatusReference.
--
-- [7] The following Notification has been added
-- cGgsnExtSubsTraceFailNotif.
--
-- [8] The following Notification objects are added
-- under ciscoGgsnExtNotifInfo.
--
-- cGgsnExtSubscriberMcc,
-- cGgsnExtSubscriberMnc,
-- cGgsnExtSubscriberTraceId,
-- cGgsnExtSubscrTraceFailReason.
--
-- [9] The following NotifMgmt objects are added under
-- ciscoGgsnExtNotifMgmt
--
-- cGgsnExtTraceNotifEnable.
--
-- [10] The following groups were added
-- cGgsnExtNotificationsGroup,
-- cGgsnExtNotificationInfoGroup,
-- cGgsnExtStatusGroupSup2,
-- cGgsnExtConfigurationsGroupRev1Sup2,
-- cGgsnExtStatisticsGroupSup2,
-- cGgsnExtStatisticsGroupSup3.
--
-- [11] Deprecated cGgsnExtMIBComplianceRev3
-- and added new compliance
-- cGgsnExtMIBComplianceRev4.
-- RevDate
-- 201006110000Z
-- RevDescr
-- Added the following scalar objects
-- cGgsnExtActivatedv4v6Gtpv0Pdp,
-- cGgsnExtActivatedv4v6Gtpv1Pdp,
-- cGgsnExtActivatedv4v6MobileStations to
-- ciscoGgsnExtStatus
--
-- Added the following scalar objects
-- cGgsnExtTotalCreatedv4v6Pdps and
-- cGgsnExtTotalDeletedv4v6Pdps to
-- ciscoGgsnExtStatistics
--
-- Added OBJECT-GROUP cGgsnExtStatisticsGroupSup1,
-- which is supplementary to cGgsnExtStatisticsGroupRev1.
--
-- Added OBJECT-GROUP cGgsnExtStatusGroupSup1,
-- which is supplementary to cGgsnExtStatusGroupRev1.
--
-- Added MODULE-COMPLIANCE cGgsnExtMIBComplianceRev3,
-- which deprecates cGgsnExtMIBComplianceRev2.
-- RevDate
-- 200909170000Z
-- RevDescr
-- Added the following scalar objects
-- cGgsnExtRedundancyEnabled,
-- cGgsnExtChargSyncWindowSvcSeqnum,
-- cGgsnExtChargSyncWindowCdrSeqnum,
-- cGgsnExtChargSynWindowGtppSeqnum to
-- ciscoGgsnExtConfigurations.
--
-- Added OBJECT-GROUP cGgsnExtConfigurationsGroupRev1Sup1,
-- which supplementary to cGgsnExtConfigurationsGroupRev1.
--
-- Added MODULE-COMPLIANCE cGgsnExtMIBComplianceRev2,
-- which deprecates cGgsnExtMIBComplianceRev1.
-- RevDate
-- 200901300000Z
-- RevDescr
-- Added the following scalar objects
-- cGgsnExtDfpCpuLoad,
-- cGgsnExtDfpMemLoad,
-- cGgsnExtThruputHistory,
-- cGgsnExtCallRateInterval,
-- cGgsnExtCallRateHistory,
-- cGgsnExtPrepaidStandAlone to
-- ciscoGgsnExtConfigurations.
--
-- Added the scalar object
-- cGgsnExtActivatedMs to
-- ciscoGgsnExtStatus.
--
-- Added the scalar object
-- cGgsnExtPdpNonExistentMsgs to
-- ciscoGgsnExtStatistics.
--
-- Added the following tables
-- cGgsnExtCallRateStatsTable,
-- cGgsnExtHistCallRateStatsTable,
-- cGgsnExtHistThruputStatsTable,
-- cGgsnExtSubscriberTable to
-- ciscoGgsnExtStatistics.
--
-- Added following OBJECT-GROUP
-- cGgsnExtStatisticsGroupRev1,
-- cGgsnExtStatusGroupRev1,
-- cGgsnExtConfigurationsGroupRev1
--
-- Added MODULE-COMPLIANCE
-- cGgsnExtMIBComplianceRev1.
-- RevDate
-- 200801290000Z
-- RevDescr
-- Initial version of this MIB module.
ciscoGgsnExtMIBNotifs OBJECT IDENTIFIER ::= { ciscoGgsnExtMIB 0 }
ciscoGgsnExtMIBObjects OBJECT IDENTIFIER ::= { ciscoGgsnExtMIB 1 }
ciscoGgsnExtMIBConform OBJECT IDENTIFIER ::= { ciscoGgsnExtMIB 2 }
ciscoGgsnExtStatistics OBJECT IDENTIFIER ::= { ciscoGgsnExtMIBObjects 1 }
ciscoGgsnExtConfigurations OBJECT IDENTIFIER ::= { ciscoGgsnExtMIBObjects 2 }
ciscoGgsnExtStatus OBJECT IDENTIFIER ::= { ciscoGgsnExtMIBObjects 3 }
ciscoGgsnExtNotifMgmt OBJECT IDENTIFIER ::= { ciscoGgsnExtMIBObjects 4 }
ciscoGgsnExtNotifInfo OBJECT IDENTIFIER ::= { ciscoGgsnExtMIBObjects 5 }
ciscoGgsnExtTraceStatistics OBJECT IDENTIFIER ::= { ciscoGgsnExtStatistics 21 }
ciscoGgsnExtTraceXmlStatistics OBJECT IDENTIFIER ::= { ciscoGgsnExtStatistics 22 }
cGgsnExtMIBCompliances OBJECT IDENTIFIER ::= { ciscoGgsnExtMIBConform 1 }
cGgsnExtMIBGroups OBJECT IDENTIFIER ::= { ciscoGgsnExtMIBConform 2 }
cGgsnExtNoWaitSgsnLocalDelPDPs OBJECT-TYPE
SYNTAX Counter
-- Units
-- PDP Context
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the total number of PDPs deleted
in GGSN without waiting for a delete context response
from the SGSN."
::= { ciscoGgsnExtStatistics 1 }
cGgsnExtNoReqSgsnLocalDelPDPs OBJECT-TYPE
SYNTAX Counter
-- Units
-- PDP Context
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the total number of PDPs deleted
in GGSN without sending a delete request to the SGSN."
::= { ciscoGgsnExtStatistics 2 }
cGgsnExtSentPdpUpdateReqs OBJECT-TYPE
SYNTAX Counter
-- Units
-- messages
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the total number of GGSN
initiated update PDP context requests sent to SGSN."
::= { ciscoGgsnExtStatistics 3 }
cGgsnExtRcvdSuccPdpUpdateResponses OBJECT-TYPE
SYNTAX Counter
-- Units
-- messages
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object represents the total number of update PDP
context responses received from the SGSN for the GGSN
initiated update requests."
::= { ciscoGgsnExtStatistics 4 }
cGgsnExtRcvdCoaMsgs OBJECT-TYPE
SYNTAX Counter
-- Units
-- messages
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the total number of Change of
Authorization (COA) messages received at GGSN."
REFERENCE
"RFC 3576 - Dynamic Authorization Extensions to Remote
Authentication Dial In User Service (RADIUS)"
::= { ciscoGgsnExtStatistics 5 }
cGgsnExtDiscardedCoaMsgs OBJECT-TYPE
SYNTAX Counter
-- Units
-- messages
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the total number of COA
messges dropped at GGSN."
::= { ciscoGgsnExtStatistics 6 }
cGgsnExtSentCoaUpdateReqs OBJECT-TYPE
SYNTAX Counter
-- Units
-- messages
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the total number of COA
initiated update PDP requests for QOS change sent
from GGSN."
::= { ciscoGgsnExtStatistics 7 }
cGgsnExtSentErrorIndications OBJECT-TYPE
SYNTAX Counter
-- Units
-- messages
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the number of error indication
messages sent from GGSN.
Trigger condition: A error indication message will be
sent from GGSN when a data packet is received for a
non-existent PDP context."
REFERENCE
"3GPP TS 23.060 V7.4.0 General Packet Radio Service (GPRS);
Service description; Stage 2 (Release 7)"
::= { ciscoGgsnExtStatistics 8 }
cGgsnExtRcvdErrorIndications OBJECT-TYPE
SYNTAX Counter
-- Units
-- messages
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the number of error indication
messages received on GGSN."
REFERENCE
"3GPP TS 23.060 v7.4.0 General Packet Radio Service (GPRS);
Service description; Stage 2 (Release 7)"
::= { ciscoGgsnExtStatistics 9 }
cGgsnExtTotalDtEnabled OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the number of times Direct
tunnel is enabled for the PDP contexts in GGSN."
::= { ciscoGgsnExtStatistics 10 }
cGgsnExtRcvdDtPdpErrorIndications OBJECT-TYPE
SYNTAX Counter
-- Units
-- messages
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the total number of error
indications received for Direct Tunnel PDP contexts
from the RNC."
REFERENCE
"3GPP TR 23.809 v1.0.0: 3rd Generation Partnership Project;
Technical Specification Group Services and System Aspects;
One Tunnel Functional description;(Release 7)"
::= { ciscoGgsnExtStatistics 11 }
cGgsnExtTotalDtUpdFailDeletedPDPs OBJECT-TYPE
SYNTAX Counter
-- Units
-- PDP Context
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the total number of Direct
tunnel PDP contexts deleted due to update response
failure.
Trigger condition:
If the GGSN initiated update request is triggered
by the error indication from RNC and the response
is received with cause value other than 'request
accepted' then the PDP is deleted locally in GGSN."
::= { ciscoGgsnExtStatistics 12 }
cGgsnExtThruputStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF CGgsnExtThruputStatsEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table contains the global GTP throughput statistics
on this GGSN for a configurable duration set in
cGgsnThruputIntervalOne and cGgsnThruputIntervalTwo.
Once the cGgsnThruputIntervalOne is set to some valid
value, the data throughput collections gets started.
The data throughput collection is updated periodically
for each expiry of configured throughput interval to the
corresponding objects in the cGgsnThruputStatsTable.
cGgsnThruputIntervalTwo is just an option for a second
throughput collection for a different throughput
interval time."
::= { ciscoGgsnExtStatistics 13 }
cGgsnExtThruputStatsEntry OBJECT-TYPE
SYNTAX CGgsnExtThruputStatsEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Creation of row(s) will happen when there is a valid value
set to cGgsnThruputIntervalOne or cGgsnThruputIntervalTwo.
Deletion of row(s) will happen when the throughput intervals
(cGgsnThruputIntervalOne, cGgsnThruputIntervalTwo) are
unset."
INDEX { cGgsnExtThruputInterval }
::= { cGgsnExtThruputStatsTable 1 }
CGgsnExtThruputStatsEntry ::= SEQUENCE {
cGgsnExtThruputInterval INTEGER,
cGgsnExtThruputLastCollected INTEGER,
cGgsnExtUpstreamByteCount CounterBasedGauge64,
cGgsnExtDownstreamByteCount CounterBasedGauge64,
cGgsnExtUpstreamPktCount Gauge,
cGgsnExtDownstreamPktCount Gauge
}
cGgsnExtThruputInterval OBJECT-TYPE
SYNTAX INTEGER(1..65535)
-- Units
-- minutes
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This object indicates the time interval at which the
statistics are sampled. The objects cGgsnThruputIntervalOne
and cGgsnThruputIntervalTwo in the CISCO-GGSN-MIB represent
the configuration values of the intervals."
::= { cGgsnExtThruputStatsEntry 1 }
cGgsnExtThruputLastCollected OBJECT-TYPE
SYNTAX INTEGER(0..65535)
-- Units
-- minutes
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the delta value between the time
when this data is collected and the time it is been
retrieved. It means the time elapsed after the previous
collection/updation of the data."
::= { cGgsnExtThruputStatsEntry 2 }
cGgsnExtUpstreamByteCount OBJECT-TYPE
SYNTAX --?? syntax is not convertable to SMIv1
CounterBasedGauge64
-- Rsyntax Counter
-- Units
-- bytes
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the total number of upstream
traffic bytes sent in the last sampling period
specified by cGgsnExtThruputInterval."
::= { cGgsnExtThruputStatsEntry 3 }
cGgsnExtDownstreamByteCount OBJECT-TYPE
SYNTAX --?? syntax is not convertable to SMIv1
CounterBasedGauge64
-- Rsyntax Counter
-- Units
-- bytes
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the total number of downstream
traffic bytes sent in the last sampling period
specified by cGgsnExtThruputInterval."
::= { cGgsnExtThruputStatsEntry 4 }
cGgsnExtUpstreamPktCount OBJECT-TYPE
SYNTAX Gauge
-- Units
-- packets
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the number of upstream packets
sent in the last sampling period specified by
cGgsnExtThruputInterval."
::= { cGgsnExtThruputStatsEntry 5 }
cGgsnExtDownstreamPktCount OBJECT-TYPE
SYNTAX Gauge
-- Units
-- packets
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the number of downstream packets
sent in the last sampling period specified by
cGgsnExtThruputInterval."
::= { cGgsnExtThruputStatsEntry 6 }
cGgsnExtPdpNonExistentMsgs OBJECT-TYPE
SYNTAX Counter
-- Units
-- messages
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the total number of PDP
non-existent messages sent from the GGSN."
::= { ciscoGgsnExtStatistics 14 }
cGgsnExtCallRateStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF CGgsnExtCallRateStatsEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table contains the global call rate statistics
on this GGSN for a cindicatesonfigurable duration set in
cGgsnExtCallRateInterval.
When the cGgsnExtCallRateInterval is set to some valid
value, the call rate data collections gets started. The
call rate data is updated periodically for each expiry
of the configured call rate interval to the corresponding
objects in the cGgsnExtCallRateStatsTable."
::= { ciscoGgsnExtStatistics 15 }
cGgsnExtCallRateStatsEntry OBJECT-TYPE
SYNTAX CGgsnExtCallRateStatsEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"An entry(conceptual row) in the 'cGgsnExtCallRateStatsTable'.
There will always be a single entry in this table. The entry
represents set of global call rate statistics at a given
instance of time.
The agent creates an entry in this table when there is a
valid value set to cGgsnExtCallRateInterval. The agent
destroys an entry in this table when the call rate interval
cGgsnExtCallRateInterval is unset."
INDEX { cGgsnExtCallRateStatsInterval }
::= { cGgsnExtCallRateStatsTable 1 }
CGgsnExtCallRateStatsEntry ::= SEQUENCE {
cGgsnExtCallRateStatsInterval Gauge,
cGgsnExtCallRateLastCollected Gauge,
cGgsnExtCreatedPDPs Gauge,
cGgsnExtDeletedPDPs Gauge
}
cGgsnExtCallRateStatsInterval OBJECT-TYPE
SYNTAX Gauge(1..65535)
-- Units
-- minutes
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This object indicates the time interval at which the
statistics are sampled. The object cGgsnExtCallRateInterval
represents the configuration value of the interval."
::= { cGgsnExtCallRateStatsEntry 1 }
cGgsnExtCallRateLastCollected OBJECT-TYPE
SYNTAX Gauge(0..65535)
-- Units
-- minutes
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the time elapsed (in minutes) from
the time when this data is collected and the time it is been
retrieved."
::= { cGgsnExtCallRateStatsEntry 2 }
cGgsnExtCreatedPDPs OBJECT-TYPE
SYNTAX Gauge
-- Units
-- PDP Context
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the number of PDP contexts created
in the last sampling period specified by
cGgsnExtCallRateInterval."
::= { cGgsnExtCallRateStatsEntry 3 }
cGgsnExtDeletedPDPs OBJECT-TYPE
SYNTAX Gauge
-- Units
-- PDP Context
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the number of PDP contexts deleted
in the last sampling period specified by
cGgsnExtCallRateInterval."
::= { cGgsnExtCallRateStatsEntry 4 }
cGgsnExtHistCallRateStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF CGgsnExtHistCallRateStatsEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table contains the historical call rate statistics
on this GGSN for a configurable duration set in
cGgsnExtCallRateInterval."
::= { ciscoGgsnExtStatistics 16 }
cGgsnExtHistCallRateStatsEntry OBJECT-TYPE
SYNTAX CGgsnExtHistCallRateStatsEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"An entry (conceptual row) in the
'cGgsnExtHistCallRateStatsTable'. Each entry represents a
set of historical call rate statistics sampled at different
instance of time.
The agent creates an entry in to this table at the end of
each interval set in cGgsnExtCallRateInterval and the
existing entry in the cGgsnExtCallRateStatsTable will be
inserted into the history table and the
cGgsnExtCallRateStatsTable will be updated with new values.
The agent deletes an entry from the table when the call
rate history limit indicated by the object
cGgsnExtCallRateHistory is reached. The oldest entries
will be removed when the limit is reached."
INDEX { cGgsnExtHistCallRateIndex }
::= { cGgsnExtHistCallRateStatsTable 1 }
CGgsnExtHistCallRateStatsEntry ::= SEQUENCE {
cGgsnExtHistCallRateIndex Gauge,
cGgsnExtHistCallRateInterval TimeIntervalMin,
cGgsnExtHistCallRateLastCollected TimeStamp,
cGgsnExtHistCreatedPDPs Counter,
cGgsnExtHistDeletedPDPs Counter
}
cGgsnExtHistCallRateIndex OBJECT-TYPE
SYNTAX Gauge(1..100)
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This object indicates an arbitrary index number which
uniquely identifies a history call rate entry in this table."
::= { cGgsnExtHistCallRateStatsEntry 1 }
cGgsnExtHistCallRateInterval OBJECT-TYPE
SYNTAX TimeIntervalMin(1..65535)
-- Rsyntax Gauge(1..65535)
-- Units
-- minutes
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the time interval for which the
statistics are sampled."
::= { cGgsnExtHistCallRateStatsEntry 2 }
cGgsnExtHistCallRateLastCollected OBJECT-TYPE
SYNTAX TimeStamp
-- Rsyntax TimeTicks
-- Units
-- minutes
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object represents the time at which this data was
collected."
::= { cGgsnExtHistCallRateStatsEntry 3 }
cGgsnExtHistCreatedPDPs OBJECT-TYPE
SYNTAX Counter
-- Units
-- PDP Context
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the historical number of PDP contexts
created in a specific sampling period specified by
cGgsnExtCallRateInterval."
::= { cGgsnExtHistCallRateStatsEntry 4 }
cGgsnExtHistDeletedPDPs OBJECT-TYPE
SYNTAX Counter
-- Units
-- PDP Context
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the historical number of PDP contexts
deleted in a specific sampling period specified by
cGgsnExtCallRateInterval."
::= { cGgsnExtHistCallRateStatsEntry 5 }
cGgsnExtHistThruputStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF CGgsnExtHistThruputStatsEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table contains the historical GTP throughput
statistics on this GGSN for a configurable duration set in
cGgsnThruputIntervalOne and cGgsnThruputIntervalTwo."
::= { ciscoGgsnExtStatistics 17 }
cGgsnExtHistThruputStatsEntry OBJECT-TYPE
SYNTAX CGgsnExtHistThruputStatsEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"An entry (conceptual row) in the
'cGgsnExtHistThruputStatsTable'. Each entry represents a
a set of historical throughput statistics sampled at
different instance of time.
The agent creates an entry into this table at the end of
each interval set in cGgsnThruputIntervalOne and
cGgsnThruputIntervalTwo. The existing entry in the
cGgsnExtThruputStatsTable will be inserted into the history
table and then the cGgsnExtThruputStatsTable will be
will be updated with new values.
The agent deletes an entry of this table when the
throughput history limit indicated by the object
cGgsnExtThruputHistory is reached. The oldest entries will
be removed when the limit is reached."
INDEX { cGgsnExtHistThruputIndex, cGgsnExtHistThruputInterval }
::= { cGgsnExtHistThruputStatsTable 1 }
CGgsnExtHistThruputStatsEntry ::= SEQUENCE {
cGgsnExtHistThruputIndex Gauge,
cGgsnExtHistThruputInterval TimeIntervalMin,
cGgsnExtHistThruputLastCollected TimeStamp,
cGgsnExtHistUpstreamByteCount Counter,
cGgsnExtHistDownstreamByteCount Counter,
cGgsnExtHistUpstreamPktCount Counter,
cGgsnExtHistDownstreamPktCount Counter
}
cGgsnExtHistThruputIndex OBJECT-TYPE
SYNTAX Gauge(1..100)
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This object indicates an arbitray index number which
uniquely identify a entry in this table."
::= { cGgsnExtHistThruputStatsEntry 1 }
cGgsnExtHistThruputInterval OBJECT-TYPE
SYNTAX TimeIntervalMin(1..65535)
-- Rsyntax Gauge(1..65535)
-- Units
-- minutes
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This object indicates the time interval at which the
statistics are sampled. The objects cGgsnThruputIntervalOne
and cGgsnThruputIntervalTwo in the CISCO-GGSN-MIB represent
the configuration values of the intervals."
::= { cGgsnExtHistThruputStatsEntry 2 }
cGgsnExtHistThruputLastCollected OBJECT-TYPE
SYNTAX TimeStamp
-- Rsyntax TimeTicks
-- Units
-- minutes
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the time at which this data was
collected."
::= { cGgsnExtHistThruputStatsEntry 3 }
cGgsnExtHistUpstreamByteCount OBJECT-TYPE
SYNTAX --?? syntax is not convertable to SMIv1
Counter
-- Units
-- bytes
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the historical number of upstream
traffic bytes sent from GGSN to PDN in a specific sampling
period specified by cGgsnExtThruputInterval."
::= { cGgsnExtHistThruputStatsEntry 4 }
cGgsnExtHistDownstreamByteCount OBJECT-TYPE
SYNTAX --?? syntax is not convertable to SMIv1
Counter
-- Units
-- bytes
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the historical number of downstream
traffic bytes sent from PDN to GGSN in a specific sampling
period specified by cGgsnExtThruputInterval."
::= { cGgsnExtHistThruputStatsEntry 5 }
cGgsnExtHistUpstreamPktCount OBJECT-TYPE
SYNTAX Counter
-- Units
-- packets
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the historical number of upstream
packets sent in a specific sampling period specified by
cGgsnExtThruputInterval."
::= { cGgsnExtHistThruputStatsEntry 6 }
cGgsnExtHistDownstreamPktCount OBJECT-TYPE
SYNTAX Counter
-- Units
-- packets
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object represents the historical number of downstream
packets sent in a specific sampling period specified by
cGgsnExtThruputInterval."
::= { cGgsnExtHistThruputStatsEntry 7 }
cGgsnExtSubscriberTable OBJECT-TYPE
SYNTAX SEQUENCE OF CGgsnExtSubscriberEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table contains the details of the subscribers
connected to the GGSN."
::= { ciscoGgsnExtStatistics 18 }
cGgsnExtSubscriberEntry OBJECT-TYPE
SYNTAX CGgsnExtSubscriberEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"An entry (conceptual row) in the cGgsnExtSubscriberTable.
The agent creates an entry into this table when a new PDP
is created in GGSN in response to the create request from
SGSN.
The agent destroys an entry of this table when a PDP is
deleted in GGSN."
INDEX { cGgsnExtSubscriberMsisdn }
::= { cGgsnExtSubscriberTable 1 }
CGgsnExtSubscriberEntry ::= SEQUENCE {
cGgsnExtSubscriberMsisdn SnmpAdminString,
cGgsnExtSubscriberTid SnmpAdminString,
cGgsnExtSubscriberMSAddrType InetAddressType,
cGgsnExtSubscriberMSAddr InetAddress,
cGgsnExtSubscriberSource INTEGER,
cGgsnExtSubscriberSGSNAddrType InetAddressType,
cGgsnExtSubscriberSGSNAddr InetAddress,
cGgsnExtSubscriberAPN SnmpAdminString
}
cGgsnExtSubscriberMsisdn OBJECT-TYPE
SYNTAX SnmpAdminString(SIZE(1..20))
-- Rsyntax OCTET STRING(SIZE(1..20))
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This object indicates a human readable string representing
the Mobile Subscriber ISDN (MSISDN) value of the subscriber."
::= { cGgsnExtSubscriberEntry 1 }
cGgsnExtSubscriberTid OBJECT-TYPE
SYNTAX SnmpAdminString(SIZE(0..18))
-- Rsyntax OCTET STRING(SIZE(0..18))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates a human readable string representing
the Tunnel identifier of the Subscriber/PDP context in GGSN."
::= { cGgsnExtSubscriberEntry 2 }
cGgsnExtSubscriberMSAddrType OBJECT-TYPE
SYNTAX InetAddressType
-- Rsyntax INTEGER {
-- ?? enum value of zero may cause problems
-- unknown(0),
-- ipv4(1),
-- ipv6(2),
-- ipv4z(3),
-- ipv6z(4),
-- dns(16)
-- }
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the address type of the object
cGgsnExtSubscriberMSAddr."
::= { cGgsnExtSubscriberEntry 3 }
cGgsnExtSubscriberMSAddr OBJECT-TYPE
SYNTAX InetAddress
-- Rsyntax OCTET STRING(SIZE(0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the inet address of the Subscriber."
::= { cGgsnExtSubscriberEntry 4 }
cGgsnExtSubscriberSource OBJECT-TYPE
SYNTAX INTEGER {
pdpAddrSrcNone(1),
pdpAddrSrcStatic(2),
pdpAddrSrcLocalPool(3),
pdpAddrSrcRadius(4),
pdpAddrSrcDhcp(5),
pdpAddrSrcIpcp(6)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the source from which the IP addr for
the subscriber is assigned.