forked from kcsinclair/mibs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ALTEON-CHEETAH-SWITCH-MIB
11581 lines (10494 loc) · 324 KB
/
ALTEON-CHEETAH-SWITCH-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 (c) Nortel Networks, 2004
-- All rights reserved
--
-- HISTORY
-- $Log: aosswitch.mib,v $
-- Revision 1.1 2007/10/17 01:09:55 jeneric
-- 10/07 mib updates
--
-- Revision submit_cheetah_21240/1 2006/10/12 09:11:55 dilliba
-- Removed range specification for file size object, which is used
-- to specify size for both Bogon and Symantec. For Bogon Max Size
-- is 2MB where as for Symantec 174KB.
--
-- Revision submit_cheetah_20599/1 2006/05/23 04:26:27 rvakkala
-- Fixed typo in switch general capacity mib.
--
-- Revision submit_cheetah_20578/1 2006/05/19 14:46:14 rvakkala
-- Corrected Misspell which is in my previous checkin.
--
-- Revision submit_cheetah_19277/2 2006/05/02 04:44:45 rvakkala
-- Fixed CRQ01007809 Added lack of mibs support to SNMP.
--
-- Revision submit_cheetah_18323/2 2006/04/26 04:16:34 rvakkala
-- Fixed CRQ01335381 Added multicast mib support .
--
-- Revision submit_cheetah_19723/1 2006/04/17 07:34:55 rvakkala
-- Fixed CRQ01323839 Added agent support for dynamic memory stats.
--
-- Revision submit_cheetah_19277/1 2006/05/02 04:34:50 rvakkala
-- Fixed CRQ01007809 Added lack of mibs support to SNMP.
--
-- Revision submit_cheetah_18886/2 2006/03/17 06:27:26 rvakkala
-- implementation of SNMP FT error table
--
-- Revision submit_cheetah_18325/2 2006/03/14 05:37:01 rvakkala
-- Fixed CRQ01305747, Changed syntax of symantec mibs.
--
-- Revision submit_cheetah_18886/1 2006/03/16 18:25:49 rvakkala
-- implementation of SNMP FT error table
--
-- Revision submit_cheetah_18416/1 2006/02/28 18:51:09 mmacnt
-- support for MIB var agSymantecGlobalState
--
-- Revision submit_cheetah_18325/1 2006/03/14 05:15:37 rvakkala
-- Fixed CRQ01305747 Syntax error for some symantec mibs.
--
-- Revision submit_cheetah_18323/1 2006/04/26 04:05:49 rvakkala
-- Fixed CRQ01335815 mcast variables should be added in aosswitch MIB.
--
-- Revision submit_cheetah_17722/1 2006/02/03 20:58:58 mmacnt
-- change to support mib vars agTunresCurrentProfile and agSymLicenseSwKeyRenewalPending
--
-- Revision submit_cheetah_17614/2 2006/02/01 23:17:51 mmacnt
-- add mib objects -
-- 1. agSymLicenseSwKeyRenewalPending - Symantec License Renewal Pending
-- 2. agTunresCurrentProfile - Tunable Resource Current Profile
--
-- Revision submit_cheetah_17625/1 2006/02/01 19:18:10 mp1
-- SNMP instrumentation for IPACL syslog feature
--
-- Revision submit_cheetah_16973/2 2006/01/27 23:38:44 angamuth
-- Support for Symantec statistics
--
-- Revision submit_cheetah_17416/1 2006/01/26 11:04:12 rvakkala
-- Fixed CRQ01276944 , In SNMP Timeout should be as range like CLI.
--
-- Revision submit_cheetah_17123/2 2006/01/14 03:37:22 mp1
-- EUED type changes
--
-- Revision submit_cheetah_17055/1 2006/01/13 04:37:17 rvakkala
-- Changed enum values in description of agApplyConfig in aosswitch.mib.
--
-- Revision submit_cheetah_16542/2 2005/12/08 11:35:11 drosu
-- Merging with latest changes.
--
-- Revision submit_cheetah_16392/1 2005/12/08 10:23:44 vrincian
-- Lucian Badescu: Add SNMP support for RDCP feature.
--
-- Revision submit_cheetah_16542/1 2005/12/08 11:16:59 drosu
-- Added agCurCfgHttpsServerAccess and agNewCfgHttpsServerAccess
-- leaves to enable/disable https access from snmp.
--
-- Revision submit_cheetah_16446/1 2005/12/06 17:29:22 drosu
-- Ported submit 16445 from elmo branch
--
-- Revision submit_cheetah_16394/1 2005/12/05 18:37:31 bshao
-- CR 1223294: Dynamically compile out MIB objects that are
-- not applicable to the product.
--
-- Revision submit_cheetah_16181/1 2005/11/25 16:35:15 coman
-- Fix for Oscar build, added ELMO_PROJECT for FastFwd objects
--
-- Revision submit_cheetah_16445/1 2005/12/06 17:21:33 drosu
-- Increased size for hwSwitchSoftwareVersion
--
-- Revision submit_cheetah_16146/1 2005/11/24 11:27:41 coman
-- Added snmp support on Elmo for Port Fast Forwarding (only on external ports)
--
-- Revision submit_cheetah_14828/2 2005/11/10 19:35:34 rmundhra
-- Merge with latest.
--
-- Revision submit_cheetah_15643/1 2005/11/02 12:21:08 vrincian
-- Added entries and ids for get/put active config.
--
-- Revision submit_cheetah_15308/1 2005/10/28 09:13:55 rvakkala
-- Fixed CRQ01217762 "agPortCurCfgPreferred" does not return
-- right value in Alteon 3408.
--
-- Revision submit_cheetah_15219/1 2005/10/14 11:35:28 drosu
-- Changes for adding /cfg/sys/access/user menu in SNMP.
--
-- Revision submit_cheetah_15005/1 2005/10/06 15:49:43 angamuth
-- Changed MIB variable symSigFileVersionSeqString to symSigFileVersionSeqNumber.
--
-- Revision submit_cheetah_14904/1 2005/10/04 12:17:20 angamuth
-- Changed max size of symSigFileVersionSeqString to 12.
--
-- Revision submit_cheetah_14834/1 2005/10/03 16:01:47 angamuth
-- Added symSigFileVersionSeqString MIB.
--
-- Revision submit_cheetah_14828/1 2005/11/05 00:39:24 rmundhra
-- Added initial support for auto-discovery.
--
-- Revision submit_cheetah_14768/2 2005/09/28 16:27:28 angamuth
-- Merged with previous changes.
--
-- Revision submit_cheetah_14775/1 2005/09/28 12:55:47 vrincian
-- Added new leaf agTftpBkCfgFileName in agentConfig->agTftp for the backup
-- configuration filename to be transferred to/from.
-- Added two more possible values for agTftpAction:
-- - bkcfg-get (10) - Download switch backup configuration from a specified
-- file (agTftpBkCfgFileName) on the TFTP server.
-- - bkcfg-put (11) - Upload switch backup configuration to a specified
-- file (agTftpBkCfgFileName) on the TFTP server.
--
-- Revision submit_cheetah_14768/1 2005/09/28 16:02:09 angamuth
-- Added symCurCfgDefaultAction and removed symSignatureFileVersion.
--
-- Revision submit_cheetah_14741/1 2005/09/27 19:31:56 angamuth
-- Added MIBs for Symantec Licensing, Symantec Info and default action
-- for Symantec configuration.
--
-- Revision submit_cheetah_14320/1 2005/09/09 19:37:37 angamuth
-- Moved SymantecState from SLB port table to Security port table
-- and removed PolicyAction MIB variable from SigBwmMappingTable.
--
-- Revision submit_cheetah_13685/1 2005/08/11 19:08:59 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_13638/1 2005/08/07 16:22:14 rrekha
-- Fixed Elmo build.
--
-- Revision submit_cheetah_13565/1 2005/08/06 00:09:27 rrekha
-- Fixed Zoe build error.
--
-- Revision submit_cheetah_13628/1 2005/08/05 22:46:04 rrekha
-- Fixed Q01186464: Add mibs agPortCur/NewCfgTagPVID under the proper flag
-- otherwise for Cheetah getnext operation fails.
--
-- Revision submit_cheetah_13563/1 2005/08/05 17:39:32 rrekha
-- Moved all the BWM related flags into the raw files.
--
-- Revision submit_cheetah_13555/1 2005/08/03 16:16:22 angamuth
-- Fixed the duplicate MIBs for SYMANTEC.
--
-- Revision submit_cheetah_13044/2 2005/08/02 14:54:46 angamuth
-- Merged with previous changes.
--
-- Revision submit_cheetah_13132/1 2005/07/13 10:35:58 angamuth
-- Initial check-in for the MIBs to be available. Found under the build flag
-- SYMANTEC.
--
-- Revision submit_cheetah_13044/1 2005/08/02 14:45:45 angamuth
-- Added MIBs for Symantec BWM table.
--
-- Revision submit_cheetah_12797/1 2005/06/22 05:53:47 virgiliu
-- MIB object to get switch serial number and other general switch info
--
-- Revision submit_cheetah_12000/3 2005/06/17 02:03:54 angamuth
-- Merged with previous previous changes.
--
-- Revision submit_cheetah_12688/1 2005/06/16 22:41:38 angamuth
-- Modified MIBs for adding/removing all DoS attacks for a port.
--
-- Revision submit_cheetah_12000/2 2005/06/17 02:00:11 angamuth
-- Merged with previous changes.
--
-- Revision submit_cheetah_12292/2 2005/06/15 03:43:16 angamuth
-- Merged with previous changes.
--
-- Revision submit_cheetah_12539/1 2005/06/09 18:36:31 dtai
-- Q01143008: France Telecom enhancement to allow PVID be tagged/untagged
-- in IBM SOL feature
--
-- Revision submit_cheetah_12489/1 2005/06/02 12:22:26 radu
-- Alin T: Added build flags.
--
-- Revision submit_cheetah_12088/1 2005/06/01 13:44:18 radu
-- Alin T: Added TACACS+ new features.
--
-- Revision submit_cheetah_12302/1 2005/06/01 12:21:11 rvakkala
-- Fixed CR1139837 Added MIB support for RMON syslog.
--
-- Revision submit_cheetah_12292/1 2005/06/15 03:26:32 angamuth
-- Added MIB support for DoS Attacks aadd and arem commands.
--
-- Revision submit_cheetah_12130/1 2005/05/13 15:16:59 yatsze
-- Allow seclog rate threshold to be 0
--
-- Revision submit_cheetah_11908/2 2005/05/13 13:49:40 angamuth
-- Merged with previous changes.
--
-- Revision submit_cheetah_11991/2 2005/05/13 05:37:54 angamuth
-- Merged with previous changes.
--
-- Revision submit_cheetah_12098/1 2005/05/12 13:55:58 yatsze
-- Rename agDosPortStatsARPBCast to agDosPortStatsARPNuCast
--
-- Revision submit_cheetah_11990/2 2005/05/12 10:10:40 rvakkala
-- Added mib support for BWM stats via data/mgmt port
--
-- Revision submit_cheetah_12000/1 2005/06/17 01:31:47 angamuth
-- Added MIBs for SNMP File Transfer (SNMP_FT) and IP ACL BOGON Info.
--
-- Revision submit_cheetah_11768/4 2005/05/09 09:07:27 rvakkala
-- Added mib support for ntp oper
--
-- Revision submit_cheetah_11990/1 2005/05/12 09:34:28 rvakkala
-- Added MIBs for BWM stat mgmt/data port
--
-- Revision submit_cheetah_11991/1 2005/05/13 05:30:10 angamuth
-- Removed agSaveNeeded from the leaf agSave.
--
-- Revision submit_cheetah_11945/1 2005/05/05 16:14:49 angamuth
-- Fixing build errors for Bert/Zoe.
--
-- Revision submit_cheetah_11920/2 2005/05/04 14:05:56 mp1
-- SNMP for XML config
--
-- Revision submit_cheetah_11908/1 2005/05/13 12:12:54 angamuth
-- Added MIBs for per port DoS attacks.
--
-- Revision submit_cheetah_11669/1 2005/05/03 14:38:44 angamuth
-- Added MIBs for Asynchrnous SNMP Save.
--
-- Revision submit_cheetah_11768/3 2005/05/08 08:16:38 rvakkala
-- Added mib support for ntp oper req
--
-- Revision submit_cheetah_11768/2 2005/05/08 08:13:13 rvakkala
-- Added mib support for ntp oper req
--
-- Revision submit_cheetah_11768/1 2005/05/08 08:04:55 rvakkala
-- Added mibs for ntp oper req
--
-- Revision submit_cheetah_11584/1 2005/04/14 21:19:00 yatsze
-- Obsolete security fragment
--
-- Revision submit_cheetah_11549/1 2005/04/13 18:57:36 yatsze
-- Rename udploop attack to pepsi attack, add rc8 udp attack and add icmp and igmp type check
--
-- Revision submit_cheetah_11512/1 2005/04/12 21:06:20 yatsze
-- Add code for icmpoff DoS attack
--
-- Revision submit_cheetah_11468/1 2005/04/08 13:27:53 yatsze
-- Add agDosPortStatsARPBCast and agDosPortStatsGARP
--
-- Revision submit_cheetah_11446/1 2005/04/07 17:53:05 mp1
-- dst IP acl BBI & SNMP
--
-- Revision submit_cheetah_11200/2 2005/04/06 06:01:14 angamuth
-- Merged with previous changes.
--
-- Revision submit_cheetah_11356/1 2005/03/30 21:12:21 yatsze
-- Add PORT_ACCESS MIB objects
--
-- Revision submit_cheetah_11345/1 2005/03/30 02:30:17 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_11200/1 2005/04/06 05:07:16 angamuth
-- Added MIB Objects for DoS Attack Prevention Configuration and DoS Attack Port Statistics.
--
-- Revision submit_cheetah_11267/1 2005/03/23 20:47:11 yatsze
-- Add agPortCurCfgPortAlias and agPortNewCfgPortAlias
--
-- Revision submit_cheetah_11186/1 2005/03/15 02:47:01 rrekha
-- Remove the following flags from Makefile and added to the *.raw
-- files : WLM_SASP, SLB_SIP, X_FORWARDED_FOR, SLB_PBIND_CIP_NORPORT,
-- SLB_PORT_BIND
--
-- Revision submit_cheetah_11025/1 2005/03/02 21:00:31 rrekha
-- SNMP support for WLM SASP.
--
-- Revision submit_cheetah_10888/1 2005/02/08 16:49:07 mp1
-- add bogon enable capability
--
-- Revision submit_cheetah_10843/1 2005/02/04 18:07:58 mp1
-- implement bogon get
--
-- Revision submit_cheetah_10393/1 2005/01/05 21:01:35 mmacnt
-- code reorg - moved from lib/agent
--
-- Revision submit_cheetah_10538/1 2004/12/13 19:09:43 yatsze
-- Add agSslprocNewCfgFilt and agSslprocCurCfgFilt
-- aosswitch.mib_raw
-- Revision submit_cheetah_10514/1 2004/12/09 02:41:25 dillibab
-- Added snmp objects to enable/disable syslog and trap for Security pack.
--
-- Revision submit_cheetah_10219/2 2004/11/16 18:58:29 dillibab
-- Merged with previous changes.
--
-- Revision submit_cheetah_10207/1 2004/11/15 21:07:06 mp1
-- Q01021582 - ability to get and clear ACL stats
--
-- Revision submit_cheetah_10219/1 2004/11/16 18:40:20 dillibab
-- Added SNMP object to configure Idle CLI sessions timeout.
--
-- Revision submit_cheetah_10057/1 2004/11/03 20:47:29 dillibab
-- Added mib object for port dscp remarking state.
--
-- Revision submit_cheetah_10030/1 2004/11/01 22:10:21 bshao
-- CR 1004595: Rework this CR by adding new MIB objects at the
-- end of the table so that the MIB objects will be backward
-- compatible with the older version of AOS.
--
-- Revision submit_cheetah_10011/1 2004/10/28 21:42:03 bshao
-- CR 1016054: Changed VLAN range to 0..4095.
--
-- Revision submit_cheetah_9994/1 2004/10/27 01:28:21 bshao
-- CR 999848: Fixed Vlan range for Zoe's SNMP configuration.
--
-- Revision submit_cheetah_9892/1 2004/10/20 17:38:30 bshao
-- CR 1004595: Added Gig port's mode, and speed configuration
-- options for SNMP.
--
-- Revision submit_cheetah_9848/1 2004/10/18 18:40:23 yatsze
-- Obsolete agEnabledAgslbKey mib object
--
-- Revision submit_cheetah_9821/1 2004/10/15 00:45:17 ocheung
-- Added support for packet depth for pattern matching.
--
-- Revision submit_cheetah_9593/1 2004/09/30 00:29:57 rrekha
-- Added change in the enum as requested by Wendell. This is because the EMS
-- parse cannot handle the long enums.
--
-- Revision submit_cheetah_9626/1 2004/09/29 19:18:01 yatsze
-- Add code to support ptimg and gtimg of boot from BBI and SNMP
--
-- Revision submit_cheetah_9269/1 2004/09/07 16:27:00 yatsze
-- Add code for put ts dump
--
-- Revision submit_cheetah_9196/1 2004/09/01 21:43:06 rrekha
-- Minor changes for SMIv2 compliance.
--
-- Revision submit_cheetah_8961/1 2004/08/19 05:51:49 dillibab
-- Added MIB objects for daylight savings configuration.
--
-- Revision submit_cheetah_8858/1 2004/08/12 17:45:46 yatsze
-- Add FTP_SUPPORT code
--
-- Revision submit_cheetah_8644/1 2004/08/02 21:42:02 rrekha
-- Fixed Q00949352: Changed range for agCur/NewCfgNTPResyncInterval to 1..44640.
--
-- Revision submit_cheetah_8578/1 2004/07/30 00:36:29 rrekha
-- Update the copyright header.
--
-- Revision submit_cheetah_8551/1 2004/07/28 00:53:04 rrekha
-- Added mibs needed for zoe.
--
-- Revision submit_cheetah_8437/1 2004/07/21 17:20:51 rrekha
-- Obsolete agSlotNumber since it is not used in Cheetah.
--
-- Revision submit_cheetah_8433/1 2004/07/20 18:56:29 rrekha
-- Fixed Q00949352: Change agCur/NewCfgNTPResyncInterval to 1..1080.
--
-- Revision submit_cheetah_8336/1 2004/07/15 17:12:59 mp1
-- Q00935759 - SFP enhancement, Q00945606 refer to SFP instead of optical
--
-- Revision submit_cheetah_8173/2 2004/07/09 09:05:25 dillibab
-- Merged with previous changes.
--
-- Revision submit_cheetah_8078/2 2004/07/07 16:04:39 dillibab
-- Merged with previous changes.
--
-- Revision submit_cheetah_8173/1 2004/07/09 08:38:02 dillibab
-- Added object for Current system time in ntp statistics.
--
-- Revision submit_cheetah_8079/1 2004/06/30 07:17:20 dillibab
-- Corrected Chassis info mib variable name and description.
--
-- Revision submit_cheetah_8078/1 2004/07/07 15:28:16 dillibab
-- Added mib objects for nonip for port.
--
-- Revision submit_cheetah_7956/1 2004/06/29 02:26:08 dillibab
-- Added mib objects for Chasis info.
--
-- Revision submit_cheetah_7669/1 2004/06/08 07:04:51 dillibab
-- Added mib objects to secondary NTP server and NTP statistics.
--
-- Revision submit_cheetah_7529/1 2004/05/25 18:48:39 dleu
-- Added SNMP and WebUI support for TACACS+ command
-- authorization and logging.
--
-- Revision submit_cheetah_7524/1 2004/05/24 22:42:53 dleu
-- Added SNMP support for the secondary TACACS+ server
-- secret.
--
-- Revision submit_cheetah_7493/1 2004/05/24 21:38:34 dleu
-- Added SNMP support for the secondary Radius server
-- secret.
--
-- Revision submit_cheetah_7421/1 2004/05/18 23:22:58 dleu
-- The correct TACACS+ server timout range should
-- be 4..15.
--
-- Revision submit_cheetah_7342/1 2004/05/18 09:57:05 dillibab
-- Added SNMP Support for TFTP Put Image.
--
-- Revision submit_cheetah_7267/1 2004/05/12 14:28:25 yatsze
-- Add mib object mpMemStats
--
-- Revision submit_cheetah_7248/1 2004/05/11 21:33:52 hkavulur
-- Added KEY support for inbound link loadbalancing
--
-- Revision submit_cheetah_7173/1 2004/05/05 17:29:04 mp1
-- changed MIB description for port to be SFP instead of optical
--
-- Revision submit_cheetah_7132/1 2004/05/04 19:13:22 mp1
-- implement SNMP for bkp dumps and https
--
-- Revision submit_cheetah_7088/1 2004/04/29 02:00:57 mmacnt
-- CR Q00794609 - add support for a few more hardware related MIB variables
--
-- Revision submit_cheetah_6019/1 2004/01/08 00:45:06 rrekha
-- Fixed Q00768791: Obsoleted mib objects agMgmtNewCfgBroadcast and
-- agMgmtCurCfgBroadcast since the broadcast address is now
-- auto-generated based on the IP/mask.
--
-- Revision submit_cheetah_6011/1 2004/01/08 00:11:41 rrekha
-- Fixed Q00747892: Changed the names in enum for agCurCfgSyslog2Sev, agNewCfgSyslog2Sev,
-- agCurCfgSyslogSev and agNewCfgSyslogSev.
--
-- Revision submit_cheetah_5944/1 2003/12/18 00:20:40 rrekha
-- Fixed Q00784146: Added a new MIB object snmpClearStats to
-- clear SNMP statistics.
--
-- Revision submit_cheetah_5838/1 2003/12/08 19:41:08 yatsze
-- Add agEnabledAgslbKey to handle AGSLB swkey query
--
-- Revision submit_cheetah_5693/1 2003/11/16 19:34:33 rrekha
-- Converted MIBs to SMIv2.
--
-- Revision submit_cheetah_5313/1 2003/10/15 00:09:05 rrekha
-- Ported from 21.0 branch.
-- Added LYNX related mibs. Since agSonmp and agSslproc used the
-- same OID changed agSonmp OID.
--
-- Revision submit_cheetah_4828/1 2003/08/27 21:35:34 rrekha
-- Changed udpBlastNewCfgudpPortLowIndx and udpBlastNewCfgudpPortHighIndx
-- to read-only variables are indices are always read only.
--
-- Revision submit_cheetah_4631/1 2003/08/18 19:56:33 rrekha
-- Fixed Q00659950: Added MIB objects agCurCfgSyslogSev/agNewCfgSyslogSev
-- and agCurCfgSyslogSev2/agNewCfgSyslogSev2 to set the syslog severity.
--
-- Revision submit_cheetah_4435/1 2003/08/12 22:59:56 rrekha
-- Changed name of mib file for cheetah*.mib to aos*.mib.
--
-- Revision submit_cheetah_4356/1 2003/08/01 01:44:13 rrekha
-- Added MIB object agNewCfgPgrpDelete to delete pgroup entry.
--
-- Revision submit_cheetah_4016/1 2003/07/18 18:55:03 ocheung
-- Added MIB and agent support for /cf/security/seclog and
-- /cf/security/fragment commands. Also added agent code to
-- handle security swkey.
--
-- Revision submit_cheetah_3944/2 2003/07/16 17:50:00 ocheung
-- Merged file.
--
-- Revision submit_cheetah_3927/1 2003/07/15 23:43:56 yhuang1
-- fixed Q00711779: ported fix from 21.0 branch.
--
-- Revision submit_cheetah_3944/1 2003/07/16 17:43:31 ocheung
-- Added agEnabledSecurityKey for Security Pack feature.
--
-- Revision submit_cheetah_3296/1 2003/07/09 22:53:37 rrekha
-- Added new mib objects agMgmtCurCfgSonmp/agMgmtNewCfgSonmp.
--
-- Revision submit_cheetah_3761/1 2003/07/02 19:37:31 mp1
-- port agent fix from GE branch
--
-- Revision submit_cheetah_3705/1 2003/06/27 00:33:08 rmundhra
-- Implemented the SNMP bitmap for UDP pattern matching.
-- Which represents the strings that are part of this
-- Pattern group.
--
-- Revision submit_cheetah_3633/1 2003/06/25 17:52:44 yhuang1
-- IP_ACL: moved under security item.
--
-- Revision submit_cheetah_3584/1 2003/06/23 20:07:11 yhuang1
-- UDP_BLAST: moved under security item.
--
-- Revision submit_cheetah_3563/2 2003/06/20 23:03:07 rrekha
-- merging out.
--
-- Revision submit_cheetah_3569/1 2003/06/19 20:13:35 rmundhra
-- Adding DOS port statistics blat.
--
-- Revision submit_cheetah_3563/1 2003/06/20 22:59:42 rrekha
-- Grouped all Pgroup related items under a single node
-- agPgroup.
--
-- Revision submit_cheetah_3476/1 2003/06/19 01:03:57 rmundhra
-- Adding SNMP/WebUI support for UDP pattern matching
-- and DOS attack detection.
--
-- Revision submit_cheetah_3379/1 2003/06/10 01:36:52 rrekha
-- Added node agSecurity under agent to be consistent with the
-- CLI. All the security related menu items will be moved to
-- under this node.
--
-- Revision submit_cheetah_3231/1 2003/05/22 23:28:30 rtsai
-- Fixed mib name typo.
--
-- Revision submit_cheetah_3122/2 2003/05/16 14:22:00 rtsai
-- Changed the mib description.
--
-- Revision submit_cheetah_3122/1 2003/05/16 00:42:22 rtsai
-- Added more mibs for ICMP_RATE_CTRL and ENH_RATE_LIM.
--
-- Revision submit_cheetah_3023/1 2003/05/12 18:40:03 yatsze
-- Add mgmt port stats object
--
-- Revision submit_cheetah_2881/1 2003/05/07 02:12:42 ocheung
-- Added MIB variables for ICM_RATE_CTRL feature.
--
-- Revision submit_cheetah_2752/1 2003/04/30 20:35:38 yatsze
-- Change mgmt port intr and retry to read-write
--
-- Revision submit_cheetah_2846/1 2003/04/30 00:23:28 abhijitk
-- Added the MIB for some of the new 21.0 BWM features.
--
-- Revision submit_cheetah_2669/1 2003/04/21 13:52:40 yatsze
-- Add mgmt port gw interval and retries
--
-- Revision submit_cheetah_2591/1 2003/04/11 21:09:26 rmundhra
-- Obsoleted agCurCfgMgmtNetwork, agNewCfgMgmtNetwork,
-- agCurCfgMgmtMask, agNewCfgMgmtMask as MULTI_MNET
-- build flag is enabled and must use agMgmtNetTable instead.
--
-- Revision submit_cheetah_2506/1 2003/04/04 18:56:47 rmundhra
-- Porting code from Tigon for Scheduled Reboot.
--
-- Revision submit_cheetah_2494/3 2003/04/02 21:54:37 mp1
-- added GE pref/backup access
--
-- Revision submit_cheetah_2468/2 2003/04/02 18:48:46 rmundhra
-- Merging out.
--
-- Revision submit_cheetah_2461/2 2003/04/01 04:01:30 mp1
-- changes to MIB for GE Cheetah
--
-- Revision submit_cheetah_2468/1 2003/04/02 18:43:00 rmundhra
-- Added MULTI_MNET MIB objects.
--
-- Revision submit_cheetah_2362/1 2003/03/31 18:14:18 rmundhra
-- Porting SNMP Trap Interface from Tigon.
--
-- Revision submit_cheetah_2168/1 2003/03/24 18:25:35 sukhvipa
-- Added TACACS snmp support.
--
-- Revision submit_cheetah_2293/1 2003/03/15 01:05:02 rrekha
-- Added agCurCfgSonmpSrcIf and agNewCfgSonmpSrcIf.
--
-- Revision submit_cheetah_2244/1 2003/03/11 21:31:08 andyrao
-- Defined the MIB objects agCurCfgNortelMultipleStgMode and
-- agNewCfgNortelMultipleStpMode.
--
-- Revision submit_cheetah_1919/1 2003/02/05 20:07:00 rrekha
-- Changed the include paths for integrating support
-- for SNMP V3 Windmanage Stack.
--
-- Revision submit_cheetah_1620/1 2002/12/04 21:56:40 rmundhra
-- Fixed CR Q00574195: EMS: Port Ena/Dis does not
-- seem to work.
-- Added SNMP support for /oper/port x commands.
--
-- Revision submit_cheetah_1544/1 2002/11/20 00:24:03 rrekha
-- Fixed Q00542489: Added mib object agClearFlashDump to clear the
-- dump.
--
-- Revision submit_cheetah_1520/1 2002/11/16 00:20:24 rrekha
-- Added mib objects agMgmtCurCfgDns/agMgmtNewCfgDns.
--
-- Revision submit_cheetah_1368/1 2002/10/24 20:14:46 rrekha
-- Fixed Q00546514: Added missing SP maintenance statistics.
--
-- Revision submit_cheetah_1329/1 2002/10/22 02:14:49 rrekha
-- Added mib objects to get mgmt port info.
--
-- Revision submit_cheetah_1324/1 2002/10/21 23:23:01 rrekha
-- Fixed typo in pktStatsDiscards description.
--
-- Revision submit_cheetah_1286/1 2002/10/17 23:48:45 rrekha
-- Fixed Q00543161: Remove coldReset/warmReset from enum in agReset
-- as cheetah has only one reset.
--
-- Revision submit_cheetah_1248/1 2002/10/16 16:40:59 rmundhra
-- Fixed CR Q00536352 & CR Q00538316: EMS & WebUI
-- not able to view Man port stats.
--
-- Revision submit_cheetah_1231/1 2002/10/14 23:25:33 rmundhra
-- Fixed CR Q00540448: WebUI: always shows speed as
-- 10 and shows flow control for Man port.
--
-- Removed flow control as its been removed from CLI.
--
-- Revision submit_cheetah_1148/2 2002/10/11 22:48:42 rmundhra
-- Merged Rekha S. changes.
--
-- Revision submit_cheetah_1165/1 2002/10/10 18:39:31 rrekha
-- Added MIB object pktStatsDiscards.
--
-- Revision submit_cheetah_1150/1 2002/10/07 23:38:06 rrekha
-- Fixed Q00534536: Added agCurCfgTelnetServerPort/agNewCfgTelnetSeverPort.
--
-- Revision submit_cheetah_1124/1 2002/10/06 19:02:56 rrekha
-- Added objects for mgmt port defaults, agTfptPort for user input of data/mgmt
-- port for tftp.
-- Removed agMgmtPortDelete and agCurCfgNtpPort/agNewCfgNtpPort.
--
-- Revision submit_cheetah_1114/1 2002/10/04 00:38:46 rrekha
-- Added agCurCfgSnmpTimeout/agNewCfgSnmpTimeout.
-- Removed seperate timeout for apply, diff and dump.
--
-- Revision submit_cheetah_1068/1 2002/10/01 01:16:19 rrekha
-- Changed value of clear in enum to 2 to be consistent with
-- other mibs as per Wendell's request.
--
-- Revision submit_cheetah_1058/1 2002/09/30 18:51:13 rrekha
-- Fixed Q00529961: Remove agNewCfgSyslogTrapIsd/agCurCfgSyslogTrapIsd.
--
-- Revision submit_cheetah_959/1 2002/09/18 23:50:41 rrekha
-- Added MIB objects and method routines for configuration dump.
--
-- Revision submit_cheetah_900/1 2002/09/09 21:30:50 rrekha
-- Added more description to agApplyConfig and agDiffState
-- variables.
--
-- Revision submit_cheetah_833/1 2002/09/03 20:59:13 rmundhra
-- Fixed CR Q00512335: EMS cannot provision NTP to use
-- management port or data port.
-- Fixed CR Q00512343: WebUI cannot provision NTP to use
-- management port or data port.
--
-- Revision submit_cheetah_787/1 2002/08/28 20:08:54 rrekha
-- Added mib variables agHwTemperatureStatus and agHwFanStatus.
-- Removed old mib variables agHwPowerSupplyStatus and agHwSensor1Temp
-- as they are no longer available in Cheetah.
--
-- Revision submit_cheetah_649/1 2002/08/16 02:10:54 rrekha
-- Added MIB objects and method routines for management port
-- support.
--
-- Revision submit_cheetah_507/1 2002/07/31 17:44:56 rrekha
-- Correct descriptions for pkt statistics.
--
-- Revision submit_cheetah_501/1 2002/07/29 23:26:09 rrekha
-- Added mib objects for ptk alloc hi-watermark statistics.
-- Remove unused mib objects agTftpServerIpAddr and agTftpDownload.
--
-- Revision submit_cheetah_405/1 2002/07/22 18:32:21 rmundhra
-- Fixed Q00487022: EMS: There should be OSPF syslog
-- messages implemented under Syslog-Trap.
--
-- Revision submit_cheetah_365/1 2002/07/16 19:01:51 rrekha
-- Ported NTP changes for GE_LATEST.
-- Changed ntp timezone setting from hours to hours:minutes, to support
-- locales with a non-zero minute offset.
--
-- Revision submit_cheetah_176/1 2002/06/20 23:47:50 rmundhra
-- Added mib objects to clear the port statistics.
--
-- Revision submit_cheetah_162/1 2002/06/19 18:56:00 rrekha
-- Added entry 'failed' to agApplyConfig enum.
--
-- Revision submit_cheetah_81/1 2002/06/18 23:29:17 rrekha
-- Added a new node agApply to support apply warning/error messages
-- via SNMP.
--
-- Revision ch_1_0_0_dev/11 2002/06/04 18:55:00 rrekha
-- Fixed CR Q00436747: Ported fix from ge_latest.
-- Change type for pktStatsMediums, pktStatsJumbos, pktStatsSmalls to Gauge.
-- Added better descpritions for pktStats.
--
-- Revision ch_1_0_0_dev/10 2002/06/04 02:21:46 rrekha
-- Added remaining SP maint statistics.
--
-- Revision ch_1_0_0_dev/9 2002/06/03 20:29:21 rrekha
-- Added MIB objects for SP maint and CPU utilization statistics.
--
-- Revision ch_1_0_0_dev/8 2002/05/31 01:24:12 rrekha
-- Added node agDiff for SNMP diff support.
--
-- Revision ch_1_0_0_dev/7 2002/05/15 21:55:36 rrekha
-- Removed memStats as they no longer apply.
--
-- Revision ch_1_0_0_dev/6 2002/05/09 21:00:53 smiao
-- Removed TEMP_REMOVE_FOR_CHEETAH flag. Broght back CPU utilization stats.
--
-- Revision ch_1_0_0_dev/5 2002/04/30 20:42:46 rrekha
-- Added agSyslogMsgTable for the list of syslog messages.
--
-- Revision ch_1_0_0_dev/4 2002/04/25 01:04:49 rrekha
-- Removed mib objects agCurCfgSpanningTree/agNewCfgSpanningTree as
-- they are no longer used.
-- Rearranged nodes under agGeneralGroup and agGeneralConfig group
-- into more meaningful groups : agSystem, agTftp, agNtp, agSyslog.
--
-- Revision ch_1_0_0_dev/3 2002/04/23 21:49:30 smiao
-- Renamed node cheetah to aws-switches.
--
-- Revision ch_1_0_0_dev/2 2002/04/09 18:03:04 ocheung
-- Bring back pkt stats for jumbo frames.
--
-- Revision ch_1_0_0_dev/1 2002/03/07 19:01:57 smiao
-- Removed unnecssary MIB objects for CHEEATH.
--
-- Revision ch10latest_smiao/2 2002/02/13 01:41:50 smiao
-- Initial checked in for cheetah MIB files.
--
-- $EndLog$
--
--
ALTEON-CHEETAH-SWITCH-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, Integer32, Counter32, Gauge32,
IpAddress, TimeTicks
FROM SNMPv2-SMI
DisplayString, PhysAddress
FROM SNMPv2-TC
aws-switch
FROM ALTEON-ROOT-MIB;
agent 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 Switch."
REVISION "200409010000Z" -- 1 September, 2004
DESCRIPTION
"Added revision clause for SMIv2 compliance."
::= { aws-switch 1 }
agentConfig OBJECT IDENTIFIER ::= { agent 1 }
agentStats OBJECT IDENTIFIER ::= { agent 2 }
agentInfo OBJECT IDENTIFIER ::= { agent 3 }
agentOper OBJECT IDENTIFIER ::= { agent 4 }
agSystem OBJECT IDENTIFIER ::= { agentConfig 1 }
agPortConfig OBJECT IDENTIFIER ::= { agentConfig 2 }
agRadiusConfig OBJECT IDENTIFIER ::= { agentConfig 3 }
agNTP OBJECT IDENTIFIER ::= { agentConfig 4 }
agSyslog OBJECT IDENTIFIER ::= { agentConfig 5 }
agTrapHost OBJECT IDENTIFIER ::= { agentConfig 6 }
agTftp OBJECT IDENTIFIER ::= { agentConfig 7 }
agApply OBJECT IDENTIFIER ::= { agentConfig 8 }
agMgmt OBJECT IDENTIFIER ::= { agentConfig 9 }
agSslproc OBJECT IDENTIFIER ::= { agentConfig 10 }
agTacacsConfig OBJECT IDENTIFIER ::= { agentConfig 11 }
agMgmtNetConfig OBJECT IDENTIFIER ::= { agentConfig 12 }
agBoot OBJECT IDENTIFIER ::= { agentConfig 13 }
agSecurity OBJECT IDENTIFIER ::= { agentConfig 14 }
agSonmp OBJECT IDENTIFIER ::= { agentConfig 15 }
agPortAccessCfg OBJECT IDENTIFIER ::= { agentConfig 16 }
agSave OBJECT IDENTIFIER ::= { agentConfig 17 }
agFileTransfer OBJECT IDENTIFIER ::= { agentConfig 18 }
agPgroup OBJECT IDENTIFIER ::= { agSecurity 1 }
ipAclCfg OBJECT IDENTIFIER ::= { agSecurity 3 }
udpBlastCfg OBJECT IDENTIFIER ::= { agSecurity 4 }
secGeneralCfg OBJECT IDENTIFIER ::= { agSecurity 5 }
dosAttackPrevCfg OBJECT IDENTIFIER ::= { agSecurity 6 }
ipDstAclCfg OBJECT IDENTIFIER ::= { agSecurity 7 }
symantecCfg OBJECT IDENTIFIER ::= { agSecurity 8 }
pktStats OBJECT IDENTIFIER ::= { agentStats 1 }
mpCpuStats OBJECT IDENTIFIER ::= { agentStats 2 }
portStats OBJECT IDENTIFIER ::= { agentStats 3 }
spStats OBJECT IDENTIFIER ::= { agentStats 4 }
mgmtStats OBJECT IDENTIFIER ::= { agentStats 5 }
securityStats OBJECT IDENTIFIER ::= { agentStats 6 }
agClearStats OBJECT IDENTIFIER ::= { agentStats 7 }
mpMemStats OBJECT IDENTIFIER ::= { agentStats 8 }
ntpStats OBJECT IDENTIFIER ::= { agentStats 9 }
portMirrorStats OBJECT IDENTIFIER ::= { agentStats 11 }
hardware OBJECT IDENTIFIER ::= { agentInfo 1 }
portInfo OBJECT IDENTIFIER ::= { agentInfo 2 }
swKeyInfo OBJECT IDENTIFIER ::= { agentInfo 3 }
agDiff OBJECT IDENTIFIER ::= { agentInfo 4 }
agCfgDump OBJECT IDENTIFIER ::= { agentInfo 5 }
mgmtInfo OBJECT IDENTIFIER ::= { agentInfo 6 }
securityInfo OBJECT IDENTIFIER ::= { agentInfo 7 }
capacityInfo OBJECT IDENTIFIER ::= { agentInfo 9 }
agNTPOper OBJECT IDENTIFIER ::= { agentOper 2 }
-- There are two configuration blocks for Alteon switches.
-- The "current_config" reflects the configuration parameters that the
-- switch is operating on and it is read-only. The objects with "CurCfg"
-- in the name are reflect to this configuration block.
--
-- The "new_config" accepts user configurations on set. The objects with
-- "NewCfg" in the name are reflect to this configuration block.
--
-- The newly set configurations will not take effect until a "apply"
-- command has been issued (See agApplyConfiguration object defined in
-- ALTEON-PRIVATE-MIBS).
--
-- The newly set configurations will not be saved through next restarting
-- of the switch unless a "save" command has been issued (See
-- agSaveConfiguration object defined in ALTEON-PRIVATE-MIBS).
-- Hardware Information
hwPartNumber OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..16))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The hardware part number of the Alteon Switch."
::= { hardware 1 }
hwRevision OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..16))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The hardware revision. If the revision is not
available, a zero length string should be returned."
::= { hardware 2 }
hwTemperatureStatus OBJECT-TYPE
SYNTAX INTEGER {
ok(1),
exceed(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The status of the temperature sensor."
::= { hardware 3 }
hwFanStatus OBJECT-TYPE
SYNTAX INTEGER {
ok(1),
fail(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The status of the fan."
::= { hardware 4 }
switchCapL2Info OBJECT IDENTIFIER ::= { capacityInfo 1 }
switchCapL3Info OBJECT IDENTIFIER ::= { capacityInfo 2 }
switchCapSlbInfo OBJECT IDENTIFIER ::= { capacityInfo 3 }
switchCapSlbPortInfo OBJECT IDENTIFIER ::= { capacityInfo 4 }
switchCapBwmInfo OBJECT IDENTIFIER ::= { capacityInfo 5 }
switchCapSecInfo OBJECT IDENTIFIER ::= { capacityInfo 6 }
switchCapGeneralInfo OBJECT IDENTIFIER ::= { capacityInfo 7 }
switchCapFDBMaxEnt OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Maximum number of entries for FDB in device."
::= { switchCapL2Info 1 }
switchCapFDBCurrEnt OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current number of entries for FDB in device."
::= { switchCapL2Info 2 }
switchCapFDBPerSPMaxEnt OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Maximun number of entries for FDB per SP in device."
::= { switchCapL2Info 3 }
switchCapVlanMaxEnt OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Maximum number of entries for vlan in device."
::= { switchCapL2Info 4 }
switchCapVlanCurrEnt OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current number of entries for vlan in device, the value
is in the form x(y) where 'x' indicates number of current
entries and 'y' indicates number of enabled entries only."
::= { switchCapL2Info 5 }
switchCapStaticTrunkGrpsMaxEnt OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Maximum number of entries for static trunk groups in device."
::= { switchCapL2Info 6 }
switchCapStaticTrunkGrpsCurrEnt OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current number of entries for static trunk groups
in device, the value is in the form x(y) where 'x'
indicates number of current entries and 'y' indicates
number of enabled entries only."
::= { switchCapL2Info 7 }
switchCapLACPTrunkGRs OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"LACP Trunk groups in device."
::= { switchCapL2Info 8 }
switchCapTrunksperTrunkGR OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Trunks per trunk group in device."
::= { switchCapL2Info 9 }
switchCapSTGsMaxEnt OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Maximum number of entries for STG in device."
::= { switchCapL2Info 10 }
switchCapSTGsCurrEnt OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current number of entries for STG in device, the
value is in the form x(y) where 'x' indicates number
of current entries and 'y' indicates number of
enabled entries only."
::= { switchCapL2Info 11 }
switchCapPortTeamsMaxEnt OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Maximum number of entries for port teams in device."
::= { switchCapL2Info 12 }
switchCapPortTeamsCurrEnt OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current number of entries for port teams in device, the