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
|
-- ============================================================================
-- Copyright (c) 2004-2013 New H3C Tech. Co., Ltd. All rights reserved.
--
-- Description: The EVB MIB module for managing devices that support Ethernet
-- Virtual Bridging (EVB).
-- Reference: IEEE Std 802.1Qbg
-- Version: V1.0
-- History:
-- V1.0 2012-12-21 created by Guo Xiangbin.
-- ============================================================================
HH3C-EVB-MIB DEFINITIONS ::= BEGIN
IMPORTS
Integer32, OBJECT-TYPE, MODULE-IDENTITY, Unsigned32
FROM SNMPv2-SMI
RowStatus, TruthValue, MacAddress
FROM SNMPv2-TC
hh3cCommon
FROM HH3C-OID-MIB
IEEE8021BridgePortNumber
FROM IEEE8021-TC-MIB
VlanIndex
FROM Q-BRIDGE-MIB
InterfaceIndexOrZero
FROM IF-MIB;
hh3cEvb MODULE-IDENTITY
LAST-UPDATED "201212211200Z"
ORGANIZATION
"New H3C Tech. Co., Ltd."
CONTACT-INFO
"Platform Team New H3C Tech. Co., Ltd.
Haidian District Beijing P.R. China
http://www.h3c.com
Zip:100085
"
DESCRIPTION
"EVB management information base for managing devices that support
Ethernet Virtual Bridging. This MIB is an extension of
IEEE8021-EVB-MIB."
REVISION "201212211200Z"
DESCRIPTION
"Created by Guo Xiangbin."
::= { hh3cCommon 134 }
-- =============================================================
-- Subtrees in the EVB MIB
-- =============================================================
hh3cEvbSysObjects
OBJECT IDENTIFIER ::= { hh3cEvb 1 }
hh3cEvbPortObjects
OBJECT IDENTIFIER ::= { hh3cEvb 2 }
hh3cFlex10Objects
OBJECT IDENTIFIER ::= { hh3cEvb 3 }
hh3cEvbSetResult OBJECT-TYPE
SYNTAX INTEGER
{
unknown(1),
processing(2),
success(3),
failed(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If a set operation on EVB-MIB-tables returns success, this object
indicates the actual result of this operation. Otherwise, it is
meaningless.
unknown: The set operation on the node has been completed, but the
result could only be got from the table which the set
operation happended.
processing: The set operation is in process. Another set operation
cannot be performed at this time.
success: The set operation has succeeded.
failed: The set operation has failed."
::= { hh3cEvbSysObjects 1}
-- =========================
-- VSI default manager table
-- =========================
hh3cEvbDefaultManagerTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cEvbDefaultManagerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table that contains configuration information for the default
Virtual Station Interface (VSI) manager."
::= { hh3cEvbSysObjects 2 }
hh3cEvbDefaultManagerEntry OBJECT-TYPE
SYNTAX Hh3cEvbDefaultManagerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of objects containing information for the default VSI manager."
INDEX { hh3cEvbManagerIndex }
::= { hh3cEvbDefaultManagerTable 1 }
Hh3cEvbDefaultManagerEntry ::=
SEQUENCE
{
hh3cEvbManagerIndex
Unsigned32,
hh3cEvbManagerType
INTEGER,
hh3cEvbManagerID
OCTET STRING,
hh3cEvbManagerPort
Unsigned32,
hh3cEvbManagerRowStatus
RowStatus
}
hh3cEvbManagerIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Index of the default manager table."
::= { hh3cEvbDefaultManagerEntry 1 }
hh3cEvbManagerType OBJECT-TYPE
SYNTAX INTEGER
{
ipv4(1),
ipv6(2),
name(3),
local(4)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Type of the default VSI manager.
ipv4: Specifies the IPv4 address of the default VSI manager.
ipv6: Specifies the IPv6 address of the default VSI manager.
name: Specifies the name of the default VSI manager, a
case-insensitive string of 1 to 127 characters.
local: Specifies the device as the default VSI manager."
::= { hh3cEvbDefaultManagerEntry 2 }
hh3cEvbManagerID OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(0..127))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Default VSI manager.
The value is zero-length string when the VSI manager type is 'local'."
::= { hh3cEvbDefaultManagerEntry 3 }
hh3cEvbManagerPort OBJECT-TYPE
SYNTAX Unsigned32 (0..65535)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Port number of the default VSI manager.
Optional when the VSI manager type is not 'local'.
If the VSI manager type is 'local', it returns zero."
DEFVAL { 8080 }
::= { hh3cEvbDefaultManagerEntry 4 }
hh3cEvbManagerRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Row status: CreateAndGo, Active, or Destroy."
::= { hh3cEvbDefaultManagerEntry 5 }
-- =====================
-- EVB bridge port table
-- =====================
hh3cEvbPortConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cEvbPortConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table that contains configuration information for the EVB bridge
port."
::= { hh3cEvbPortObjects 1 }
hh3cEvbPortConfigEntry OBJECT-TYPE
SYNTAX Hh3cEvbPortConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of objects containing information for the EVB bridge port."
INDEX { hh3cEvbPortNumber }
::= { hh3cEvbPortConfigTable 1 }
Hh3cEvbPortConfigEntry ::=
SEQUENCE
{
hh3cEvbPortNumber
IEEE8021BridgePortNumber,
hh3cEvbRWD
Unsigned32,
hh3cEvbRKA
Unsigned32
}
hh3cEvbPortNumber OBJECT-TYPE
SYNTAX IEEE8021BridgePortNumber
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Port number."
::= { hh3cEvbPortConfigEntry 1 }
hh3cEvbRWD OBJECT-TYPE
SYNTAX Unsigned32 (15..31)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"VDP resource wait delay exponent."
DEFVAL { 20 }
::= { hh3cEvbPortConfigEntry 2 }
hh3cEvbRKA OBJECT-TYPE
SYNTAX Unsigned32 (14..31)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"VDP keepalive exponent."
DEFVAL { 20 }
::= { hh3cEvbPortConfigEntry 3 }
-- ======================
-- S-channel config table
-- ======================
hh3cEvbSchannelConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cEvbSchannelConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table that contains configuration information for the S-channel."
::= { hh3cEvbPortObjects 2 }
hh3cEvbSchannelConfigEntry OBJECT-TYPE
SYNTAX Hh3cEvbSchannelConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of objects containing information for the S-channel."
INDEX { hh3cEvbPortNumber,
hh3cEvbSchannelID }
::= { hh3cEvbSchannelConfigTable 1 }
Hh3cEvbSchannelConfigEntry ::=
SEQUENCE
{
hh3cEvbSchannelID
Unsigned32,
hh3cEvbSchannelSVLAN
Unsigned32,
hh3cEvbMacLearningStatus
TruthValue,
hh3cEvbRRStatus
TruthValue,
hh3cEvbSchannelRowStatus
RowStatus
}
hh3cEvbSchannelID OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"S-channel ID."
::= { hh3cEvbSchannelConfigEntry 1 }
hh3cEvbSchannelSVLAN OBJECT-TYPE
SYNTAX Unsigned32 (0..4094)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"S-VLAN ID. 0 means that the S-channel is not bound to any S-VLAN.
1 represents the SVID for the default S-channel S-channel 1."
DEFVAL { 0 }
::= { hh3cEvbSchannelConfigEntry 2 }
hh3cEvbMacLearningStatus OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The MAC address learning function is enabled or not."
DEFVAL { true }
::= { hh3cEvbSchannelConfigEntry 3 }
hh3cEvbRRStatus OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The RR mode for the S-channel is enabled or not."
DEFVAL { false }
::= { hh3cEvbSchannelConfigEntry 4 }
hh3cEvbSchannelRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Row status: CreateAndGo, Active, or Destroy."
::= { hh3cEvbSchannelConfigEntry 5 }
-- ================
-- VSI config table
-- ================
hh3cEvbVSIConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cEvbVSIConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table that contains configuration information for the VSI."
::= { hh3cEvbPortObjects 3 }
hh3cEvbVSIConfigEntry OBJECT-TYPE
SYNTAX Hh3cEvbVSIConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of objects containing information for the VSI."
INDEX { hh3cEvbSBPPortNumber,
hh3cEvbVSILocalID }
::= { hh3cEvbVSIConfigTable 1 }
Hh3cEvbVSIConfigEntry ::=
SEQUENCE
{
hh3cEvbSBPPortNumber
IEEE8021BridgePortNumber,
hh3cEvbVSILocalID
Unsigned32,
hh3cEvbVSICommand
INTEGER,
hh3cEvbVSIIfIndex
InterfaceIndexOrZero,
hh3cEvbVSIIsActive
TruthValue,
hh3cEvbVSIRowStatus
RowStatus
}
hh3cEvbSBPPortNumber OBJECT-TYPE
SYNTAX IEEE8021BridgePortNumber
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The Station-facing Bridge Port (SBP) port number."
::= { hh3cEvbVSIConfigEntry 1 }
hh3cEvbVSILocalID OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"VSI local ID."
::= { hh3cEvbVSIConfigEntry 2 }
hh3cEvbVSICommand OBJECT-TYPE
SYNTAX INTEGER
{
preAssociate (1),
preAssociateWithRsrcReservation (2),
associate (3),
deAssociate (4)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the association or pre-associate property of the
VSI."
::= { hh3cEvbVSIConfigEntry 3 }
hh3cEvbVSIIfIndex OBJECT-TYPE
SYNTAX InterfaceIndexOrZero
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"VSI interface index."
::= { hh3cEvbVSIConfigEntry 4 }
hh3cEvbVSIIsActive OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The VSI is activated or not. Activate a VSI after configuring a VSI
filter, and deactivate a VSI before removing a VSI filter."
DEFVAL { false }
::= { hh3cEvbVSIConfigEntry 5 }
hh3cEvbVSIRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Row status: CreateAndGo, Active, or Destroy."
::= { hh3cEvbVSIConfigEntry 6 }
-- =======================
-- VSI filter config table
-- =======================
hh3cEvbVSIFilterConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cEvbVSIFilterConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table that contains configuration information for filters of the
VSI."
::= { hh3cEvbPortObjects 4 }
hh3cEvbVSIFilterConfigEntry OBJECT-TYPE
SYNTAX Hh3cEvbVSIFilterConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of objects containing information for filters of the VSI."
INDEX { hh3cEvbSBPPortNumber,
hh3cEvbVSILocalID,
hh3cEvbGroupID,
hh3cEvbVSIMac,
hh3cEvbVSIVlanId }
::= { hh3cEvbVSIFilterConfigTable 1 }
Hh3cEvbVSIFilterConfigEntry ::=
SEQUENCE
{
hh3cEvbGroupID
Unsigned32,
hh3cEvbVSIMac
MacAddress,
hh3cEvbVSIVlanId
VlanIndex,
hh3cEvbVSIFilterRowStatus
RowStatus
}
hh3cEvbGroupID OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Group ID."
::= { hh3cEvbVSIFilterConfigEntry 1 }
hh3cEvbVSIMac OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The MAC address part of the MAC/VLANs for a VSI."
::= { hh3cEvbVSIFilterConfigEntry 2 }
hh3cEvbVSIVlanId OBJECT-TYPE
SYNTAX VlanIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The VLAN ID part of the MAC/VLANs for a VSI."
::= { hh3cEvbVSIFilterConfigEntry 3 }
hh3cEvbVSIFilterRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Row status: CreateAndGo, Active, or Destroy."
::= { hh3cEvbVSIFilterConfigEntry 4 }
-- ========================
-- Flex10 port config table
-- ========================
hh3cFlex10PortConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cFlex10PortConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table that contains configuration information for the flex10 bridge
port."
::= { hh3cFlex10Objects 1 }
hh3cFlex10PortConfigEntry OBJECT-TYPE
SYNTAX Hh3cFlex10PortConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of objects containing information for the flex10 bridge port."
INDEX { hh3cFlex10PortNumber }
::= { hh3cFlex10PortConfigTable 1 }
Hh3cFlex10PortConfigEntry ::=
SEQUENCE
{
hh3cFlex10PortNumber
IEEE8021BridgePortNumber,
hh3cFlex10PortEnableStatus
TruthValue
}
hh3cFlex10PortNumber OBJECT-TYPE
SYNTAX IEEE8021BridgePortNumber
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Port number."
::= { hh3cFlex10PortConfigEntry 1 }
hh3cFlex10PortEnableStatus OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The flex10 function is enabled or not."
DEFVAL { false }
::= { hh3cFlex10PortConfigEntry 2 }
-- =============================
-- Flex10 remote S-channel table
-- =============================
hh3cFlex10RemoteSchannelTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cFlex10RemoteSchannelEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table that contains remote S-channel details."
::= { hh3cFlex10Objects 2 }
hh3cFlex10RemoteSchannelEntry OBJECT-TYPE
SYNTAX Hh3cFlex10RemoteSchannelEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of objects describing remote S-channels."
INDEX { hh3cFlex10PortNumber,
hh3cEvbSchannelID }
::= { hh3cFlex10RemoteSchannelTable 1 }
Hh3cFlex10RemoteSchannelEntry ::=
SEQUENCE
{
hh3cFlex10RemSchDesFormat
BITS,
hh3cFlex10RemSchTerminationType
Integer32,
hh3cFlex10RemSchTerminationCap
BITS,
hh3cFlex10RemSchTrafficClass
BITS,
hh3cFlex10RemSchCir
Integer32,
hh3cFlex10RemSchPir
Integer32,
hh3cFlex10RemSchConnectionID
OCTET STRING
}
hh3cFlex10RemSchDesFormat OBJECT-TYPE
SYNTAX BITS
{
format0 (0),
format1 (1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Description format of the remote S-channel."
::= { hh3cFlex10RemoteSchannelEntry 1 }
hh3cFlex10RemSchTerminationType OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Termination type of the remote S-channel.
0: PCI Physical Function (Primary).
1: SRIOV Virtual Function.
2: PCI Physical Function (Secondary).
3: Virtual Switch Port.
4: NCSI Port.
2147483647: This value means a Description TLV with format 0 has not
been received.
other: Unknown termination type."
::= { hh3cFlex10RemoteSchannelEntry 2 }
hh3cFlex10RemSchTerminationCap OBJECT-TYPE
SYNTAX BITS
{
ethernet (0),
fCOE (1),
iSCSI (2),
roCEE (3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Termination capabilities of the remote S-channel. If a Description
TLV with format 0 has not been received, it returns all zeros."
::= { hh3cFlex10RemoteSchannelEntry 3 }
hh3cFlex10RemSchTrafficClass OBJECT-TYPE
SYNTAX BITS
{
class0 (0),
class1 (1),
class2 (2),
class3 (3),
class4 (4),
class5 (5),
class6 (6),
class7 (7)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Traffic classes of the remote S-channel. If a Description TLV with
format 0 has not been received, it returns all zeros."
::= { hh3cFlex10RemoteSchannelEntry 4 }
hh3cFlex10RemSchCir OBJECT-TYPE
SYNTAX Integer32
UNITS "mbps"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Committed Information Rate (CIR) of the remote S-channel. If a
Description TLV with format 0 has not been received, it returns 0."
::= { hh3cFlex10RemoteSchannelEntry 5 }
hh3cFlex10RemSchPir OBJECT-TYPE
SYNTAX Integer32
UNITS "mbps"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Peak Information Rate (PIR) of the remote S-channel. If a Description
TLV with format 0 has not been received, it returns 0."
::= { hh3cFlex10RemoteSchannelEntry 6 }
hh3cFlex10RemSchConnectionID OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..16))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Connection instance ID of the remote S-channel.
The value is a zero-length string if a Description TLV with format 1
has not been received. Otherwise it returns a string with length 16."
::= { hh3cFlex10RemoteSchannelEntry 7 }
-- ===================================
-- Flex10 S-channel link control table
-- ===================================
hh3cFlex10SchannelLinkCtlTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cFlex10SchannelLinkCtlEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table that contains link status information for the S-channel."
::= { hh3cFlex10Objects 3 }
hh3cFlex10SchannelLinkCtlEntry OBJECT-TYPE
SYNTAX Hh3cFlex10SchannelLinkCtlEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of objects containing information for the S-channel."
INDEX { hh3cFlex10PortNumber,
hh3cEvbSchannelID }
::= { hh3cFlex10SchannelLinkCtlTable 1 }
Hh3cFlex10SchannelLinkCtlEntry ::=
SEQUENCE
{
hh3cFlex10SchannelSVID
VlanIndex,
hh3cFlex10SchannelLocalStatus
INTEGER,
hh3cFlex10SchannelRemoteStatus
INTEGER
}
hh3cFlex10SchannelSVID OBJECT-TYPE
SYNTAX VlanIndex
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"S-VLAN ID for the S-channel."
::= { hh3cFlex10SchannelLinkCtlEntry 1 }
hh3cFlex10SchannelLocalStatus OBJECT-TYPE
SYNTAX INTEGER
{
unknown (1),
disabled (2),
enabled (3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Link status of the local S-channel."
::= { hh3cFlex10SchannelLinkCtlEntry 2 }
hh3cFlex10SchannelRemoteStatus OBJECT-TYPE
SYNTAX INTEGER
{
unknown (1),
disabled (2),
enabled (3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Link status of the remote S-channel."
::= { hh3cFlex10SchannelLinkCtlEntry 3 }
END
|