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
|
-- *****************************************************************
-- UBQS-DOT1BRIDGE-MIB : Ubiquoss DOT1BRIDGE MIB
--
-- July 2009, Park Hyung Eun
--
-- Copyright (c) 2009 by Ubiquoss, Corp.
-- All rights reserved.
-- *****************************************************************
--
UBQS-DOT1BRIDGE-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY,
OBJECT-TYPE,
NOTIFICATION-TYPE,
Counter32,
IpAddress,
Gauge32,
Integer32,
Unsigned32
FROM SNMPv2-SMI
MODULE-COMPLIANCE,
OBJECT-GROUP,
NOTIFICATION-GROUP
FROM SNMPv2-CONF
TEXTUAL-CONVENTION,
RowStatus,
DisplayString,
TruthValue,
MacAddress
FROM SNMPv2-TC
VlanIndex,
FROM Q-BRIDGE-MIB
UbiPortList,
UbiBridgeId
FROM UBQS-TC
ubiMgmtv2
FROM UBQS-SMI;
ubiDot1BridgeMIB MODULE-IDENTITY
LAST-UPDATED "200905260000Z"
ORGANIZATION "Ubiquoss Corp."
CONTACT-INFO
" Ubiquoss
Customer Service
Postal: 24F Milennium B/D,
467-12, Dogok-Dong,
GangNam-Gu, Seoul 135-270
Korea
Tel: 82-2-2190-3100"
DESCRIPTION
"The MIB module for entities implementing
the IEEE 802.1 management."
::= { ubiMgmtv2 5 }
-- *****************************************************************
-- Textual Conventions
-- *****************************************************************
VlanStpType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The type of the Spanning Tree Protocol (STP) running on
this VLAN."
SYNTAX INTEGER {
stp(1),
stp-vlan-bridge(2),
rstp(3),
rstp-vlan-bridge(4),
mstp(5),
provider-rstp(6),
provider-mstp(7),
rpvstExt(8) -- rpvst+
}
UbiVlanIntType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The type of the VLAN.
other(1),
backbone_p2p(2), -- backbone point to point
backbone_m2m(3), -- backbone multipoint to multipoint
customer(4),
service_p2p(5), -- service point to point
service_m2m(6) -- service multipoint to multipoint"
SYNTAX INTEGER {
other(1),
backbone_p2p(2), -- backbone point to point
backbone_m2m(3), -- backbone multipoint to multipoint
customer(4),
service_p2p(5), -- service point to point
service_m2m(6) -- service multipoint to multipoint
}
UbiVlanType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The type of the VLAN."
SYNTAX BITS
{
static(0),
dynamic(1),
cvlan(2),
svlan(3),
svlan_p2p(4),
svlan_m2m(5),
--PBB
bvlan(6),
bvlan_p2p(7),
bvlan_m2m(8),
-- PBB TE
tevlan(9),
auto(10)
}
UbiBridgeType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Indicates the component type(s) of this bridge. The
following component types are possible:
iComponent(1) - An S-VLAN aware component of a Backbone
Edge Bridge which performs encapsulation of customer
frames.
bComponent(2) - An S-VLAN aware component of a Backbone
Edge Bridge which bundles backbone service instances
into B-VLANs.
cVlanComponent(3) - A C-VLAN aware component of an
enterprise VLAN bridge or of a Provider Bridge used
to process C-tagged frames.
sVlanComponent(4) - An S-VLAN aware component of a
Provider Bridge.
dBridgeComponent(5) - A VLAN unaware component of an
802.1D bridge.
edgeComponent (6) - A C-VLAN or S-VLAN aware component of a
Provider Bridge."
SYNTAX INTEGER {
iComponent(1),
bComponent(2),
cVlanComponent(3), -- vlan bridge or provider edge bridge
sVlanComponent(4), -- provider bridge
dBridgeComponent(5),
edgeComponent(6), -- provider edge bridge
}
-- *****************************************************************
-- ubiDo1MIBObjects
-- *****************************************************************
ubiDot1BridgeMIBNotificationsPrefix OBJECT IDENTIFIER ::= { ubiDot1BridgeMIB 0 }
ubiVlanMIBObjects OBJECT IDENTIFIER ::= { ubiDot1BridgeMIB 1 }
ubiBridgeMIBObjects OBJECT IDENTIFIER ::= { ubiDot1BridgeMIB 2 }
ubiMacAddressTableMIBObjects OBJECT IDENTIFIER ::= { ubiDot1BridgeMIB 3 }
ubiDot1BridgeMIBConformance OBJECT IDENTIFIER ::= { ubiDot1BridgeMIB 10 }
-- *****************************************************************
-- ubiVlanMIBNotificationEnables
-- *****************************************************************
ubiVlanNotifications OBJECT IDENTIFIER ::= { ubiDot1BridgeMIBNotificationsPrefix 0 }
ubiVlanCreated NOTIFICATION-TYPE
OBJECTS { ubiVlanName }
STATUS current
DESCRIPTION
"A ubiVlanCreated notification is generated by a
device when a VLAN is created."
::= { ubiVlanNotifications 1 }
ubiVlanDeleted NOTIFICATION-TYPE
OBJECTS { ubiVlanName }
STATUS current
DESCRIPTION
"A ubiVlanDeleted notification is generated by a
device when a VLAN is deleted."
::= { ubiVlanNotifications 2 }
-- *****************************************************************
-- ubiFdbNotifications
-- *****************************************************************
ubiFdbNotifications OBJECT IDENTIFIER ::= { ubiDot1BridgeMIBNotificationsPrefix 1 }
ubiFdbAlarmAsserted NOTIFICATION-TYPE
OBJECTS { }
STATUS current
DESCRIPTION
"A ubiFdbAlarmAsserted notification is generated by a
device when the number of FDB entries exceeds high threshold."
::= { ubiFdbNotifications 1 }
ubiFdbAlarmCleared NOTIFICATION-TYPE
OBJECTS { }
STATUS current
DESCRIPTION
"A ubiFdbAlarmCleared notification is generated by a
device when the number of FDB entries meets low threshold."
::= { ubiFdbNotifications 2 }
-- *****************************************************************
-- ubiVlanMIBNotificationEnables
-- *****************************************************************
ubiVlanNotificationEnables OBJECT IDENTIFIER ::= { ubiVlanMIBObjects 1 }
ubiVlanCreateEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"An indication of whether the notification should
be generated when a VLAN is created.
If the value of this object is 'true' then the
vlanCreated notification will be generated.
If the value of this object is 'false' then the
vlanCreated notification will not be generated."
DEFVAL { false }
::= { ubiVlanNotificationEnables 1 }
ubiVlanDeleteEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"An indication of whether the notification should
be generated when a VLAN is deleted.
If the value of this object is 'true' then the
vlanDeleted notification will be generated.
If the value of this object is 'false' then the
vlanDeleted notification will not be generated."
DEFVAL { false }
::= { ubiVlanNotificationEnables 2 }
-- *****************************************************************
-- ubiVlanTable
-- *****************************************************************
ubiVlanTable OBJECT-TYPE
SYNTAX SEQUENCE OF UbiVlanEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains information on the VLANs which
currently exist."
::= { ubiVlanMIBObjects 2 }
ubiVlanEntry OBJECT-TYPE
SYNTAX UbiVlanEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information about one current VLAN."
INDEX { ubiVlanIndex }
::= { ubiVlanTable 1 }
UbiVlanEntry ::= SEQUENCE {
ubiVlanIndex VlanIndex,
ubiVlanIfIndex Integer32,
ubiVlanName DisplayString,
ubiVlanStatus INTEGER,
ubiVlanType UbiVlanType,
ubiVlanMtu Integer32,
ubiVlanStpType INTEGER,
ubiVlanRowStatus RowStatus
}
ubiVlanIndex OBJECT-TYPE
SYNTAX VlanIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The VLAN-id of this VLAN."
::= { ubiVlanEntry 1 }
ubiVlanIfIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of the ifIndex corresponding to
this VLAN-id."
::= { ubiVlanEntry 2 }
ubiVlanName OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..32))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The name of this VLAN."
::= { ubiVlanEntry 3 }
ubiVlanStatus OBJECT-TYPE
SYNTAX INTEGER
{
inactive(1),
active(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The current state of the VLAN."
DEFVAL { active }
::= { ubiVlanEntry 4 }
ubiVlanType OBJECT-TYPE
SYNTAX UbiVlanType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the type(s) of this vlan."
::= { ubiVlanEntry 5 }
ubiVlanMtu OBJECT-TYPE
SYNTAX Integer32 (1500..10218)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The MTU size on this VLAN."
DEFVAL { 1500 }
::= { ubiVlanEntry 6 }
ubiVlanStpType OBJECT-TYPE
SYNTAX VlanStpType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of the Spanning Tree Protocol (STP) running on
this VLAN.
STP Type:
stp(1),
stp-vlan-bridge(2),
rstp(3),
rstp-vlan-bridge(4),
mstp(5),
provider-rstp(6),
provider-mstp(7),
rpvstExt(8) -- rpvst+
"
::= { ubiVlanEntry 7 }
ubiVlanRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS deprecated
DESCRIPTION
"The status of Vlan row. This table is deprecated
by ubiVlanStaticTable."
::= { ubiVlanEntry 8 }
-- *****************************************************************
-- ubiVlanMembershipTable
-- *****************************************************************
ubiVlanMembershipTable OBJECT-TYPE
SYNTAX SEQUENCE OF UbiVlanMembershipEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table for configuring VLAN port membership.
There is one row for each bridge port."
::= { ubiVlanMIBObjects 3 }
ubiVlanMembershipEntry OBJECT-TYPE
SYNTAX UbiVlanMembershipEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry (conceptual row) in the ubiVlanMembershipTable."
INDEX { ubiVlanIndex }
::= { ubiVlanMembershipTable 1 }
UbiVlanMembershipEntry ::= SEQUENCE {
ubiVmMemberPorts UbiPortList
}
ubiVmMemberPorts OBJECT-TYPE
SYNTAX UbiPortList
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The set of the device's member ports that belong
to the VLAN. A bit is corresponding with the bridge port id."
::= { ubiVlanMembershipEntry 1 }
-- *****************************************************************
-- ubiVlanStaticTable (including vlanType)
-- *****************************************************************
ubiVlanStaticTable OBJECT-TYPE
SYNTAX SEQUENCE OF UbiVlanStaticEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table containing static configuration information for
each VLAN. This table contains vlan type for entry creatation
and encompasses the ubiVlanTable."
::= { ubiVlanMIBObjects 4 }
ubiVlanStaticEntry OBJECT-TYPE
SYNTAX UbiVlanStaticEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Static information for a VLAN configured into
the device by management."
INDEX { ubiVlanIndex }
::= { ubiVlanStaticTable 1 }
UbiVlanStaticEntry ::= SEQUENCE {
ubiVlanStaticBridgeId UbiBridgeId,
ubiVlanStaticVlanType UbiVlanIntType,
ubiVlanStaticAdditiveType BITS,
ubiVlanStaticRowStatus RowStatus,
}
ubiVlanStaticBridgeId OBJECT-TYPE
SYNTAX UbiBridgeId
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Indicates the bridge group id."
::= { ubiVlanStaticEntry 1 }
ubiVlanStaticVlanType OBJECT-TYPE
SYNTAX UbiVlanIntType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Indicates the type(s) of this vlan.
other(1)
backbone_p2p(2): backbone point to point
backbone_m2m(3): backbone multipoint to multipoint
customer(4)
service_p2p(5): service point to point
service_m2m(6): service multipoint to multipoint
"
::= { ubiVlanStaticEntry 2 }
ubiVlanStaticAdditiveType OBJECT-TYPE
SYNTAX BITS {
multicast(0)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Indicates the additive characteristic(s) for this vlan.
multicast(0) - Indicates a vlan has capability
for multicast traffic"
::= { ubiVlanStaticEntry 3 }
ubiVlanStaticRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of vlan row."
::= { ubiVlanStaticEntry 4 }
-- *****************************************************************
-- ubiBridgeTable
-- *****************************************************************
ubiBridgeTable OBJECT-TYPE
SYNTAX SEQUENCE OF UbiBridgeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table that contains generic information about
every bridge group."
::= { ubiBridgeMIBObjects 1 }
ubiBridgeEntry OBJECT-TYPE
SYNTAX UbiBridgeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of information for each bridge."
INDEX { ubiBridgeId }
::= { ubiBridgeTable 1 }
UbiBridgeEntry ::= SEQUENCE {
ubiBridgeId UbiBridgeId,
ubiBridgeProtocol UbiBridgeType,
ubiBridgeTopology INTEGER,
ubiBridgeAgeingTime Unsigned32,
ubiBridgeRowStatus RowStatus
}
ubiBridgeId OBJECT-TYPE
SYNTAX UbiBridgeId
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The component identifier is used to distinguish between
the multiple virtual bridge instances."
::= { ubiBridgeEntry 1 }
ubiBridgeProtocol OBJECT-TYPE
SYNTAX UbiBridgeType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Indicates the component type(s) of this bridge. The
following component types are possible:
iComponent(1) - An S-VLAN aware component of a Backbone
Edge Bridge which performs encapsulation of customer
frames.
bComponent(2) - An S-VLAN aware component of a Backbone
Edge Bridge which bundles backbone service instances
into B-VLANs.
cVlanComponent(3) - A C-VLAN aware component of an
enterprise VLAN bridge or of a Provider Bridge used
to process C-tagged frames.
sVlanComponent(4) - An S-VLAN aware component of a
Provider Bridge.
dBridgeComponent(5) - A VLAN unaware component of an
802.1D bridge.
edgeComponent (6) - A C-VLAN or S-VLAN aware component of a
Provider Bridge."
::= { ubiBridgeEntry 2 }
ubiBridgeTopology OBJECT-TYPE
SYNTAX INTEGER {
none(1),
ring(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Topology type of this bridge entry"
::= { ubiBridgeEntry 3 }
ubiBridgeAgeingTime OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Ageing time of this bridge entry"
::= { ubiBridgeEntry 4}
ubiBridgeRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of bridge row."
::= { ubiBridgeEntry 5 }
-- *****************************************************************
-- ubiBridgePortTable
-- *****************************************************************
ubiBridgePortTable OBJECT-TYPE
SYNTAX SEQUENCE OF UbiBridgePortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table that contains generic information about
every interface information of bridge group."
::= { ubiBridgeMIBObjects 2 }
ubiBridgePortEntry OBJECT-TYPE
SYNTAX UbiBridgePortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of interface information for each bridge"
INDEX { ubiBridgeId, ubiBridgePort }
::= { ubiBridgePortTable 1 }
UbiBridgePortEntry ::= SEQUENCE {
ubiBridgePort Integer32,
ubiBridgePortIfIndex Integer32,
ubiBridgePortName DisplayString,
ubiBridgePortStatus INTEGER
}
ubiBridgePort OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The port number of the port for which this entry
contains bridge management information."
::= { ubiBridgePortEntry 1 }
ubiBridgePortIfIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of the instance of the ifIndex object,
defined in IF-MIB, for the interface corresponding
to this port."
::= { ubiBridgePortEntry 2 }
ubiBridgePortName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A textual string containing information about this
port."
::= { ubiBridgePortEntry 3 }
ubiBridgePortStatus OBJECT-TYPE
SYNTAX INTEGER {
none(0),
disabled(1),
listening(2),
learning(3),
forwarding(4),
blocking(5),
discarding(6),
discarding-edge(7)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current status of the bridge port."
::= { ubiBridgePortEntry 4 }
-- *****************************************************************
-- ubiBridgeVlanTable
-- *****************************************************************
ubiBridgeVlanTable OBJECT-TYPE
SYNTAX SEQUENCE OF UbiBridgeVlanEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table that contains generic information about
every VLAN configuration of bridge group."
::= { ubiBridgeMIBObjects 3 }
ubiBridgeVlanEntry OBJECT-TYPE
SYNTAX UbiBridgeVlanEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information controlling VLAN configuration for bridge"
INDEX { ubiBridgeId, ubiVlanIndex }
::= { ubiBridgeVlanTable 1 }
UbiBridgeVlanEntry ::= SEQUENCE {
ubiBridgeVlanStatus INTEGER
}
ubiBridgeVlanStatus OBJECT-TYPE
SYNTAX INTEGER {
none(0),
up(1),
down(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current status of the VLAN"
::= { ubiBridgeVlanEntry 1 }
-- *****************************************************************
-- ubiMacAddressTableObjects
-- *****************************************************************
ubiMacAddressAgingTime OBJECT-TYPE
SYNTAX Integer32(10..600)
ACCESS read-write
STATUS current
DESCRIPTION
"aging-time of mac-address-table"
::= { ubiMacAddressTableMIBObjects 1 }
-- ubiMacTableListTable
ubiMacTableListTable OBJECT-TYPE
SYNTAX SEQUENCE OF UbiMacTableListEntry
ACCESS not-accessible
STATUS current
DESCRIPTION
"The static table of mac-address-table list entrys"
::= { ubiMacAddressTableMIBObjects 2 }
ubiMacTableListEntry OBJECT-TYPE
SYNTAX UbiMacTableListEntry
ACCESS not-accessible
STATUS current
DESCRIPTION
"The entry representing static mac-address-table list member"
INDEX
{
ubiMacTableAddress,
ubiMacTableIfindex,
ubiMacTableType,
ubiMacTableForward,
ubiMacTableVlanId
}
::= { ubiMacTableListTable 1 }
UbiMacTableListEntry ::= SEQUENCE {
ubiMacTableAddress MacAddress,
ubiMacTableIfindex Integer32,
ubiMacTableType INTEGER,
ubiMacTableForward INTEGER,
ubiMacTableVlanId Integer32,
ubiMacTableRowStatus RowStatus
}
ubiMacTableAddress OBJECT-TYPE
SYNTAX DisplayString(SIZE(1..6))
ACCESS read-only
STATUS current
DESCRIPTION
"mac address of static mac-address-table entry"
::= { ubiMacTableListEntry 1 }
ubiMacTableIfindex OBJECT-TYPE
SYNTAX Integer32
ACCESS read-only
STATUS current
DESCRIPTION
"interface name of static mac-address-table entry"
::= { ubiMacTableListEntry 2 }
ubiMacTableType OBJECT-TYPE
SYNTAX INTEGER
{
static(1)
-- dynamic(2),
-- multicast(3)
}
ACCESS read-only
STATUS current
DESCRIPTION
"type of static mac-address-type entry.
If create mac-address-table, type must be static"
::= { ubiMacTableListEntry 3 }
ubiMacTableForward OBJECT-TYPE
SYNTAX INTEGER
{
discard(0),
forward(1)
}
ACCESS read-only
STATUS current
DESCRIPTION
"forward state of static mac-address-table entry"
::= { ubiMacTableListEntry 4 }
ubiMacTableVlanId OBJECT-TYPE
SYNTAX Integer32(1..4094)
ACCESS read-only
STATUS current
DESCRIPTION
"vlan of static mac-address-table entry"
::= { ubiMacTableListEntry 5 }
ubiMacTableRowStatus OBJECT-TYPE
SYNTAX RowStatus
ACCESS read-create
STATUS current
DESCRIPTION
"row status, only static type"
::= { ubiMacTableListEntry 6 }
-- ubiMacTableCountTable
-- ubiMacTableVlanCountTable OBJECT-TYPE
-- SYNTAX SEQUENCE OF UbiMacTableVlanCountEntry
-- ACCESS not-accessible
-- STATUS current
-- DESCRIPTION
-- "The table of mac-address-table vlan count entry"
-- ::= { ubiMacAddressTableObjects 3 }
-- ubiMacTableVlanCountEntry OBJECT-TYPE
-- SYNTAX UbiMacTableVlanCountEntry
-- ACCESS not-accessible
-- STATUS current
-- DESCRIPTION
-- "The entry representing mac-address-table vlan count"
-- INDEX { vlanIndex }
-- ::= { ubiMacTableVlanCountTable 1 }
-- UbiMacTableVlanCountEntry ::= SEQUENCE {
-- ubiMacVlanDynamicCount Integer32,
-- ubiMacVlanStaticCount Integer32,
-- ubiMacVlanMulticastCount Integer32,
-- ubiMacVlanAvailTotal Integer32
-- }
-- ubiMacVlanDynamicCount OBJECT-TYPE
-- SYNTAX Integer32
-- ACCESS read-only
-- STATUS current
-- DESCRIPTION
-- "dynamic mac count of specific vlan"
-- ::= { ubiMacTableVlanCountEntry 1 }
-- ubiMacVlanStaticCount OBJECT-TYPE
-- SYNTAX Integer32
-- ACCESS read-only
-- STATUS current
-- DESCRIPTION
-- "static mac count of specific vlan"
-- ::= { ubiMacTableVlanCountEntry 2 }
-- ubiMacVlanMulticastCount OBJECT-TYPE
-- SYNTAX Integer32
-- ACCESS read-only
-- STATUS current
-- DESCRIPTION
-- "multicast mac count of specific vlan"
-- ::= { ubiMacTableVlanCountEntry 3 }
-- ubiClearMacTable
ubiClearMacTable OBJECT IDENTIFIER ::= { ubiMacAddressTableMIBObjects 3 }
ubiClearMacType OBJECT-TYPE
SYNTAX INTEGER
{
static(1),
dynamic(2),
multicast(3)
}
ACCESS read-write
STATUS current
DESCRIPTION
"type of mac-address-table list to be cleared"
::= { ubiClearMacTable 1 }
ubiClearMacAddress OBJECT-TYPE
SYNTAX DisplayString(SIZE(1..14))
ACCESS read-write
STATUS current
DESCRIPTION
"address of mac-address-table list to be cleared.
If this value is set,
ifindex and vlanId must not be set."
::= { ubiClearMacTable 2 }
ubiClearMacIfindex OBJECT-TYPE
SYNTAX Integer32
ACCESS read-write
STATUS current
DESCRIPTION
"ifindex of mac-address-table list to be cleared.
If this value is set,
macAddr and vlanId must not be set."
::= { ubiClearMacTable 3 }
ubiClearMacVlanId OBJECT-TYPE
SYNTAX Integer32(1..4094)
ACCESS read-write
STATUS current
DESCRIPTION
"vlan id of mac-address-table list to be cleared.
If this value is set,
macAddr and ifindex must not be set."
::= { ubiClearMacTable 4 }
ubiClearMacBridgeId OBJECT-TYPE
SYNTAX Integer32(1..32)
ACCESS read-write
STATUS current
DESCRIPTION
"bridge id of mac-address-table list to be cleared"
::= { ubiClearMacTable 5 }
ubiClearMacInstanceId OBJECT-TYPE
SYNTAX Integer32(1..63)
ACCESS read-write
STATUS current
DESCRIPTION
"instance id of mac-address-table list to be cleared.
before set this value, ifindex must be set."
::= { ubiClearMacTable 6 }
ubiClearMacExcute OBJECT-TYPE
SYNTAX INTEGER
{
none(0),
excute(1)
}
ACCESS read-write
STATUS current
DESCRIPTION
"value to control to clear mac-address-table"
::= { ubiClearMacTable 7 }
-- *****************************************************************
-- ubiMacTotalCount
-- *****************************************************************
ubiMacTotalCount OBJECT-TYPE
SYNTAX Integer32
ACCESS read-only
STATUS current
DESCRIPTION
"Total count of mac-address-table"
::= { ubiMacAddressTableMIBObjects 4 }
-- *****************************************************************
-- ubiDot1MIBConformance
-- *****************************************************************
-- Conformance Information
ubiDot1BridgeMIBCompliances OBJECT IDENTIFIER ::= { ubiDot1BridgeMIBConformance 1 }
ubiDot1BridgeMIBGroups OBJECT IDENTIFIER ::= { ubiDot1BridgeMIBConformance 2 }
-- compliance statements
ubiVlanMIBCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for DOT1 implementations."
MODULE -- this module
MANDATORY-GROUPS {
ubiVlanGroup,
ubiVlanNotifEnabledGroup,
}
::= { ubiDot1BridgeMIBCompliances 1 }
-- units of conformance
ubiVlanGroup OBJECT-GROUP
OBJECTS {
ubiVlanIndex,
ubiVlanIfIndex,
ubiVlanState,
ubiVlanType,
ubiVlanName,
ubiVlanMtu,
ubiVlanStpType,
ubiVlanRowStatus,
ubiVmMemberPorts
}
STATUS current
DESCRIPTION
"A collection of objects for the monitoring
VLAN information."
::= { ubiDot1BridgeMIBGroups 1 }
ubiVlanNotifEnabledGroup OBJECT-GROUP
OBJECTS {
ubiVlanCreatedNotifEnabled,
ubiVlanDeletedNotifEnabled
}
STATUS current
DESCRIPTION
"A collection of objects to indicate whether a
certain group of notifications are enabled."
::= { ubiDot1BridgeMIBGroups 2 }
ubiVlanStaticGroup OBJECT-GROUP
OBJECTS {
ubiVlanStaticBridgeId ,
ubiVlanStaticVlanType ,
ubiVlanStaticAdditiveType ,
ubiVlanStaticRowStatus
}
STATUS current
DESCRIPTION
"A collection of objects for VLAN creation with type."
::= { ubiDot1BridgeMIBGroups 3 }
-- compliance statements
ubiBridgeMIBCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for DOT1 implementations."
MODULE -- this module
MANDATORY-GROUPS {
ubiBridgeGroup,
ubiBridgePortGroup,
ubiBridgeVlanGroup
}
::= { ubiDot1BridgeMIBCompliances 2 }
-- units of conformance
ubiBridgeGroup OBJECT-GROUP
OBJECTS {
ubiBridgeId,
ubiBridgeProtocol,
ubiVlubiBridgeTopology,
ubiBridgeAgeingTime,
ubiBridgeRowStatus
}
STATUS current
DESCRIPTION
"A collection of objects for the bridge information."
::= { ubiDot1BridgeMIBGroups 4 }
ubiBridgePortGroup OBJECT-GROUP
OBJECTS {
ubiBridgePort ,
ubiBridgePortIfIndex ,
ubiBridgePortName ,
ubiBridgePortStatus
}
STATUS current
DESCRIPTION
"A collection of objects for the bridge port information."
::= { ubiDot1BridgeMIBGroups 5 }
ubiBridgeVlanGroup OBJECT-GROUP
OBJECTS {
ubiBridgeVlanStatus
}
STATUS current
DESCRIPTION
"A collection of objects for the bridge VLAN information."
::= { ubiDot1BridgeMIBGroups 6 }
END
|