forked from kcsinclair/mibs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ALTEON-CS-PHYSICAL-MIB
3398 lines (3024 loc) · 98.6 KB
/
ALTEON-CS-PHYSICAL-MIB
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
-- COPYRIGHT NOTICE
-- Copyright (c) Nortel Networks, 2004
-- All rights reserved
--
-- HISTORY
-- $Log: aosphysical.mib,v $
-- Revision 1.1 2007/10/17 01:09:54 jeneric
-- 10/07 mib updates
--
-- Revision submit_cheetah_18020/1 2006/04/08 13:51:32 rvakkala
-- Fixed Q01310786 Adde support for /i/l2/team.
--
-- Revision submit_cheetah_16636/1 2006/01/10 04:46:36 rvakkala
-- Deleted flag which is bounded to stpInfoPortState discard vlaue.
--
-- Revision submit_cheetah_16394/1 2005/12/05 18:37:27 bshao
-- CR 1223294: Dynamically compile out MIB objects that are
-- not applicable to the product.
--
-- Revision submit_cheetah_15706/2 2005/11/22 06:59:53 rvakkala
-- Fixed CRQ01218971 stpInfoPortState MIB does not have
-- discarding value.
--
-- Revision submit_cheetah_15676/1 2005/11/11 13:53:06 rvakkala
-- Fixed CRQ01242511 stgNewCfgPortPathCost MIB cannot set value
-- more than 65535.
--
-- Revision submit_cheetah_15706/1 2005/11/22 06:47:22 rvakkala
-- Fixed CRQ01218971 stpInfoPortState MIB does not
-- have discarding value
--
-- Revision submit_cheetah_13965/1 2005/09/20 05:34:53 angamuth
-- Added MIBs port role, link type and edge type in stpInfo
-- for RSTP mode.
--
-- Revision submit_cheetah_13814/1 2005/08/17 04:43:58 joju
-- Revert fixes for Q01011874-01,Q01011868-01.
--
-- Revision submit_cheetah_13639/2 2005/08/12 07:24:25 joju
-- Merged with others.
--
-- Revision submit_cheetah_13685/1 2005/08/11 19:08:50 rrekha
-- More cleanup of excludes from the Makefile. Moved them
-- to #if defines in the corresponding *.ctl_raw and *.mib_raw files.
--
-- Revision submit_cheetah_13639/1 2005/08/12 07:15:15 joju
-- SUBMIT DESCRIPTION: Change range from (1..65535) to (0..65535) for commands
-- /cfg/l2/lacp/sysprio
-- /cfg/l2/lacp/port/prio
-- /c/l2/mrst/version
--
-- Revision submit_cheetah_13563/1 2005/08/05 17:39:30 rrekha
-- Moved all the BWM related flags into the raw files.
--
-- Revision submit_cheetah_11345/1 2005/03/30 02:30:15 rrekha
-- Remove the range for the VlanID since it defers in
-- Cheetah/Elmo/Zoe. Added a new MIB variable vlanMaxVlanID which
-- will give the max. value for the VLAN ID.
--
-- Revision submit_cheetah_11335/1 2005/03/29 21:28:59 yatsze
-- Add MIB for PORT_TEAM
--
-- Revision submit_cheetah_11294/1 2005/03/28 20:37:30 yatsze
-- Add portTeamCfg objects
--
-- Revision submit_cheetah_10834/1 2005/02/08 11:51:23 dillibab
-- Added SNMP support for VLAN Info.
--
-- Revision submit_cheetah_10393/1 2005/01/05 21:01:32 mmacnt
-- code reorg - moved from lib/agent
--
-- Revision submit_cheetah_10219/1 2004/11/16 18:45:44 dillibab
-- Added SNMP objects to configure STP Port Link Type and Edge State.
--
-- Revision submit_cheetah_10162/1 2004/11/10 18:49:52 bshao
-- CR 1016054: Changed VLAN range to 0..4095.
--
-- Revision submit_cheetah_10075/1 2004/11/04 18:53:25 bshao
-- CR 1016467: Changed CIST port priority in SNMP/BBI to
-- 0 - 240.
--
-- Revision submit_cheetah_10051/1 2004/11/03 01:29:32 bshao
-- Cr 1016469: Changed mst___CfgMaxHopCount to range from
-- 4 .. 60
--
-- Revision submit_cheetah_9239/1 2004/09/08 00:44:56 rrekha
-- Cleanup L2 related flags.
--
-- Revision submit_cheetah_9196/1 2004/09/01 21:43:12 rrekha
-- Minor changes for SMIv2 compliance.
--
-- Revision submit_cheetah_8623/1 2004/08/03 18:43:22 rrekha
-- Moved QOS configuration to a new mib.
--
-- Revision submit_cheetah_8578/1 2004/07/30 00:36:28 rrekha
-- Update the copyright header.
--
-- Revision submit_cheetah_8500/1 2004/07/26 21:40:38 rrekha
-- Added ZOE related mibs from /src/bert/lib/agent directory.
--
-- Revision submit_cheetah_8441/1 2004/07/20 23:36:24 vprayaga
-- Added description for lacpInfoPortTable MIB objects.
--
-- Revision submit_cheetah_8294/1 2004/07/13 22:47:08 rrekha
-- Obsoleted stgCurCfgVlanBmap1, stgCurCfgVlanBmap2, stgNewCfgVlanBmap1
-- and stgNewCfgVlanBmap2.
-- Obosleted pmCurCfgPmirrPortVlansBmap1, pmCurCfgPmirrPortVlansBmap2,
-- pmNewCfgPmirrPortVlansBmap1 and pmNewCfgPmirrPortVlansBmap2.
--
-- Revision submit_cheetah_8277/1 2004/07/12 14:57:33 rrekha
-- Fixed Q00944149: Add lacpPortInfoTable for missing information.
--
-- Revision submit_cheetah_7777/2 2004/06/15 15:08:48 dillibab
-- Merged with previous changes.
--
-- Revision submit_cheetah_7748/1 2004/06/10 17:35:41 rrekha
-- Fixed Q00923538: Correct range for lacpur/NewCfgSystemPriority.
-- Fixed Q00923594: Correct range for lacpCur/NewCfgPortActorAdminKey.
-- Fixed Q00923600: Correct range for lacpCur/NewCfgPortActorPortPriority.
--
-- Revision submit_cheetah_7777/1 2004/06/15 09:16:21 dillibab
-- Added SNMP object for STP Statistics.
--
-- Revision submit_cheetah_7576/1 2004/05/27 10:16:49 dillibab
-- Added new vlan bitmap object to represent splitted vlan bitmaps into single object.
--
-- Revision submit_cheetah_5917/1 2003/12/12 21:55:35 rmundhra
-- Porting SNMP/BBI support for Elmo Trunk Hash from
-- elmof_1.0.0.0int branch.
--
-- Revision submit_cheetah_5822/1 2003/12/09 03:03:21 dleu
-- Q00789469: changed the term "Teaming" to "Failover".
-- For Elmo only.
--
-- Revision submit_cheetah_5841/1 2003/12/05 22:58:08 rrekha
-- Converted MIBs to SMIv2.
--
-- Revision submit_cheetah_5311/1 2003/10/17 00:03:02 dleu
-- Added SNMP/WebUI support for ELMO_TEAMING_TRUNK.
--
-- Revision submit_cheetah_5363/1 2003/10/16 02:01:47 vprayaga
-- Added Cur and New MIBs for lacp group.
--
-- Revision submit_cheetah_5342/1 2003/10/15 03:28:55 vprayaga
-- Added private MIBs for LACP feature.
--
-- Revision submit_cheetah_4435/1 2003/08/12 22:59:54 rrekha
-- Changed name of mib file for cheetah*.mib to aos*.mib.
--
-- Revision submit_cheetah_3099/1 2003/05/13 14:17:49 yatsze
-- Add new object fdbSrcTrunk
--
-- Revision submit_cheetah_2843/1 2003/04/29 00:26:51 vprayaga
-- Corrected description of port mirroring features mib elements.
--
-- Revision submit_cheetah_2825/1 2003/04/28 22:07:24 vprayaga
-- Updated CFG_STATIC_ARP/port mirroring mibs as per
-- wendell suggestions.
--
-- Revision submit_cheetah_2813/1 2003/04/26 02:47:30 vprayaga
-- Added SNMP support for VLAN traffic mirroring per port.
--
-- Revision submit_cheetah_2784/1 2003/04/24 20:33:09 yuhuang
-- Added MIB objects vlanCurCfgLearn and vlanNewCfgLearn for the
-- VLAN source mac learning control.
--
-- Revision submit_cheetah_2695/1 2003/04/18 21:36:16 rrekha
-- Added object stpInfoPortPathCost.
--
-- Revision submit_cheetah_2494/3 2003/04/02 21:56:10 mp1
-- added Jumbo access
--
-- Revision submit_cheetah_2488/1 2003/04/02 20:00:42 rrekha
-- Added stpInfoTable and stpInfoPortTable in private MIB since
-- with SNMPv3 the standard mibs cannot be used as they do not support
-- multiple STPs.
--
-- Revision submit_cheetah_2476/1 2003/04/02 00:29:31 rrekha
-- Since SNMPv3 does not use community strings which was used
-- to specify the STP number previously added private mibs for
-- STP configuration as RFC 1493 does not provide for configuration
-- of multiple STPs. With this change using SNMPv3 the RFC mibs
-- will always return only the STP 1 configuration.
--
-- Revision submit_cheetah_1919/1 2003/02/05 20:05:58 rrekha
-- Changed the include paths for integrating support
-- for SNMP V3 Windmanage Stack.
--
-- Revision submit_cheetah_1583/1 2002/11/27 00:14:04 rmundhra
-- Fixed CR Q00570451: EMS: Monitor>Bridge>Fwd database
-- shows different SP than telnet.
--
-- Revision submit_cheetah_1573/1 2002/11/26 18:15:22 rmundhra
-- Modified the range for vlan entries to be 4090
-- for Cheetah switches as the other 4 entries are
-- going to be used internally.
--
-- Revision submit_cheetah_1546/1 2002/11/21 01:04:10 rrekha
-- Fixed Q00546520 : Added FDB table in the private mib since
-- the standard mib table dot1dTpFdbTable does not have all the
-- columns.
--
-- Revision submit_cheetah_1109/1 2002/10/02 23:32:30 rrekha
-- Fixed Q00533514: Added MIB object fdbClear to clear the
-- FDB.
--
-- Revision submit_cheetah_217/1 2002/06/26 20:27:30 rrekha
-- Modified some of the incorrect ranges. Also removed ranges
-- for table indices as these should be obtained from the max
-- table sizes. Fixed typos in BGP mibs.
--
-- Revision submit_cheetah_20/1 2002/06/06 23:11:02 mmacnt
-- testing submit
--
-- Revision submit_cheetah_13/1 2002/06/06 22:56:43 rrekha
-- Correct description for fdbStatsFinds.
--
-- Revision ch_1_0_0_dev/4 2002/06/04 21:48:06 rrekha
-- Added MIB objects for FDB statistics.
--
-- Revision ch_1_0_0_dev/3 2002/04/23 21:47:11 smiao
-- Renamed node cheetah to aws-switches.
--
-- Revision ch_1_0_0_dev/2 2002/03/19 04:51:30 smiao
-- Removed port mirroring operation for SNMP and webUI.
--
-- Revision ch_1_0_0_dev/1 2002/03/07 19:01:55 smiao
-- Removed unnecssary MIB objects for CHEEATH.
--
-- Revision ch10latest_smiao/2 2002/02/13 01:41:24 smiao
-- Initial checked in for cheetah MIB files.
--
-- $EndLog$
--
ALTEON-CS-PHYSICAL-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, Integer32, Counter32, Gauge32, TimeTicks
FROM SNMPv2-SMI
DisplayString, PhysAddress
FROM SNMPv2-TC
aws-switch
FROM ALTEON-ROOT-MIB;
layer2 MODULE-IDENTITY
LAST-UPDATED "200409010000Z" -- 1 September, 2004
ORGANIZATION "Nortel Networks"
CONTACT-INFO "Rekha Singamsetty
Suresh Batchu
Nortel Networks
4655 Great America Parkway
Santa Clara CA 95054
+1 408 495 2400
DESCRIPTION
"The MIB module for the Alteon OS Layer2 configuration, statistics and
information ."
REVISION "200409010000Z" -- 1 September, 2004
DESCRIPTION
"Added revision clause for SMIv2 compliance."
::= { aws-switch 2 }
BridgeId ::= OCTET STRING (SIZE (8))
layer2Configs OBJECT IDENTIFIER ::= { layer2 1 }
layer2Stats OBJECT IDENTIFIER ::= { layer2 2 }
layer2Info OBJECT IDENTIFIER ::= { layer2 3 }
layer2Oper OBJECT IDENTIFIER ::= { layer2 4 }
vlan OBJECT IDENTIFIER ::= { layer2Configs 1 }
trunkgroup OBJECT IDENTIFIER ::= { layer2Configs 2 }
stgCfg OBJECT IDENTIFIER ::= { layer2Configs 3 }
mirroring OBJECT IDENTIFIER ::= { layer2Configs 4 }
lacp OBJECT IDENTIFIER ::= { layer2Configs 5 }
mstCfg OBJECT IDENTIFIER ::= { layer2Configs 7 }
portTeamCfg OBJECT IDENTIFIER ::= { layer2Configs 9 }
mirrPortMirr OBJECT IDENTIFIER ::= { mirroring 1 }
mstGeneralCfg OBJECT IDENTIFIER ::= { mstCfg 1 }
mstCistCfg OBJECT IDENTIFIER ::= { mstCfg 2 }
fdbStats OBJECT IDENTIFIER ::= { layer2Stats 1 }
stpStats OBJECT IDENTIFIER ::= { layer2Stats 2 }
fdbInfo OBJECT IDENTIFIER ::= { layer2Info 1 }
stpInfo OBJECT IDENTIFIER ::= { layer2Info 2 }
lacpInfo OBJECT IDENTIFIER ::= { layer2Info 3 }
cistInfo OBJECT IDENTIFIER ::= { layer2Info 4 }
vlanInfo OBJECT IDENTIFIER ::= { layer2Info 5 }
cistGeneralInfo OBJECT IDENTIFIER ::= { cistInfo 1 }
portTeamInfo OBJECT IDENTIFIER ::= { layer2Info 6 }
-- VLAN group
vlanMaxEnt OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum number of rows in the VLAN configuration table."
::= { vlan 1 }
vlanMaxVlanID OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum allowed VLAN ID."
::= { vlan 4 }
vlanCurCfgTable OBJECT-TYPE
SYNTAX SEQUENCE OF VlanCurCfgTableEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table of VLAN configuration."
::= { vlan 2 }
vlanCurCfgTableEntry OBJECT-TYPE
SYNTAX VlanCurCfgTableEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A row in the VLAN configuration table."
INDEX { vlanCurCfgVlanId }
::= { vlanCurCfgTable 1 }
VlanCurCfgTableEntry ::= SEQUENCE {
vlanCurCfgVlanId Integer32,
vlanCurCfgPorts OCTET STRING,
vlanCurCfgState INTEGER,
vlanCurCfgBwmContract Integer32,
vlanCurCfgStg Integer32,
vlanCurCfgJumbo INTEGER,
vlanCurCfgLearn INTEGER,
vlanCurCfgVlanName DisplayString
}
vlanCurCfgVlanId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The VLAN identifier."
::= { vlanCurCfgTableEntry 1 }
vlanCurCfgVlanName OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The VLAN name."
::= { vlanCurCfgTableEntry 2 }
vlanCurCfgPorts OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The port list in the VLAN. The ports are presented in bitmap format.
in receiving order:
OCTET 1 OCTET 2 .....
xxxxxxxx xxxxxxxx .....
|| || |_ port 8
|| ||
|| ||___ port 7
|| |____ port 6
|| . . .
||_________ port 1
|__________ reserved
where x : 1 - The represented port belongs to the VLAN
0 - The represented port does not belong to the VLAN"
::= { vlanCurCfgTableEntry 3 }
vlanCurCfgState OBJECT-TYPE
SYNTAX INTEGER {
enabled(2),
disabled(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Enable or disable a VLAN"
::= { vlanCurCfgTableEntry 4 }
vlanCurCfgBwmContract OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Default contract number the VLAN "
::= { vlanCurCfgTableEntry 5 }
vlanCurCfgStg OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Spanning Tree Group for the VLAN."
::= { vlanCurCfgTableEntry 6 }
vlanCurCfgJumbo OBJECT-TYPE
SYNTAX INTEGER {
enabled(2),
disabled(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Enable or disable Jumbo frames on a VLAN"
::= { vlanCurCfgTableEntry 7 }
vlanCurCfgLearn OBJECT-TYPE
SYNTAX INTEGER {
enabled(2),
disabled(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Enable or disable source MAC address learning on a VLAN"
::= { vlanCurCfgTableEntry 8 }
vlanNewCfgTable OBJECT-TYPE
SYNTAX SEQUENCE OF VlanNewCfgTableEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table of VLAN configuration."
::= { vlan 3 }
vlanNewCfgTableEntry OBJECT-TYPE
SYNTAX VlanNewCfgTableEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A row in the VLAN configuration table."
INDEX { vlanNewCfgVlanId }
::= { vlanNewCfgTable 1 }
VlanNewCfgTableEntry ::= SEQUENCE {
vlanNewCfgVlanId Integer32,
vlanNewCfgVlanName DisplayString,
vlanNewCfgPorts OCTET STRING,
vlanNewCfgState INTEGER,
vlanNewCfgAddPort Integer32,
vlanNewCfgRemovePort Integer32,
vlanNewCfgBwmContract Integer32,
vlanNewCfgStg Integer32,
vlanNewCfgJumbo INTEGER,
vlanNewCfgLearn INTEGER,
vlanNewCfgDelete INTEGER
}
vlanNewCfgVlanId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The VLAN identifier."
::= { vlanNewCfgTableEntry 1 }
vlanNewCfgVlanName OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..32))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The VLAN name."
::= { vlanNewCfgTableEntry 2 }
vlanNewCfgPorts OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The port list in the VLAN. The ports are presented in bitmap format.
in receiving order:
OCTET 1 OCTET 2 .....
xxxxxxxx xxxxxxxx .....
|| || |_ port 8
|| ||
|| ||___ port 7
|| |____ port 6
|| . . .
||_________ port 1
|__________ reserved
where x : 1 - The represented port belongs to the VLAN
0 - The represented port does not belong to the VLAN"
::= { vlanNewCfgTableEntry 3 }
vlanNewCfgState OBJECT-TYPE
SYNTAX INTEGER {
enabled(2),
disabled(3)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Enable or disable a VLAN"
::= { vlanNewCfgTableEntry 4 }
vlanNewCfgAddPort OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The port to be added to the specified VLAN. A '0' value is
returned when read."
::= { vlanNewCfgTableEntry 5 }
vlanNewCfgRemovePort OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The port to be removed from the specified VLAN. A '0'
value is returned when read."
::= { vlanNewCfgTableEntry 6 }
vlanNewCfgDelete OBJECT-TYPE
SYNTAX INTEGER {
other(1),
delete(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This is an action object to create or delete a VLAN.
other(1) is returned always when read.
The following values are writable: delete(2)...to delete a VLAN"
::= { vlanNewCfgTableEntry 7 }
vlanNewCfgBwmContract OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Default contract number for the VLAN."
::= { vlanNewCfgTableEntry 8 }
vlanNewCfgStg OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The Spanning Tree Group for the VLAN."
::= { vlanNewCfgTableEntry 9 }
vlanNewCfgJumbo OBJECT-TYPE
SYNTAX INTEGER {
enabled(2),
disabled(3)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Enable or disable Jumbo frames on a VLAN"
::= { vlanNewCfgTableEntry 10 }
vlanNewCfgLearn OBJECT-TYPE
SYNTAX INTEGER {
enabled(2),
disabled(3)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Enable or disable source mac address learning on a VLAN"
::= { vlanNewCfgTableEntry 11 }
-- Link Aggregation Control Protocol Group
lacpCurSystemPriority OBJECT-TYPE
SYNTAX INTEGER (1..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A 2-octet read-write value indicating the priority
value associated with the Actor's System ID."
::= { lacp 1 }
lacpNewSystemPriority OBJECT-TYPE
SYNTAX INTEGER (1..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A 2-octet read-write value indicating the priority
value associated with the Actor's System ID."
::= { lacp 2 }
lacpCurSystemTimeoutTime OBJECT-TYPE
SYNTAX INTEGER {
short(3),
long(90)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If a port does not receive LACPDUs for Timeout time LACP
information pertaining to the port is invalidated.
Its every 3 sec (short) and every 90 sec (long 3)."
::= { lacp 5 }
lacpNewSystemTimeoutTime OBJECT-TYPE
SYNTAX INTEGER {
short(3),
long(90)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If a port does not receive LACPDUs for Timeout time LACP
information pertaining to the port is invalidated.
Its every 3 sec (short) and every 90 sec (long 3)."
::= { lacp 6 }
lacpCurPortCfgTable OBJECT-TYPE
SYNTAX SEQUENCE OF LacpCurPortCfgTableEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table of LACP port configuration."
::= { lacp 7 }
lacpCurPortCfgTableEntry OBJECT-TYPE
SYNTAX LacpCurPortCfgTableEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A row in the LACP port configuration table."
INDEX { lacpCurPortCfgTableId }
::= { lacpCurPortCfgTable 1 }
LacpCurPortCfgTableEntry ::= SEQUENCE {
lacpCurPortCfgTableId Integer32,
lacpCurPortState INTEGER,
lacpCurPortActorPortPriority INTEGER,
lacpCurPortActorAdminKey INTEGER
}
lacpCurPortCfgTableId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" LACP port number."
::= { lacpCurPortCfgTableEntry 1 }
lacpCurPortState OBJECT-TYPE
SYNTAX INTEGER {
off(1),
active(2),
passive(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"LACP port state can be one of three states
off (Not participating in LACP)
Active (Initiates LACPDU updates)
Passive (Does not initiate LACPDU updates but responds to peer."
::= { lacpCurPortCfgTableEntry 2 }
lacpCurPortActorPortPriority OBJECT-TYPE
SYNTAX INTEGER (1..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The priority value assigned to this Aggregation Port.
This 16-bit value is read-only."
::= { lacpCurPortCfgTableEntry 3 }
lacpCurPortActorAdminKey OBJECT-TYPE
SYNTAX INTEGER (1..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current administrative value of the Key for the
Aggregation Port. This is a 16-bit read-only value.
The meaning of particular Key values is of local
significance."
::= { lacpCurPortCfgTableEntry 4 }
lacpNewPortCfgTable OBJECT-TYPE
SYNTAX SEQUENCE OF LacpNewPortCfgTableEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table of LACP port configuration."
::= { lacp 8 }
lacpNewPortCfgTableEntry OBJECT-TYPE
SYNTAX LacpNewPortCfgTableEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A row in the LACP port configuration table."
INDEX { lacpNewPortCfgTableId }
::= { lacpNewPortCfgTable 1 }
LacpNewPortCfgTableEntry ::= SEQUENCE {
lacpNewPortCfgTableId Integer32,
lacpNewPortState INTEGER,
lacpNewPortActorPortPriority INTEGER,
lacpNewPortActorAdminKey INTEGER
}
lacpNewPortCfgTableId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" LACP port number."
::= { lacpNewPortCfgTableEntry 1 }
lacpNewPortState OBJECT-TYPE
SYNTAX INTEGER {
off(1),
active(2),
passive(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"LACP port state can be one of three states
off (Not participating in LACP)
Active (Initiates LACPDU updates)
Passive (Does not initiate LACPDU updates but responds to peer."
::= { lacpNewPortCfgTableEntry 2 }
lacpNewPortActorPortPriority OBJECT-TYPE
SYNTAX INTEGER (1..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The priority value assigned to this Aggregation Port.
This 16-bit value is read-write."
::= { lacpNewPortCfgTableEntry 3 }
lacpNewPortActorAdminKey OBJECT-TYPE
SYNTAX INTEGER (1..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The current administrative value of the Key for the
Aggregation Port. This is a 16-bit read-write value.
The meaning of particular Key values is of local
significance."
::= { lacpNewPortCfgTableEntry 4 }
-- Trunk Group Group
trunkGroupTableMaxSize OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum number of entries in trunk group table."
::= { trunkgroup 1 }
trunkGroupCurCfgTable OBJECT-TYPE
SYNTAX SEQUENCE OF TrunkGroupCurCfgTableEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table of trunk group configuration."
::= { trunkgroup 2 }
trunkGroupCurCfgTableEntry OBJECT-TYPE
SYNTAX TrunkGroupCurCfgTableEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A row in the trunk group configuration table."
INDEX { trunkGroupCurCfgIndex }
::= { trunkGroupCurCfgTable 1 }
TrunkGroupCurCfgTableEntry ::= SEQUENCE {
trunkGroupCurCfgIndex Integer32,
trunkGroupCurCfgPorts OCTET STRING,
trunkGroupCurCfgBwmContract Integer32,
trunkGroupCurCfgState INTEGER
}
trunkGroupCurCfgIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The identifier of the trunk group."
::= { trunkGroupCurCfgTableEntry 1 }
trunkGroupCurCfgPorts OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The port list in the trunk group. The ports are presented in
bitmap format.
in receiving order:
OCTET 1 OCTET 2 .....
xxxxxxxx xxxxxxxx .....
|| || |_ port 8
|| ||
|| ||___ port 7
|| |____ port 6
|| . . .
||_________ port 1
|__________ reserved
where x : 1 - The represented port belongs to the trunk group
0 - The represented port does not belong to the trunk group"
::= { trunkGroupCurCfgTableEntry 2 }
trunkGroupCurCfgState OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Enable or disable a trunk group."
::= { trunkGroupCurCfgTableEntry 3 }
trunkGroupCurCfgBwmContract OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Default BW contract of a trunk group."
::= { trunkGroupCurCfgTableEntry 4 }
trunkGroupNewCfgTable OBJECT-TYPE
SYNTAX SEQUENCE OF TrunkGroupNewCfgTableEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table of trunk group configuration."
::= { trunkgroup 3 }
trunkGroupNewCfgTableEntry OBJECT-TYPE
SYNTAX TrunkGroupNewCfgTableEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A row in the trunk group configuration table."
INDEX { trunkGroupNewCfgIndex }
::= { trunkGroupNewCfgTable 1 }
TrunkGroupNewCfgTableEntry ::= SEQUENCE {
trunkGroupNewCfgIndex Integer32,
trunkGroupNewCfgPorts OCTET STRING,
trunkGroupNewCfgAddPort Integer32,
trunkGroupNewCfgRemovePort Integer32,
trunkGroupNewCfgState INTEGER,
trunkGroupNewCfgBwmContract Integer32,
trunkGroupNewCfgDelete INTEGER
}
trunkGroupNewCfgIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The identifier of the trunk group."
::= { trunkGroupNewCfgTableEntry 1 }
trunkGroupNewCfgPorts OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The port list in the trunk group. The ports are presented
in bitmap format.
in receiving order:
OCTET 1 OCTET 2 .....
xxxxxxxx xxxxxxxx .....
|| || |_ port 8
|| ||
|| ||___ port 7
|| |____ port 6
|| . . .
||_________ port 1
|__________ reserved
where x : 1 - The represented port belongs to the trunk group
0 - The represented port does not belong to the trunk group"
::= { trunkGroupNewCfgTableEntry 2 }
trunkGroupNewCfgAddPort OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The port to be added in the trunk group. When read, 0 is returned."
::= { trunkGroupNewCfgTableEntry 3 }
trunkGroupNewCfgRemovePort OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The port to be deleted from the trunk group. when read, 0
is returned."
::= { trunkGroupNewCfgTableEntry 4 }
trunkGroupNewCfgState OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Enable or disable a trunk group."
::= { trunkGroupNewCfgTableEntry 5 }
trunkGroupNewCfgDelete OBJECT-TYPE
SYNTAX INTEGER {
other(1),
delete(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Setting the value to delete(2) will delete the entire
row. When read, other(1) is returned."
::= { trunkGroupNewCfgTableEntry 6 }
trunkGroupNewCfgBwmContract OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Default BW contract of a trunk group."
::= { trunkGroupNewCfgTableEntry 7 }
-- Spanning Tree Group Configuration
-- This group specifies the additional configurations that are not
-- covered by the Bridge MIB (RFC 1493).
-- The relative Spanning Tree information can be retrieved or configured
-- using Bridge MIB with an unique community string for each group specified
-- in entLogicalTable of Entity MIB (RFC 2037).
--
stgCurCfgTable OBJECT-TYPE
SYNTAX SEQUENCE OF StgCurCfgTableEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table of Spanning Tree Group configuration."
::= { stgCfg 1 }
stgCurCfgTableEntry OBJECT-TYPE
SYNTAX StgCurCfgTableEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information about a particular Spanning Tree Group configuration."
INDEX { stgCurCfgIndex }
::= { stgCurCfgTable 1 }
StgCurCfgTableEntry ::= SEQUENCE {
stgCurCfgIndex Integer32,
stgCurCfgState INTEGER,
stgCurCfgPriority INTEGER,
stgCurCfgBrgHelloTime INTEGER,
stgCurCfgBrgForwardDelay INTEGER,
stgCurCfgBrgMaxAge INTEGER,
stgCurCfgAgingTime INTEGER,
stgCurCfgVlanBmap OCTET STRING
}
stgCurCfgIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The identifier of a particular Spanning Tree Group. This is also
index to the entLogicalTable of Entity MIB."
::= { stgCurCfgTableEntry 1 }