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
|
-- ==================================================================
-- Copyright (C) 2015 by HUAWEI TECHNOLOGIES. All rights reserved.
--
-- Description: This MIB module defines MIB objects of hwIBTable, hw3GTable and hwSPRTrap.
-- Reference:
-- Version: V1.12
-- History:
-- V1.0 2007-10-21 publish
-- ==================================================================
HUAWEI-WAN-MIB DEFINITIONS ::= BEGIN
IMPORTS
hwDatacomm
FROM HUAWEI-MIB
OBJECT-GROUP, MODULE-COMPLIANCE, NOTIFICATION-GROUP
FROM SNMPv2-CONF
InterfaceIndex
FROM IF-MIB
TimeTicks,Integer32, OBJECT-TYPE, MODULE-IDENTITY, Counter64, NOTIFICATION-TYPE
-- FROM SNMPv2-SMI;
-- DisplayString,TruthValue,RowStatus
-- FROM SNMPv2-TC;
-- EnabledStatus
FROM SNMPv2-SMI;
hwWANMIB MODULE-IDENTITY
LAST-UPDATED "201505251601Z"
ORGANIZATION
"Huawei Technologies Co.,Ltd."
CONTACT-INFO
"Huawei Industrial Base
Bantian, Longgang
Shenzhen 518129
People's Republic of China
Website: http://www.huawei.com
Email: support@huawei.com
"
DESCRIPTION
"The private mib file includes the general extent
information of the device.hwDatacomm(241).hwWANMIB"
REVISION "201505251601Z"
DESCRIPTION "V1.12, update version"
REVISION "201505151601Z"
DESCRIPTION "V1.11, update version"
REVISION "201503171451Z"
DESCRIPTION "V1.10, update version"
REVISION "201410071451Z"
DESCRIPTION "V1.09, update version"
REVISION "201408081451Z"
DESCRIPTION "V1.08, update version"
REVISION "201406201451Z"
DESCRIPTION "V1.07, update version"
REVISION "201401091451Z"
DESCRIPTION "V1.06, update version"
REVISION "201310162047Z"
DESCRIPTION "V1.05, update version"
REVISION "201309111647Z"
DESCRIPTION "V1.04, update version"
REVISION "201308261942Z"
DESCRIPTION "V1.03, update version"
REVISION "201306242018Z"
DESCRIPTION "V1.02, update version"
REVISION "201304261142Z"
DESCRIPTION "V1.01, update version"
::= { hwDatacomm 241 }
hwWANMIBObjects OBJECT IDENTIFIER ::= { hwWANMIB 1 }
hwIB OBJECT IDENTIFIER ::= { hwWANMIBObjects 1 }
--
-- hwIBTable Table
--
hwIBTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwIBEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Indicates the attribute of the IB interface formed by timeslots.
This table lists the physical attributes of the IB interface."
::= { hwIB 1 }
hwIBEntry OBJECT-TYPE
SYNTAX HwIBEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Indicates the attribute of the IB interface formed by timeslots.
This table lists the physical attributes of the IB interface."
INDEX { hwIBMainIfIndex }
::= { hwIBTable 1 }
HwIBEntry ::=
SEQUENCE{
hwIBMainIfIndex
InterfaceIndex,
hwIBStandbyIf1
Integer32,
hwIBPri1
Integer32,
hwIBStandbyIf2
Integer32,
hwIBPri2
Integer32,
hwIBStandbyIf3
Integer32,
hwIBPri3
Integer32,
hwIBStandbyType
INTEGER,
hwIBStandbyBandWidth
Integer32,
hwIBEnableThreshold
Integer32,
hwIBDisableThreshold
Integer32,
hwIBActiveTimer
Integer32,
hwIBInactiveTimer
Integer32
}
hwIBMainIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Interface index(es) of IB(s) present on the device ."
::= { hwIBEntry 1 }
hwIBStandbyIf1 OBJECT-TYPE
SYNTAX Integer32(0..32767)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"IB Standby Interface1."
::= { hwIBEntry 11 }
hwIBPri1 OBJECT-TYPE
SYNTAX Integer32(0..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"IB Pri1."
::= { hwIBEntry 12 }
hwIBStandbyIf2 OBJECT-TYPE
SYNTAX Integer32(0..32767)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"IB Standby Interface2."
::= { hwIBEntry 13 }
hwIBPri2 OBJECT-TYPE
SYNTAX Integer32(0..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"IB Pri2."
::= { hwIBEntry 14 }
hwIBStandbyIf3 OBJECT-TYPE
SYNTAX Integer32(0..32767)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"IB Standby Interface3."
::= { hwIBEntry 15 }
hwIBPri3 OBJECT-TYPE
SYNTAX Integer32(0..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"IB Pri3."
::= { hwIBEntry 16 }
hwIBStandbyType OBJECT-TYPE
SYNTAX INTEGER{
masterslave(0),
loadbalance(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"IB Standby Type."
::= { hwIBEntry 17 }
hwIBStandbyBandWidth OBJECT-TYPE
SYNTAX Integer32(0..32767)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"IB Standby BandWidth."
::= { hwIBEntry 18 }
hwIBEnableThreshold OBJECT-TYPE
SYNTAX Integer32(0..99)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"IB Enable Threshold."
::= { hwIBEntry 19 }
hwIBDisableThreshold OBJECT-TYPE
SYNTAX Integer32(0..99)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"IB Disable Threshold."
::= { hwIBEntry 20 }
hwIBActiveTimer OBJECT-TYPE
SYNTAX Integer32(0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"IB Active Timer."
::= { hwIBEntry 21 }
hwIBInactiveTimer OBJECT-TYPE
SYNTAX Integer32(0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"IB Inactive Timer"
::= { hwIBEntry 22 }
hw3G OBJECT IDENTIFIER ::= { hwWANMIBObjects 2 }
--
-- hw3GTable Table
--
hw3GTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hw3GEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Indicates the attribute of the cellular interface ."
::= { hw3G 1 }
hw3GEntry OBJECT-TYPE
SYNTAX Hw3GEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Indicates the attribute of the cellular interface ."
INDEX { hw3GIfIndex }
::= { hw3GTable 1 }
Hw3GEntry ::=
SEQUENCE{
hw3GIfIndex
InterfaceIndex,
hw3GModemStatus
INTEGER,
hw3GDeviceNumber
OCTET STRING,
hw3GManufaceturer
OCTET STRING,
hw3GLicense
OCTET STRING,
hw3GDeviceSerialNumber
OCTET STRING,
hw3GUIMStatus
INTEGER,
hw3GIMSI
OCTET STRING,
hw3GMV
Integer32,
hw3GOper
OCTET STRING,
hw3GCSQ
Integer32,
hw3GAPNName
OCTET STRING,
hw3GNetworkConnectionType
INTEGER,
hw3GTotalConnectionTime
Integer32,
hw3GTxRate
Integer32,
hw3GRxRate
Integer32,
hw3GBytesSent
Integer32,
hw3GBytesReceived
Integer32,
hw3GBytesRateSent
Integer32,
hw3GBytesRateReceived
Integer32,
hw3GUpBand
Integer32,
hw3GDownBand
Integer32,
hw3GPacketSessionStatus
INTEGER,
hw3GIccId
OCTET STRING,
hw3GCurrentNetworkConnection
OCTET STRING,
hw3GCurrentRSSI
OCTET STRING,
hw3GCurrentRSCP
OCTET STRING,
hw3GCurrentECIO
OCTET STRING,
hw3GCurrentLteRSRP
OCTET STRING,
hw3GCurrentLteSINR
OCTET STRING,
hw3GCurrentLteRSRQ
OCTET STRING,
hw3GIMEI
OCTET STRING,
hw3GMSISDN
OCTET STRING,
hw3GMCC
Integer32,
hw3GMNC
Integer32,
hw3GAPNUser
OCTET STRING,
hw3GAPNPassword
OCTET STRING,
hw3GBER
Integer32,
hw3GCELLID
Integer32,
hw3GSimChangeCounts
Integer32,
hw3GSimChangeForce
INTEGER,
hw3GCurUseSimId
INTEGER,
hw3GFirmwareVersion
OCTET STRING,
hw3GConnectionStatus
INTEGER,
hw3GNetworkConnectionSubType
OCTET STRING,
hw3GUpTime
TimeTicks
}
hw3GIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"3G or LTE index(es) of port(s) present on the device ."
::= { hw3GEntry 1 }
hw3GModemStatus OBJECT-TYPE
SYNTAX INTEGER{
online(1),
offline(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The ModemState of cellular interface is used to test 3G or LTE whether online or not"
::= { hw3GEntry 11 }
hw3GDeviceNumber OBJECT-TYPE
SYNTAX OCTET STRING(SIZE (0..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Device Number"
::= { hw3GEntry 12 }
hw3GManufaceturer OBJECT-TYPE
SYNTAX OCTET STRING(SIZE (0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Device Manufaceturer"
::= { hw3GEntry 13 }
hw3GLicense OBJECT-TYPE
SYNTAX OCTET STRING(SIZE (0..1023))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"3G or LTE License"
::= { hw3GEntry 14 }
hw3GDeviceSerialNumber OBJECT-TYPE
SYNTAX OCTET STRING(SIZE (0..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"3G or LTE Device Serial Number"
::= { hw3GEntry 15 }
hw3GUIMStatus OBJECT-TYPE
SYNTAX INTEGER{
nocard(0),
sim(1),
uim(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Status of 3G or LTE UIM"
::= { hw3GEntry 16 }
hw3GIMSI OBJECT-TYPE
SYNTAX OCTET STRING(SIZE (0..15))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"3G or LTE IMSI"
::= { hw3GEntry 17 }
hw3GMV OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"3G MV "
::= { hw3GEntry 18 }
hw3GOper OBJECT-TYPE
SYNTAX OCTET STRING(SIZE (0..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"3G or LTE Oper"
::= { hw3GEntry 19 }
hw3GCSQ OBJECT-TYPE
SYNTAX Integer32(0..200)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"3G or LTE Signal Intensity"
::= { hw3GEntry 20 }
hw3GAPNName OBJECT-TYPE
SYNTAX OCTET STRING(SIZE (0..256))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"3G or LTE APN Name"
::= { hw3GEntry 21 }
hw3GNetworkConnectionType OBJECT-TYPE
SYNTAX INTEGER{
gsmOnly(0),
gsmPrecedence(1),
wcdmaOnly(2),
wcdmaPrecedence(3),
evdoOnly(4),
cdma1xrttOnly(5),
hybrid(8),
auto(17),
lteOnly(18),
umtsOnly(19)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"3G or LTE Network Connection Type"
::= { hw3GEntry 22 }
hw3GTotalConnectionTime OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"3G or LTE Total Connection Time"
::= { hw3GEntry 23 }
hw3GTxRate OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"3G or LTE sent Rate (packets/s)"
::= { hw3GEntry 24 }
hw3GRxRate OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"3G or LTE Receive Rate (packets/s)"
::= { hw3GEntry 25 }
hw3GBytesSent OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"3G or LTE Bytes Sent (bytes)"
::= { hw3GEntry 26 }
hw3GBytesReceived OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"3G or LTE Bytes Received (bytes)"
::= { hw3GEntry 27 }
hw3GBytesRateSent OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"3G or LTE Sent Bytes Rate (bytes/s)"
::= { hw3GEntry 28 }
hw3GBytesRateReceived OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"3G or LTE Receive Bytes Rate (bytes/s)"
::= { hw3GEntry 29 }
hw3GUpBand OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"3G or LTE Up Band"
::= { hw3GEntry 30 }
hw3GDownBand OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"3G or LTE Down Band"
::= { hw3GEntry 31 }
hw3GPacketSessionStatus OBJECT-TYPE
SYNTAX INTEGER{
active(1),
inactive(0)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Packet Session Status"
::= { hw3GEntry 32 }
hw3GIccId OBJECT-TYPE
SYNTAX OCTET STRING(SIZE (0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Integrate Circuit Card Identity "
::= { hw3GEntry 33 }
hw3GCurrentNetworkConnection OBJECT-TYPE
SYNTAX OCTET STRING(SIZE (0..16))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"3G or LTE Network Current Connection Type"
::= { hw3GEntry 34 }
hw3GCurrentRSSI OBJECT-TYPE
SYNTAX OCTET STRING(SIZE (0..16))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Received Signal Strength Indicator, Only for LTE or WCDMA Network"
::= { hw3GEntry 35 }
hw3GCurrentRSCP OBJECT-TYPE
SYNTAX OCTET STRING(SIZE (0..16))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Received Signal Code Power, Only for LTE or WCDMA Network"
::= { hw3GEntry 36 }
hw3GCurrentECIO OBJECT-TYPE
SYNTAX OCTET STRING(SIZE (0..16))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Energy Per Chip to Interference of Other Cell Ratio, Only for LTE or WCDMA Network"
::= { hw3GEntry 37 }
hw3GCurrentLteRSRP OBJECT-TYPE
SYNTAX OCTET STRING(SIZE (0..16))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Reference Signal Received Power, Only for LTE or WCDMA Network"
::= { hw3GEntry 38 }
hw3GCurrentLteSINR OBJECT-TYPE
SYNTAX OCTET STRING(SIZE (0..16))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Signal to Interference Plus Noise Ratio, Only for LTE or WCDMA Network"
::= { hw3GEntry 39 }
hw3GCurrentLteRSRQ OBJECT-TYPE
SYNTAX OCTET STRING(SIZE (0..16))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Reference Signal Received Quality, Only for LTE or WCDMA Network"
::= { hw3GEntry 40 }
-- 1.3.6.1.4.1.2011.5.25.241.1.2.1.1.41
hw3GIMEI OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..15))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"3G or LTE Network Current IMEI "
::= { hw3GEntry 41 }
-- 1.3.6.1.4.1.2011.5.25.241.1.2.1.1.42
hw3GMSISDN OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..11))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"3G or LTE Network Current MSISDN "
::= { hw3GEntry 42 }
-- 1.3.6.1.4.1.2011.5.25.241.1.2.1.1.43
hw3GMCC OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"3G or LTE Network Current MCC "
::= { hw3GEntry 43 }
-- 1.3.6.1.4.1.2011.5.25.241.1.2.1.1.44
hw3GMNC OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"3G or LTE Network Current MNC "
::= { hw3GEntry 44 }
-- 1.3.6.1.4.1.2011.5.25.241.1.2.1.1.45
hw3GAPNUser OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..64))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"3G or LTE APN User name"
::= { hw3GEntry 45 }
-- 1.3.6.1.4.1.2011.5.25.241.1.2.1.1.46
hw3GAPNPassword OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..64))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"3G or LTE APN password"
::= { hw3GEntry 46 }
-- 1.3.6.1.4.1.2011.5.25.241.1.2.1.1.47
hw3GBER OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"3G or LTE Network Current BER "
::= { hw3GEntry 47 }
-- 1.3.6.1.4.1.2011.5.25.241.1.2.1.1.48
hw3GCELLID OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"3G or LTE Network Current cellid "
::= { hw3GEntry 48 }
-- 1.3.6.1.4.1.2011.5.25.241.1.2.1.1.49
hw3GSimChangeCounts OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"3G or LTE sim card switch counts "
::= { hw3GEntry 49 }
-- 1.3.6.1.4.1.2011.5.25.241.1.2.1.1.50
hw3GSimChangeForce OBJECT-TYPE
SYNTAX INTEGER
{
null(0),
sim1(1),
sim2(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Change the simcard force by user input simID "
::= { hw3GEntry 50 }
-- 1.3.6.1.4.1.2011.5.25.241.1.2.1.1.51
hw3GCurUseSimId OBJECT-TYPE
SYNTAX INTEGER
{
sim1(1),
sim2(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Get current used sim ID"
::= { hw3GEntry 51 }
hw3GFirmwareVersion OBJECT-TYPE
SYNTAX OCTET STRING(SIZE (0..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current Firmware Version"
::= { hw3GEntry 52 }
hw3GConnectionStatus OBJECT-TYPE
SYNTAX INTEGER
{
noService(0),
emergency(1),
serviceAvailable(2),
regionEmergency(3),
savingStatus(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"3G or LTE Connection Status"
::= { hw3GEntry 53 }
hw3GNetworkConnectionSubType OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"3G or LTE Network Connection SubType"
::= { hw3GEntry 54 }
hw3GUpTime OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"3G or LTE Connect Time"
::= { hw3GEntry 55 }
hwSPRMIBTrap OBJECT IDENTIFIER ::= { hwWANMIB 2 }
hwSPRTrapOid OBJECT IDENTIFIER ::= { hwSPRMIBTrap 1 }
hwSPRLinkStateIndex OBJECT-TYPE
SYNTAX Integer32 (0..1023)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Link Index"
::= { hwSPRTrapOid 1 }
hwSPRLinkStateName OBJECT-TYPE
SYNTAX OCTET STRING(SIZE (0..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Link Name"
::= { hwSPRTrapOid 2 }
hwSPRLinkStateEligibility OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Link State.0 is eligible;1 is not eligible"
::= { hwSPRTrapOid 3 }
hwSPRTrapDefine OBJECT IDENTIFIER ::= { hwSPRMIBTrap 2 }
hwSPRTrap OBJECT IDENTIFIER ::= { hwSPRTrapDefine 1 }
hwSPRLinkReport NOTIFICATION-TYPE
OBJECTS {hwSPRLinkStateIndex, hwSPRLinkStateName, hwSPRLinkStateEligibility}
STATUS current
DESCRIPTION
"
1 Notice/Trap name: Link not eligible
2 Notice/Trap generation cause: Link not eligible
3 Repair suggestions:
Check the links according to not eligible reasons.
"
::= { hwSPRTrap 1 }
hwSPR OBJECT IDENTIFIER ::= { hwSPRMIBTrap 3 }
hwSPRServiceTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwSPRServiceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Indicates the attribute of the SPR service map."
::= { hwSPR 1 }
hwSPRServiceEntry OBJECT-TYPE
SYNTAX HwSPRServiceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Indicates the attribute of the SPR service map."
INDEX { hwSPRServiceIndex }
::= { hwSPRServiceTable 1 }
HwSPRServiceEntry ::=
SEQUENCE{
hwSPRServiceIndex
Integer32,
hwSPRServiceName
OCTET STRING,
hwSPRServiceCurLinkName
OCTET STRING,
hwSPRSystemName
OCTET STRING,
hwSPROriginalIpaddress
OCTET STRING
}
hwSPRServiceIndex OBJECT-TYPE
SYNTAX Integer32 (1..65535)
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object indicates the index of the service map"
::= { hwSPRServiceEntry 1 }
hwSPRServiceName OBJECT-TYPE
SYNTAX OCTET STRING(SIZE (0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the name of the service map"
::= { hwSPRServiceEntry 2 }
hwSPRServiceCurLinkName OBJECT-TYPE
SYNTAX OCTET STRING(SIZE (0..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the current link name of the service map"
::= { hwSPRServiceEntry 3 }
hwSPRSystemName OBJECT-TYPE
SYNTAX OCTET STRING(SIZE (0..246))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the system name of the service map"
::= { hwSPRServiceEntry 4 }
hwSPROriginalIpaddress OBJECT-TYPE
SYNTAX OCTET STRING(SIZE (0..15))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the original ip address of the service map"
::= { hwSPRServiceEntry 5 }
hwSPRTraps OBJECT IDENTIFIER ::= { hwSPRMIBTrap 4 }
hwSPRServiceReport NOTIFICATION-TYPE
OBJECTS {hwSPRServiceIndex, hwSPRServiceName, hwSPRServiceCurLinkName, hwSPRSystemName, hwSPROriginalIpaddress}
STATUS current
DESCRIPTION
"
The notification indicates that the current link of SPR service map was changed.
"
::= { hwSPRTraps 1 }
-- ============== conformance information ==============
hwWANConformance OBJECT IDENTIFIER ::= { hwWANMIB 3 }
hwWANCompliances OBJECT IDENTIFIER ::= { hwWANConformance 1 }
hwWANCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for systems supporting
the this module."
MODULE -- this module
MANDATORY-GROUPS {hwIBGroup, hw3GGroup, hwSPRMIBTrapObjectGroup, hwSPRMIBTrapsDefineGroup, hwSPRServiceGroup, hwSPRTrapsGroup, hw3gTrapGroup}
::= { hwWANCompliances 1 }
-- ============== groups ==============
hwWANGroups OBJECT IDENTIFIER ::= { hwWANConformance 2 }
hwIBGroup OBJECT-GROUP
OBJECTS {
hwIBMainIfIndex,
hwIBStandbyIf1,
hwIBPri1,
hwIBStandbyIf2,
hwIBPri2,
hwIBStandbyIf3,
hwIBPri3,
hwIBStandbyType,
hwIBStandbyBandWidth,
hwIBEnableThreshold,
hwIBDisableThreshold,
hwIBActiveTimer,
hwIBInactiveTimer
}
STATUS current
DESCRIPTION
"The IB group."
::= { hwWANGroups 1 }
hw3GGroup OBJECT-GROUP
OBJECTS {
hw3GIfIndex,
hw3GModemStatus,
hw3GDeviceNumber,
hw3GManufaceturer,
hw3GLicense,
hw3GDeviceSerialNumber ,
hw3GUIMStatus,
hw3GIMSI,
hw3GMV,
hw3GOper,
hw3GCSQ,
hw3GAPNName,
hw3GNetworkConnectionType,
hw3GTotalConnectionTime,
hw3GTxRate,
hw3GRxRate,
hw3GBytesSent,
hw3GBytesReceived,
hw3GBytesRateSent,
hw3GBytesRateReceived,
hw3GUpBand,
hw3GDownBand,
hw3GPacketSessionStatus,
hw3GIccId,
hw3GCurrentNetworkConnection,
hw3GCurrentRSSI,
hw3GCurrentRSCP,
hw3GCurrentECIO,
hw3GCurrentLteRSRP,
hw3GCurrentLteSINR,
hw3GCurrentLteRSRQ,
hw3GIMEI,
hw3GMSISDN,
hw3GMCC,
hw3GMNC,
hw3GAPNUser,
hw3GAPNPassword,
hw3GBER,
hw3GCELLID,
hw3GSimChangeCounts,
hw3GSimChangeForce,
hw3GCurUseSimId,
hw3GFirmwareVersion,
hw3GConnectionStatus,
hw3GNetworkConnectionSubType ,
hw3GUpTime
}
STATUS current
DESCRIPTION
"The 3G group."
::= { hwWANGroups 2 }
hwSPRMIBTrapObjectGroup OBJECT-GROUP
OBJECTS {
hwSPRLinkStateIndex,
hwSPRLinkStateName,
hwSPRLinkStateEligibility
}
STATUS current
DESCRIPTION
"The SPR Link group."
::= { hwWANGroups 3 }
hwSPRMIBTrapsDefineGroup NOTIFICATION-GROUP
NOTIFICATIONS { hwSPRLinkReport}
STATUS current
DESCRIPTION
"The SPR Link Trap Define group."
::= { hwWANGroups 4 }
hwSPRServiceGroup OBJECT-GROUP
OBJECTS {
hwSPRServiceIndex,
hwSPRServiceName,
hwSPRServiceCurLinkName,
hwSPRSystemName,
hwSPROriginalIpaddress
}
STATUS current
DESCRIPTION
"The SPR Service group."
::= { hwWANGroups 5 }
hwSPRTrapsGroup NOTIFICATION-GROUP
NOTIFICATIONS {
hwSPRServiceReport
}
STATUS current
DESCRIPTION
"The SPR Traps group."
::= { hwWANGroups 6 }
-- 1.3.6.1.4.1.2011.5.25.241.3.2.7
hw3gTrapGroup NOTIFICATION-GROUP
NOTIFICATIONS { hw3gAttachedGPRS, hw3gDeviceStartUpInfo}
STATUS current
DESCRIPTION
"The 3G Traps group."
::= { hwWANGroups 7 }
hw3GMIBTrapObjectGroup OBJECT-GROUP
OBJECTS {
hw3GMIBTrapIfName,
hw3GMIBTrapOldCellId,
hw3GMIBTrapNewCellId
}
STATUS current
DESCRIPTION
"The 3G MIB TrapOid group."
::= { hwWANGroups 8 }
hw3GMIBTrapGroup NOTIFICATION-GROUP
NOTIFICATIONS {
hw3GMIBTrapCellIdChange
}
STATUS current
DESCRIPTION
"The 3G MIB Traps group."
::= { hwWANGroups 9 }
-- 1.3.6.1.4.1.2011.5.25.241.4
hwWANMIBNotifications OBJECT IDENTIFIER ::= { hwWANMIB 4 }
-- 1.3.6.1.4.1.2011.5.25.241.4.1
hw3gTrap OBJECT IDENTIFIER ::= { hwWANMIBNotifications 1 }
-- 1.3.6.1.4.1.2011.5.25.241.4.1.1
hw3gDeviceStartUpInfo NOTIFICATION-TYPE
OBJECTS { hw3GManufaceturer, hw3GDeviceSerialNumber,hw3GFirmwareVersion, hw3GMSISDN }
STATUS current
DESCRIPTION
"
1 Notice/Trap name: hw3gDeviceStartUpInfo
2 Notice/Trap generation cause: 3G mode startup
3 Repair suggestions:
Check the 3G mode startup Info.
"
::= { hw3gTrap 1 }
-- 1.3.6.1.4.1.2011.5.25.241.4.1.2
hw3gAttachedGPRS NOTIFICATION-TYPE
STATUS current
DESCRIPTION
"
1 Notice/Trap name: hw3gAttachedGPRS
2 Notice/Trap generation cause: 3g attached the network
3 Repair suggestions:
Check the 3G attached the network.
"
::= { hw3gTrap 2 }
-- ============== conformance information define end ==============
hw3GMIBTrap OBJECT IDENTIFIER ::= { hwWANMIB 5 }
hw3GMIBTrapOid OBJECT IDENTIFIER ::= { hw3GMIBTrap 1 }
hw3GMIBTrapIfName OBJECT-TYPE
SYNTAX OCTET STRING(SIZE (0..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Interface Name"
::= { hw3GMIBTrapOid 1 }
hw3GMIBTrapOldCellId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Net Old CellID"
::= { hw3GMIBTrapOid 2 }
hw3GMIBTrapNewCellId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Net New CellID"
::= { hw3GMIBTrapOid 3 }
hw3GMIBTraps OBJECT IDENTIFIER ::= { hw3GMIBTrap 2 }
hw3GMIBTrapCellIdChange NOTIFICATION-TYPE
OBJECTS {hw3GMIBTrapIfName, hw3GMIBTrapOldCellId, hw3GMIBTrapNewCellId}
STATUS current
DESCRIPTION
"
The notification indicates that interface cellId was changed.
"
::= { hw3GMIBTraps 1 }
END
--
-- HUAWEI-WAN-MIB.mib
--
|