summaryrefslogtreecommitdiff
path: root/MIBS/ubiquoss/UBIQUOSS-STP-MIB
blob: 0bbce936fd25125e560b154b817b8b4a69c24160 (plain)
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
-- *****************************************************************
-- UBIQUOSS-STP-MIB.mib:  
-- Ubiquoss Enterprise Filter Structure of Management Information
--
-- July 2006, Jisoo Kim
--
-- Copyright (c) 2006 by Ubiquoss, Corp.
-- All rights reserved.
-- 
-- *****************************************************************
--

UBIQUOSS-STP-MIB	DEFINITIONS ::= BEGIN
	IMPORTS
		ubiSysIndex
        FROM UBIQUOSS-SYSINFO-MIB

		DisplayString 
		FROM RFC1213-MIB

        BridgeId, Timeout			
		FROM BRIDGE-MIB	  
		
		RowStatus
		FROM SNMPv2-TC
                    
        ubiPortIndex
        FROM UBIQUOSS-INTERFACE-MIB   
        
        ubiVlanId         
        FROM UBIQUOSS-SWITCH-INTERFACE-MIB            
                
		ubiMgmt
		FROM UBQS-SMI;     

ubiStpMIB  MODULE-IDENTITY
	LAST-UPDATED "0607130000Z"
    ORGANIZATION "Ubiquoss Corp."
    CONTACT-INFO
        "Chair    :  Hyungeun Park
                     Ubiquoss Corp.
         Postal:     24F Milennium B/D,
		 	         467-12, Dogok-Dong,
					 GangNam-Gu, Seoul 135-270
					 Korea
         EMail:      jisoo@ubiquoss.com
         Phone:      +82-2-2190-3100

         Postal:     24F Milennium B/D,
		 	         467-12, Dogok-Dong,
					 GangNam-Gu, Seoul 135-270
					 Korea
         EMail:      paul@ubiquoss.com
         Phone:      +82-2-2190-3166"
    DESCRIPTION
        "This MIB module defines STP information" 
   	::= { ubiMgmt  21 }
   				
	ubiStpMIBObjects	OBJECT IDENTIFIER ::= { ubiStpMIB  1 }

-- ***********************************************************
-- uniStpTable
-- ***********************************************************	       
        
		ubiStpTable OBJECT IDENTIFIER ::= { ubiStpMIBObjects 1 }      
		
		stpInfoTable OBJECT-TYPE
			SYNTAX SEQUENCE OF StpInfoEntry
			MAX-ACCESS not-accessible
			STATUS current
			DESCRIPTION
				"Description."
			::= { ubiStpTable 1 }        
			
		stpInfoEntry OBJECT-TYPE
			SYNTAX StpInfoEntry
			MAX-ACCESS not-accessible
			STATUS current
			DESCRIPTION
				"Description."
			INDEX { ubiSysIndex  }
			::= { stpInfoTable 1 }
		
		StpInfoEntry ::=
			SEQUENCE { 
				stpModeConfig	INTEGER
			 }

		stpModeConfig OBJECT-TYPE
			SYNTAX INTEGER
				{
				disabled(0),
				stp(1),
				rstp(2),
				mstp(3),
				pvstp(4)
				}
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Description."
			::= { stpInfoEntry 1 }

-- ***********************************************************
-- stpExtPortConfigTable
-- ***********************************************************	 		
		stpExtPortConfigTable OBJECT-TYPE
			SYNTAX SEQUENCE OF StpExtPortConfigEntry
			MAX-ACCESS not-accessible
			STATUS current
			DESCRIPTION
				"Description."
			::= { ubiStpTable 2 }
		
		stpExtPortConfigEntry OBJECT-TYPE
			SYNTAX StpExtPortConfigEntry
			MAX-ACCESS not-accessible
			STATUS current
			DESCRIPTION
				"Description."
			INDEX {  ubiSysIndex, ubiPortIndex  }
			::= { stpExtPortConfigTable 1 }
		
		StpExtPortConfigEntry ::=
			SEQUENCE { 
				stpPortForceVersion
					INTEGER
			 }

		stpPortForceVersion OBJECT-TYPE
			SYNTAX INTEGER
				{
				stp(0),
				rstp(2),
				mstp(3)
				}
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Description."
			::= { stpExtPortConfigEntry 1 }    
			
