forked from kcsinclair/mibs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ALTEON-CHEETAH-NETWORK-MIB
10191 lines (9072 loc) · 280 KB
/
ALTEON-CHEETAH-NETWORK-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: aosnetwork.mib,v $
-- Revision 1.1 2007/10/17 01:09:54 jeneric
-- 10/07 mib updates
--
-- Revision submit_cheetah_21498/1 2006/11/08 21:32:58 jamesob
-- Q01437927-02 - Add support for need cli command which allows
-- SP Route Caching to be disabled. /c/l3/frwd/rtcache, enabled
-- by default.
--
-- Revision submit_cheetah_17995/1 2006/02/15 22:51:38 ramude
-- To change the order back to the original order.
--
-- Revision submit_cheetah_17903/1 2006/02/10 05:23:09 rvakkala
-- some part of code is lost because of merging.
--
-- Revision submit_cheetah_14327/2 2006/02/09 11:43:07 rvakkala
-- Added SNMP support for /i/l3/rip/routes.
--
-- Revision submit_cheetah_17058/2 2006/01/26 10:58:50 rvakkala
-- Fixed CRQ01249938 Nosuch object error for rip version1 mibs.
--
-- Revision submit_cheetah_14044/2 2006/01/25 04:56:41 rvakkala
-- Fixed CRQ01196510 Nbrcache entries should be in sorted order
-- and added support for total entries as CLI.
--
-- Revision submit_cheetah_17058/1 2006/01/26 10:42:14 rvakkala
-- Fixed CRQ01249938 Nosuch Object error for RIPV1 mibs.
--
-- Revision submit_cheetah_16394/1 2005/12/05 18:37:23 bshao
-- CR 1223294: Dynamically compile out MIB objects that are
-- not applicable to the product.
--
-- Revision submit_cheetah_16279/1 2005/11/30 16:21:13 coman
-- Removed vrrpCurCfgVirtRtrSharing and vrrpNewCfgVirtRtrSharing objects
--
-- Revision submit_cheetah_15772/1 2005/11/08 04:32:53 dillibab
-- Bounded icmp redirect code with CHEETAH_NO_ICMP_REDIRECT_ENH flag
--
-- Revision submit_cheetah_15518/1 2005/11/07 18:52:10 dillibab
-- Fixed CR Q01145327-01; Added SNMP objects to turn off ICMP redirects
--
-- Revision submit_cheetah_14138/1 2005/10/06 08:24:39 rvakkala
-- Added SNMP support for /i/l3/rip/dump.
--
-- Revision submit_cheetah_14044/1 2006/01/25 04:45:17 rvakkala
-- Fixed CRQ01196510 Nbrcache entries should be in sorted order
-- and added new mibs for maximun entries.
--
-- Revision submit_cheetah_14327/1 2006/02/07 06:33:25 rvakkala
-- Added support for /i/l3/rip/routes.
--
-- Revision submit_cheetah_14077/1 2005/08/29 21:10:50 rmundhra
-- Added SNMP support for vrid for static IPMC route.
--
-- Revision submit_cheetah_13983/1 2005/08/24 15:27:16 vrincian
-- Allow 0 value for priority increment of port tracking on SNMP.
--
-- Revision submit_cheetah_13908/2 2005/08/19 23:59:27 rrekha
-- Fixed build error.
--
-- Revision submit_cheetah_13908/1 2005/08/19 23:54:18 rrekha
-- Added SNMP support for RIPv2 stats.
--
-- Revision submit_cheetah_13839/1 2005/08/18 07:23:51 jbuswell
-- Q01081227-01: Added support for BGP Max AS Path Length feature.
--
-- Revision submit_cheetah_13793/2 2005/08/16 18:48:45 angamuth
-- Merged with previous changes
--
-- Revision submit_cheetah_13778/1 2005/08/16 10:44:30 rvakkala
-- Fixed bert build error.
--
-- Revision submit_cheetah_13793/1 2005/08/16 18:40:41 angamuth
-- Added MIBs for /c/l3/rip/statc ena/dis command.
--
-- Revision submit_cheetah_13684/2 2005/08/12 16:33:52 rvakkala
-- Fixed CRQ01186470 Added SNMP support for /cfg/l3/if x/ip6nd/rtradv
--
-- Revision submit_cheetah_13545/3 2005/08/12 16:20:21 rvakkala
-- Fixed CRQ01185008 Added SNMP support for /i/l3/ip interface information
--
-- Revision submit_cheetah_13685/1 2005/08/11 19:08:47 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_13545/2 2005/08/12 16:17:18 rvakkala
-- Fixed CRQ01185008 Added SNMP support for /i/l3/ip interface information.
--
-- Revision submit_cheetah_13684/1 2005/08/12 16:23:18 rvakkala
-- Fixed CRQ01186470 Added SNMP support for /cfg/l3/if x/ip6nd/rtradv
--
-- Revision submit_cheetah_13563/1 2005/08/05 17:39:27 rrekha
-- Moved all the BWM related flags into the raw files.
--
-- Revision submit_cheetah_13545/1 2005/08/12 16:10:20 rvakkala
-- Fixed CR 1185008 Added SNMP support for /i/l3/ip interface code.
--
-- Revision submit_cheetah_13400/2 2005/07/28 16:15:39 rvakkala
-- Removed cost fiels from route6 info.
--
-- Revision submit_cheetah_13349/2 2005/07/28 15:57:21 rvakkala
-- Added SNMP support for /maint/ip6/nbrcache/clear.
--
-- Revision submit_cheetah_13266/3 2005/07/28 01:57:22 rmundhra
-- Fixed earlier checkin.
--
-- Revision submit_cheetah_13266/2 2005/07/27 23:07:30 rmundhra
-- Merging out.
--
-- Revision submit_cheetah_13349/1 2005/07/28 15:49:28 rvakkala
-- Added nbr cache clear support.
--
-- Revision submit_cheetah_13400/1 2005/07/28 16:09:16 rvakkala
-- Removed cost field from route6 info.
--
-- Revision submit_cheetah_13083/1 2005/07/20 08:25:53 rvakkala
-- Added MIB support for ip6 statistics.
--
-- Revision submit_cheetah_13266/1 2005/07/27 22:38:14 rmundhra
-- Added SNMP support for static IPMC routes.
--
-- Revision submit_cheetah_12614/1 2005/07/08 13:12:45 rvakkala
-- Added MIBs for SNMP support for IPV6 nbrcache, route6.
--
-- Revision submit_cheetah_12735/2 2005/06/29 14:11:36 rvakkala
-- Added range for prefix length of interface configuration.
--
-- Revision submit_cheetah_12693/2 2005/06/22 05:31:52 virgiliu
-- Merge out.
--
-- Revision submit_cheetah_12735/1 2005/06/29 13:59:17 rvakkala
-- Added range for prefix length of interface prefix.
--
-- Revision submit_cheetah_12565/1 2005/06/16 13:19:31 rvakkala
-- Added IPv6 objects for gateway configuration.
--
-- Revision submit_cheetah_12693/1 2005/06/22 05:16:44 virgiliu
-- Vrrp Port tracking enahncements
--
-- Revision submit_cheetah_12084/2 2005/06/13 08:33:45 dillibab
-- Merged with previous changes.
--
-- Revision submit_cheetah_12479/2 2005/06/06 11:14:55 rvakkala
-- Fixed CRs Q01144717 Don't allow user to set metric to 16 on RIP interfaces.
--
-- Revision submit_cheetah_12342/2 2005/06/01 12:54:04 rvakkala
-- Added MIB support for metric info /i/l3/route/dump to fix Q01135935.
--
-- Revision submit_cheetah_12479/1 2005/06/06 10:39:06 rvakkala
-- Fixed CR1144717 don't allow user to set metric to 16 in RIP.
--
-- Revision submit_cheetah_12084/1 2005/06/10 12:24:26 dillibab
-- Added mib objects for IPv6 interface configuration.
--
-- Revision submit_cheetah_12251/1 2005/05/25 09:24:29 rvakkala
-- Fixed CRs.Q01135105, Q01135099.
--
-- Revision submit_cheetah_12342/1 2005/06/01 12:43:16 rvakkala
-- Added MIB support to fix CRQ01135935
--
-- Revision submit_cheetah_11910/1 2005/05/06 10:12:11 rvakkala
-- Added mibs for ripCurCfgVip/ripNewCfgVip in ripGeneral
--
-- Revision submit_cheetah_11716/1 2005/04/22 23:41:48 rmundhra
-- Added Snmp support for IGMP enhancements.
--
-- Revision submit_cheetah_11345/1 2005/03/30 02:30:14 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_10666/1 2005/01/10 23:18:42 vprayaga
-- Obsoleted unused RIP V2 MIB objects.
--
-- Revision submit_cheetah_10393/1 2005/01/05 21:01:30 mmacnt
-- code reorg - moved from lib/agent
--
-- Revision submit_cheetah_10355/1 2004/11/23 19:34:07 dillibab
-- Added SNMP objects for OSPF Range.
--
-- Revision submit_cheetah_10276/1 2004/11/19 03:09:10 vprayaga
-- Q01028520.
-- Modified MIB object ripCurCfgIntfDefListen to ripCurCfgIntfDefault.
-- The new MIB object supports all default route actions(list/supply/
-- both/none).
--
-- Revision submit_cheetah_10202/1 2004/11/13 00:01:59 dillibab
-- Merged igmp objects with Elmo igmp objects.
--
-- Revision submit_cheetah_10100/1 2004/11/05 22:31:19 bshao
-- CR 1021722: Added OSPF redistribution for RIP for SNMP.
--
-- Revision submit_cheetah_10097/1 2004/11/05 18:44:05 bshao
-- CR 1021722: Added on/off configuration to OSPF SNMP MIB.
--
-- Revision submit_cheetah_10011/1 2004/10/28 21:41:59 bshao
-- CR 1016054: Changed VLAN range to 0..4095.
--
-- Revision submit_cheetah_9900/1 2004/10/21 00:51:00 bshao
-- CR 1002322: Fixed IGMP MIB issues.
--
-- Revision submit_cheetah_9276/2 2004/09/09 22:20:53 rmundhra
-- Merging out.
--
-- Revision submit_cheetah_9307/1 2004/09/08 22:04:01 rrekha
-- Remove ospfRouterLSAInfoTable.
--
-- Revision submit_cheetah_9276/1 2004/09/09 21:52:42 rmundhra
-- Porting latest changes over from Bert 2.0
--
-- Revision submit_cheetah_9241/1 2004/09/03 07:10:32 ndade
-- Q00976749, Q00976763, Q00976766: fixed description texts for various igmp snoop mib variables
--
-- Revision submit_cheetah_9196/1 2004/09/01 21:50:22 rrekha
-- Minor changes for SMIv2 compliance.
--
-- Revision submit_cheetah_8925/1 2004/08/16 19:55:40 rrekha
-- Added SNMP support for /c/l3/vrrp/trnkfo command.
--
-- Revision submit_cheetah_8578/1 2004/07/30 00:36:23 rrekha
-- Update the copyright header.
--
-- Revision submit_cheetah_8197/1 2004/07/09 06:58:13 dillibab
-- Added mib object for tracking virtual router in vr group.
--
-- Revision submit_cheetah_7854/1 2004/06/17 21:31:04 rrekha
-- Fixed Q00929076: Fixed range for vrrpNewCfgVirtRtrVrGrpAdd and
-- vrrpNewCfgVirtRtrVrGrpRem.
--
-- Revision submit_cheetah_7539/1 2004/06/03 00:33:04 ndade
-- static igmp routers
--
-- Revision submit_cheetah_7522/1 2004/05/25 18:22:32 ndade
-- igmp snooping: commented out 'aggregrate' option since it isn't supported/doesn't do anything
--
-- Revision submit_cheetah_7513/1 2004/05/24 21:10:18 ndade
-- removed IGMP snooping timeout config parameter and replaced it with robustness, query interval and query max response time, the three timer from RFC 2236
--
-- Revision submit_cheetah_7167/1 2004/05/05 19:08:18 vprayaga
-- Corrected the MAX-ACCESS/description of MIB variable
-- 'ripNewCfgIntfState'.
--
-- Revision submit_cheetah_7130/1 2004/05/05 01:13:43 vprayaga
-- Q00760511. Added disable/enable functionality to
-- individual RIP interfaces. Added new MIB object
-- to support this functionality using SNMP/WebUI/EmWeb.
--
-- Revision submit_cheetah_5911/1 2003/12/11 18:35:40 rrekha
-- Fixed Elmo build error.
--
-- Revision submit_cheetah_5841/1 2003/12/05 22:58:41 rrekha
-- Converted MIBs to SMIv2.
--
-- Revision submit_cheetah_5692/1 2003/11/14 01:25:03 yuhuang
-- Removed the track real server group mib entry from the current and new
-- vrgroup table. The tracking of real server group is not necessary in
-- vrgroup.
--
-- Revision submit_cheetah_5469/1 2003/10/28 19:36:52 ocheung
-- Removed MIB variables for ENH_VRRP that are no longer needed.
-- Changed max range of VirtRtrID and VirtRtrGrpID to 1024.
--
-- Revision submit_cheetah_5403/1 2003/10/22 20:51:45 vprayaga
-- Fixed typo in RIP2 MIB description.
--
-- Revision submit_cheetah_5396/1 2003/10/22 02:25:41 vprayaga
-- Added SNMP and WebUI support for RIP version 2 feature.
--
-- Revision submit_cheetah_5251/1 2003/10/04 02:40:39 ocheung
-- Added MIB, SNMP agent, and WebUI support for Enhanced VRRP.
--
-- Revision submit_cheetah_5111/1 2003/09/23 18:14:18 rrekha
-- Fixed Q00753784: Obsolete ipCurCfgIntfBroadcast/ipNewCfgIntfBroadcast
-- since broadcast IP is now auto-generated from the IP address and mask.
--
-- Revision submit_cheetah_4435/1 2003/08/12 22:59:53 rrekha
-- Changed name of mib file for cheetah*.mib to aos*.mib.
--
-- Revision submit_cheetah_4460/1 2003/08/07 18:48:24 ocheung
-- Added SNMP and WebUI support for configurable default gw
-- route priority (DFLT_RTE_PRIO).
--
-- Revision submit_cheetah_3978/1 2003/07/23 23:55:13 rrekha
-- Fixed Q00716535: Added holdoff to enum vrrpInfoVirtRtrState.
--
-- Revision submit_cheetah_3449/1 2003/06/26 21:44:08 wtnelson
-- CP_IF_FRWD_CTRL - Fix code differences from reenabling the IP
-- forwarding control features.
--
-- Revision submit_cheetah_3132/1 2003/05/15 01:53:48 abhijitk
-- Added MIB variables for IP DSCP.
--
-- Revision submit_cheetah_2878/2 2003/05/02 20:49:45 yuhuang
-- Merge with submit
--
-- Revision submit_cheetah_2878/1 2003/05/02 20:39:27 yuhuang
-- Added MIB objects of curCfg and newCfg for VRRP vrgroup tables
--
-- Revision submit_cheetah_2854/1 2003/04/29 23:58:39 smiao
-- Merged SPAT config and stats implemetation from ELMO into Cheetah tree.
--
-- Revision submit_cheetah_2825/1 2003/04/28 22:07:06 vprayaga
-- Updated CFG_STATIC_ARP/port mirroring mibs as per
-- wendell suggestions.
--
-- Revision submit_cheetah_2813/1 2003/04/26 02:46:00 vprayaga
-- Defined MIBS for CFG_STATIC_ARP feature.
--
-- Revision submit_cheetah_2437/1 2003/04/25 18:17:08 rtsai
-- Added MIB objects for ECMP.
--
-- Revision submit_cheetah_2791/1 2003/04/24 23:08:56 yuhuang
-- Added MIB objects vrrpCurCfgGenHoldoff and vrrpNewCfgGenHoldoff for
-- VRRP holdoff operation.
--
-- Revision submit_cheetah_2558/1 2003/04/11 21:51:17 rrekha
-- Added MIB objects for gatewayInfoTable.
--
-- Revision submit_cheetah_1919/1 2003/02/05 20:05:05 rrekha
-- Changed the include paths for integrating support
-- for SNMP V3 Windmanage Stack.
--
-- Revision submit_cheetah_1678/1 2002/12/13 23:05:23 rmundhra
-- Fixed CR Q00580735: Switch: EMS does not display OSPF
-- NBR adjacency state.
--
-- Revision submit_cheetah_1667/1 2002/12/10 18:55:10 rmundhra
-- Backing out changes of submit 1669 as there is
-- an entry in the BGP rfc mib which provides the same
-- functionality for operationally start/stop a peer
-- session.
--
-- Revision submit_cheetah_1669/1 2002/12/09 23:23:29 rmundhra
-- Fixed CR Q00575171: EMS: Cannot operationally disable
-- BGP with EMS.
--
-- Revision submit_cheetah_1613/1 2002/12/03 18:53:10 rrekha
-- Range for all occurences of vlan id should be upto 4090.
--
-- Revision submit_cheetah_1515/1 2002/11/15 00:56:05 rrekha
-- Added a missing enum for arpInfoFlag.
--
-- Revision submit_cheetah_1219/1 2002/10/14 22:29:08 rrekha
-- Fixed Q00531280: Added host table in the private mib so that
-- the area index can be configured.
--
-- Revision submit_cheetah_1109/1 2002/10/02 23:34:56 rrekha
-- Fixed Q00533514: Added MIB objects routeTableClear and arpCacheClear
-- to clear the respective tables.
--
-- Revision submit_cheetah_1068/1 2002/10/01 01:16:15 rrekha
-- Changed value of clear in enum to 2 to be consistent with
-- other mibs as per Wendell's request.
--
-- Revision submit_cheetah_834/1 2002/09/03 21:45:58 rrekha
-- Fixed Q00502278: For bgpNewCfgPeerMetric/bgpCurCfgPeerMetric
-- change the range to 0..4294967294 where 0 indicates none.
--
-- Revision submit_cheetah_379/1 2002/07/19 19:37:45 rmundhra
-- Added SNMP support to OSPF MD5 configuration.
--
-- Revision submit_cheetah_319/1 2002/07/09 22:07:28 rrekha
-- Range for bgpCurCfgLocalPref/bgpNewCfgLocalPref is 0-4294967294
-- hence changed type of these mib objects to Unsigned32.
-- Fixed get/set/test functions for Unsigned32 type variables.
--
-- Revision submit_cheetah_308/1 2002/07/09 01:49:24 rrekha
-- Added support for OSPF fixed route redistribution.
-- New mib objects under ospfRedistributeFixed.
--
-- Revision submit_cheetah_306/1 2002/07/08 19:32:24 rrekha
-- Remove mib objects ospfRedistributeRip.
-- Also remove objects bgpCurCfgPeerRipState/bgpNewCfgPeerRipState.
-- Rearranged objects in the bgpPeerTables.
--
-- Revision submit_cheetah_217/1 2002/06/26 20:27:28 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_205/1 2002/06/25 00:31:41 rrekha
-- Added new mib objects for routerId and AS number.
--
-- Revision submit_cheetah_176/2 2002/06/21 00:21:08 rmundhra
-- Merged to pick up submit #166 changes.
--
-- Revision submit_cheetah_166/1 2002/06/20 21:55:17 rrekha
-- Removed snmp and icmp as a route tag option in ip route
-- commands. These tags are currently not used.
-- Added code to show bgp route tag.
--
-- Revision submit_cheetah_162/1 2002/06/19 18:55:15 rrekha
-- Correct the index for ipNewCfgAspathTable.
--
-- Revision ch_1_0_0_dev/12 2002/06/04 01:31:42 rrekha
-- Fixed CR Q00457719 : The OID for arpInfoTable in was not
-- matching with the OID in the .ctl file. Hence arpInfoTable
-- did not return any meaningful values.
--
-- Revision ch_1_0_0_dev/11 2002/05/29 21:53:41 rrekha
-- Added MIB object dnsStatOutDnsRequests.
--
-- Revision ch_1_0_0_dev/10 2002/05/29 21:11:29 rrekha
-- Added MIB objects for OSPF area and interface error statistics.
--
-- Revision ch_1_0_0_dev/9 2002/05/29 19:50:32 rrekha
-- Added missing OSPF statistics, MIB objects ospfCumNbrN2way,
-- ospfAreaNbrN2way and ospfIntfNbrN2way
--
-- Revision ch_1_0_0_dev/8 2002/05/09 00:06:34 rrekha
-- Added ipCurCfgRmapMetricType/ipNewCfgRmapMetricType.
--
-- Revision ch_1_0_0_dev/7 2002/05/01 22:13:23 rrekha
-- Rearranged nodes under ipForwardCfg.
--
-- Revision ch_1_0_0_dev/6 2002/04/24 18:05:13 rrekha
-- Added max table sizes for AspathTable and AlistTable.
-- Also rearranged OIDs for bgpCfg and ipStaticRouteCfg.
--
-- Revision ch_1_0_0_dev/5 2002/04/23 21:47:09 smiao
-- Renamed node cheetah to aws-switches.
--
-- Revision ch_1_0_0_dev/4 2002/04/09 18:56:41 smiao
-- Added SNMP support for OSPF route redistribution.
--
-- Revision ch_1_0_0_dev/3 2002/04/02 18:49:05 smiao
-- Added range for BGP config table index.
--
-- Revision ch_1_0_0_dev/2 2002/03/29 18:47:00 smiao
-- Changed ipRouteInfo to ipRoutingInfo due to conflict .
--
-- Revision ch_1_0_0_dev/1 2002/03/07 19:01:52 smiao
-- Removed unnecssary MIB objects for CHEEATH.
--
-- Revision ch10latest_smiao/4 2002/02/18 23:35:40 smiao
-- Implemented BGP for CHEETAH in SNMP.
--
-- Revision ch10latest_smiao/2 2002/02/13 01:41:24 smiao
-- Initial checked in for cheetah MIB files.
--
-- $EndLog$
ALTEON-CHEETAH-NETWORK-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, Integer32, Counter32, Gauge32,
IpAddress, Unsigned32
FROM SNMPv2-SMI
DisplayString, PhysAddress
FROM SNMPv2-TC
aws-switch
FROM ALTEON-ROOT-MIB;
layer3 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 Layer 3 configuration, statistics
and information ."
REVISION "200409010000Z" -- 1 September, 2004
DESCRIPTION
"Added revision clause for SMIv2 compliance."
::= { aws-switch 3 }
layer3Configs OBJECT IDENTIFIER ::= { layer3 1 }
layer3Stats OBJECT IDENTIFIER ::= { layer3 2 }
layer3Info OBJECT IDENTIFIER ::= { layer3 3 }
layer3Oper OBJECT IDENTIFIER ::= { layer3 4 }
ipInterfaceCfg OBJECT IDENTIFIER ::= { layer3Configs 1 }
ipGatewayCfg OBJECT IDENTIFIER ::= { layer3Configs 2 }
ipStaticRouteCfg OBJECT IDENTIFIER ::= { layer3Configs 3 }
ipForwardCfg OBJECT IDENTIFIER ::= { layer3Configs 4 }
vrrpCfg OBJECT IDENTIFIER ::= { layer3Configs 6 }
arpCfg OBJECT IDENTIFIER ::= { layer3Configs 7 }
ipBootpCfg OBJECT IDENTIFIER ::= { layer3Configs 8 }
dnsCfg OBJECT IDENTIFIER ::= { layer3Configs 9 }
ipNwfCfg OBJECT IDENTIFIER ::= { layer3Configs 10 }
ipRmapCfg OBJECT IDENTIFIER ::= { layer3Configs 11 }
bgpCfg OBJECT IDENTIFIER ::= { layer3Configs 12 }
ospfCfg OBJECT IDENTIFIER ::= { layer3Configs 13 }
ipGeneralCfg OBJECT IDENTIFIER ::= { layer3Configs 14 }
ipStaticArpCfg OBJECT IDENTIFIER ::= { layer3Configs 15 }
rip2Cfg OBJECT IDENTIFIER ::= { layer3Configs 18 }
arpStats OBJECT IDENTIFIER ::= { layer3Stats 2 }
routeStats OBJECT IDENTIFIER ::= { layer3Stats 3 }
dnsStats OBJECT IDENTIFIER ::= { layer3Stats 4 }
vrrpStats OBJECT IDENTIFIER ::= { layer3Stats 5 }
ospfStats OBJECT IDENTIFIER ::= { layer3Stats 6 }
clearStats OBJECT IDENTIFIER ::= { layer3Stats 7 }
ip6Stats OBJECT IDENTIFIER ::= { layer3Stats 10}
icmp6Stats OBJECT IDENTIFIER ::= { layer3Stats 11}
ip6gwStats OBJECT IDENTIFIER ::= { layer3Stats 12}
rip2Stats OBJECT IDENTIFIER ::= { layer3Stats 13 }
ipRoutingInfo OBJECT IDENTIFIER ::= { layer3Info 1 }
arpInfo OBJECT IDENTIFIER ::= { layer3Info 2 }
vrrpInfo OBJECT IDENTIFIER ::= { layer3Info 3 }
ospfinfo OBJECT IDENTIFIER ::= { layer3Info 4 }
gatewayInfo OBJECT IDENTIFIER ::= { layer3Info 5 }
nbrcacheInfo OBJECT IDENTIFIER ::= { layer3Info 7 }
ipRoute6Info OBJECT IDENTIFIER ::= { layer3Info 8 }
ipIntfInfo OBJECT IDENTIFIER ::= { layer3Info 9 }
rip2Info OBJECT IDENTIFIER ::= { layer3Info 10 }
rip2RoutesInfo OBJECT IDENTIFIER ::= { layer3Info 11 }
vrrpOper OBJECT IDENTIFIER ::= { layer3Oper 1 }
-- IP Configuration
ipInterfaceTableMax OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum number of rows in the IP interface table."
::= { ipInterfaceCfg 1 }
ipCurCfgIntfTable OBJECT-TYPE
SYNTAX SEQUENCE OF IpCurCfgIntfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table of IP interface configuration."
::= { ipInterfaceCfg 2 }
ipCurCfgIntfEntry OBJECT-TYPE
SYNTAX IpCurCfgIntfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A row in the Ip interface table"
INDEX { ipCurCfgIntfIndex }
::= { ipCurCfgIntfTable 1 }
IpCurCfgIntfEntry ::= SEQUENCE {
ipCurCfgIntfIndex Integer32,
ipCurCfgIntfAddr IpAddress,
ipCurCfgIntfMask IpAddress,
ipCurCfgIntfBroadcast IpAddress,
ipCurCfgIntfState INTEGER,
ipCurCfgIntfBootpRelay INTEGER,
ipCurCfgIntfIpVer INTEGER,
ipCurCfgIntfIpv6Addr DisplayString,
ipCurCfgIntfPrefixLen INTEGER,
ipCurCfgIntfRouteAdv INTEGER,
ipCurCfgIntfVlan Integer32
}
ipCurCfgIntfIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The interface number for which the IP information is related."
::= { ipCurCfgIntfEntry 1}
ipCurCfgIntfAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IP address of the interface."
::= { ipCurCfgIntfEntry 2 }
ipCurCfgIntfMask OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The subnet mask of the interface."
::= { ipCurCfgIntfEntry 3 }
ipCurCfgIntfBroadcast OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"The broadcast address of the interface."
::= { ipCurCfgIntfEntry 4 }
ipCurCfgIntfVlan OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The VLAN associated with the interface."
::= { ipCurCfgIntfEntry 5 }
ipCurCfgIntfState OBJECT-TYPE
SYNTAX INTEGER {
enabled(2),
disabled(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The state of the interface."
::= { ipCurCfgIntfEntry 6 }
ipCurCfgIntfBootpRelay OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Enable/disable BOOTP relay."
::= { ipCurCfgIntfEntry 7 }
ipCurCfgIntfIpVer OBJECT-TYPE
SYNTAX INTEGER{
ipv4(1),
ipv6(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of IP address."
::= { ipCurCfgIntfEntry 9 }
ipCurCfgIntfIpv6Addr OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..40))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IPv6 address of the interface. Address should be 4-byte
haxadecimal colon notation.
Valid IPv6 address should be in any of the following forms
xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx or
xxxx::xxxx:xxxx:xxxx:xxxx or ::xxxx"
::= { ipCurCfgIntfEntry 10 }
ipCurCfgIntfPrefixLen OBJECT-TYPE
SYNTAX INTEGER(1..128)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The prefix length associated with this IP address ."
::= { ipCurCfgIntfEntry 11 }
ipCurCfgIntfRouteAdv OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Enable/disable route advertisement of the interface."
::= { ipCurCfgIntfEntry 12 }
ipNewCfgIntfTable OBJECT-TYPE
SYNTAX SEQUENCE OF IpNewCfgIntfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table of interface configuration in the New Configuration Block."
::= { ipInterfaceCfg 3 }
ipNewCfgIntfEntry OBJECT-TYPE
SYNTAX IpNewCfgIntfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A row in the Ip interface table"
INDEX { ipNewCfgIntfIndex }
::= { ipNewCfgIntfTable 1 }
IpNewCfgIntfEntry ::= SEQUENCE {
ipNewCfgIntfIndex Integer32,
ipNewCfgIntfAddr IpAddress,
ipNewCfgIntfMask IpAddress,
ipNewCfgIntfBroadcast IpAddress,
ipNewCfgIntfVlan Integer32,
ipNewCfgIntfState INTEGER,
ipNewCfgIntfBootpRelay INTEGER,
ipNewCfgIntfIpVer INTEGER,
ipNewCfgIntfIpv6Addr DisplayString,
ipNewCfgIntfPrefixLen INTEGER,
ipNewCfgIntfRouteAdv INTEGER,
ipNewCfgIntfDelete INTEGER
}
ipNewCfgIntfIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The interface number for which the IP information is related."
::= { ipNewCfgIntfEntry 1 }
ipNewCfgIntfAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The IP address of the interface."
::= { ipNewCfgIntfEntry 2 }
ipNewCfgIntfMask OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The subnet mask of the interface."
::= { ipNewCfgIntfEntry 3 }
ipNewCfgIntfBroadcast OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS obsolete
DESCRIPTION
"The broadcast address of the interface."
::= { ipNewCfgIntfEntry 4 }
ipNewCfgIntfVlan OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The VLAN associated with the interface."
::= { ipNewCfgIntfEntry 5 }
ipNewCfgIntfState OBJECT-TYPE
SYNTAX INTEGER {
enabled(2),
disabled(3)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The state of the interface."
::= { ipNewCfgIntfEntry 6 }
ipNewCfgIntfDelete OBJECT-TYPE
SYNTAX INTEGER {
other(1),
delete(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"When set to the value of 2 (delete), the entire row is deleted.
When read, other(1) is returned. Setting the value to anything
other than 2(delete) has no effect on the state of the row."
::= { ipNewCfgIntfEntry 7 }
ipNewCfgIntfBootpRelay OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Enable/disable BOOTP relay."
::= { ipNewCfgIntfEntry 8 }
ipNewCfgIntfIpVer OBJECT-TYPE
SYNTAX INTEGER{
ipv4(1),
ipv6(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The type of IP address."
::= { ipNewCfgIntfEntry 10 }
ipNewCfgIntfIpv6Addr OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..40))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The IPv6 address of the interface. Address should be 4-byte
haxadecimal colon notation.
Valid IPv6 address should be in any of the following forms
xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx or
xxxx::xxxx:xxxx:xxxx:xxxx or ::xxxx"
::= { ipNewCfgIntfEntry 11 }
ipNewCfgIntfPrefixLen OBJECT-TYPE
SYNTAX INTEGER (1..128)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The prefix length associated with this IP address ."
::= { ipNewCfgIntfEntry 12 }
ipNewCfgIntfRouteAdv OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Enable/disable route advertisement of the interface."
::= { ipNewCfgIntfEntry 13 }
-- IP Gateway Table Configuration
ipCurCfgGwMetric OBJECT-TYPE
SYNTAX INTEGER {
strict(1),
roundrobin(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The default gateway metric."
::= { ipGatewayCfg 1 }
ipNewCfgGwMetric OBJECT-TYPE
SYNTAX INTEGER {
strict(1),
roundrobin(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The default gateway metric."
::= { ipGatewayCfg 2 }
ipGatewayTableMax OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum number of rows in the IP gateway table."
::= { ipGatewayCfg 3 }
ipCurCfgGwTable OBJECT-TYPE
SYNTAX SEQUENCE OF IpCurCfgGwEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table of gateways in the Current configuration Block."
::= { ipGatewayCfg 4 }
ipCurCfgGwEntry OBJECT-TYPE
SYNTAX IpCurCfgGwEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A row in the Ip gateway table"
INDEX { ipCurCfgGwIndex }
::= { ipCurCfgGwTable 1 }
IpCurCfgGwEntry ::= SEQUENCE {
ipCurCfgGwIndex Integer32,
ipCurCfgGwAddr IpAddress,
ipCurCfgGwInterval INTEGER,
ipCurCfgGwRetry INTEGER,
ipCurCfgGwArp INTEGER,
ipCurCfgGwVlan Integer32,
ipCurCfgGwIpVer INTEGER,
ipCurCfgGwIpv6Addr DisplayString,
ipCurCfgGwPriority INTEGER,
ipCurCfgGwState INTEGER
}
ipCurCfgGwIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The gateway number for which the information is related."
::= { ipCurCfgGwEntry 1}
ipCurCfgGwAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IP address of the default gateway."
::= { ipCurCfgGwEntry 2 }
ipCurCfgGwInterval OBJECT-TYPE
SYNTAX INTEGER (0..60)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The interval between ping attempts."
::= { ipCurCfgGwEntry 3 }
ipCurCfgGwRetry OBJECT-TYPE
SYNTAX INTEGER (1..120)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of failed attempts to declare the default gateway DOWN."
::= { ipCurCfgGwEntry 4 }
ipCurCfgGwState OBJECT-TYPE
SYNTAX INTEGER {
enabled(2),
disabled(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The state of the default gateway."
::= { ipCurCfgGwEntry 5 }
ipCurCfgGwArp OBJECT-TYPE
SYNTAX INTEGER {
enabled(2),
disabled(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The state of ARP only health checks."
::= { ipCurCfgGwEntry 6 }
ipCurCfgGwVlan OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The VLAN number for this gateway. The first 4 entries in the table
are only used for default gateway load balancing hence the VLAN
cannot be specified for the first 4 entries."
::= { ipCurCfgGwEntry 7 }
ipCurCfgGwPriority OBJECT-TYPE
SYNTAX INTEGER {
low(1),
high(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The priority of the default route for this gateway. High priority
means that the default gateway route will have higher priority
over learned default routes. Low priority means that the default
gateway route will have lower priority than learned default
routes."
::= { ipCurCfgGwEntry 8 }
ipCurCfgGwIpVer OBJECT-TYPE
SYNTAX INTEGER{
ipv4(1),
ipv6(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of IP address."
::= { ipCurCfgGwEntry 9 }
ipCurCfgGwIpv6Addr OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..40))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IPv6 address of the gateway. Address should be 4-byte
haxadecimal colon notation.
Valid IPv6 address should be in any of the following forms
xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx or
xxxx::xxxx:xxxx:xxxx:xxxx or ::xxxx"
::= { ipCurCfgGwEntry 10 }
ipNewCfgGwTable OBJECT-TYPE
SYNTAX SEQUENCE OF IpNewCfgGwEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table of gateway configuration in the new configuration block."
::= { ipGatewayCfg 5 }
ipNewCfgGwEntry OBJECT-TYPE
SYNTAX IpNewCfgGwEntry
MAX-ACCESS not-accessible