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
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
|
-- *****************************************************************
-- CISCO-WAN-CELL-EXT-MIB.MY: Cisco Cellular 4G/LTE WAN MIB file
-- January 2014. Shankar Garikapati
--
-- Copyright (c) 2014 by cisco Systems, Inc.
-- All rights reserved.
--
-- *****************************************************************
CISCO-WAN-CELL-EXT-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY,
OBJECT-TYPE,
NOTIFICATION-TYPE,
Integer32,
Unsigned32,
Counter64
FROM SNMPv2-SMI
MODULE-COMPLIANCE,
NOTIFICATION-GROUP,
OBJECT-GROUP
FROM SNMPv2-CONF
entPhysicalIndex,
entPhysicalName
FROM ENTITY-MIB
ifIndex
FROM IF-MIB
RowStatus,
StorageType,
TEXTUAL-CONVENTION
FROM SNMPv2-TC
SnmpAdminString
FROM SNMP-FRAMEWORK-MIB
InetAddressType,
InetAddress
FROM INET-ADDRESS-MIB
C3gServiceCapability
FROM CISCO-WAN-3G-MIB
ciscoMgmt
FROM CISCO-SMI;
ciscoWanCellExtMIB MODULE-IDENTITY
LAST-UPDATED "201403050000Z"
ORGANIZATION "Cisco Systems, Inc."
CONTACT-INFO
"Cisco Systems
Customer Service
Postal: 170 W Tasman Drive
San Jose, CA 95134
USA
Tel: +1 800 553-NETS
E-mail: cs-3g@cisco.com
cs-4g@cisco.com"
DESCRIPTION
"This MIB module is an extension of
CISCO-WAN-3G-MIB.my, and it provides
network management support for Cisco cellular
WAN 4G/LTE products.
*** ABBREVIATIONS, ACRONYMS, AND SYMBOLS ***
AMBR - Aggregate Maximum Bit Rate
APN - Access Point Name
ARP - Allocation and Retention Priority
CQI - Channel Quality Indicator
eNodeB - Evolved Node B
EPS - Evolved Packet System
E-UTRAN - Evolved Universal Terrestrial Radio Access
GBR - Guaranteed Bit Rate
LTE - Long Term Evolution
MBR - Maximum Bit Rate
PCRF - Policy and Charging Rules Function
PDN - Packet Data Network
QCI - QoS Class Identifier
QOS - Quality of Service
RF - Radio Frequency
RSRP - Reference Signal Receive Power
RSRQ - Reference Signal Receive Quality
SINR - Signal-to-Interference plus Noise Ratio
SNR - Signal-to-Noise Ratio
UE - User Equipment"
REVISION "201403050000Z"
DESCRIPTION
"Initial version of this MIB module."
::= { ciscoMgmt 817 }
ciscoWanCellExtMIBNotifs OBJECT IDENTIFIER
::= { ciscoWanCellExtMIB 0 }
ciscoWanCellExtMIBObjects OBJECT IDENTIFIER
::= { ciscoWanCellExtMIB 1 }
ciscoWanCellExtMIBConform OBJECT IDENTIFIER
::= { ciscoWanCellExtMIB 2 }
ciscoWanCellExtLte OBJECT IDENTIFIER
::= { ciscoWanCellExtMIBObjects 1 }
cwceLteRadio OBJECT IDENTIFIER
::= { ciscoWanCellExtLte 1 }
cwceLteProfile OBJECT IDENTIFIER
::= { ciscoWanCellExtLte 2 }
CiscoWanCellExtProtocolType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Generic PDN type."
SYNTAX INTEGER {
unknown(1),
ipv4(2),
ppp(3),
ipv6(4),
ipv4V6(5)
}
CiscoWanCellExtRsrp ::= TEXTUAL-CONVENTION
DISPLAY-HINT "d"
STATUS current
DESCRIPTION
"Reference signal received power (RSRP) is
defined as the linear average over the power
contributions and measured in dBm. The reporting
range of RSRP is defined per LTE standard
with 1 dBm resolution."
SYNTAX Integer32
CiscoWanCellExtRsrq ::= TEXTUAL-CONVENTION
DISPLAY-HINT "d-1"
STATUS current
DESCRIPTION
"Reference Signal Received Quality (RSRQ) is
defined as the ratio NxRSRP over (E-UTRAN carrier RSSI)
and measured in dB. The reporting range of
RSRQ is defined per LTE standard with 0.5 dB
resolution."
SYNTAX Integer32
CiscoWanCellExtCqiIndex ::= TEXTUAL-CONVENTION
DISPLAY-HINT "d"
STATUS current
DESCRIPTION
"Channel Quality indicator reported to eNodeB
which directly translates to Modulation Coding
Scheme selected."
SYNTAX Unsigned32
CiscoWanCellExtSNR ::= TEXTUAL-CONVENTION
DISPLAY-HINT "d-1"
STATUS current
DESCRIPTION
"Signal-to-Noise power Ratio (SNR)
is defined as the ratio of signal
power to the noise power, measured
in dB. It determines the downlink
throughput for the UE."
SYNTAX Integer32
CiscoWanCellExtSINR ::= TEXTUAL-CONVENTION
DISPLAY-HINT "d-1"
STATUS current
DESCRIPTION
"Signal to Interference plus Noise Ratio is
the power at the receiver due to the required
signal, divided by the power due to noise and
interference measured in dB. It is used as a
measure of signal quality."
SYNTAX Integer32
cwceLteRadioTable OBJECT-TYPE
SYNTAX SEQUENCE OF CwceLteRadioEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains entPhysicalTable entries which
are capable of providing operational Cellular 4G/LTE
Radio signal parameters and administrative notification
information."
::= { cwceLteRadio 1 }
cwceLteRadioEntry OBJECT-TYPE
SYNTAX CwceLteRadioEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry contains management information of Cellular
4G/LTE Radio signal parameters and notification
information.
An entry of this table is created if an entity capable
of providing operational Cellular 4G/LTE Radio signal
parameters and administrative notification information
is detected by the agent.
An entry of this table is deleted by the agent if the
corresponding entry in entPhysicalTable is removed."
INDEX { entPhysicalIndex }
::= { cwceLteRadioTable 1 }
CwceLteRadioEntry ::= SEQUENCE {
cwceLteCurrRsrp CiscoWanCellExtRsrp,
cwceLteCurrRsrq CiscoWanCellExtRsrq,
cwceLteCurrSnr CiscoWanCellExtSNR,
cwceLteCurrSinr CiscoWanCellExtSINR,
cwceLteCurrCqiIndex CiscoWanCellExtCqiIndex,
cwceLteCurrOperatingBand Unsigned32,
cwceLteNotifRsrp CiscoWanCellExtRsrp,
cwceLteNotifRsrq CiscoWanCellExtRsrq,
cwceLteRsrpOnsetNotifThreshold CiscoWanCellExtRsrp,
cwceLteRsrpAbateNotifThreshold CiscoWanCellExtRsrp,
cwceLteRsrqOnsetNotifThreshold CiscoWanCellExtRsrq,
cwceLteRsrqAbateNotifThreshold CiscoWanCellExtRsrq,
cwceLteRsrpOnsetNotifFlag C3gServiceCapability,
cwceLteRsrpAbateNotifFlag C3gServiceCapability,
cwceLteRsrqOnsetNotifFlag C3gServiceCapability,
cwceLteRsrqAbateNotifFlag C3gServiceCapability
}
cwceLteCurrRsrp OBJECT-TYPE
SYNTAX CiscoWanCellExtRsrp
UNITS "dBm"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the LTE RSRP value reported by
the modem."
::= { cwceLteRadioEntry 1 }
cwceLteCurrRsrq OBJECT-TYPE
SYNTAX CiscoWanCellExtRsrq
UNITS "dB"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the LTE RSRQ value reported by
the modem."
::= { cwceLteRadioEntry 2 }
cwceLteCurrSnr OBJECT-TYPE
SYNTAX CiscoWanCellExtSNR
UNITS "dB"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the LTE SNR value reported by
the modem."
::= { cwceLteRadioEntry 3 }
cwceLteCurrSinr OBJECT-TYPE
SYNTAX CiscoWanCellExtSINR
UNITS "dB"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the LTE SINR value measured in
decibels (dB) reported by the modem."
::= { cwceLteRadioEntry 4 }
cwceLteCurrCqiIndex OBJECT-TYPE
SYNTAX CiscoWanCellExtCqiIndex
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates he LTE CQI Index reported by
the modem."
::= { cwceLteRadioEntry 5 }
cwceLteCurrOperatingBand OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the E-UTRAN Operating Band reported
by the modem."
::= { cwceLteRadioEntry 6 }
cwceLteNotifRsrp OBJECT-TYPE
SYNTAX CiscoWanCellExtRsrp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the LTE RSRP value reported by
the modem which triggered the most recent
cwceLteRsrpOnsetNotif or cwceLteRsrpAbateNotif
notification."
::= { cwceLteRadioEntry 7 }
cwceLteNotifRsrq OBJECT-TYPE
SYNTAX CiscoWanCellExtRsrq
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the LTE RSRP value reported by
the modem which triggered the most recent
cwceLteRsrqOnsetNotif or cwceLteRsrqAbateNotif
notification."
::= { cwceLteRadioEntry 8 }
cwceLteRsrpOnsetNotifThreshold OBJECT-TYPE
SYNTAX CiscoWanCellExtRsrp
UNITS "dBm"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the RSRP onset threshold
value. If the value of cwceLteCurrRsrp goes
below the threshold and the service bit in
cwceLteRsrpOnsetNotifFlag is set, the
cwceLteRsrqOnsetNotif notification for that
service will be sent. The absolute value of
cwceLteRsrpAbateNotifThreshold should be less
than or equal to the absolute value of
cwceLteRsrpOnsetNotifThreshold
(|cwceLteRsrpAbateNotifThreshold| <=
|cwceLteRsrpOnsetNotifThreshold|)."
::= { cwceLteRadioEntry 9 }
cwceLteRsrpAbateNotifThreshold OBJECT-TYPE
SYNTAX CiscoWanCellExtRsrp
UNITS "dBm"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the RSRP abate
threshold value. If the value of
cwceLteCurrRsrp goes above the threshold
and the service bit in cwceLteRsrpOnsetNotifFlag
is set, the cwceLteRsrpAbateNotif notification
for that service will be sent. The absolute
value of cwceLteRsrpAbateNotifThreshold should
be less than or equal to the absolute value of
cwceLteRsrpOnsetNotifThreshold
(|cwceLteRsrpAbateNotifThreshold| <=
|cwceLteRsrpOnsetNotifThreshold|)."
::= { cwceLteRadioEntry 10 }
cwceLteRsrqOnsetNotifThreshold OBJECT-TYPE
SYNTAX CiscoWanCellExtRsrq
UNITS "dB"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the RSRQ onset threshold
value. If the value of cwceLteCurrRsrq goes below
the threshold and the service bit in
cwceLteRsrqOnsetNotifFlag is set, the
cwceLteRsrqOnsetNotif notification for that
service will be sent. The absolute value of
cwceLteRsrqAbateNotifThreshold should be
less than or equal to the absolute value of
cwceLteRsrqOnsetNotifThreshold
(|cwceLteRsrqAbateNotifThreshold| <=
|cwceLteRsrqOnsetNotifThreshold|)."
::= { cwceLteRadioEntry 11 }
cwceLteRsrqAbateNotifThreshold OBJECT-TYPE
SYNTAX CiscoWanCellExtRsrq
UNITS "dB"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the RSRQ abate
threshold value. If the value of
cwceLteCurrRsrq goes above the threshold
and the service bit in
cwceLteRsrqOnsetNotifFlag is set, the
cwceLteRsrqAbateNotif notification for that
service will be sent. The absolute value of
cwceLteRsrqAbateNotifThreshold should be
less than or equal to the absolute value of
cwceLteRsrqOnsetNotifThreshold
(|cwceLteRsrqAbateNotifThreshold| <=
|cwceLteRsrqOnsetNotifThreshold|)."
::= { cwceLteRadioEntry 12 }
cwceLteRsrpOnsetNotifFlag OBJECT-TYPE
SYNTAX C3gServiceCapability
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the flag bitmap to control
the generation of notification cwceLteRsrpOnsetNotif.
Each bit represents a service as defined in
C3gServiceCapability, set the bit value to 1
to enable (and 0 to disable) the generation of
notification cwceLteRsrpOnsetNotif for that service.
The default value of this object is all bits are 0.
Notifications are not generated in technology modes
where RSRP is not relevant."
::= { cwceLteRadioEntry 13 }
cwceLteRsrpAbateNotifFlag OBJECT-TYPE
SYNTAX C3gServiceCapability
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the flag bitmap to control the generation
of notification cwceLteRsrpAbateNotif. Each bit
represents a service as defined in C3gServiceCapability,
set the bit value to 1 to enable (and 0 to disable) the
generation of notification cwceLteRsrpAbateNotif
for that service. The default value of this object is
all bits are 0. Notifications are not generated in
technology modes where RSRP is not relevant."
::= { cwceLteRadioEntry 14 }
cwceLteRsrqOnsetNotifFlag OBJECT-TYPE
SYNTAX C3gServiceCapability
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the flag bitmap to control the generation
of notification cwceLteRsrqOnsetNotif. Each bit
represents a service as defined in C3gServiceCapability,
set the bit value to 1 to enable (and 0 to disable) the
generation of notification cwceLteRsrqOnsetNotif
for that service. The default value of this object is
all bits are 0. Notifications are not generated in
technology modes where RSRQ is not relevant."
::= { cwceLteRadioEntry 15 }
cwceLteRsrqAbateNotifFlag OBJECT-TYPE
SYNTAX C3gServiceCapability
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the flag bitmap to control the generation
of notification cwceLteRsrqAbateNotif. Each bit
represents a service as defined in C3gServiceCapability,
set the bit value to 1 to enable (and 0 to disable) the
generation of notification cwceLteRsrqAbateNotif
for that service. The default value of this object is
all bits are 0. Notifications are not generated in
technology modes where RSRQ is not relevant."
::= { cwceLteRadioEntry 16 }
cwceLteRadioHistory OBJECT IDENTIFIER
::= { cwceLteRadio 2 }
cwceLteRadioHistoryRsrpTable OBJECT-TYPE
SYNTAX SEQUENCE OF CwceLteRadioHistoryRsrpEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains Cellular 4G/LTE RSRP history.
The history of RSRP are carried in an octet of string.
Each octet in the octet string has a value from 40 to
140 and the 150 value is reserved to indicate an
uninitialized (Invalid) value. The format of
the octet string with n octets is as following:
[ octet 0 is latest,
octet 1 is latest-1,
.
.
octet n-2 is oldest-1,
octet n-1 is oldest ]
To convert the provided value into dBm the following formula
should be used:
dBm = (-1)*value"
::= { cwceLteRadioHistory 1 }
cwceLteRadioHistoryRsrpEntry OBJECT-TYPE
SYNTAX CwceLteRadioHistoryRsrpEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry contains management information of Cellular
4G/LTE RSRP Radio history parameters.
An entry of this table is created if an entity capable
of providing operational Cellular 4G/LTE RSRP Radio
history is detected by the agent.
An entry of this table is deleted by the agent if the
corresponding entry in entPhysicalTable is removed."
INDEX { entPhysicalIndex }
::= { cwceLteRadioHistoryRsrpTable 1 }
CwceLteRadioHistoryRsrpEntry ::= SEQUENCE {
cwceLteRadioHistoryRsrpPerSecond OCTET STRING,
cwceLteRadioHistoryRsrpPerMinute OCTET STRING,
cwceLteRadioHistoryRsrpPerHour OCTET STRING
}
cwceLteRadioHistoryRsrpPerSecond OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (60))
UNITS "-dBm"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates per-second RSRP history.
It contains a per-second history of RSRP values
for the last 60 seconds."
::= { cwceLteRadioHistoryRsrpEntry 1 }
cwceLteRadioHistoryRsrpPerMinute OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (60))
UNITS "-dBm"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates per-minute weakest RSRP value history.
It contains a per-minute history of weakest RSRP values for
the last 60 minutes. The octet in the string is the weakest
RSRP value measured in a minute interval."
::= { cwceLteRadioHistoryRsrpEntry 2 }
cwceLteRadioHistoryRsrpPerHour OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (72))
UNITS "-dBm"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates per-hour weakest RSRP value history.
It contains a per-hour history of weakest RSRP values for
the last 72 hours. The octet in the string is the weakest
RSRP value measured in an hour interval."
::= { cwceLteRadioHistoryRsrpEntry 3 }
cwceLteRadioHistoryRsrqTable OBJECT-TYPE
SYNTAX SEQUENCE OF CwceLteRadioHistoryRsrqEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains Cellular 4G/LTE RSRQ history.
The history of RSRQ are carried in an octet of string.
Each octet in the octet string has a value from 3 to 20
and the 25 value is reserved to indicate an uninitialized
(Invalid) value. The format of the octet string with n
octets is as following:
[ octet 0 is latest,
octet 1 is latest-1,
.
.
octet n-2 is oldest-1,
octet n-1 is oldest ]
To convert the provided value into dB the following formula
should be used:
dB = (-1)*value"
::= { cwceLteRadioHistory 2 }
cwceLteRadioHistoryRsrqEntry OBJECT-TYPE
SYNTAX CwceLteRadioHistoryRsrqEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry contains management information of Cellular
4G/LTE RSRQ Radio history parameters.
An entry of this table is created if an entity capable
of providing operational Cellular 4G/LTE RSRQ Radio
history is detected by the agent.
An entry of this table is deleted by the agent if the
corresponding entry in entPhysicalTable is removed."
INDEX { entPhysicalIndex }
::= { cwceLteRadioHistoryRsrqTable 1 }
CwceLteRadioHistoryRsrqEntry ::= SEQUENCE {
cwceLteRadioHistoryRsrqPerSecond OCTET STRING,
cwceLteRadioHistoryRsrqPerMinute OCTET STRING,
cwceLteRadioHistoryRsrqPerHour OCTET STRING
}
cwceLteRadioHistoryRsrqPerSecond OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (60))
UNITS "-dB"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates per-second RSRQ history.
It contains a per-second history of RSRQ values for
the last 60 seconds."
::= { cwceLteRadioHistoryRsrqEntry 1 }
cwceLteRadioHistoryRsrqPerMinute OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (60))
UNITS "-dB"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates per-minute weakest RSRQ value history.
It contains a per-minute history of weakest RSRQ values
for the last 60 minutes. The octet in the string is the
weakest RSRQ value measured in a minute interval."
::= { cwceLteRadioHistoryRsrqEntry 2 }
cwceLteRadioHistoryRsrqPerHour OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (72))
UNITS "-dB"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates per-hour weakest RSRQ value history.
It contains a per-hour history of weakest RSRQ values
for the last 72 hours. The octet in the string is
the weakest RSRQ value measured in an hour interval."
::= { cwceLteRadioHistoryRsrqEntry 3 }
cwceLteIpv4AddrType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The object indicates the type of Internet address for
IPv4 addresses used by profiles and PDNs.
The valid value for this object is ipv4(1)."
::= { cwceLteProfile 1 }
cwceLteIpv6AddrType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The object indicates the type of Internet address for
IPv6 addresses used by profiles and PDNs.
The valid value for this object is ipv6(2)."
::= { cwceLteProfile 2 }
cwceLteProfileTable OBJECT-TYPE
SYNTAX SEQUENCE OF CwceLteProfileEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains Cellular LTE PDN profiles.
Cellular device contains multiple profile entries which can
be used to establish cellular data connections (PDN contexts).
Users can choose any of available PDN profiles to establish
data connections. Data connections are described in
cwcePacketLteSessionTable.
This table is valid only in 4G/LTE Technology mode."
::= { cwceLteProfile 3 }
cwceLteProfileEntry OBJECT-TYPE
SYNTAX CwceLteProfileEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry contains management information of Cellular
4G/LTE profile parameters.
Entries in this table can be created or deleted using
cwceLteProfileRowStatus object.
An entry of this table is deleted by the agent if the
corresponding entry in entPhysicalTable is removed."
INDEX {
entPhysicalIndex,
cwceLteProfileIndex
}
::= { cwceLteProfileTable 1 }
CwceLteProfileEntry ::= SEQUENCE {
cwceLteProfileIndex Unsigned32,
cwceLteProfileType CiscoWanCellExtProtocolType,
cwceLteProfileIPv4Addr InetAddress,
cwceLteProfileIPv6Addr InetAddress,
cwceLteProfileApn SnmpAdminString,
cwceLteProfileApnAmbr Unsigned32,
cwceLteProfileStorage StorageType,
cwceLteProfileRowStatus RowStatus
}
cwceLteProfileIndex OBJECT-TYPE
SYNTAX Unsigned32 (1..4294967295)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object specifies profile index, combined with
entPhysicalIndex to access profile table."
::= { cwceLteProfileEntry 1 }
cwceLteProfileType OBJECT-TYPE
SYNTAX CiscoWanCellExtProtocolType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object specifies the configured EPS Bearer type."
::= { cwceLteProfileEntry 2 }
cwceLteProfileIPv4Addr OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object specifies the configured EPS Bearer IPv4 address.
The type of this address is determined by the value of the
cwceLteIpv4AddrType object.
This object is valid only if the corresponding instance value
of cwceLteProfileType is either 'ipv4' or 'ipv4V6'."
::= { cwceLteProfileEntry 3 }
cwceLteProfileIPv6Addr OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object specifies the configured EPS Bearer IPv6 address.
The type of this address is determined by the value of the
cwceLteIpv6AddrType object.
This object is valid only if the corresponding instance value
of cwceLteProfileType is either 'ipv6' or 'ipv4V6'."
::= { cwceLteProfileEntry 4 }
cwceLteProfileApn OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (0..64))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object specifies configured profile of Access Point
Name (APN). The value of this object should be provided
by the APN service provider."
::= { cwceLteProfileEntry 5 }
cwceLteProfileApnAmbr OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object specifies the profile APN-AMBR.
APN-AMBR is aggregate bit rate across all Non-GBR bearers
and across all PDN connections of the same APN. The value
APN-AMBR is a parameter which is defined as part of a user's
subscription, but may be overridden by the PCRF."
::= { cwceLteProfileEntry 6 }
cwceLteProfileStorage OBJECT-TYPE
SYNTAX StorageType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object specifies the storage type for this
conceptual row."
::= { cwceLteProfileEntry 7 }
cwceLteProfileRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object specifies the status of the conceptual row.
It's used to manage creation, modification and deletion
of rows in this table.
When a row is active, user cannot modify the value of the
objects in that row. All objects in this row need to have
valid value before the row can be active."
::= { cwceLteProfileEntry 8 }
cwceLtePdnTable OBJECT-TYPE
SYNTAX SEQUENCE OF CwceLtePdnEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains Cellular 4G/LTE Packet Data Network(PDN)
information of all the PDN capable interfaces in the system."
::= { cwceLteProfile 4 }
cwceLtePdnEntry OBJECT-TYPE
SYNTAX CwceLtePdnEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry contains management information of Cellular
4G/LTE PDN parameters.
An entry of this table is created if an interface capable
of providing operational Cellular 4G/LTE PDN parameters
is detected by the agent.
An entry of this table is deleted by the agent if the
corresponding entry in ifTable is removed."
INDEX { ifIndex }
::= { cwceLtePdnTable 1 }
CwceLtePdnEntry ::= SEQUENCE {
cwceLtePdnProfileUsed Unsigned32,
cwceLtePdnConnStatus INTEGER,
cwceLtePdnType CiscoWanCellExtProtocolType,
cwceLtePdnIpv4Addr InetAddress,
cwceLtePdnIpv6Addr InetAddress,
cwceLtePdnPriDnsIpv4Addr InetAddress,
cwceLtePdnSecDnsIpv4Addr InetAddress,
cwceLtePdnPriDnsIpv6Addr InetAddress,
cwceLtePdnSecDnsIpv6Addr InetAddress
}
cwceLtePdnProfileUsed OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the cwceLteProfileIndex of
the profile used by current EPS bearer to
establish data connection."
::= { cwceLtePdnEntry 2 }
cwceLtePdnConnStatus OBJECT-TYPE
SYNTAX INTEGER {
unknown(1),
active(2),
inactive(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates PDN session status
of the profile. This is active when the call is
established and PDN context has become active."
DEFVAL { inactive }
::= { cwceLtePdnEntry 3 }
cwceLtePdnType OBJECT-TYPE
SYNTAX CiscoWanCellExtProtocolType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates current session PDN type."
::= { cwceLtePdnEntry 4 }
cwceLtePdnIpv4Addr OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates current session
EPS Bearer IPv4 address.
The type of this address is determined by
the value of the cwceLteIpv4AddrType object."
::= { cwceLtePdnEntry 5 }
cwceLtePdnIpv6Addr OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates current session
EPS Bearer IPv6 address.
The type of this address is determined by
the value of the cwceLteIpv6AddrType object."
::= { cwceLtePdnEntry 6 }
cwceLtePdnPriDnsIpv4Addr OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates current session
EPS Bearer Primary DNS IPv4 address.
The type of this address is determined by
the value of the cwceLteIpv4AddrType object."
::= { cwceLtePdnEntry 7 }
cwceLtePdnSecDnsIpv4Addr OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates current session
EPS Bearer Secondary DNS IPv4 address.
The type of this address is determined by
the value of the cwceLteIpv4AddrType object."
::= { cwceLtePdnEntry 8 }
cwceLtePdnPriDnsIpv6Addr OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates current session
EPS Bearer Primary DNS IPv6 address.
The type of this address is determined by
the value of the cwceLteIpv6AddrType object."
::= { cwceLtePdnEntry 9 }
cwceLtePdnSecDnsIpv6Addr OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates current session
EPS Bearer Secondary DNS IPv6 address.
The type of this address is determined by
the value of the cwceLteIpv6AddrType object."
::= { cwceLtePdnEntry 10 }
cwceLteEpsBearerQosTable OBJECT-TYPE
SYNTAX SEQUENCE OF CwceLteEpsBearerQosEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains 4G/LTE QoS parameters
requested by modem to the cellular network
via PDN Context Activation Request message."
::= { cwceLteProfile 5 }
cwceLteEpsBearerQosEntry OBJECT-TYPE
SYNTAX CwceLteEpsBearerQosEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry contains management information of Cellular
4G/LTE QoS parameters.
An entry of this table is created if an interface
capable of providing operational Cellular 4G/LTE
QoS parameters is detected by the agent.
An entry of this table is deleted by the agent
if the corresponding entry in ifTable is removed."
INDEX {
ifIndex,
cwceLteEpsBearerId
}
::= { cwceLteEpsBearerQosTable 1 }
CwceLteEpsBearerQosEntry ::= SEQUENCE {
cwceLteEpsBearerId Unsigned32,
cwceLteEpsBearerType INTEGER,
cwceLteEpsQCI Unsigned32,
cwceLteEpsArp Unsigned32,
cwceLteEpsBearerResType INTEGER,
cwceLteEpsGbr Unsigned32,
cwceLteEpsMbr Unsigned32,
cwceLteEpsAmbr Unsigned32,
cwceLteEpsTotalBytesTx Counter64,
cwceLteEpsTotalBytesRx Counter64,
cwceLteEpsPacketsTx Counter64,
cwceLteEpsPacketsRx Counter64
}
cwceLteEpsBearerId OBJECT-TYPE
SYNTAX Unsigned32 (1..4294967295)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object indicates the EPS Bearer Identity which is
allocated by the Mobility Management Entity (MME)."
::= { cwceLteEpsBearerQosEntry 1 }
cwceLteEpsBearerType OBJECT-TYPE
SYNTAX INTEGER {
gbr(1),
nonGbr(2),
unknown(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the type of bearers.
gbr - Guaranteed Bit Rate(GBR).
GBR bearer has a minimum amount of bandwidth that
is reserved by the network, and these resources are
always consumed in a radio base station regardless
of whether it is used or not.
nonGbr - non-Guaranteed Bit Rate(Non-GBR).
Non-GBR bearers are for best-effort services and do
not consume any network
resources.
unknown - the type of bearers is unknown."
::= { cwceLteEpsBearerQosEntry 2 }
cwceLteEpsQCI OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the QoS Class Identifier(QCI).
The QCI along with the ARP characterizes the QoS of
the bearer."
::= { cwceLteEpsBearerQosEntry 3 }
cwceLteEpsArp OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the Allocation and Retention
Priority(ARP).
ARP is a QoS parameter designed to facilitate decisions
as to whether a bearer establishment/modification request
can be accepted."
::= { cwceLteEpsBearerQosEntry 4 }
cwceLteEpsBearerResType OBJECT-TYPE
SYNTAX INTEGER {
defaultBearer(1),
dedicatedBearer(2),
unknown(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the Bearer resource type."
::= { cwceLteEpsBearerQosEntry 5 }
cwceLteEpsGbr OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the Guaranteed Bit Rate(GBR) which
determines the resource reservation to guarantee a
given data rate."
::= { cwceLteEpsBearerQosEntry 6 }
cwceLteEpsMbr OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the Maximum Bit Rate(MBR) which is
used for policing the user traffic."
::= { cwceLteEpsBearerQosEntry 7 }
cwceLteEpsAmbr OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the Aggregated Maximum Bit Rate.
This object is valid only if the value of the corresponding
cwceLteEpsBearerResType is 'defaultBearer'."
::= { cwceLteEpsBearerQosEntry 8 }
cwceLteEpsTotalBytesTx OBJECT-TYPE
SYNTAX Counter64
UNITS "bytes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the total data bytes transmitted
by this bearer."
::= { cwceLteEpsBearerQosEntry 9 }
cwceLteEpsTotalBytesRx OBJECT-TYPE
SYNTAX Counter64
UNITS "bytes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the total data bytes received
by this bearer."
::= { cwceLteEpsBearerQosEntry 10 }
cwceLteEpsPacketsTx OBJECT-TYPE
SYNTAX Counter64
UNITS "packets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the number of packets transmitted
by this bearer."
::= { cwceLteEpsBearerQosEntry 11 }
cwceLteEpsPacketsRx OBJECT-TYPE
SYNTAX Counter64
UNITS "packets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the number of packets received
by this bearer."
::= { cwceLteEpsBearerQosEntry 12 }
cwceLteRsrqOnsetNotif NOTIFICATION-TYPE
OBJECTS {
entPhysicalName,
cwceLteRsrqOnsetNotifFlag,
cwceLteNotifRsrq,
cwceLteRsrqOnsetNotifThreshold
}
STATUS current
DESCRIPTION
"If RSRQ goes below cwceLteRsrqOnsetNotifThreshold
and the service bit in cwceLteRsrqOnsetNotifFlag
is set, this notification will be generated. Object
cwceLteRsrqOnsetNotifFlag will indicate which service
generates this notification and the associated RSRQ
will be reported in cwceLteNotifRsrq. Please note
that cwceLteNotifRsrq is used to indicate the
RSRQ value that triggers the notification, user
should go to the corresponding radio table to
get the current RSRQ value."
::= { ciscoWanCellExtMIBNotifs 1 }
cwceLteRsrqAbateNotif NOTIFICATION-TYPE
OBJECTS {
entPhysicalName,
cwceLteRsrqAbateNotifFlag,
cwceLteNotifRsrq,
cwceLteRsrqAbateNotifThreshold
}
STATUS current
DESCRIPTION
"If RSRQ goes above cwceLteRsrqAbateNotifThreshold
and the service bit in cwceLteRsrqOnsetNotifFlag
is set, this notification will be generated. Object
cwceLteRsrqAbateNotifFlag will indicate which service
generates this notification and the associated RSRQ
will be reported in cwceLteNotifRsrq. Please
note that cwceLteNotifRsrq is used to indicate
the RSRQ value that triggers the notification,
user should go to the corresponding radio table to
get the current RSRQ value."
::= { ciscoWanCellExtMIBNotifs 2 }
cwceLteRsrpOnsetNotif NOTIFICATION-TYPE
OBJECTS {
entPhysicalName,
cwceLteRsrpOnsetNotifFlag,
cwceLteNotifRsrp,
cwceLteRsrpOnsetNotifThreshold
}
STATUS current
DESCRIPTION
"If RSRP goes below cwceLteRsrpOnsetNotifThreshold
and the service bit in cwceLteRsrpOnsetNotifFlag
is set, this notification will be generated. Object
cwceLteRsrpOnsetNotifFlag will indicate which service
generates this notification and the associated RSRP
will be reported in cwceLteNotifRsrp. Please
note that cwceLteNotifRsrp is used to indicate
the RSRP value that triggers the notification,
user should go to the
corresponding radio table to get the current RSRP
value."
::= { ciscoWanCellExtMIBNotifs 3 }
cwceLteRsrpAbateNotif NOTIFICATION-TYPE
OBJECTS {
entPhysicalName,
cwceLteRsrpAbateNotifFlag,
cwceLteNotifRsrp,
cwceLteRsrpAbateNotifThreshold
}
STATUS current
DESCRIPTION
"If RSRP goes above cwceLteRsrqAbateNotifThreshold
and the service bit in cwceLteRsrpOnsetNotifFlag
is set, this notification will be generated. Object
cwceLteRsrpAbateNotifFlag will indicate which service
generates this notification and the associated RSRP
will be reported in cwceLteNotifRsrp. Please
note that cwceLteNotifRsrp is used to indicate
the RSRP value that triggers the notification,
user should go to the corresponding radio table to
get the current RSRP value."
::= { ciscoWanCellExtMIBNotifs 4 }
-- Conformance
ciscoWanCellExtMIBCompliances OBJECT IDENTIFIER
::= { ciscoWanCellExtMIBConform 1 }
ciscoWanCellExtMIBGroups OBJECT IDENTIFIER
::= { ciscoWanCellExtMIBConform 2 }
ciscoWanCellExtMIBCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for the
CISCO-WAN-CELL-EXT-MIB."
MODULE -- this module
MANDATORY-GROUPS {
ciscoWanCellExtMIBNotificationGroup,
ciscoWanCellExtMIBLteObjectGroup
}
OBJECT cwceLteRsrpOnsetNotifThreshold
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT cwceLteRsrpAbateNotifThreshold
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT cwceLteRsrqOnsetNotifThreshold
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT cwceLteRsrqAbateNotifThreshold
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT cwceLteRsrpOnsetNotifFlag
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT cwceLteRsrpAbateNotifFlag
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT cwceLteRsrqOnsetNotifFlag
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT cwceLteRsrqAbateNotifFlag
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT cwceLteProfileType
MIN-ACCESS read-only
DESCRIPTION
"read-create access is not required."
OBJECT cwceLteProfileIPv4Addr
MIN-ACCESS read-only
DESCRIPTION
"read-create access is not required."
OBJECT cwceLteProfileIPv6Addr
MIN-ACCESS read-only
DESCRIPTION
"read-create access is not required."
OBJECT cwceLteProfileApn
MIN-ACCESS read-only
DESCRIPTION
"read-create access is not required."
OBJECT cwceLteProfileApnAmbr
MIN-ACCESS read-only
DESCRIPTION
"read-create access is not required."
OBJECT cwceLteProfileStorage
MIN-ACCESS read-only
DESCRIPTION
"read-create access is not required."
OBJECT cwceLteProfileRowStatus
MIN-ACCESS read-only
DESCRIPTION
"read-create access is not required."
::= { ciscoWanCellExtMIBCompliances 1 }
ciscoWanCellExtMIBLteObjectGroup OBJECT-GROUP
OBJECTS {
cwceLteCurrRsrp,
cwceLteCurrRsrq,
cwceLteCurrSnr,
cwceLteCurrSinr,
cwceLteCurrCqiIndex,
cwceLteNotifRsrp,
cwceLteNotifRsrq,
cwceLteRsrpOnsetNotifThreshold,
cwceLteRsrpAbateNotifThreshold,
cwceLteRsrqOnsetNotifThreshold,
cwceLteRsrqAbateNotifThreshold,
cwceLteRsrpOnsetNotifFlag,
cwceLteRsrpAbateNotifFlag,
cwceLteRsrqOnsetNotifFlag,
cwceLteRsrqAbateNotifFlag,
cwceLteCurrOperatingBand,
cwceLteRadioHistoryRsrpPerSecond,
cwceLteRadioHistoryRsrpPerMinute,
cwceLteRadioHistoryRsrpPerHour,
cwceLteRadioHistoryRsrqPerSecond,
cwceLteRadioHistoryRsrqPerMinute,
cwceLteRadioHistoryRsrqPerHour,
cwceLteIpv4AddrType,
cwceLteIpv6AddrType,
cwceLteProfileType,
cwceLteProfileIPv4Addr,
cwceLteProfileIPv6Addr,
cwceLteProfileApn,
cwceLteProfileApnAmbr,
cwceLteProfileStorage,
cwceLteProfileRowStatus,
cwceLtePdnProfileUsed,
cwceLtePdnConnStatus,
cwceLtePdnType,
cwceLtePdnIpv4Addr,
cwceLtePdnIpv6Addr,
cwceLtePdnPriDnsIpv4Addr,
cwceLtePdnSecDnsIpv4Addr,
cwceLtePdnPriDnsIpv6Addr,
cwceLtePdnSecDnsIpv6Addr,
cwceLteEpsBearerType,
cwceLteEpsArp,
cwceLteEpsQCI,
cwceLteEpsBearerResType,
cwceLteEpsGbr,
cwceLteEpsMbr,
cwceLteEpsAmbr,
cwceLteEpsTotalBytesTx,
cwceLteEpsTotalBytesRx,
cwceLteEpsPacketsTx,
cwceLteEpsPacketsRx
}
STATUS current
DESCRIPTION
"A collection of objects for Cellular 4G/LTE."
::= { ciscoWanCellExtMIBGroups 1 }
ciscoWanCellExtMIBNotificationGroup NOTIFICATION-GROUP
NOTIFICATIONS {
cwceLteRsrqOnsetNotif,
cwceLteRsrqAbateNotif,
cwceLteRsrpOnsetNotif,
cwceLteRsrpAbateNotif
}
STATUS current
DESCRIPTION
"A collection of objects for Cellular WAN
notifications."
::= { ciscoWanCellExtMIBGroups 2 }
END
|