-- ***********************************************************
-- mstp
-- ***********************************************************			
		mstp OBJECT IDENTIFIER ::= { ubiStpTable 3 }
		
		mstpInfoTable OBJECT-TYPE
			SYNTAX SEQUENCE OF MstpInfoEntry
			MAX-ACCESS not-accessible
			STATUS current
			DESCRIPTION
				"Description."
			::= { mstp 1 }
		
		mstpInfoEntry OBJECT-TYPE
			SYNTAX MstpInfoEntry
			MAX-ACCESS not-accessible
			STATUS current
			DESCRIPTION
				"Description."
			INDEX {  ubiSysIndex  }
			::= { mstpInfoTable 1 }
		
		MstpInfoEntry ::=
			SEQUENCE { 
				mstRegionName	    DisplayString,
				mstRevisionLevel    INTEGER,
				mstDigest           OCTET STRING,
				mstBridgeMaxHops	Integer32	
		   }
		
		mstRegionName OBJECT-TYPE
			SYNTAX DisplayString (SIZE (1..32))
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Description."
			::= { mstpInfoEntry 1 }
		
		mstRevisionLevel OBJECT-TYPE
			SYNTAX INTEGER (0..255)
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Description."
			::= { mstpInfoEntry 2 }
		
		mstDigest OBJECT-TYPE
			SYNTAX OCTET STRING (SIZE (0..16))
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Description."
			::= { mstpInfoEntry 3 }    
			
		mstBridgeMaxHops OBJECT-TYPE
			SYNTAX Integer32 (1..40)
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Description."
			::= { mstpInfoEntry 4 }
    
			
-- ***********************************************************
-- mstConfigTable
-- ***********************************************************			
		mstConfigTable OBJECT-TYPE
			SYNTAX SEQUENCE OF MstConfigEntry
			MAX-ACCESS not-accessible
			STATUS current
			DESCRIPTION
				"Description."
			::= { mstp 2 }
		
		mstConfigEntry OBJECT-TYPE
			SYNTAX MstConfigEntry
			MAX-ACCESS not-accessible
			STATUS current
			DESCRIPTION
				"Description."
			INDEX {  ubiSysIndex, mstConfigInstanceId, mstConfigVlanIndex }
			::= { mstConfigTable 1 }
		
		MstConfigEntry ::=
			SEQUENCE { 
				mstConfigInstanceId
					INTEGER,
				mstConfigVlanIndex
					INTEGER,
				mstConfigRowStatus
					RowStatus
			 }

		mstConfigInstanceId OBJECT-TYPE
			SYNTAX INTEGER (1..15)
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Description."
			::= { mstConfigEntry 1 }
		
		mstConfigVlanIndex OBJECT-TYPE
			SYNTAX INTEGER (1..4094)
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Description."
			::= { mstConfigEntry 2 }
		
	
		mstConfigRowStatus OBJECT-TYPE
			SYNTAX RowStatus
			MAX-ACCESS read-create
			STATUS current
			DESCRIPTION
				"Description."
			::= { mstConfigEntry 3 }        
			
-- ***********************************************************
-- mstiTable
-- ***********************************************************			
		mstiTable OBJECT-TYPE
			SYNTAX SEQUENCE OF MstiEntry
			MAX-ACCESS not-accessible
			STATUS current
			DESCRIPTION
				"Description."
			::= { mstp 3 }
		
		mstiEntry OBJECT-TYPE
			SYNTAX MstiEntry
			MAX-ACCESS not-accessible
			STATUS current
			DESCRIPTION
				"Description."
			INDEX {  ubiSysIndex, mstConfigInstanceId }
			::= { mstiTable 1 }
		
		MstiEntry ::=
			SEQUENCE { 
				mstiPriority
					INTEGER,
				mstiRootCost
					Integer32,
				mstiRootPort
					Integer32,
				mstiRoot
					BridgeId,
				mstiBridge
					BridgeId
			 }

		mstiPriority OBJECT-TYPE
			SYNTAX INTEGER (0..61440)
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"A value which multiple of 4096 is only valid. "
			::= { mstiEntry 1 }

		mstiRootCost OBJECT-TYPE
			SYNTAX Integer32
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Description."
			::= { mstiEntry 2 }
		
		mstiRootPort OBJECT-TYPE
			SYNTAX Integer32
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Description."
			::= { mstiEntry 3 }
		
		mstiRoot OBJECT-TYPE
			SYNTAX BridgeId
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Description."
			::= { mstiEntry 4 }
		
		mstiBridge OBJECT-TYPE
			SYNTAX BridgeId
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Description."
			::= { mstiEntry 5 }       
			
