forked from taishin/vendor_mibs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
FOUNDRY-SN-SWITCH-GROUP.mib
executable file
·9177 lines (8221 loc) · 249 KB
/
FOUNDRY-SN-SWITCH-GROUP.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
FOUNDRY-SN-SWITCH-GROUP-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE,Integer32,Unsigned32, Gauge32, Counter32, Counter64, TimeTicks, IpAddress
FROM SNMPv2-SMI
switch
FROM FOUNDRY-SN-ROOT-MIB
DisplayString,MacAddress
FROM FOUNDRY-SN-AGENT-MIB
InterfaceIndex, ifIndex, InterfaceIndexOrZero
FROM IF-MIB
TruthValue,TEXTUAL-CONVENTION
FROM SNMPv2-TC;
snSwitch MODULE-IDENTITY
LAST-UPDATED "201006020000Z" -- 04 June 2010
ORGANIZATION "Brocade Communications Systems, Inc."
CONTACT-INFO
"Technical Support Center
130 Holger Way,
San Jose, CA 95134
Email: [email protected]
Phone: 1-800-752-8061
URL: www.brocade.com"
DESCRIPTION
"Copyright 1996-2010 Brocade Communications Systems, Inc.
All rights reserved.
This Brocade Communications Systems SNMP Management Information Base Specification
embodies Brocade Communications Systems' confidential and proprietary
intellectual property. Brocade Communications Systems retains all
title and ownership in the Specification, including any revisions.
This Specification is supplied AS IS, and Brocade Communications Systems makes
no warranty, either express or implied, as to the use,
operation, condition, or performance of the specification, and any unintended
consequence it may on the user environment."
REVISION "201006020000Z" -- 04 June 2010
DESCRIPTION
"Changed the ORGANIZATION, CONTACT-INFO and DESCRIPTION fields."
REVISION "200909300000Z" -- September 30, 2009
DESCRIPTION
"convert from SMIv1 to SMIv2"
::= { switch 3 }
-- textual conventions
PhysAddress ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"
This data type is used to model media addresses. For many
types of media, this will be in a binary representation.
For example, an ethernet address would be represented as
a string of 6 octets.
"
SYNTAX OCTET STRING
BridgeId ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"
the Bridge-Identifier as used in the Spanning Tree
"
SYNTAX OCTET STRING (SIZE(8))
Timeout ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"
a STP timer in units of 1/100 seconds
"
SYNTAX Integer32
PortMask ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"
This data type is used to model port bitmask. The
maximum of ports are 32.
"
SYNTAX Integer32
InterfaceId ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"
-- This data type is used to specify an interface ID.
-- The first object identifier is port type, and the
-- format of the rest of the object identifiers depend
-- on the port type.
--
-- ethernet(1), format: type.slot.port
-- e.g. 1.3.6 is port ethernet 3/6
--
-- pos(2), format: type.slot.port
-- e.g. 2.10.1 is port pos 10/1
--
-- atm(3), format: type.slot.port
-- e.g. 3.8.2 is port atm 8/2
--
-- virtual router interface(4), format: type.ve
-- e.g. 4.9 is port ve 9
--
-- loopback(5), format: type.lb
-- e.g. 5.7 is port loopback 7
--
-- gre tunnel(6), format: type.tn, not supported
--
-- subinterface(7), format: type.slot.port.subInterface
-- e.g. 7.3.2.4 is port atm 3/2.4
--
-- mpls tunnel(8), format: type.tn
-- e.g. 8.3 is port tunnel 3
--
-- pvc(9), format: type.slot.port.subInterface.vpi.vci
-- e.g. 9.3.1.2.1.2 is port atm 3/1.2.1.2
--
-- management(10), format: type.slot.port
-- e.g. 10.17.1 is port management 17/1
--
-- tunnel(11), format: type.trunkid
-- e.g. 11.3 is trunk id 3
--
-- virtual management(12), format: type
-- e.g. 10 is the virtual management interface
"
SYNTAX OBJECT IDENTIFIER
InterfaceId2 ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"
-- This data type is used to specify an interface ID. The
-- first object identifier is port type, and the format of
-- the rest of the object identifiers depend on the port
-- type. Note that for types which include a reference to a
-- physical port, the formats vary according to the type of
-- port identifiers that the device uses (e.g. 6, 3/6, or
-- 2/3/6). New port type values will be added in the future
-- as needed. For a given type code, new formats may also
-- be added in the future. Each format for a given type
-- code will have a unique length. Applications should
-- check the OID length and not assume that it will match
-- one of the currently defined formats.
--
-- Though the OIDs are shown here in a shortened form, the
-- actual OIDs are prefixed with the OID of snInterfaceId
-- (so the OID for 1.2.3.6 would actually be
-- snInterfaceId.1.2.3.6, which is equivalent to
-- snEthernetInterface.2.3.6.).
--
-- ethernet(1), formats:
-- type.port (e.g. 1.6 is port ethernet 6)
-- type.slot.port (e.g. 1.3.6 is port ethernet 3/6)
-- type.unit.slot.port (e.g. 1.2.3.6 is port ethernet 2/3/6)
--
-- pos(2), formats:
-- type.port (e.g. 2.6 is port pos 6)
-- type.slot.port (e.g. 2.3.6 is port pos 3/6)
-- type.unit.slot.port (e.g. 2.2.3.6 is port pos 2/3/6)
--
-- atm(3), format: type.slot.port
-- type.port (e.g. 3.6 is port atm 6)
-- type.slot.port (e.g. 3.3.6 is port atm 3/6)
-- type.unit.slot.port (e.g. 3.2.3.6 is port atm 2/3/6)
--
-- virtual router interface(4), format: type.ve
-- e.g. 4.9 is port ve 9
--
-- loopback(5), format: type.lb
-- e.g. 5.7 is port loopback 7
--
-- gre tunnel(6), format: type.tn, not supported
--
-- subinterface(7), formats:
-- type.port.subInterface (e.g. 7.6.4 is port atm 6.4)
-- type.slot.port.subInterface (e.g. 7.3.6.4 is port atm 3/6.4)
-- type.unit.slot.port.subInterface
-- (e.g. 7.2.3.6.4 is port atm 2/3/6.4)
--
-- mpls tunnel(8), format: type.tn
-- e.g. 8.3 is port tunnel 3
--
-- pvc(9), formats:
-- type.port.subInterface.vpi.vci
-- (e.g. 9.6.2.1.2 is port atm 6.2.1.2)
-- type.slot.port.subInterface.vpi.vci
-- (e.g. 9.3.6.2.1.2 is port atm 3/6.2.1.2)
-- type.unit.slot.port.subInterface.vpi.vci
-- (e.g. 9.2.3.6.2.1.2 is port atm 2/3/6.2.1.2)
--
-- management(10), formats:
-- type.port (e.g. 10.1 is port management 1)
-- type.slot.port (e.g. 10.2.1 is port management 2/1)
-- type.unit.slot.port (e.g. 10.4.2.1 is port management 4/2/1)
--
-- trunk(11), format: type.trunkid
-- e.g. 11.3 is trunk id 3
--
-- virtual management(12), format: type
-- e.g. 12 is the virtual management interface
"
SYNTAX OBJECT IDENTIFIER
VlanTagMode ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Vlan tag mode for a given vlan member."
SYNTAX INTEGER{
tagged(1),
untagged(2),
dual(3)
}
FdryVlanIdOrNoneTC ::= TEXTUAL-CONVENTION
DISPLAY-HINT "d"
STATUS current
DESCRIPTION
"The VLAN-ID that uniquely identifies a specific VLAN,
or no VLAN. The special value of zero is used to
indicate that no VLAN-ID is present or used. This can
be used in any situation where an object or a table entry
must refer either to a specific VLAN, or to no VLAN.
Note that a MIB object that is defined using this
TEXTUAL-CONVENTION should clarify the meaning of
'no VLAN' (i.e., the special value 0)."
SYNTAX Integer32 (0 | 1..4094)
BrcdVlanIdTC ::= TEXTUAL-CONVENTION
DISPLAY-HINT "d"
STATUS current
DESCRIPTION
"The VLAN-ID that uniquely identifies a specific VLAN."
SYNTAX Integer32 (1..4090)
PortQosTC ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The port QOS Priority hardware queue. 0 is lowest priority, 7 is the highest."
SYNTAX INTEGER {
level0(0),
level1(1),
level2(2),
level3(3),
level4(4),
level5(5),
level6(6),
level7(7),
invalid(127)
}
PortPriorityTC ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Refers to the IEEE 802.1p priority, or Priority Code Point (PCP).
1 is the lowest, 8 is the highest. The value 128 may be used to
indicate invalid priority or priority is not enabled."
SYNTAX INTEGER {
priority0 (1),
priority1 (2),
priority2 (3),
priority3 (4),
priority4 (5),
priority5 (6),
priority6 (7),
priority7 (8),
nonPriority (128)
}
-- Groups
snSwInfo OBJECT IDENTIFIER ::= { snSwitch 1 }
snVLanInfo OBJECT IDENTIFIER ::= { snSwitch 2 }
snSwPortInfo OBJECT IDENTIFIER ::= { snSwitch 3 }
snFdbInfo OBJECT IDENTIFIER ::= { snSwitch 4 }
snPortStpInfo OBJECT IDENTIFIER ::= { snSwitch 5 }
snTrunkInfo OBJECT IDENTIFIER ::= { snSwitch 6 }
snSwSummary OBJECT IDENTIFIER ::= { snSwitch 7 }
snDhcpGatewayListInfo OBJECT IDENTIFIER ::= { snSwitch 8 }
snDnsInfo OBJECT IDENTIFIER ::= { snSwitch 9 }
snMacFilter OBJECT IDENTIFIER ::= { snSwitch 10 }
snNTP OBJECT IDENTIFIER ::= { snSwitch 11 }
snRadius OBJECT IDENTIFIER ::= { snSwitch 12 }
snTacacs OBJECT IDENTIFIER ::= { snSwitch 13 }
snQos OBJECT IDENTIFIER ::= { snSwitch 14 }
snAAA OBJECT IDENTIFIER ::= { snSwitch 15 }
snCAR OBJECT IDENTIFIER ::= { snSwitch 16 }
snVLanCAR OBJECT IDENTIFIER ::= { snSwitch 17 }
snNetFlow OBJECT IDENTIFIER ::= { snSwitch 18 }
snSFlow OBJECT IDENTIFIER ::= { snSwitch 19 }
snFDP OBJECT IDENTIFIER ::= { snSwitch 20 }
snVsrp OBJECT IDENTIFIER ::= { snSwitch 21 }
snArpInfo OBJECT IDENTIFIER ::= { snSwitch 22 }
snWireless OBJECT IDENTIFIER ::= { snSwitch 23 }
snMac OBJECT IDENTIFIER ::= { snSwitch 24 }
snPortMonitor OBJECT IDENTIFIER ::= { snSwitch 25 }
snSSH OBJECT IDENTIFIER ::= { snSwitch 26 }
snSSL OBJECT IDENTIFIER ::= { snSwitch 27 }
snMacAuth OBJECT IDENTIFIER ::= { snSwitch 28 }
snMetroRing OBJECT IDENTIFIER ::= { snSwitch 29 }
-- snSwitch 30 should not be used
snStacking OBJECT IDENTIFIER ::= { snSwitch 31 }
fdryMacVlanMIB OBJECT IDENTIFIER ::= { snSwitch 32 }
fdryLinkAggregationGroupMIB OBJECT IDENTIFIER ::= { snSwitch 33 }
fdryDns2MIB OBJECT IDENTIFIER ::= { snSwitch 34 }
fdryDaiMIB OBJECT IDENTIFIER ::= { snSwitch 35 }
fdryDhcpSnoopMIB OBJECT IDENTIFIER ::= { snSwitch 36 }
fdryIpSrcGuardMIB OBJECT IDENTIFIER ::= { snSwitch 37 }
-- snSwitch 38 used for brcdDot1xAuth MIB
-- SECTION 2: Switch Group Configuration MIBs
snSwGroupOperMode OBJECT-TYPE
SYNTAX INTEGER {
noVLan(1),
vlanByPort(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"noVLan(1) represents all switch ports with no virtual
LAN by port (no Port VLAN), and with no tag assigned.
vlanByPort(2) represents all switch ports with Basic
VLAN (layer2 Switch). "
::= { snSwInfo 1 }
snSwGroupIpL3SwMode OBJECT-TYPE
SYNTAX INTEGER {
disabled(0),
enabled(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The Switch Group is configured with the Layer3
IP Switch mode either enabled or disabled and the
default is disabled mode.
enabled(1)...........activate Layer3 IP Switch
disabled(0)..........disable Layer3 IP Switch"
::= { snSwInfo 2 }
snSwGroupIpMcastMode OBJECT-TYPE
SYNTAX INTEGER {
disabled(0),
enabled(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The Switch Group is configured with the IP Multicast
pruning mode either enabled or disabled and the
default is disabled mode.
enabled(1)...........activate IP Multicast pruning
disabled(0)..........no IP Multicast pruning"
::= { snSwInfo 3 }
snSwGroupDefaultCfgMode OBJECT-TYPE
SYNTAX INTEGER {
default(1),
nonDefault(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The Switch Group is configured with the Default
configuration. If the default configuration gets
overwritten, the state will change to non-default.
default(1)...........default configuration
nonDefault(2)..........non default configuration"
::= { snSwInfo 4 }
snSwGroupSwitchAgeTime OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The Switch Age time is 180sec by default.
The configured range is 10 to 10,000sec. The time
represents the time span to age out an MAC Address
entry."
::= { snSwInfo 5 }
snVLanGroupVlanCurEntry OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current total entry number of VLANs are configured."
::= { snSwInfo 6 }
snVLanGroupSetAllVLan OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of this object is the VLanIndex of a particalur
entry in snVLanByPortCfgTable (snVLanByPortCfgVLanId).
All the attributes of that row of table except PortMask
will be used to set the same attributes for the
entire VLan group. VLanId and PortMask must be set for
that particular entry prior to setting this object.
Switch software will base on that VLAN information
to set the entire VLAN.
Note: All the intended attributes of the given
row of the table (given VLAN) must be set prior
setting this object. When this object is set,
Set-All-VLAN action will take place simultaneously.
The previous setting will be overwritten by the
new one."
::= { snSwInfo 7 }
snSwPortSetAll OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of this object is the index number of the
snSwPortInfoTable (snSwPortInfoPortIndex).
snSwPortInfoMonitorMode, snSwPortInfoTagMode,
snSwPortInfoChnMode, snSwPortInfoSpeed,
snSwPortInfoAdminStatus are all the
read-write attributes of that row of table.
They will be used to set the same attributes for
all the ports in the system.
Note: prior setting this object, all the intended
attributes of the given row of the table must be set.
Otherwise, the current data of the row will be used to
set the entire port-table. The previous setting will
be overwritten by the new one."
::= { snSwInfo 8 }
snFdbTableCurEntry OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current total entry number of FDB are configured."
::= { snSwInfo 9 }
snFdbTableStationFlush OBJECT-TYPE
SYNTAX INTEGER {
normal(1),
error(2),
flush(3),
flushing(4)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The following values of the flush state
can only be read:
normal(1)... normal state
error(2)... operation failed
flushing(4)... in process
The following value can be written:
flush(3).....do flush
The agent will return a response even before the flush is done.
And the read value will be flushing until flush is done.
And the flush request will be rejected until error or normal."
::= { snSwInfo 10 }
snPortStpSetAll OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of this object is 1 which means invoking
Port STP Set-all command. The snPortStpPriority,
snPortStpPathCost, the read-write STP related
attributes of the first row of table will be used
to set the same attributes for all the ports in the
system.
Note: prior setting this object, all the intended
attributes of the given row of the table must be set.
Otherwise, the current data of the row will be used to
set the entire port-table. The previous setting will
be overwritten by the new one."
::= { snSwInfo 11 }
snSwProbePortNum OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A chassis switch probe port is operated as a traffic analyzer
port and only one port can be assigned in the chassis.
The bit 0 to bit 7: port number.
The bit 8 to bit 11: slot number.
A stackable switch is only assigned with one probe port as a
traffic analyzer."
::= { snSwInfo 12 }
snSw8021qTagMode OBJECT-TYPE
SYNTAX INTEGER {
disabled(0),
enabled(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The Switch Group is configured with the IEEE802.1q
Tagging mode either enabled or disabled and the
default is disabled mode.
enabled(1)...........activate IEEE802.1q Tagging mode.
disabled(0)..........no IEEE802.1q Tagging."
::= { snSwInfo 13 }
snSwGlobalStpMode OBJECT-TYPE
SYNTAX INTEGER {
disabled(0),
enabled(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Spanning Tree System Global Mode in the Switch Group
can be set either enabled or disabled and the default is
enabled mode.
enabled(1)...........activate Spanning Tree
disabled(0)..........no Spanning Tree"
::= { snSwInfo 14 }
snSwIpMcastQuerierMode OBJECT-TYPE
SYNTAX INTEGER {
querier(1),
nonQuerier(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The IP Multicast pruning mode is configured either
Non-Querier or Querier mode and the default is
querier mode.
querier(1)...........when prunning traffic locally
within the VLAN.
nonQuerier(2)........when running with a multicast
capable router in the network."
::= { snSwInfo 15 }
snSwViolatorPortNumber OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The port number of the switch or router that received
a violator packet. It is included in the locked
address violation trap.
The bit 0 to bit 7: port number.
The bit 8 to bit 11: slot number (slot for chassis only)."
::= { snSwInfo 17 }
snSwViolatorMacAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The source address of the violator packet received
by the switch or router. It is included in the locked
address violation trap."
::= { snSwInfo 18 }
snVLanGroupVlanMaxEntry OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The maximum number of VLAN entries that are allowed to configure.
On NetIron products, This object will be implemented as read-only.
Set request will be returned with not writable error.
To set the maximum allowed vlan, use snAgentSysParaConfigEntry."
::= { snSwInfo 19 }
snSwEosBufferSize OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A specific buffer size for all the different EOS buffers."
::= { snSwInfo 20 }
snVLanByPortEntrySize OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The size of each VLAN table entry."
::= { snSwInfo 21 }
snSwPortEntrySize OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The size of each port table entry."
::= { snSwInfo 22 }
snFdbStationEntrySize OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The size of each Fdb station table entry."
::= { snSwInfo 23 }
snPortStpEntrySize OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The size of each port stp table entry."
::= { snSwInfo 24 }
snSwEnableBridgeNewRootTrap OBJECT-TYPE
SYNTAX INTEGER { disabled(0), enabled(1) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates whether the SNMP agent process is
permitted to generate bridge new root traps."
DEFVAL { enabled }
::= { snSwInfo 25 }
snSwEnableBridgeTopoChangeTrap OBJECT-TYPE
SYNTAX INTEGER { disabled(0), enabled(1) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates whether the SNMP agent process is
permitted to generate bridge topology change
traps."
DEFVAL { enabled }
::= { snSwInfo 26 }
snSwEnableLockedAddrViolationTrap OBJECT-TYPE
SYNTAX INTEGER { disabled(0), enabled(1) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates whether the SNMP agent process is
permitted to generate locked address violation
traps."
DEFVAL { enabled }
::= { snSwInfo 27 }
snSwIpxL3SwMode OBJECT-TYPE
SYNTAX INTEGER {
disabled(0),
enabled(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The Switch Group is configured with the Layer3
IPX Switch mode either enabled or disabled and
the default is disabled mode.
enabled(1)...........activate Layer3 Switch
disabled(0)..........disable Layer3 Switch"
::= { snSwInfo 28 }
snVLanByIpSubnetMaxSubnets OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum number of subnets for each IP VLAN."
::= { snSwInfo 29 }
snVLanByIpxNetMaxNetworks OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum number of networks for each IPX VLAN."
::= { snSwInfo 30 }
snSwProtocolVLanMode OBJECT-TYPE
SYNTAX INTEGER {
disabled(0),
enabled(1)
}
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"disabled(0) - represents system with Protocol VLAN disabled.
enabled(1) - represents system with Protocol VLAN enabled (Layer3 VLAN)."
::= { snSwInfo 31 }
snMacStationVLanId OBJECT-TYPE
SYNTAX INTEGER (0..4095)
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"This VLAN ID controls filtering of the Forwarding Database
table in the standard Bridge MIB (dot1dTpFdbTable). Since the
dot1dTpFdbTable contains MAC addresses associated with each of
the ports in the bridge, and each MAC address can be
associated with different VLANs, the snMacStationVLanId can be
used by users to specify which VLAN's MAC Station information
the dot1dTpFdbTable should provide. If this variable is set
to zero (the default value), all MAC station entries will be
returned when the dot1dTpFdbTable is retrieved. The
VLAN-aware dot1qTpFdbTable described in RFC 2674 should be
used as a replacement for this variable."
::= { snSwInfo 32 }
snSwClearCounters OBJECT-TYPE
SYNTAX INTEGER {
valid(0),
clear(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"valid(0) - a SNMP-GET of this mib shows that it is valid command to use.
clear(1) - represents clear counter command of the following counters:
Dot3, MIB2, IP and IPX counters for all ports."
::= { snSwInfo 33 }
snSw8021qTagType OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The IEEE802.1q tag type embedded in the length/type field of
an Ethernet packet. It specifies that the 2 octets after the
length/type field in an Ethernet packet is the tag value."
DEFVAL { 33024 }
::= { snSwInfo 34 }
snSwBroadcastLimit OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Limit the number of broadcast packets to forward out of the
switch ports. This object specifies the number of broadcast
packets per second. Setting a value of 0 to this object
disables the limitation check."
DEFVAL { 0 }
::= { snSwInfo 35 }
snSwMaxMacFilterPerSystem OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum number of MAC Filters per system in the MAC Filter table."
::= { snSwInfo 36 }
snSwMaxMacFilterPerPort OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum number of MAC Filters per port in the Port MAC Access Filter table."
::= { snSwInfo 37 }
snSwDefaultVLanId OBJECT-TYPE
SYNTAX INTEGER (1..4095)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The VLAN ID of the DEFAULT PORT-VLAN."
::= { snSwInfo 38 }
snSwGlobalAutoNegotiate OBJECT-TYPE
SYNTAX INTEGER {
disabled(0),
enabled(1),
negFullAuto(2),
other(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This feature only applies to Gigabit Ethernet ports. If set
to disable(0), all Gigabit Ethernet ports will be put to non-
negotiation mode. If set to enable(1), all Gigabit Ethernet
ports will start auto-negotiation indefinitely until succeed.
If set to negFullAuto(2), all Gigabit Ethernet ports will start
with auto-negotiation, if the negotiation failed, then they
will automatically switch to non-negotiation mode. Stackable
products (except TurboIron 8) Gigabit Ethernet ports do not
support negFullAuto(2). If the snSwPortInfoAutoNegotiate value
of a port was not set to global, this global value does not
apply to the negotiation mode of that port."
DEFVAL { negFullAuto }
::= { snSwInfo 39 }
snSwQosMechanism OBJECT-TYPE
SYNTAX INTEGER { strict(0), weighted(1) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates whether the qos mechanism is
strict or weighted."
DEFVAL { weighted }
::= { snSwInfo 40 }
snSwSingleStpMode OBJECT-TYPE
SYNTAX INTEGER {
disable(0),
enableStp(1),
enableRstp(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Single Spanning Tree System Mode in the Switch Group
can be set either enabled or disabled and the default is
disabled mode.
disable(0)...........no Single Spanning Tree
enableStp(1).........activate SSTP control vlan to run Spanning Tree
enableRstp(2)........activate SSTP control vlan to run Rapid Spanning Tree"
::= { snSwInfo 41 }
snSwFastStpMode OBJECT-TYPE
SYNTAX INTEGER {
disabled(0),
enabled(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Fast Spanning Tree System Mode in the Switch Group
can be set either enabled or disabled and the default is
enabled mode.
enabled(1)...........activate Fast Spanning Tree
disabled(0)..........no Fast Spanning Tree"
::= { snSwInfo 42 }
snSwViolatorIfIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The port number of the switch or router that received
a violator packet. It is included in the locked
address violation trap."
::= { snSwInfo 43 }
snSwSingleStpVLanId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The VLAN ID of the Single Spanning Tree VLAN if Single
Spanning Tree was enabled. This object returns zero if
Single Spanning Tree was disabled."
::= { snSwInfo 44 }
-- VLAN Layer 2 Switch VLAN By Port Information Table
snVLanByPortTable OBJECT-TYPE
SYNTAX SEQUENCE OF SnVLanByPortEntry
MAX-ACCESS not-accessible
STATUS deprecated
DESCRIPTION
"If snSwGroupOperMode is configured as basic mode
which is VLAN by Port, Layer2 switching,
then this table is valid. Each VLAN switch port
could have a number of VLAN IDs."
::= { snVLanInfo 1 }
snVLanByPortEntry OBJECT-TYPE
SYNTAX SnVLanByPortEntry
MAX-ACCESS not-accessible
STATUS deprecated
DESCRIPTION
"An entry in the VLAN By Port Information table.
snVLanByPortVLanIndex = 1 and with
snVLanByPortVLanId = 1 together implies all attributes
applying to the Global switch group i.e. noVLan.
A SNMP SET PDU for a row of the snVLanByPortTable
requires the entired sequence of the MIB Objects in each
snVLanByPortEntry stored in one PDU. Otherwise,
GENERR return-value will be returned."
INDEX {
snVLanByPortVLanIndex
}
::= { snVLanByPortTable 1 }
SnVLanByPortEntry ::= SEQUENCE {
snVLanByPortVLanIndex
INTEGER,
snVLanByPortVLanId
INTEGER,
snVLanByPortPortMask
PortMask,
snVLanByPortQos
INTEGER,
snVLanByPortStpMode
INTEGER,
snVLanByPortStpPriority
INTEGER,
snVLanByPortStpGroupMaxAge
INTEGER,
snVLanByPortStpGroupHelloTime
INTEGER,
snVLanByPortStpGroupForwardDelay
INTEGER,
snVLanByPortRowStatus
INTEGER,
snVLanByPortOperState
INTEGER,
snVLanByPortBaseNumPorts
Integer32,
snVLanByPortBaseType
INTEGER,
snVLanByPortStpProtocolSpecification
INTEGER,
snVLanByPortStpMaxAge
Timeout,
snVLanByPortStpHelloTime
Timeout,
snVLanByPortStpHoldTime
Integer32,
snVLanByPortStpForwardDelay
Timeout,
snVLanByPortStpTimeSinceTopologyChange
TimeTicks,
snVLanByPortStpTopChanges
Counter32,
snVLanByPortStpRootCost
Integer32,
snVLanByPortStpRootPort
Integer32,
snVLanByPortStpDesignatedRoot
BridgeId,
snVLanByPortBaseBridgeAddress
MacAddress,
snVLanByPortVLanName
DisplayString,
snVLanByPortRouterIntf
Integer32,
snVLanByPortChassisPortMask
OCTET STRING,
snVLanByPortPortList
OCTET STRING
}
snVLanByPortVLanIndex OBJECT-TYPE
SYNTAX INTEGER (1..4095)
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The VLAN ID index must not be greater than the
snVLanGroupVlanMaxEntry. Each VLAN Identifier can
have a membership of multiple ports."
::= { snVLanByPortEntry 1 }
snVLanByPortVLanId OBJECT-TYPE
SYNTAX INTEGER (1..4095)
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"The VLAN ID index to the VLAN By Port Info Table.
Each VLAN Identifier can have a membership of multiple
ports."
::= { snVLanByPortEntry 2 }
snVLanByPortPortMask OBJECT-TYPE
SYNTAX PortMask
MAX-ACCESS read-write
STATUS deprecated