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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
|
ALCATEL-IND1-RIPNG-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE,
Counter32, Integer32, TimeTicks
FROM SNMPv2-SMI
Ipv6Address, Ipv6AddressPrefix
FROM IPV6-TC
RowStatus
FROM SNMPv2-TC
MODULE-COMPLIANCE, OBJECT-GROUP
FROM SNMPv2-CONF
routingIND1Ripng
FROM ALCATEL-IND1-BASE;
alcatelIND1RIPNGMIB MODULE-IDENTITY
LAST-UPDATED "200704030000Z"
ORGANIZATION "Alcatel-Lucent"
CONTACT-INFO
" Please consult with Customer Service to ensure the most appropriate
version of this document is used with the products in question:
Alcatel-Lucent, Enterprise Solutions Division
(Formerly Alcatel Internetworking, Incorporated)
26801 West Agoura Road
Agoura Hills, CA 91301-5122
United States Of America
Telephone: North America +1 800 995 2696
Latin America +1 877 919 9526
Europe +31 23 556 0100
Asia +65 394 7933
All Other +1 818 878 4507
Electronic Mail: support@ind.alcatel.com
World Wide Web: http://alcatel-lucent.com/wps/portal/enterprise
File Transfer Protocol: ftp://ftp.ind.alcatel.com/pub/products/mibs"
DESCRIPTION
"This module describes an authoritative enterprise-specific Simple
Network Management Protocol (SNMP) Management Information Base (MIB):
For the Birds Of Prey Product Line
Configuration Of Global RIPNG Configuration Parameters.
The right to make changes in specification and other information
contained in this document without prior notice is reserved.
No liability shall be assumed for any incidental, indirect, special, or
consequential damages whatsoever arising from or related to this
document or the information contained herein.
Vendors, end-users, and other interested parties are granted
non-exclusive license to use this specification in connection with
management of the products for which it is intended to be used.
Copyright (C) 1995-2007 Alcatel-Lucent
ALL RIGHTS RESERVED WORLDWIDE"
REVISION "200704030000Z"
DESCRIPTION
"The latest version of this MIB Module."
::= { routingIND1Ripng 1 }
alcatelIND1RIPNGMIBObjects OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Branch for Routing Information Protocol (RIPNG)
Subsystem Managed Objects."
::= { alcatelIND1RIPNGMIB 1 }
alcatelIND1RIPNGMIBConformance OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Branch for Routing Information Protocol (RIPNG)
Subsystem Conformance Information."
::= { alcatelIND1RIPNGMIB 2 }
alcatelIND1RIPNGMIBGroups OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Branch for Routing Information Protocol (RIPNG)
Subsystem Units Of Conformance."
::= { alcatelIND1RIPNGMIBConformance 1 }
alcatelIND1RIPNGMIBCompliances OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Branch for Routing Information Protocol (RIPNG)
Subsystem Compliance Statements."
::= { alcatelIND1RIPNGMIBConformance 2 }
-- ************************************************************************
-- RIPng Global Protocol Configuration
-- ************************************************************************
alaProtocolRipng OBJECT IDENTIFIER ::= { alcatelIND1RIPNGMIBObjects 1 }
alaRipngProtoStatus OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Global administration status of RIPng."
DEFVAL { disable }
::= { alaProtocolRipng 1 }
alaRipngUpdateInterval OBJECT-TYPE
SYNTAX Integer32 (1 .. 120)
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Interval (in seconds) that RIPng routing updates will
be sent out. The value must be less than or equal to
one-third the the invalid timer and greater or equal
to two times the jitter value."
DEFVAL { 30 }
::= { alaProtocolRipng 2 }
alaRipngInvalidTimer OBJECT-TYPE
SYNTAX Integer32 (1 .. 360)
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Time in seconds that a route will remain active
in RIB before being moved to the invalid state.
The value must be at least three times the
update interval. The defined range of 1 to 360
allows backwards compatibility with older devices
which do not enforce the three-times constraint.
For newer devices which enforce the three-times
constraint with the update interval, the
minimum allowed value of the invalid timer
is 3."
DEFVAL { 180 }
::= { alaProtocolRipng 3 }
alaRipngHolddownTimer OBJECT-TYPE
SYNTAX Integer32 (0 .. 120)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Time to keep a route in the holddown state."
DEFVAL { 0 }
::= { alaProtocolRipng 4 }
alaRipngGarbageTimer OBJECT-TYPE
SYNTAX Integer32 (0 .. 180)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Time to keep a route before garbage collection."
DEFVAL { 120 }
::= { alaProtocolRipng 5 }
alaRipngRouteCount OBJECT-TYPE
SYNTAX Integer32 (0 .. 2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of network routes in RIPng routing table."
::= { alaProtocolRipng 6 }
alaRipngGlobalRouteTag OBJECT-TYPE
SYNTAX Integer32 (0 .. 65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The route tag that will be added to all RIPng entries"
DEFVAL { 0 }
::= { alaProtocolRipng 7 }
alaRipngTriggeredSends OBJECT-TYPE
SYNTAX INTEGER {
all (1),
onlyupdated (2),
off (3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Controls whether trigged updates contain entire RIB
or just changes."
DEFVAL { 2 }
::= { alaProtocolRipng 8 }
alaRipngJitter OBJECT-TYPE
SYNTAX Integer32 (0 .. 60)
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Jitter to use when sending updates. The value
must be less than one-half the update interval."
DEFVAL { 5 }
::= { alaProtocolRipng 9 }
alaRipngPort OBJECT-TYPE
SYNTAX Integer32 (1 .. 65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Port to send/receive packets on."
DEFVAL { 3 }
::= { alaProtocolRipng 10 }
-- ************************************************************************
-- RIPng Debug Configuration
-- ************************************************************************
alaRipngDebug OBJECT IDENTIFIER ::= { alcatelIND1RIPNGMIBObjects 2 }
alaRipngDebugLevel OBJECT-TYPE
SYNTAX Integer32 (0..255)
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"This Object is deprecated in favour of alaDrcTmRipngDebur Configuration"
DEFVAL { 0 }
::= { alaRipngDebug 1 }
alaRipngDebugError OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"This Object is deprecated in favour of alaDrcTmRipngDebugError MIB Object of alaDrcTmRipngDebug Configuration"
DEFVAL { disable }
::= { alaRipngDebug 2 }
alaRipngDebugWarn OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"This Object is deprecated in favour of alaDrcTmRipngDebugWarning MIB Object of alaDrcTmRipngDebug Configuration"
DEFVAL { disable }
::= { alaRipngDebug 3 }
alaRipngDebugRecv OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"This Object is deprecated in favour of alaDrcTmRipngDebugRecv MIB Object of alaDrcTmRipngDebug Configuration"
DEFVAL { disable }
::= { alaRipngDebug 4 }
alaRipngDebugSend OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"This Object is deprecated in favour of alaDrcTmRipngDebugSend MIB Object of alaDrcTmRipngDebug Configuration"
DEFVAL { disable }
::= { alaRipngDebug 5 }
alaRipngDebugRdb OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"This Object is deprecated in favour of alaDrcTmRipngDebugRdb MIB Object of alaDrcTmRipngDebug Configuration"
DEFVAL { disable }
::= { alaRipngDebug 6 }
alaRipngDebugAge OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"This Object is deprecated in favour of alaDrcTmRipngDebugAge MIB Object of alaDrcTmRipngDebug Configuration"
DEFVAL { disable }
::= { alaRipngDebug 7 }
alaRipngDebugMip OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"This Object is deprecated in favour of alaDrcTmRipngDebugMip MIB Object of alaDrcTmRipngDebug Configuration"
DEFVAL { disable }
::= { alaRipngDebug 8 }
alaRipngDebugInfo OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"This Object is deprecated in favour of alaDrcTmRipngDebugInfo MIB Object of alaDrcTmRipngDebug Configuration"
DEFVAL { disable }
::= { alaRipngDebug 9 }
alaRipngDebugSetup OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"This Object is deprecated in favour of alaDrcTmRipngDebugSetup MIB Object of alaDrcTmRipngDebug Configuration"
DEFVAL { disable }
::= { alaRipngDebug 10 }
alaRipngDebugTime OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"This Object is deprecated in favour of alaDrcTmRipngDebugTime MIB Object of alaDrcTmRipngDebug Configuration"
DEFVAL { disable }
::= { alaRipngDebug 11 }
alaRipngDebugTm OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"This Object is deprecated in favour of alaDrcTmRipngDebugTm MIB Object of alaDrcTmRipngDebug Configuration"
DEFVAL { disable }
::= { alaRipngDebug 12 }
alaRipngDebugRouteFilter OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"This Object is deprecated in favour of alaDrcTmRipngDebugRouteFilter MIB Object of alaDrcTmRipngDebug Configuration"
DEFVAL { disable }
::= { alaRipngDebug 13 }
alaRipngDebugNexthopFilter OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"This Object is deprecated in favour of alaDrcTmRipngDebugNexthopFilter MIB Object of alaDrcTmRipngDebug Configuration"
DEFVAL { disable }
::= { alaRipngDebug 14 }
alaRipngDebugSummary OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"This Object is deprecated in favour of alaDrcTmRipngDebugSummary MIB Object of alaDrcTmRipngDebug Configuration"
DEFVAL { disable }
::= { alaRipngDebug 15 }
alaRipngDebugAll OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"This Object is deprecated in favour of alaDrcTmRipngDebugAll MIB Object of alaDrcTmRipngDebug Configuration"
DEFVAL { disable }
::= { alaRipngDebug 16}
-- ************************************************************************
-- RIPng Interface Table
-- ************************************************************************
alaRipngInterfaceTable OBJECT-TYPE
SYNTAX SEQUENCE OF AlaRipngInterfaceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"RIPng interfaces."
::= { alaProtocolRipng 11 }
alaRipngInterfaceEntry OBJECT-TYPE
SYNTAX AlaRipngInterfaceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each individual interface."
INDEX {
alaRipngInterfaceIndex
}
::= { alaRipngInterfaceTable 1 }
AlaRipngInterfaceEntry ::=
SEQUENCE {
alaRipngInterfaceStatus RowStatus,
alaRipngInterfaceIndex Integer32,
alaRipngInterfaceMetric Integer32,
alaRipngInterfaceRecvStatus INTEGER,
alaRipngInterfaceSendStatus INTEGER,
alaRipngInterfaceHorizon INTEGER,
alaRipngInterfacePacketsSent Integer32,
alaRipngInterfacePacketsRcvd Integer32,
alaRipngInterfaceMTU Counter32,
alaRipngInterfaceNextUpdate TimeTicks,
alaRipngInterfaceJitter Integer32
}
alaRipngInterfaceStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Create/delete RIPng interfaces."
DEFVAL { notInService }
::= { alaRipngInterfaceEntry 1 }
alaRipngInterfaceIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"IPv6 index of this interface."
::= { alaRipngInterfaceEntry 2 }
alaRipngInterfaceMetric OBJECT-TYPE
SYNTAX Integer32 (1 .. 15)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Metric used on this interface."
DEFVAL { 1 }
::= { alaRipngInterfaceEntry 3 }
alaRipngInterfaceRecvStatus OBJECT-TYPE
SYNTAX INTEGER {
enabled (1),
disabled (2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Controls whether or not to recv updates on this intf."
DEFVAL { 1 }
::= { alaRipngInterfaceEntry 4 }
alaRipngInterfaceSendStatus OBJECT-TYPE
SYNTAX INTEGER {
enabled (1),
disabled (2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Controls whether or not to send updates on this intf."
DEFVAL { 1 }
::= { alaRipngInterfaceEntry 5 }
alaRipngInterfaceHorizon OBJECT-TYPE
SYNTAX INTEGER {
none (1),
onlysplit (2),
poison (3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Controls use of split horizon on this interface."
DEFVAL { 1 }
::= { alaRipngInterfaceEntry 6 }
alaRipngInterfacePacketsSent OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"# of packets sent on this interface."
::= { alaRipngInterfaceEntry 7 }
alaRipngInterfacePacketsRcvd OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"# of packets received on this interface."
::= { alaRipngInterfaceEntry 8 }
alaRipngInterfaceMTU OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Max Transfer size of RIPng packets on this interface"
::= { alaRipngInterfaceEntry 9 }
alaRipngInterfaceNextUpdate OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Seconds remaining for the next update on this interface"
::= { alaRipngInterfaceEntry 10 }
alaRipngInterfaceJitter OBJECT-TYPE
SYNTAX Integer32 (0 .. 60)
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"Deprecated in favour of alaRipngJitter"
DEFVAL { 3 }
::= { alaRipngInterfaceEntry 11 }
-- ************************************************************************
-- RIPng Next Hop Filter Table
-- ************************************************************************
alaRipngNexthopFilterTable OBJECT-TYPE
SYNTAX SEQUENCE OF AlaRipngNexthopFilterEntry
MAX-ACCESS not-accessible
STATUS deprecated
DESCRIPTION
"RIPng Nexthop filters."
::= { alaProtocolRipng 12 }
alaRipngNexthopFilterEntry OBJECT-TYPE
SYNTAX AlaRipngNexthopFilterEntry
MAX-ACCESS not-accessible
STATUS deprecated
DESCRIPTION
"Each individual Nexthop filter."
INDEX {
alaRipngNexthopFilterAddress
}
::= { alaRipngNexthopFilterTable 1 }
AlaRipngNexthopFilterEntry ::=
SEQUENCE {
alaRipngNexthopFilterStatus RowStatus,
alaRipngNexthopFilterAddress Ipv6Address
}
alaRipngNexthopFilterStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"Create/delete RIPng Nexthop Filter."
DEFVAL { notInService }
::= { alaRipngNexthopFilterEntry 1 }
alaRipngNexthopFilterAddress OBJECT-TYPE
SYNTAX Ipv6Address
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"Address of router to filter routes from."
::= { alaRipngNexthopFilterEntry 2 }
-- ************************************************************************
-- RIPng Summarization Table
-- ************************************************************************
alaRipngSummarizationTable OBJECT-TYPE
SYNTAX SEQUENCE OF AlaRipngSummarizationEntry
MAX-ACCESS not-accessible
STATUS deprecated
DESCRIPTION
"RIPng Nexthop filters."
::= { alaProtocolRipng 13 }
alaRipngSummarizationEntry OBJECT-TYPE
SYNTAX AlaRipngSummarizationEntry
MAX-ACCESS not-accessible
STATUS deprecated
DESCRIPTION
"Each individual Nexthop filter."
INDEX {
alaRipngSummarizationSourcePrefix,
alaRipngSummarizationSourcePrefixLen,
alaRipngSummarizationPrefix,
alaRipngSummarizationPrefixLen
}
::= { alaRipngSummarizationTable 1 }
AlaRipngSummarizationEntry ::=
SEQUENCE {
alaRipngSummarizationStatus RowStatus,
alaRipngSummarizationSourcePrefix Ipv6AddressPrefix,
alaRipngSummarizationSourcePrefixLen Integer32,
alaRipngSummarizationPrefix Ipv6AddressPrefix,
alaRipngSummarizationPrefixLen Integer32,
alaRipngSummarizationSubnets INTEGER
}
alaRipngSummarizationStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"Create/delete RIPng Summarization Filter."
DEFVAL { notInService }
::= { alaRipngSummarizationEntry 1 }
alaRipngSummarizationSourcePrefix OBJECT-TYPE
SYNTAX Ipv6AddressPrefix
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"Prefix of network to use a the source of a
summarization."
::= { alaRipngSummarizationEntry 2 }
alaRipngSummarizationSourcePrefixLen OBJECT-TYPE
SYNTAX Integer32 (1 .. 128)
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"Prefix length of source prefix."
::= { alaRipngSummarizationEntry 3 }
alaRipngSummarizationPrefix OBJECT-TYPE
SYNTAX Ipv6AddressPrefix
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"Prefix of summarized route."
::= { alaRipngSummarizationEntry 4 }
alaRipngSummarizationPrefixLen OBJECT-TYPE
SYNTAX Integer32 (1 .. 128)
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"Prefix length of summarized route."
::= { alaRipngSummarizationEntry 5 }
alaRipngSummarizationSubnets OBJECT-TYPE
SYNTAX INTEGER {
include (1),
donotinclude (2)
}
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"Include subnets?"
::= { alaRipngSummarizationEntry 6 }
-- ************************************************************************
-- RIPng Route Filter Table
-- ************************************************************************
alaRipngRouteFilterTable OBJECT-TYPE
SYNTAX SEQUENCE OF AlaRipngRouteFilterEntry
MAX-ACCESS not-accessible
STATUS deprecated
DESCRIPTION
"RIPng route filters."
::= { alaProtocolRipng 14 }
alaRipngRouteFilterEntry OBJECT-TYPE
SYNTAX AlaRipngRouteFilterEntry
MAX-ACCESS not-accessible
STATUS deprecated
DESCRIPTION
"Each individual route filter."
INDEX {
alaRipngRouteFilterPrefix,
alaRipngRouteFilterPrefixLen,
alaRipngRouteFilterDirection
}
::= { alaRipngRouteFilterTable 1 }
AlaRipngRouteFilterEntry ::=
SEQUENCE {
alaRipngRouteFilterStatus RowStatus,
alaRipngRouteFilterPrefix Ipv6AddressPrefix,
alaRipngRouteFilterPrefixLen Integer32,
alaRipngRouteFilterDirection INTEGER,
alaRipngRouteFilterSubnets INTEGER
}
alaRipngRouteFilterStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"Create/delete RIPng route Filter."
DEFVAL { notInService }
::= { alaRipngRouteFilterEntry 1 }
alaRipngRouteFilterPrefix OBJECT-TYPE
SYNTAX Ipv6AddressPrefix
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"Prefix of filter."
::= { alaRipngRouteFilterEntry 2 }
alaRipngRouteFilterPrefixLen OBJECT-TYPE
SYNTAX Integer32 (1 .. 128)
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"Prefix length of filter."
::= { alaRipngRouteFilterEntry 3 }
alaRipngRouteFilterDirection OBJECT-TYPE
SYNTAX INTEGER {
in (1),
out (2)
}
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"Which way to apply the filter."
::= { alaRipngRouteFilterEntry 4 }
alaRipngRouteFilterSubnets OBJECT-TYPE
SYNTAX INTEGER {
include (1),
donotinclude (2)
}
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"Include subnets?"
::= { alaRipngRouteFilterEntry 5 }
-- ************************************************************************
-- RIPng Peer Table
-- ************************************************************************
alaRipngPeerTable OBJECT-TYPE
SYNTAX SEQUENCE OF AlaRipngPeerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"RIPng peers."
::= { alaProtocolRipng 15 }
alaRipngPeerEntry OBJECT-TYPE
SYNTAX AlaRipngPeerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each individual peer."
INDEX {
alaRipngPeerAddress,
alaRipngPeerIndex
}
::= { alaRipngPeerTable 1 }
AlaRipngPeerEntry ::=
SEQUENCE {
alaRipngPeerAddress Ipv6Address,
alaRipngPeerLastUpdate TimeTicks,
alaRipngPeerNumUpdates Counter32,
alaRipngPeerNumRoutes Counter32,
alaRipngPeerBadPackets Counter32,
alaRipngPeerBadRoutes Counter32,
alaRipngPeerIndex Integer32
}
alaRipngPeerAddress OBJECT-TYPE
SYNTAX Ipv6Address
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Address of peer."
::= { alaRipngPeerEntry 1 }
alaRipngPeerLastUpdate OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Last Update received."
::= { alaRipngPeerEntry 2 }
alaRipngPeerNumUpdates OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total # of updates received from this peer."
::= { alaRipngPeerEntry 3 }
alaRipngPeerNumRoutes OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total # of routes received from this peer."
::= { alaRipngPeerEntry 4 }
alaRipngPeerBadPackets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total # of bad packets received."
::= { alaRipngPeerEntry 5 }
alaRipngPeerBadRoutes OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total # of bad routes received."
::= { alaRipngPeerEntry 6 }
alaRipngPeerIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"IPv6 index of the interface on which this peer is seen"
::= { alaRipngPeerEntry 7 }
-- ************************************************************************
-- RIPng Route Table
-- ************************************************************************
alaRipngRouteTable OBJECT-TYPE
SYNTAX SEQUENCE OF AlaRipngRouteEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Ripng routing table which contains the routes."
::= { alaProtocolRipng 16 }
alaRipngRouteEntry OBJECT-TYPE
SYNTAX AlaRipngRouteEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Ripng routing table which contains the network routes"
INDEX {
alaRipngRoutePrefix,
alaRipngRoutePrefixLen,
alaRipngRouteNextHop
}
::= { alaRipngRouteTable 1 }
AlaRipngRouteEntry ::=
SEQUENCE {
alaRipngRoutePrefix Ipv6AddressPrefix,
alaRipngRoutePrefixLen Integer32,
alaRipngRouteNextHop Ipv6Address,
alaRipngRouteType INTEGER,
alaRipngRouteAge TimeTicks,
alaRipngRouteTag Integer32,
alaRipngRouteMetric Integer32,
alaRipngRouteStatus RowStatus,
alaRipngRouteFlags INTEGER,
alaRipngRouteIndex Integer32
}
alaRipngRoutePrefix OBJECT-TYPE
SYNTAX Ipv6AddressPrefix
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The destination IP address of this route."
::= { alaRipngRouteEntry 1 }
alaRipngRoutePrefixLen OBJECT-TYPE
SYNTAX Integer32 (0 .. 128)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The prefix length for this route."
::= { alaRipngRouteEntry 2 }
alaRipngRouteNextHop OBJECT-TYPE
SYNTAX Ipv6Address
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The address of the next hop to reach this route."
::= { alaRipngRouteEntry 3 }
alaRipngRouteType OBJECT-TYPE
SYNTAX INTEGER {
local (1),
rip (2),
redist (3),
unknown (4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of route."
::= { alaRipngRouteEntry 4 }
alaRipngRouteAge OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of seconds since this route was last
updated or otherwise determined to be correct."
::= { alaRipngRouteEntry 5 }
alaRipngRouteTag OBJECT-TYPE
SYNTAX Integer32 ( 0 .. 2147483647 )
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The associated route tag"
::= { alaRipngRouteEntry 6 }
alaRipngRouteMetric OBJECT-TYPE
SYNTAX Integer32 ( 0 .. 15 )
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The routing metric for this route."
::= { alaRipngRouteEntry 7 }
alaRipngRouteStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The row status variable, used according to
row installation and removal conventions."
::= { alaRipngRouteEntry 8 }
alaRipngRouteFlags OBJECT-TYPE
SYNTAX INTEGER {
active (1),
garbage (2),
holddown (3),
unknown (4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The assocated flags for this route."
::= { alaRipngRouteEntry 9 }
alaRipngRouteIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"IPv6 index of the interface on which the route gateway
can be reached"
::= { alaRipngRouteEntry 10 }
-- ******************************************************************** --
--
-- Compliance Statements
--
alcatelIND1RIPMIBCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"Compliance statement for RIPng subsystem."
MODULE -- this module
MANDATORY-GROUPS {
alaRipngGlobalGroup,
alaRipngDebugGroup,
alaRipngInterfaceGroup,
alaRipngNexthopFilterGroup,
alaRipngSummarizationGroup,
alaRipngRouteFilterGroup,
alaRipngPeerGroup,
alaRipngRouteGroup
}
::= { alcatelIND1RIPNGMIBCompliances 1 }
--
-- Units of Conformance
--
alaRipngGlobalGroup OBJECT-GROUP
OBJECTS {
alaRipngProtoStatus,
alaRipngUpdateInterval,
alaRipngInvalidTimer,
alaRipngHolddownTimer,
alaRipngGarbageTimer,
alaRipngRouteCount,
alaRipngGlobalRouteTag,
alaRipngTriggeredSends
}
STATUS current
DESCRIPTION
"Collection of Miscellaneous objects for management of RIP."
::= { alcatelIND1RIPNGMIBGroups 1 }
alaRipngDebugGroup OBJECT-GROUP
OBJECTS {
alaRipngDebugLevel,
alaRipngDebugError,
alaRipngDebugWarn,
alaRipngDebugRecv,
alaRipngDebugSend,
alaRipngDebugRdb,
alaRipngDebugAge,
alaRipngDebugMip,
alaRipngDebugInfo,
alaRipngDebugSetup,
alaRipngDebugTime,
alaRipngDebugTm,
alaRipngDebugAll
}
STATUS current
DESCRIPTION
"Collection of Miscellaneous objects for management of RIP."
::= { alcatelIND1RIPNGMIBGroups 2 }
alaRipngInterfaceGroup OBJECT-GROUP
OBJECTS {
alaRipngInterfaceStatus,
alaRipngInterfaceMetric,
alaRipngInterfaceRecvStatus,
alaRipngInterfaceSendStatus,
alaRipngInterfaceHorizon,
alaRipngInterfacePacketsSent,
alaRipngInterfacePacketsRcvd,
alaRipngInterfaceMTU,
alaRipngInterfaceNextUpdate,
alaRipngInterfaceJitter
}
STATUS current
DESCRIPTION
"Collection of Miscellaneous objects for management of RIP."
::= { alcatelIND1RIPNGMIBGroups 3 }
alaRipngNexthopFilterGroup OBJECT-GROUP
OBJECTS {
alaRipngNexthopFilterStatus,
alaRipngNexthopFilterAddress
}
STATUS current
DESCRIPTION
"Collection of Miscellaneous objects for management of RIP."
::= { alcatelIND1RIPNGMIBGroups 4 }
alaRipngSummarizationGroup OBJECT-GROUP
OBJECTS {
alaRipngSummarizationStatus,
alaRipngSummarizationSourcePrefix,
alaRipngSummarizationSourcePrefixLen,
alaRipngSummarizationPrefix,
alaRipngSummarizationPrefixLen,
alaRipngSummarizationSubnets
}
STATUS current
DESCRIPTION
"Collection of Miscellaneous objects for management of RIP."
::= { alcatelIND1RIPNGMIBGroups 5 }
alaRipngRouteFilterGroup OBJECT-GROUP
OBJECTS {
alaRipngRouteFilterStatus,
alaRipngRouteFilterPrefix,
alaRipngRouteFilterPrefixLen,
alaRipngRouteFilterDirection,
alaRipngRouteFilterSubnets
}
STATUS current
DESCRIPTION
"Collection of Miscellaneous objects for management of RIP."
::= { alcatelIND1RIPNGMIBGroups 6 }
alaRipngPeerGroup OBJECT-GROUP
OBJECTS {
alaRipngPeerLastUpdate,
alaRipngPeerNumUpdates,
alaRipngPeerNumRoutes,
alaRipngPeerBadPackets,
alaRipngPeerBadRoutes
}
STATUS current
DESCRIPTION
"Collection of Miscellaneous objects for management of RIP."
::= { alcatelIND1RIPNGMIBGroups 7 }
alaRipngRouteGroup OBJECT-GROUP
OBJECTS {
alaRipngRouteType,
alaRipngRouteAge,
alaRipngRouteTag,
alaRipngRouteMetric,
alaRipngRouteStatus,
alaRipngRouteFlags,
alaRipngRouteIndex
}
STATUS current
DESCRIPTION
"Collection of Miscellaneous objects for management of RIP."
::= { alcatelIND1RIPNGMIBGroups 8 }
--
-- Traps
--
alcatelIND1RIPNGTraps OBJECT IDENTIFIER ::= { alcatelIND1RIPNGMIB 3}
alcatelIND1RIPNGTrapsRoot OBJECT IDENTIFIER ::= { alcatelIND1RIPNGTraps 0}
ripngRouteMaxLimitReached NOTIFICATION-TYPE
STATUS current
DESCRIPTION
" This notification is generated as RIPng database reached supported maximum entries.
RIPng will discard any new updates."
::= {alcatelIND1RIPNGTrapsRoot 1}
END
|