-- ***********************************************************
-- mstiPortTable
-- ***********************************************************		
		mstiPortTable OBJECT-TYPE
			SYNTAX SEQUENCE OF MstiPortEntry
			MAX-ACCESS not-accessible
			STATUS current
			DESCRIPTION
				"Description."
			::= { mstp 4 }
		
		mstiPortEntry OBJECT-TYPE
			SYNTAX MstiPortEntry
			MAX-ACCESS not-accessible
			STATUS current
			DESCRIPTION
				"Description."
			INDEX { ubiSysIndex, mstConfigInstanceId, ubiPortIndex }
			::= { mstiPortTable 1 }
		
		MstiPortEntry ::=
			SEQUENCE { 
				mstiPortId
					OCTET STRING,
				mstiPortPathCost
					Integer32,
				mstiPortPriority
					INTEGER,
				mstiPortRole
					INTEGER,
				mstiPortState
					INTEGER,
				mstiPortDesignatedPathCost
					Integer32,
				mstiPortDesignatedPort
					OCTET STRING,
				mstiPortDesignatedRoot
					BridgeId,
				mstiPortDesignatedBridge
					BridgeId,
				mstiPortConfigRowStatus
					RowStatus
			 }

		mstiPortId OBJECT-TYPE
			SYNTAX OCTET STRING (SIZE (2))
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Description."
			::= { mstiPortEntry 1 }
		
		mstiPortPathCost OBJECT-TYPE
			SYNTAX Integer32 (1..200000000)
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Description."
			::= { mstiPortEntry 2 }
		
		mstiPortPriority OBJECT-TYPE
			SYNTAX INTEGER (0..240)
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"A value which multiple of 16 is valid."
			::= { mstiPortEntry 3 }
		
		mstiPortRole OBJECT-TYPE
			SYNTAX INTEGER
				{
				masterport(1),
				alternate(2),
				rootport(3),
				designated(4),
				disabled(5),
				backup(6)
				}
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Description."
			::= { mstiPortEntry 4 }
		
		mstiPortState OBJECT-TYPE
			SYNTAX INTEGER
				{
				disabled(1),
				blocking(2),
				listening(3),
				learning(4),
				forwarding(5),
				broken(6)
				}
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Description."
			::= { mstiPortEntry 5 }

		mstiPortDesignatedPathCost OBJECT-TYPE
			SYNTAX Integer32
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Description."
			::= { mstiPortEntry 6 }
		
		mstiPortDesignatedPort OBJECT-TYPE
			SYNTAX OCTET STRING (SIZE (1..2))
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Description."
			::= { mstiPortEntry 7 }
		
		mstiPortDesignatedRoot OBJECT-TYPE
			SYNTAX BridgeId
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Description."
			::= { mstiPortEntry 8 }
		
		mstiPortDesignatedBridge OBJECT-TYPE
			SYNTAX BridgeId
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Description."
			::= { mstiPortEntry 9 }
		
		mstiPortConfigRowStatus OBJECT-TYPE
			SYNTAX RowStatus
			MAX-ACCESS read-create
			STATUS current
			DESCRIPTION
				"Description."
			::= { mstiPortEntry 10 }
		
