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
|
-- =============================================================================
-- Copyright (c) 2004-2018 New H3C Tech. Co., Ltd. All rights reserved.
--
-- Description: Layer 2 Virtual Private Network (L2VPN) MIB
-- Reference:
-- Version: V1.2
-- History:
-- V1.0 2015-01-16 Created by Yanneng
-- V1.1 2018-01-17 Modified by Chenjuxi
-- Add node hh3cL2vpnPwcFlowLabel
-- 2017-11-21 Modified by Chenjian
-- Add hh3cL2vpnLinkTable
-- 2016-09-30 Modified by Liyun
-- Add hh3cL2vpnAcCfgTable and hh3cL2vpnPwCfgTable
-- V1.2 2018-09-03 Modified by WangShuji
-- Modified the value range of the hh3cL2vpnLinkIfIndex
-- 2018-04-27 Modified by fuzhihua
-- Added nodes hh3cL2vpnXcgConnRedundancy and hh3cL2vpnXcgPwIgnoreStandby
-- =============================================================================
HH3C-L2VPN-MIB DEFINITIONS ::= BEGIN
IMPORTS
RowStatus, TruthValue, DisplayString
FROM SNMPv2-TC
InterfaceIndexOrZero
FROM IF-MIB
MODULE-IDENTITY,
OBJECT-TYPE,
Unsigned32,
IpAddress,
NOTIFICATION-TYPE
FROM SNMPv2-SMI
InterfaceIndex
FROM IF-MIB
hh3cCommon
FROM HH3C-OID-MIB;
-- =============================================================================
-- module identity part
-- =============================================================================
hh3cL2vpn MODULE-IDENTITY
LAST-UPDATED "201804271800Z" -- Apr 27, 2018 at 18:00 GMT
ORGANIZATION
"New H3C Tech. Co., Ltd."
CONTACT-INFO
"Platform Team New H3C Tech. Co., Ltd.
Hai-Dian District Beijing P.R. China
http://www.h3c.com
Zip:100085
"
DESCRIPTION
"Added hh3cL2vpnXcgConnRedundancy and hh3cL2vpnXcgPwIgnoreStandby."
REVISION
"201804271800Z" -- Apr 27, 2018 at 18:00 GMT
DESCRIPTION
"Added node hh3cL2vpnPwcFlowLabel."
REVISION
"201801171500Z" -- Jan 17, 2018 at 15:00 GMT
DESCRIPTION
"Added hh3cL2vpnLinkTable."
REVISION
"201711211500Z" -- Nov 21, 2017 at 15:00 GMT
DESCRIPTION
"Added hh3cL2vpnAcCfgTable and hh3cL2vpnPwCfgTable."
REVISION
"201609301800Z" -- Sept 30, 2016 at 18:00 GMT
DESCRIPTION
"This MIB contains objects to manage L2VPN."
REVISION
"201501160000Z" -- Jan 16, 2015 at 00:00 GMT
DESCRIPTION
"Initial version."
::= { hh3cCommon 162 }
-- ==================================================================
-- =================== hh3cL2VpnPwNotifications definition ==========
-- ==================================================================
hh3cL2vpnPwNotifications OBJECT IDENTIFIER ::= { hh3cL2vpn 0 }
-- ==================================================================
-- ======================= hh3cL2vpnGlobalTable definition ==========
-- ==================================================================
hh3cL2vpnGlobalTable OBJECT IDENTIFIER ::= { hh3cL2vpn 2 }
hh3cL2vpnPwcTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cL2vpnPwcEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains pseudowire (PW) class information."
::= { hh3cL2vpnGlobalTable 1 }
hh3cL2vpnPwcEntry OBJECT-TYPE
SYNTAX Hh3cL2vpnPwcEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Provides information about a PW class entry."
INDEX
{
hh3cL2vpnPwcName
}
::= { hh3cL2vpnPwcTable 1 }
Hh3cL2vpnPwcEntry ::= SEQUENCE
{
hh3cL2vpnPwcName OCTET STRING,
hh3cL2vpnPwcCvType INTEGER,
hh3cL2vpnPwcCcType INTEGER,
hh3cL2vpnPwcControlWord TruthValue,
hh3cL2vpnPwcPwType INTEGER,
hh3cL2vpnPwcRowStatus RowStatus,
hh3cL2vpnPwcFlowLabel INTEGER
}
hh3cL2vpnPwcName OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(1..19))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"PW class name."
::= { hh3cL2vpnPwcEntry 1 }
hh3cL2vpnPwcCvType OBJECT-TYPE
SYNTAX INTEGER
{
unknown(1),
bfd(2),
rawBFD(3)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Virtual Circuit Connectivity Verification (VCCV) Bidirectional
Forwarding Detection (BFD) type."
::= { hh3cL2vpnPwcEntry 2 }
hh3cL2vpnPwcCcType OBJECT-TYPE
SYNTAX INTEGER
{
unknown(1),
controlWord(2),
routerAlert(3),
ttl(4)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Virtual Circuit Connectivity Verification (VCCV) Control Channel
(CC) type."
::= { hh3cL2vpnPwcEntry 3 }
hh3cL2vpnPwcControlWord OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Whether control word is enabled."
DEFVAL { false }
::= { hh3cL2vpnPwcEntry 4 }
hh3cL2vpnPwcPwType OBJECT-TYPE
SYNTAX INTEGER
{
vlan(4),
ethernet(5)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"PW encapsulation type."
DEFVAL { vlan }
::= { hh3cL2vpnPwcEntry 5 }
hh3cL2vpnPwcRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Operation status of this table entry. A row entry cannot be modified
when the value of this object is 'active'."
::= { hh3cL2vpnPwcEntry 6 }
hh3cL2vpnPwcFlowLabel OBJECT-TYPE
SYNTAX INTEGER
{
unknown(1),
send(2),
receive(3),
both(4)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Flow label capability."
DEFVAL { unknown }
::= { hh3cL2vpnPwcEntry 7 }
-- ==================================================================
-- ======================= hh3cL2vpnLinkTable definition ==========
-- ==================================================================
hh3cL2vpnLinkTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cL2vpnLinkEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains L2VPN link information."
::= { hh3cL2vpnGlobalTable 2 }
hh3cL2vpnLinkEntry OBJECT-TYPE
SYNTAX Hh3cL2vpnLinkEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Provides information about an L2VPN link entry."
INDEX
{
hh3cL2vpnLinkVsiIndex,
hh3cL2vpnLinkLinkID
}
::= { hh3cL2vpnLinkTable 1 }
Hh3cL2vpnLinkEntry ::= SEQUENCE
{
hh3cL2vpnLinkVsiIndex Unsigned32,
hh3cL2vpnLinkLinkID Unsigned32,
hh3cL2vpnLinkType INTEGER,
hh3cL2vpnLinkIfIndex InterfaceIndexOrZero,
hh3cL2vpnLinkSrvID Unsigned32,
hh3cL2vpnLinkTunnelID Unsigned32
}
hh3cL2vpnLinkVsiIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Virtual Switch Instance (VSI) index of the l2vpn link. The maximum
value of unsigned32 means that the VSI index is invalid."
::= { hh3cL2vpnLinkEntry 1 }
hh3cL2vpnLinkLinkID OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"VSI link Identifier (ID) of the l2vpn link. The maximum value of
unsigned32 means that the VSI link ID is invalid."
::= { hh3cL2vpnLinkEntry 2 }
hh3cL2vpnLinkType OBJECT-TYPE
SYNTAX INTEGER
{
unknown(1),
ac(2),
tunnel(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Link type of the l2vpn link. If the link type is neither Attachment
Circuit (AC) nor tunnel, it returns 1."
::= { hh3cL2vpnLinkEntry 3 }
hh3cL2vpnLinkIfIndex OBJECT-TYPE
SYNTAX InterfaceIndexOrZero
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Interface index of the L2VPN link. Value zero means that the interface
index is invalid."
::= { hh3cL2vpnLinkEntry 4 }
hh3cL2vpnLinkSrvID OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Service instance ID of the L2VPN link. Value zero means that the
service instance ID is invalid."
::= { hh3cL2vpnLinkEntry 5 }
hh3cL2vpnLinkTunnelID OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The tunnel ID of the L2VPN link. The maximum value of unsigned32 means
that the tunnel ID is invalid."
::= { hh3cL2vpnLinkEntry 6 }
-- ==================================================================
-- =======================hh3cL2vpnVpwsTable definition ============
-- ==================================================================
hh3cL2vpnVpwsTable OBJECT IDENTIFIER ::= { hh3cL2vpn 3 }
-- ==================================================================
-- =======================hh3cL2vpnXcgTable definition ============
-- ==================================================================
hh3cL2vpnXcgTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cL2vpnXcgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains cross-connect group information."
::= { hh3cL2vpnVpwsTable 1 }
hh3cL2vpnXcgEntry OBJECT-TYPE
SYNTAX Hh3cL2vpnXcgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Provides information about a cross-connect group entry."
INDEX
{
hh3cL2vpnXcgName
}
::= { hh3cL2vpnXcgTable 1 }
Hh3cL2vpnXcgEntry ::= SEQUENCE
{
hh3cL2vpnXcgName OCTET STRING,
hh3cL2vpnXcgAdminState INTEGER,
hh3cL2vpnXcgRowStatus RowStatus
}
hh3cL2vpnXcgName OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(1..31))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Cross-connect group name."
::= { hh3cL2vpnXcgEntry 1 }
hh3cL2vpnXcgAdminState OBJECT-TYPE
SYNTAX INTEGER
{
adminUp(1),
adminDown(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The desired state of the cross-connect group. The column doesn't exist
when this group hasn't any connection."
::= { hh3cL2vpnXcgEntry 2 }
hh3cL2vpnXcgRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Operation status of this table entry."
::= { hh3cL2vpnXcgEntry 3 }
-- ==================================================================
-- ====================hh3cL2vpnXcgConnTable definition ============
-- ==================================================================
hh3cL2vpnXcgConnTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cL2vpnXcgConnEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains cross-connect information."
::= { hh3cL2vpnVpwsTable 2 }
hh3cL2vpnXcgConnEntry OBJECT-TYPE
SYNTAX Hh3cL2vpnXcgConnEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Provides information about a cross-connect entry."
INDEX
{
hh3cL2vpnXcgName,
hh3cL2vpnXcgConnName
}
::= { hh3cL2vpnXcgConnTable 1 }
Hh3cL2vpnXcgConnEntry ::= SEQUENCE
{
hh3cL2vpnXcgConnName OCTET STRING,
hh3cL2vpnXcgConnRowStatus RowStatus,
hh3cL2vpnXcgConnRedundancy INTEGER
}
hh3cL2vpnXcgConnName OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(1..20))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Cross-connect name."
::= { hh3cL2vpnXcgConnEntry 1 }
hh3cL2vpnXcgConnRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Operation status of this table entry."
::= { hh3cL2vpnXcgConnEntry 2 }
hh3cL2vpnXcgConnRedundancy OBJECT-TYPE
SYNTAX INTEGER
{
slave(1),
master(2),
independent(3)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"PW redundancy mode."
DEFVAL { slave }
::= { hh3cL2vpnXcgConnEntry 3 }
-- ==================================================================
-- ====================hh3cL2vpnXcgAcTable definition ==============
-- ==================================================================
hh3cL2vpnXcgAcTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cL2vpnXcgAcEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains information about attachment circuits (ACs)
bound to cross-connects"
::= { hh3cL2vpnVpwsTable 3 }
hh3cL2vpnXcgAcEntry OBJECT-TYPE
SYNTAX Hh3cL2vpnXcgAcEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Provides information about an attachment circuit entry."
INDEX
{
hh3cL2vpnXcgName,
hh3cL2vpnXcgConnName,
hh3cL2vpnXcgAcIfIndex,
hh3cL2vpnXcgAcEvcSrvInstId
}
::= { hh3cL2vpnXcgAcTable 1 }
Hh3cL2vpnXcgAcEntry ::= SEQUENCE
{
hh3cL2vpnXcgAcIfIndex InterfaceIndex,
hh3cL2vpnXcgAcEvcSrvInstId Unsigned32,
hh3cL2vpnXcgAcAccessMode INTEGER,
hh3cL2vpnXcgAcRowStatus RowStatus
}
hh3cL2vpnXcgAcIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Index of the interface."
::= { hh3cL2vpnXcgAcEntry 1 }
hh3cL2vpnXcgAcEvcSrvInstId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Index of the service instance. The value is always 0 when the
interface isn't a layer 2 Ethernet interface."
::= { hh3cL2vpnXcgAcEntry 2 }
hh3cL2vpnXcgAcAccessMode OBJECT-TYPE
SYNTAX INTEGER
{
vlan(1),
ethernet(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Access mode of the AC. The value is meaningless when the
interface isn't a layer 2 Ethernet interface."
::= { hh3cL2vpnXcgAcEntry 3 }
hh3cL2vpnXcgAcRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Operation status of this table entry. A row entry cannot be modified
when the value of this object is 'active'."
::= { hh3cL2vpnXcgAcEntry 4 }
-- ==================================================================
-- ====================hh3cL2vpnXcgPwTable definition ==============
-- ==================================================================
hh3cL2vpnXcgPwTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cL2vpnXcgPwEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains PW information."
::= { hh3cL2vpnVpwsTable 4 }
hh3cL2vpnXcgPwEntry OBJECT-TYPE
SYNTAX Hh3cL2vpnXcgPwEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Provides information about a PW entry."
INDEX
{
hh3cL2vpnXcgName,
hh3cL2vpnXcgConnName,
hh3cL2vpnXcgPwIndex
}
::= { hh3cL2vpnXcgPwTable 1 }
Hh3cL2vpnXcgPwEntry ::= SEQUENCE
{
hh3cL2vpnXcgPwIndex Unsigned32,
hh3cL2vpnXcgPwCfgType INTEGER,
hh3cL2vpnXcgPwClassName OCTET STRING,
hh3cL2vpnXcgPwTunnelPolicy OCTET STRING,
hh3cL2vpnXcgPwPeerIp IpAddress,
hh3cL2vpnXcgPwPwID Unsigned32,
hh3cL2vpnXcgPwRowStatus RowStatus,
hh3cL2vpnXcgPwIgnoreStandby TruthValue
}
hh3cL2vpnXcgPwIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"A unique index for a PW."
::= { hh3cL2vpnXcgPwEntry 1 }
hh3cL2vpnXcgPwCfgType OBJECT-TYPE
SYNTAX INTEGER
{
primary(1),
backup(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"PW attribute."
::= { hh3cL2vpnXcgPwEntry 2 }
hh3cL2vpnXcgPwClassName OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(1..19))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"PW class name."
::= { hh3cL2vpnXcgPwEntry 3 }
hh3cL2vpnXcgPwTunnelPolicy OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(1..19))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Tunnel policy name."
::= { hh3cL2vpnXcgPwEntry 4 }
hh3cL2vpnXcgPwPeerIp OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Peer IP address."
::= { hh3cL2vpnXcgPwEntry 5 }
hh3cL2vpnXcgPwPwID OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"PW identifier(ID)."
::= { hh3cL2vpnXcgPwEntry 6 }
hh3cL2vpnXcgPwRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Operation status of this table entry. A row entry cannot be modified
when the value of this object is 'active'."
::= { hh3cL2vpnXcgPwEntry 7 }
hh3cL2vpnXcgPwIgnoreStandby OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Ignores the PW standby state advertised by the remote PE."
DEFVAL { false }
::= { hh3cL2vpnXcgPwEntry 8 }
-- ==================================================================
-- ===============hh3cL2vpnPwNotifications definition ==============
-- ==================================================================
hh3cL2vpnPwSwitchPtoB NOTIFICATION-TYPE
OBJECTS
{
hh3cL2vpnXcgPwIndex,
hh3cL2vpnXcgPwPeerIp,
hh3cL2vpnXcgPwPwID,
hh3cL2vpnXcgPwIndex,
hh3cL2vpnXcgPwPeerIp,
hh3cL2vpnXcgPwPwID
}
STATUS current
DESCRIPTION
"This notification is generated when a primary-to-backup PW switching
happens. The first three elements show the primary PW,
and the second three elements show the backup PW."
::= { hh3cL2vpnPwNotifications 1 }
hh3cL2vpnPwSwitchBtoP NOTIFICATION-TYPE
OBJECTS
{
hh3cL2vpnXcgPwIndex,
hh3cL2vpnXcgPwPeerIp,
hh3cL2vpnXcgPwPwID,
hh3cL2vpnXcgPwIndex,
hh3cL2vpnXcgPwPeerIp,
hh3cL2vpnXcgPwPwID
}
STATUS current
DESCRIPTION
"This notification is generated when a backup-to-primary PW switching
happens. The first three elements show the backup PW,
and the second three elements show the primary PW."
::= { hh3cL2vpnPwNotifications 2 }
-- ==================================================================
-- ==================================================================
-- =======================hh3cL2vpnAcTable definition ============
-- ==================================================================
hh3cL2vpnAcTable OBJECT IDENTIFIER ::= { hh3cL2vpn 4 }
-- ==================================================================
-- ======================= hh3cL2vpnAcCfgTable definition ==========
-- ==================================================================
hh3cL2vpnAcCfgTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cL2vpnAcCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains interface configurations and AC configurations."
::= { hh3cL2vpnAcTable 1 }
hh3cL2vpnAcCfgEntry OBJECT-TYPE
SYNTAX Hh3cL2vpnAcCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This entry describes information about interface configurations
and AC configurations."
INDEX
{
hh3cL2vpnAcIfIndex,hh3cL2vpnAcSrvId
}
::= { hh3cL2vpnAcCfgTable 1 }
Hh3cL2vpnAcCfgEntry ::= SEQUENCE
{
hh3cL2vpnAcIfIndex InterfaceIndex,
hh3cL2vpnAcSrvId Unsigned32,
hh3cL2vpnAcIfName DisplayString,
hh3cL2vpnAcVsiName DisplayString,
hh3cL2vpnAcXcgName DisplayString,
hh3cL2vpnAcXcgConnName DisplayString,
hh3cL2vpnAcDot1qType INTEGER,
hh3cL2vpnAcVLANID Unsigned32
}
hh3cL2vpnAcIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Index of the interface."
::= { hh3cL2vpnAcCfgEntry 1 }
hh3cL2vpnAcSrvId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Index of the service instance. The value is always 0 when the
interface isn't a layer 2 Ethernet interface."
::= { hh3cL2vpnAcCfgEntry 2 }
hh3cL2vpnAcIfName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name of the interface."
::= { hh3cL2vpnAcCfgEntry 3 }
hh3cL2vpnAcVsiName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name of the VSI."
::= { hh3cL2vpnAcCfgEntry 4 }
hh3cL2vpnAcXcgName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Cross-connect group name."
::= { hh3cL2vpnAcCfgEntry 5 }
hh3cL2vpnAcXcgConnName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Cross-connect name."
::= { hh3cL2vpnAcCfgEntry 6 }
hh3cL2vpnAcDot1qType OBJECT-TYPE
SYNTAX INTEGER
{
other(1),
default(2),
singletag(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the configuration of VLAN IDs."
::= { hh3cL2vpnAcCfgEntry 7 }
hh3cL2vpnAcVLANID OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"When the interface is a layer 2 Ethernet interface, this
object indicates the VLAN IDs assigned to this service instance.
When the interface is a subinterface, this object indicates
the outermost VLAN IDs in the VLAN-tagged packets."
::= { hh3cL2vpnAcCfgEntry 8 }
-- ==================================================================
-- =======================hh3cL2vpnPwTable definition ============
-- ==================================================================
hh3cL2vpnPwTable OBJECT IDENTIFIER ::= { hh3cL2vpn 5 }
-- ==================================================================
-- ======================= hh3cL2vpnPwCfgTable definition ==========
-- ==================================================================
hh3cL2vpnPwCfgTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cL2vpnPwCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains PW configuration."
::= { hh3cL2vpnPwTable 1 }
hh3cL2vpnPwCfgEntry OBJECT-TYPE
SYNTAX Hh3cL2vpnPwCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This entry describes configurations about a PW."
INDEX
{
hh3cL2vpnPwPeerIp, hh3cL2vpnPwId
}
::= { hh3cL2vpnPwCfgTable 1 }
Hh3cL2vpnPwCfgEntry ::= SEQUENCE
{
hh3cL2vpnPwPeerIp IpAddress,
hh3cL2vpnPwId Unsigned32,
hh3cL2vpnPwAcIfIndex InterfaceIndexOrZero,
hh3cL2vpnPwAcIfName DisplayString,
hh3cL2vpnPwAcSrvId Unsigned32,
hh3cL2vpnPwVsiName DisplayString,
hh3cL2vpnPwXcgName DisplayString,
hh3cL2vpnPwXcgConnName DisplayString,
hh3cL2vpnPwQosDirection INTEGER,
hh3cL2vpnPwInboundQosCir Unsigned32,
hh3cL2vpnPwInboundQosCbs Unsigned32,
hh3cL2vpnPwInboundQosEbs Unsigned32,
hh3cL2vpnPwOutboundQosCir Unsigned32,
hh3cL2vpnPwOutboundQosCbs Unsigned32,
hh3cL2vpnPwOutboundQosEbs Unsigned32
}
hh3cL2vpnPwPeerIp OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Peer IP address."
::= { hh3cL2vpnPwCfgEntry 1 }
hh3cL2vpnPwId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"PW identifier (ID)."
::= { hh3cL2vpnPwCfgEntry 2 }
hh3cL2vpnPwAcIfIndex OBJECT-TYPE
SYNTAX InterfaceIndexOrZero
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Index of the AC interface."
::= { hh3cL2vpnPwCfgEntry 3 }
hh3cL2vpnPwAcIfName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name of the AC interface."
::= { hh3cL2vpnPwCfgEntry 4 }
hh3cL2vpnPwAcSrvId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Index of the service instance. The value is always
0 when the interface isn't a layer 2 Ethernet interface."
::= { hh3cL2vpnPwCfgEntry 5 }
hh3cL2vpnPwVsiName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name of the VSI."
::= { hh3cL2vpnPwCfgEntry 6 }
hh3cL2vpnPwXcgName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Cross-connect group name."
::= { hh3cL2vpnPwCfgEntry 7 }
hh3cL2vpnPwXcgConnName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Cross-connect name."
::= { hh3cL2vpnPwCfgEntry 8 }
hh3cL2vpnPwQosDirection OBJECT-TYPE
SYNTAX INTEGER
{
none(1),
inbound(2),
outbound(3),
both(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Rate limit in the inbound or outbound direction."
::= { hh3cL2vpnPwCfgEntry 9 }
hh3cL2vpnPwInboundQosCir OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Committed Information Rate in the inbound direction."
::= { hh3cL2vpnPwCfgEntry 10 }
hh3cL2vpnPwInboundQosCbs OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Committed Burst Size in the inbound direction."
::= { hh3cL2vpnPwCfgEntry 11 }
hh3cL2vpnPwInboundQosEbs OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Excess Burst Size in the inbound direction."
::= { hh3cL2vpnPwCfgEntry 12 }
hh3cL2vpnPwOutboundQosCir OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Committed Information Rate in the outbound direction."
::= { hh3cL2vpnPwCfgEntry 13 }
hh3cL2vpnPwOutboundQosCbs OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Committed Burst Size in the outbound direction."
::= { hh3cL2vpnPwCfgEntry 14 }
hh3cL2vpnPwOutboundQosEbs OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Excess Burst Size in the outbound direction."
::= { hh3cL2vpnPwCfgEntry 15 }
END
|