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
|
-- =================================================================
-- Copyright (C) 2014 by HUAWEI TECHNOLOGIES. All rights reserved
--
-- Description: VPN diagnostics MIB.
-- Reference:
-- Version: V1.0
-- History:
-- V1.0 zhuxiao,luobin 2008.08.08,publish
--
--
-- =================================================================
HUAWEI-VPN-DIAGNOSTICS-MIB DEFINITIONS ::= BEGIN
IMPORTS
hwDatacomm
FROM HUAWEI-MIB
HWL2VpnVcEncapsType
FROM HUAWEI-VPLS-EXT-MIB
InetAddressType, InetAddress
FROM INET-ADDRESS-MIB
EnabledStatus
FROM P-BRIDGE-MIB
OBJECT-GROUP, MODULE-COMPLIANCE
FROM SNMPv2-CONF
mib-2, IpAddress, Integer32, Unsigned32, OBJECT-TYPE, MODULE-IDENTITY
FROM SNMPv2-SMI
MacAddress, RowStatus, DisplayString, TEXTUAL-CONVENTION
FROM SNMPv2-TC ;
--
vpndiagnostics MODULE-IDENTITY
LAST-UPDATED "201401181722Z"
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
"HUAWEI service quality detect funcion."
REVISION "201401181722Z"
DESCRIPTION
"Modify type of hwVpnCfgPingPwId and hwVpnCfgPingResultPwId at 2014-01-18."
REVISION "201312160958Z"
DESCRIPTION
"Modify type of hwVpnCfgPingPwId and hwVpnCfgPingResultPwId at 2013-12-16."
REVISION "201307161600Z"
DESCRIPTION
"Modify description of hwOamMacCountReset at 2013-7-16."
REVISION "200806061600Z"
DESCRIPTION
"Inition at 2008-6-6."
::= { hwDatacomm 172 }
--
-- Textual conventions
--
MacOpType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Select test type"
SYNTAX INTEGER
{
populate(1),
purge(2)
}
--
-- Node definitions
--
macoper OBJECT IDENTIFIER ::= { vpndiagnostics 1 }
-- ===========================================================================
-- populateBase
-- ===========================================================================
populateBase OBJECT IDENTIFIER ::= { macoper 1 }
hwOamMacPopulateCount OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Received populate packets in current device."
::= { populateBase 1 }
hwOamMacPurgeCount OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Received purge packets in current device."
::= { populateBase 2 }
hwOamMacPurgeRegCount OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Received purge(register) packets in current device."
::= { populateBase 3 }
hwOamMacCountReset OBJECT-TYPE
SYNTAX INTEGER
{
populatereset(1),
purgereset(2),
purgeregreset(3),
allreset(4)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Reset the count of hwOamMacPopulateCount and hwOamMacPurgeCount, the value 1
means reset hwOamMacPopulateCount,the value is 2 means reset hwOamMacPurgeCount,
the value is 3 means reset hwOamMacPurgeRegCount ,the value is 4 means reset hwOamMacPopulateCount and hwOamMacPurgeCount,hwOamMacPurgeRegCount , When read, it always returns value 4."
::= { populateBase 4 }
hwOamMacSwitch OBJECT-TYPE
SYNTAX INTEGER
{
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates the switch of enabling MAC populate,if the value is 1, enable; if the value is 2, disable."
::= { populateBase 5 }
hwOamMacEntryNum OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The entry number of hwOamMacDisplayTable."
::= { populateBase 6 }
-- ===========================================================================
-- hwOamMacOperTable
-- ===========================================================================
hwOamMacOperTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwOamMacOperEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table which to be populate or purge operation."
::= { macoper 2 }
hwOamMacOperEntry OBJECT-TYPE
SYNTAX HwOamMacOperEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Entries of hwOamMacOperTable."
INDEX { hwOamMacOperIndex }
::= { hwOamMacOperTable 1 }
HwOamMacOperEntry ::=
SEQUENCE {
hwOamMacOperIndex
Integer32,
hwOamMacOperAddress
MacAddress,
hwOamMacOperVsiName
OCTET STRING,
hwOamMacOperType
MacOpType,
hwOamMacOperRegister
EnabledStatus,
hwOamMacOperFlood
EnabledStatus,
hwOamMacOperNum
Integer32,
hwOamMacOperRowStatus
RowStatus
}
hwOamMacOperIndex OBJECT-TYPE
SYNTAX Integer32 (1)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index of hwOamMacOperIndex,it is always 1."
::= { hwOamMacOperEntry 1 }
hwOamMacOperAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The MAC that to be populated or purged."
::= { hwOamMacOperEntry 2 }
hwOamMacOperVsiName OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..32))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The name or other identifier referring to the VSI
which is correlative to the hwOamMac."
::= { hwOamMacOperEntry 3 }
hwOamMacOperType OBJECT-TYPE
SYNTAX MacOpType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The operate type,1 means populate,2 means purge."
::= { hwOamMacOperEntry 4 }
hwOamMacOperRegister OBJECT-TYPE
SYNTAX EnabledStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"while purge a OAM MAC,register it to be a reserved MAC .
1 means register, 2 means not register. Defaut is 2."
DEFVAL { disable }
::= { hwOamMacOperEntry 5 }
hwOamMacOperFlood OBJECT-TYPE
SYNTAX EnabledStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Broadcast the packet or not. 1 means broadcast, 2 means don`t broadcast.Defaut is 2."
DEFVAL { disable }
::= { hwOamMacOperEntry 6 }
hwOamMacOperNum OBJECT-TYPE
SYNTAX Integer32 (1..5)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The number of packets which want to be sent."
DEFVAL { 3 }
::= { hwOamMacOperEntry 7 }
hwOamMacOperRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The operating state of the row."
::= { hwOamMacOperEntry 8 }
-- ===========================================================================
-- hwOamMacListTable
-- ===========================================================================
hwOamMacListTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwOamMacListEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table which displays the OAM MAC applied at huawei."
::= { macoper 3 }
hwOamMacListEntry OBJECT-TYPE
SYNTAX HwOamMacListEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Display the OAM MAC applied at huawei."
INDEX { hwOamMacListIndex }
::= { hwOamMacListTable 1 }
HwOamMacListEntry ::=
SEQUENCE {
hwOamMacListIndex
Integer32,
hwOamMacListAddress
MacAddress
}
hwOamMacListIndex OBJECT-TYPE
SYNTAX Integer32 (1..10)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index of hwOamMacListIndex."
::= { hwOamMacListEntry 1 }
hwOamMacListAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The OAM MAC applied at huawei."
::= { hwOamMacListEntry 2 }
-- ===========================================================================
-- hwOamMacDisplayTable
-- ===========================================================================
hwOamMacDisplayTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwOamMacDisplayEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table which displays the result of populate or purge operation."
::= { macoper 4 }
hwOamMacDisplayEntry OBJECT-TYPE
SYNTAX HwOamMacDisplayEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Entries of hwOamMacDisplayTable."
INDEX { hwOamMacDisplayIndex }
::= { hwOamMacDisplayTable 1 }
HwOamMacDisplayEntry ::=
SEQUENCE {
hwOamMacDisplayIndex
Integer32,
hwOamMacDisplayAddress
MacAddress,
hwOamMacDisplayType
MacOpType,
hwOamMacDisplayVsiName
OCTET STRING,
hwOamMacDisplayAgeTime
Integer32,
hwOamMacDisplayLsrId
IpAddress
}
hwOamMacDisplayIndex OBJECT-TYPE
SYNTAX Integer32 (1..100)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index of hwOamMacDisplayEntry, the value range is from 1 to 100."
::= { hwOamMacDisplayEntry 1 }
hwOamMacDisplayAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The OAM MAC that had been populated or purged."
::= { hwOamMacDisplayEntry 2 }
hwOamMacDisplayType OBJECT-TYPE
SYNTAX MacOpType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The OAM MAC type, 1 means populate, 2 means purge."
::= { hwOamMacDisplayEntry 3 }
hwOamMacDisplayVsiName OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name or other identifier referring to the VSI
which is correlative to the hwOamMac."
::= { hwOamMacDisplayEntry 4 }
hwOamMacDisplayAgeTime OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The age time of the entry."
::= { hwOamMacDisplayEntry 5 }
hwOamMacDisplayLsrId OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The LSR-ID of the sender."
::= { hwOamMacDisplayEntry 6 }
-- ============================================================================
-- identify the group
-- ============================================================================
macoperConformance OBJECT IDENTIFIER ::= { macoper 5 }
hwOamMacGroup OBJECT IDENTIFIER ::= { macoperConformance 1 }
macoperCompliances OBJECT IDENTIFIER ::= { macoperConformance 2 }
macoperCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"Description."
MODULE -- this module
MANDATORY-GROUPS { hwPopuBaseGroup, hwOamMacOperGroup, hwOamMacListGroup, hwOamMacDisplayGroup }
::= { macoperCompliances 1 }
hwPopuBaseGroup OBJECT-GROUP
OBJECTS { hwOamMacPopulateCount, hwOamMacPurgeCount, hwOamMacPurgeRegCount,hwOamMacCountReset, hwOamMacSwitch, hwOamMacEntryNum}
STATUS current
DESCRIPTION
"hwPopuBaseGroup."
::= { hwOamMacGroup 1 }
hwOamMacOperGroup OBJECT-GROUP
OBJECTS { hwOamMacOperAddress, hwOamMacOperVsiName, hwOamMacOperType, hwOamMacOperRegister, hwOamMacOperFlood,
hwOamMacOperNum, hwOamMacOperRowStatus }
STATUS current
DESCRIPTION
"A collection of objects indicating information of IP address of interface,
contain Ip address, Ip address mask and Ip address acquiring method."
::= { hwOamMacGroup 2 }
hwOamMacListGroup OBJECT-GROUP
OBJECTS { hwOamMacListAddress }
STATUS current
DESCRIPTION
"A collection of objects indicating information of IP address of interface,
contain Ip address, Ip address mask and Ip address acquiring method."
::= { hwOamMacGroup 3 }
hwOamMacDisplayGroup OBJECT-GROUP
OBJECTS { hwOamMacDisplayAddress, hwOamMacDisplayType, hwOamMacDisplayVsiName,hwOamMacDisplayAgeTime,hwOamMacDisplayLsrId}
STATUS current
DESCRIPTION
"A collection of objects indicating information of IP address of interface,
contain Ip address, Ip address mask and Ip address acquiring method."
::= { hwOamMacGroup 4 }
-- ===========================================================================
-- hwVpnCfgPing
-- ===========================================================================
hwVpnCfgPing OBJECT IDENTIFIER ::= { vpndiagnostics 2 }
hwVpnCfgPingTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwVpnCfgPingEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"hwVpnCfgPingTable."
::= { hwVpnCfgPing 1 }
hwVpnCfgPingEntry OBJECT-TYPE
SYNTAX HwVpnCfgPingEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object indicates that the index of this table is hwVpnCfgPingIndex."
INDEX { hwVpnCfgPingIndex }
::= { hwVpnCfgPingTable 1 }
HwVpnCfgPingEntry ::=
SEQUENCE {
hwVpnCfgPingIndex
Integer32,
hwVpnCfgPingPeerIpType
InetAddressType,
hwVpnCfgPingPeerIp
InetAddress,
hwVpnCfgPingVpnIdType
INTEGER,
hwVpnCfgPingVpnId
OCTET STRING,
hwVpnCfgPingPwId
Integer32,
hwVpnCfgPingTunnelUsed
INTEGER,
hwVpnCfgPingOperation
EnabledStatus,
hwVpnCfgPingResultDetail
INTEGER,
hwVpnCfgPingRowStatus
RowStatus,
hwVpnCfgPingSecondary
INTEGER,
hwVpnCfgPingIfName
DisplayString,
hwVpnCfgPingPwIdNew
Unsigned32
}
hwVpnCfgPingIndex OBJECT-TYPE
SYNTAX Integer32 (1..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object indicates the index of an operation instance."
::= { hwVpnCfgPingEntry 1 }
hwVpnCfgPingPeerIpType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the type of the peer IP address. It is used to identify the value type of hwVpnCfgPingPeerIp, which can be IPv4 or IPv6."
::= { hwVpnCfgPingEntry 2 }
hwVpnCfgPingPeerIp OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the peer IP address."
::= { hwVpnCfgPingEntry 3 }
hwVpnCfgPingVpnIdType OBJECT-TYPE
SYNTAX INTEGER
{
martiniVPLS(1),
kompellaVPLS(2),
l3vpn(3),
pwe3(4),
martiniVLL(5),
bgpadVPLS(6),
unknown(255)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the VPN ID type, that is, the type of hwVPNCFGPingVPNID. The VPN ID type can be VPLS, L3VPN, PWE3, or Martini VLL."
::= { hwVpnCfgPingEntry 4 }
hwVpnCfgPingVpnId OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the VPN ID, expressed in a character string. The VPN ID is VSI-Name for VPLS, VPN-Instance for L3VPN, and invalid for PWE3 and Martini VLL."
::= { hwVpnCfgPingEntry 5 }
hwVpnCfgPingPwId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates PW-ID. This value is set for the parameter only when the VPLS is in Martini mode. Otherwise, the value is 0."
::= { hwVpnCfgPingEntry 6 }
hwVpnCfgPingTunnelUsed OBJECT-TYPE
SYNTAX INTEGER
{
normal(1),
localOnly(2),
remoteOnly(3),
localAndRemote(4)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the mode of forwarding request packets or response packets (such as tunnel forwarding)."
::= { hwVpnCfgPingEntry 7 }
hwVpnCfgPingOperation OBJECT-TYPE
SYNTAX EnabledStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates two values: enable(1) and disable(2). enable(1) indicates that the operation instance is started; disable(2) indicates that the operation instance is stopped."
::= { hwVpnCfgPingEntry 8 }
hwVpnCfgPingResultDetail OBJECT-TYPE
SYNTAX INTEGER
{
requestSentReplyRecieved(1),
requestSentReplyTimeout(2),
requestFailedReplyFailed(3),
noResult(255)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the result detail of ping operation."
::= { hwVpnCfgPingEntry 9 }
hwVpnCfgPingRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the row status."
::= { hwVpnCfgPingEntry 10 }
hwVpnCfgPingSecondary OBJECT-TYPE
SYNTAX INTEGER
{
primary(0),
secondary(1),
unknown(255)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the local secondary PW."
::= { hwVpnCfgPingEntry 11 }
hwVpnCfgPingIfName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the name of the AC interface."
::= { hwVpnCfgPingEntry 12 }
hwVpnCfgPingPwIdNew OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates PW-ID. This value is set for the parameter only when the VPLS is in Martini mode. Otherwise, the value is 0.
Because hwVpnCfgPingPwId ranges from -2147483647 to +2147483647, failing to cover the range from 2147483648 to 4294967295, this object
ranging from 0 to 4294967295 is therefore added."
::= { hwVpnCfgPingEntry 13 }
hwVpnCfgPingResultTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwVpnCfgPingResultEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"hwVpnCfgPingResultTable."
::= { hwVpnCfgPing 2 }
hwVpnCfgPingResultEntry OBJECT-TYPE
SYNTAX HwVpnCfgPingResultEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object indicates that indexes of this table are hwVpnCfgPingIndex and hwVpnCfgPingResultLocation."
INDEX { hwVpnCfgPingIndex, hwVpnCfgPingResultLocation }
::= { hwVpnCfgPingResultTable 1 }
HwVpnCfgPingResultEntry ::=
SEQUENCE {
hwVpnCfgPingResultLocation
INTEGER,
hwVpnCfgPingResultVpnIdType
INTEGER,
hwVpnCfgPingResultVpnId
DisplayString,
hwVpnCfgPingResultDesc
DisplayString,
hwVpnCfgPingResultVpnAdminStatus
INTEGER,
hwVpnCfgPingResultOperStatus
INTEGER,
hwVpnCfgPingResultMtu
Integer32,
hwVpnCfgPingResultCeCount
Integer32,
hwVpnCfgPingResultActualIpType
InetAddressType,
hwVpnCfgPingResultActualIp
InetAddress,
hwVpnCfgPingResultPeerIpType
InetAddressType,
hwVpnCfgPingResultPeerIp
InetAddress,
hwVpnCfgPingResultPwId
Integer32,
hwVpnCfgPingResultPeType
INTEGER,
hwVpnCfgPingResultVcType
HWL2VpnVcEncapsType,
hwVpnCfgPingResultLabelIn
Integer32,
hwVpnCfgPingResultLableOut
Integer32,
hwVpnCfgPingResultControlWord
INTEGER,
hwVpnCfgPingResultPriOrSec
INTEGER,
hwVpnCfgPingResultVplsID
OCTET STRING,
hwVpnCfgPingResultRD
OCTET STRING,
hwVpnCfgPingResultPwIdNew
Unsigned32
}
hwVpnCfgPingResultLocation OBJECT-TYPE
SYNTAX INTEGER
{
local(1),
remote(2)
}
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object indicates two values: local(1) and remote(2). local(1) indicates configurations of the local end displayed in the probe result. remote(2) indicates configurations of the peer end displayed in the probe result."
::= { hwVpnCfgPingResultEntry 1 }
hwVpnCfgPingResultVpnIdType OBJECT-TYPE
SYNTAX INTEGER
{
martiniVPLS(1),
kompellaVPLS(2),
l3vpn(3),
pwe3(4),
martiniVLL(5),
bgpadVPLS(6),
unknown(255)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the VPN ID type, that is, the type of hwVPNCFGPingVPNID. The VPN ID type can be VPLS, L3VPN, PWE3, or Martini VLL."
::= { hwVpnCfgPingResultEntry 2 }
hwVpnCfgPingResultVpnId OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the VPN ID, expressed in a character string. The VPN ID is VSI-Name for VPLS, VPN-Instance for L3VPN, and invalid for PWE3 and Martini VLL."
::= { hwVpnCfgPingResultEntry 3 }
hwVpnCfgPingResultDesc OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the description of the VPN."
::= { hwVpnCfgPingResultEntry 4 }
hwVpnCfgPingResultVpnAdminStatus OBJECT-TYPE
SYNTAX INTEGER
{
up(1),
down(2),
unknown(255)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the management status of the VPN: up(1), down(2), and unknown(255)."
::= { hwVpnCfgPingResultEntry 5 }
hwVpnCfgPingResultOperStatus OBJECT-TYPE
SYNTAX INTEGER
{
up(1),
down(2),
unknown(255)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the operation status of the VPN: up(1), down(2), and unknown(255)."
::= { hwVpnCfgPingResultEntry 6 }
hwVpnCfgPingResultMtu OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the MTU value. The object represents the MTU value of the AC interface when the VPN type is PWE3 or Martini VLL, represents the MTU value of the VSI when the VPN type is VPLS. If the value of the object cannot be obtained, the object value is considered as 0."
::= { hwVpnCfgPingResultEntry 7 }
hwVpnCfgPingResultCeCount OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the number of CEs."
::= { hwVpnCfgPingResultEntry 8 }
hwVpnCfgPingResultActualIpType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the type of the IP address of the PW on the local PE. It is used to identify the value type of hwVpnCfgPingResultActualIp."
::= { hwVpnCfgPingResultEntry 9 }
hwVpnCfgPingResultActualIp OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the IP address of the PW on the local PE."
::= { hwVpnCfgPingResultEntry 10 }
hwVpnCfgPingResultPeerIpType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the type of the IP address of the PW on the peer PE. It is used to identify the value type of hwVpnCfgPingResultPeerIP."
::= { hwVpnCfgPingResultEntry 11 }
hwVpnCfgPingResultPeerIp OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the IP address of the PW on the peer PE."
::= { hwVpnCfgPingResultEntry 12 }
hwVpnCfgPingResultPwId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates PW-ID."
::= { hwVpnCfgPingResultEntry 13 }
hwVpnCfgPingResultPeType OBJECT-TYPE
SYNTAX INTEGER
{
upe(1),
spe(2),
unknown(255)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the type of the PE (Whether the PE is an SPE.)"
::= { hwVpnCfgPingResultEntry 14 }
hwVpnCfgPingResultVcType OBJECT-TYPE
SYNTAX HWL2VpnVcEncapsType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the VC type."
::= { hwVpnCfgPingResultEntry 15 }
hwVpnCfgPingResultLabelIn OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the incoming label of the interface at the PW side."
::= { hwVpnCfgPingResultEntry 16 }
hwVpnCfgPingResultLableOut OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the outgoing label of the interface at the PW side."
::= { hwVpnCfgPingResultEntry 17 }
hwVpnCfgPingResultControlWord OBJECT-TYPE
SYNTAX INTEGER
{
disable(0),
enable(1),
unknown(255)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates whether the keyword control-word is configured."
::= { hwVpnCfgPingResultEntry 18 }
hwVpnCfgPingResultPriOrSec OBJECT-TYPE
SYNTAX INTEGER
{
primary(0),
secondary(1),
unknown(255)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates whether the local PW is a primary PW or a secondary PW."
::= { hwVpnCfgPingResultEntry 19 }
hwVpnCfgPingResultVplsID OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the virtual private LAN service id."
::= { hwVpnCfgPingResultEntry 20}
hwVpnCfgPingResultRD OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the route distinguisher."
::= { hwVpnCfgPingResultEntry 21 }
hwVpnCfgPingResultPwIdNew OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates PW-ID. Because hwVpnCfgPingResultPwId ranges from -2147483647 to +2147483647, failing to cover the range from 2147483648 to 4294967295,
this object ranging from 0 to 4294967295 is therefore added."
::= { hwVpnCfgPingResultEntry 22 }
hwVpnCfgPingConformance OBJECT IDENTIFIER ::= { hwVpnCfgPing 3 }
hwVpnCfgPingGroups OBJECT IDENTIFIER ::= { hwVpnCfgPingConformance 1 }
hwVpnCfgPingCompliances OBJECT IDENTIFIER ::= { hwVpnCfgPingConformance 2 }
hwVpnCfgPingCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"Description."
MODULE -- this module
MANDATORY-GROUPS { hwVpnCfgPingGroup, hwVpnCfgPingResultGroup, hwVpnCfgPingResultIRtGroup, hwVpnCfgPingResultERtGroup }
::= { hwVpnCfgPingCompliances 1 }
hwVpnCfgPingGroup OBJECT-GROUP
OBJECTS { hwVpnCfgPingPeerIpType, hwVpnCfgPingPeerIp, hwVpnCfgPingVpnIdType, hwVpnCfgPingVpnId, hwVpnCfgPingPwId,
hwVpnCfgPingTunnelUsed, hwVpnCfgPingOperation, hwVpnCfgPingResultDetail, hwVpnCfgPingRowStatus, hwVpnCfgPingIfName,
hwVpnCfgPingSecondary, hwVpnCfgPingPwIdNew }
STATUS current
DESCRIPTION
"hwVpnCfgPingGroup."
::= { hwVpnCfgPingGroups 1 }
hwVpnCfgPingResultGroup OBJECT-GROUP
OBJECTS { hwVpnCfgPingResultVpnIdType, hwVpnCfgPingResultVpnId, hwVpnCfgPingResultDesc, hwVpnCfgPingResultVpnAdminStatus, hwVpnCfgPingResultOperStatus,
hwVpnCfgPingResultMtu, hwVpnCfgPingResultCeCount, hwVpnCfgPingResultActualIpType, hwVpnCfgPingResultActualIp, hwVpnCfgPingResultPeerIpType,
hwVpnCfgPingResultPeerIp, hwVpnCfgPingResultPwId, hwVpnCfgPingResultPeType, hwVpnCfgPingResultVcType, hwVpnCfgPingResultLabelIn,
hwVpnCfgPingResultLableOut, hwVpnCfgPingResultControlWord, hwVpnCfgPingResultPriOrSec, hwVpnCfgPingResultVplsID, hwVpnCfgPingResultRD, hwVpnCfgPingResultPwIdNew}
STATUS current
DESCRIPTION
"hwVpnCfgPingResultGroup."
::= { hwVpnCfgPingGroups 2 }
hwVpnCfgPingResultIRtGroup OBJECT-GROUP
OBJECTS { hwVpnCfgPingResultIRtIndex , hwVpnCfgPingResultIRt }
STATUS current
DESCRIPTION
"hwVpnCfgPingResultIRtGroup."
::= { hwVpnCfgPingGroups 3 }
hwVpnCfgPingResultERtGroup OBJECT-GROUP
OBJECTS { hwVpnCfgPingResultERtIndex , hwVpnCfgPingResultERt }
STATUS current
DESCRIPTION
"hwVpnCfgPingResultERtGroup."
::= { hwVpnCfgPingGroups 4 }
hwVpnCfgPingResultIRtTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwVpnCfgPingResultIRtEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"hwVpnCfgPingResultIRtTable."
::= { hwVpnCfgPing 4 }
hwVpnCfgPingResultIRtEntry OBJECT-TYPE
SYNTAX HwVpnCfgPingResultIRtEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object indicates that indexes of this table are hwVpnCfgPingIndex and hwVpnCfgPingResultLocation."
INDEX { hwVpnCfgPingIndex, hwVpnCfgPingResultLocation, hwVpnCfgPingResultIRtIndex }
::= { hwVpnCfgPingResultIRtTable 1 }
HwVpnCfgPingResultIRtEntry ::=
SEQUENCE {
hwVpnCfgPingResultIRtIndex
Integer32,
hwVpnCfgPingResultIRt
OCTET STRING
}
hwVpnCfgPingResultIRtIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object indicates the index of an import vpn target."
::= { hwVpnCfgPingResultIRtEntry 1 }
hwVpnCfgPingResultIRt OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the import vpn target."
::= { hwVpnCfgPingResultIRtEntry 2 }
hwVpnCfgPingResultERtTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwVpnCfgPingResultERtEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"hwVpnCfgPingResultERtTable."
::= { hwVpnCfgPing 5 }
hwVpnCfgPingResultERtEntry OBJECT-TYPE
SYNTAX HwVpnCfgPingResultERtEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object indicates that indexes of this table are hwVpnCfgPingIndex and hwVpnCfgPingResultLocation."
INDEX { hwVpnCfgPingIndex, hwVpnCfgPingResultLocation, hwVpnCfgPingResultERtIndex }
::= { hwVpnCfgPingResultERtTable 1 }
HwVpnCfgPingResultERtEntry ::=
SEQUENCE {
hwVpnCfgPingResultERtIndex
Integer32,
hwVpnCfgPingResultERt
OCTET STRING
}
hwVpnCfgPingResultERtIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object indicates the index of an export vpn target.."
::= { hwVpnCfgPingResultERtEntry 1 }
hwVpnCfgPingResultERt OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the export vpn target."
::= { hwVpnCfgPingResultERtEntry 2 }
END
--
-- HUAWEI-VPN-DIAGNOSTICS-MIB.mib
--
|