-- ***********************************************************
-- pvstp
-- ***********************************************************
		pvstp OBJECT IDENTIFIER ::= { ubiStpTable 4 }

		pvStpTable OBJECT-TYPE
			SYNTAX SEQUENCE OF PvStpEntry
			MAX-ACCESS not-accessible
			STATUS current
			DESCRIPTION
				"Description."
			::= { pvstp 1 }
		
		pvStpEntry OBJECT-TYPE
			SYNTAX PvStpEntry
			MAX-ACCESS not-accessible
			STATUS current
			DESCRIPTION
				"Description."
			INDEX {  ubiSysIndex, ubiVlanId }
			::= { pvStpTable 1 }
		
		PvStpEntry ::=
			SEQUENCE { 
				pvStpPriority
					INTEGER,
				pvStpTimeSinceTopologyChange
					TimeTicks,
				pvStpTopChanges
					Counter32,
				pvStpDesignatedRoot
					BridgeId,
				pvStpRootCost
					Integer32,
				pvStpRootPort
					Integer32,
				pvStpMaxAge
					Timeout,
				pvStpHelloTime
					Timeout,
				pvStpHoldTime
					Integer32,
				pvStpForwardDelay
					Timeout,
				pvStpBridgeMaxAge
					Timeout,
				pvStpBridgeHelloTime
					Timeout,
				pvStpBridgeForwardDelay
					Timeout,
				pvStpBridgeRowStatus
					RowStatus
			 }
		
		pvStpPriority OBJECT-TYPE
			SYNTAX INTEGER (0..61440)
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"A value which multiple of 4096 is only valid."
			::= { pvStpEntry 1 }
		
		pvStpTimeSinceTopologyChange OBJECT-TYPE
			SYNTAX TimeTicks
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Description."
			::= { pvStpEntry 2 }
		
		pvStpTopChanges OBJECT-TYPE
			SYNTAX Counter32
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Description."
			::= { pvStpEntry 3 }
		
		pvStpDesignatedRoot OBJECT-TYPE
			SYNTAX BridgeId
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Description."
			::= { pvStpEntry 4 }
		
		pvStpRootCost OBJECT-TYPE
			SYNTAX Integer32
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Description."
			::= { pvStpEntry 5 }
		
		pvStpRootPort OBJECT-TYPE
			SYNTAX Integer32
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Description."
			::= { pvStpEntry 6 }
		
		pvStpMaxAge OBJECT-TYPE
			SYNTAX Timeout
			UNITS "centi-seconds"
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Description."
			::= { pvStpEntry 7 }
		
		pvStpHelloTime OBJECT-TYPE
			SYNTAX Timeout
			UNITS "centi-seconds"
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Description."
			::= { pvStpEntry 8 }
		
		pvStpHoldTime OBJECT-TYPE
			SYNTAX Integer32
			UNITS "centi-seconds"
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Description."
			::= { pvStpEntry 9 }
		

		pvStpForwardDelay OBJECT-TYPE
			SYNTAX Timeout
			UNITS "centi-seconds"
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Description."
			::= { pvStpEntry 10 }
		
		pvStpBridgeMaxAge OBJECT-TYPE
			SYNTAX Timeout (600..4000)
			UNITS "centi-seconds"
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Description."
			::= { pvStpEntry 11 }
		
		pvStpBridgeHelloTime OBJECT-TYPE
			SYNTAX Timeout (100..1000)
			UNITS "centi-seconds"
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Description."
			::= { pvStpEntry 12 }
		
		pvStpBridgeForwardDelay OBJECT-TYPE
			SYNTAX Timeout (400..3000)
			UNITS "centi-seconds"
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Description."
			::= { pvStpEntry 13 }

		pvStpBridgeRowStatus OBJECT-TYPE
			SYNTAX RowStatus
			MAX-ACCESS read-create
			STATUS current
			DESCRIPTION
				"Description."
			::= { pvStpEntry 14 }


-- ***********************************************************
-- pvStpPortTable 
-- ***********************************************************
		
		pvStpPortTable OBJECT-TYPE
			SYNTAX SEQUENCE OF PvStpPortEntry
			MAX-ACCESS not-accessible
			STATUS current
			DESCRIPTION
				"Description."
			::= { pvstp 2 }
		
		pvStpPortEntry OBJECT-TYPE
			SYNTAX PvStpPortEntry
			MAX-ACCESS not-accessible
			STATUS current
			DESCRIPTION
				"Description."
			INDEX {  ubiSysIndex, pvStpVlanId, ubiPortIndex, 
					  pvStpPortPriority, pvStpPortPathCost }
			::= { pvStpPortTable 1 }
		
		PvStpPortEntry ::=
			SEQUENCE {    
				pvStpVlanId
					Integer32,
				pvStpPortPriority
					INTEGER,
				pvStpPortState
					INTEGER,
				pvStpPortEnable
					INTEGER,
				pvStpPortPathCost
					Integer32,
				pvStpPortDesignatedRoot
					BridgeId,
				pvStpPortDesignatedCost
					Integer32,
				pvStpPortDesignatedBridge
					BridgeId,
				pvStpPortDesignatedPort
					OCTET STRING,
				pvStpPortForwardTransitions
					Counter32,
				pvStpPortRowStatus
					INTEGER
			 }    


		pvStpVlanId OBJECT-TYPE
			SYNTAX Integer32
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Description."
			::= { pvStpPortEntry 1 }


		pvStpPortPriority OBJECT-TYPE
			SYNTAX INTEGER (0..240)
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"A value which multiple of 16 is valid."
			::= { pvStpPortEntry 2 }
		
		pvStpPortState OBJECT-TYPE
			SYNTAX INTEGER
				{
				disabled(1),
				blocking(2),
				listening(3),
				learning(4),
				forwarding(5),
				broken(6)
				}
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Description."
			::= { pvStpPortEntry 3 }
		
		pvStpPortEnable OBJECT-TYPE
			SYNTAX INTEGER
				{
				enabled(1),
				disabled(2)
				}
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Description."
			::= { pvStpPortEntry 4 }
		
		pvStpPortPathCost OBJECT-TYPE
			SYNTAX Integer32 (1..200000000)
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Description."
			::= { pvStpPortEntry 5 }
		
		pvStpPortDesignatedRoot OBJECT-TYPE
			SYNTAX BridgeId
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Description."
			::= { pvStpPortEntry 6 }
		
		pvStpPortDesignatedCost OBJECT-TYPE
			SYNTAX Integer32
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Description."
			::= { pvStpPortEntry 7 }
		
		pvStpPortDesignatedBridge OBJECT-TYPE
			SYNTAX BridgeId
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Description."
			::= { pvStpPortEntry 8 }

		pvStpPortDesignatedPort OBJECT-TYPE
			SYNTAX OCTET STRING (SIZE (2))
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Description."
			::= { pvStpPortEntry 9 }
		
		pvStpPortForwardTransitions OBJECT-TYPE
			SYNTAX Counter32
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Description."
			::= { pvStpPortEntry 10 }       


		pvStpPortRowStatus OBJECT-TYPE
			SYNTAX RowStatus
			MAX-ACCESS read-create
			STATUS current
			DESCRIPTION
				"Description."
			::= { pvStpPortEntry 11 }

		
-- ***********************************************************
-- pvStpConfigTable 
-- ***********************************************************

		pvStpConfigTable OBJECT-TYPE
			SYNTAX SEQUENCE OF PvStpConfigEntry
			MAX-ACCESS not-accessible
			STATUS current
			DESCRIPTION
				"Description."
			::= { pvstp 3 }
		
		pvStpConfigEntry OBJECT-TYPE
			SYNTAX PvStpConfigEntry
			MAX-ACCESS not-accessible
			STATUS current
			DESCRIPTION
				"Description."
			INDEX {  ubiSysIndex, pvStpConfigVlanIndex }
			::= { pvStpConfigTable 1 }
		
		PvStpConfigEntry ::=
			SEQUENCE { 
				pvStpConfigVlanIndex
					INTEGER,
				pvStpConfigInstanceId
					INTEGER,
				pvStpConfigRowStatus
					RowStatus
			 }

		pvStpConfigVlanIndex OBJECT-TYPE
			SYNTAX INTEGER (2..4093)
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Description."
			::= { pvStpConfigEntry 1 }
		
		pvStpConfigInstanceId OBJECT-TYPE
			SYNTAX INTEGER (2..200)
			MAX-ACCESS read-create
			STATUS current
			DESCRIPTION
				"Description."
			::= { pvStpConfigEntry 2 }
		
		pvStpConfigRowStatus OBJECT-TYPE
			SYNTAX RowStatus
			MAX-ACCESS read-create
			STATUS current
			DESCRIPTION
				"Description."
			::= { pvStpConfigEntry 3 }   
			                             
-- ***********************************************************
-- ubiSldPortTable (Self-Loop-Detection)
-- ***********************************************************
	ubiSldTable OBJECT IDENTIFIER ::= { ubiStpMIBObjects 2 }   

	ubiSldPortTable OBJECT-TYPE
		SYNTAX  SEQUENCE OF UbiSldPortEntry
		ACCESS  not-accessible
		STATUS  current
		DESCRIPTION
			"Self-loop-detection Table"
		::= { ubiSldTable 1 }
              
	ubiSldPortEntry OBJECT-TYPE
		SYNTAX  UbiSldPortEntry
		ACCESS  not-accessible
		STATUS  current
		DESCRIPTION
			"Self-loop-detection Table"
		INDEX   { ubiSysIndex, ubiPortIndex }
		::= { ubiSldPortTable 1 }

	UbiSldPortEntry  ::=
		SEQUENCE {         
			ubiSldPortEnable
				INTEGER
		}
		
		
	ubiSldPortEnable OBJECT-TYPE
	SYNTAX INTEGER  
	{
		disable (0),
		enable (1)
	}
	MAX-ACCESS read-write
	STATUS current
	DESCRIPTION
		"Enable or Disable self-loop-detection for interface index"
	::= { ubiSldPortEntry 1 }  
                 
-- ***********************************************************
-- ubiSldPortTable (Self-Loop-Detection)
-- ***********************************************************
	ubiSldVlanTable OBJECT-TYPE
		SYNTAX  SEQUENCE OF UbiSldVlanEntry
		ACCESS  not-accessible
		STATUS  current
		DESCRIPTION
			"Self-loop-detection Table"
		::= { ubiSldTable 2 }
              
	ubiSldVlanEntry OBJECT-TYPE
		SYNTAX  UbiSldVlanEntry
		ACCESS  not-accessible
		STATUS  current
		DESCRIPTION
			"Self-loop-detection Table"
		INDEX   { ubiSysIndex, ubiVlanId }
		::= { ubiSldVlanTable 1 }

	UbiSldVlanEntry  ::=
		SEQUENCE {         
			ubiSldVlanEnable
				INTEGER
		}

	ubiSldVlanEnable OBJECT-TYPE
		SYNTAX INTEGER
		{
			disable (0),
			enable (1)
		}
	
		MAX-ACCESS read-write
		STATUS current
		DESCRIPTION
			"Enable or Disable self-loop-detection for vlan"
		::= { ubiSldVlanEntry 1 }              
					                        
			                             
-- ***********************************************************
-- 
-- ***********************************************************	
-- the following two OBJECT IDENTIFIERS are used to define SNMPv2 Notifications
-- that are backward compatible with SNMPv1 Traps.
ubiStpMIBNotificationPrefix OBJECT IDENTIFIER ::= { ubiStpMIBObjects 3 }
ubiStpMIBNotifications OBJECT IDENTIFIER ::= { ubiStpMIBNotificationPrefix 0 }
                         
-- conformance information

ubiStpMIBConformance OBJECT IDENTIFIER ::= { ubiStpMIBObjects 4 }
ubiStpMIBCompliances OBJECT IDENTIFIER ::= { ubiStpMIBConformance 1 }
ubiStpMIBGroups      OBJECT IDENTIFIER ::= { ubiStpMIBConformance 2 }
ubiSldMIBGroups      OBJECT IDENTIFIER ::= { ubiStpMIBConformance 3 }


-- compliance statements
ubiStpMIBCompliance MODULE-COMPLIANCE
        STATUS  current
        DESCRIPTION
                "The compliance statement for entities which implement
                the ubiquoss port MIB."
        MODULE  -- this module
                MANDATORY-GROUPS { 
                	ubiStpMIBGroup,
                	ubiSldMIBGroup	
                                  }

        GROUP   ubiStpMIBGroup
        DESCRIPTION
                "This group is applicable for implementations which
                 need information for stp protocol."   
        GROUP   ubiSldMIBGroup
        DESCRIPTION
                "This group is applicable for implementations which
                 need information for self-loop-detection"         
                                 
        ::= { ubiStpMIBCompliances 1 }

-- ports of conformance
ubiStpMIBGroup OBJECT-GROUP
        OBJECTS {
        	stpModeConfig,
        	stpPortForceVersion
        }
        STATUS  current
        DESCRIPTION
                ""
        ::= { ubiStpMIBGroups 1 }
-- ports of conformance
ubiSldMIBGroup OBJECT-GROUP
        OBJECTS {
        	stpModeConfig,
        	stpPortForceVersion
        }
        STATUS  current
        DESCRIPTION
                ""
        ::= { ubiSldMIBGroups 1 }
        
 

END