This repository has been archived by the owner. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathCISCOSB-rlFft
1766 lines (1547 loc) · 49 KB
/
CISCOSB-rlFft
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
CISCOSB-rlFft DEFINITIONS ::= BEGIN
-- Title: CISCOSB FFT Private Extension
-- Version: 7.37.00.00
-- Date: 17 May 2004
IMPORTS
switch001 FROM CISCOSB-MIB
Unsigned32, IpAddress,
MODULE-IDENTITY, OBJECT-TYPE FROM SNMPv2-SMI
RowStatus, TruthValue, PhysAddress, DisplayString,
TEXTUAL-CONVENTION FROM SNMPv2-TC;
Percents ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Specifies percents."
SYNTAX INTEGER (0..100)
NetNumber ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Specifies the network identification."
SYNTAX OCTET STRING (SIZE(4))
---
--- rlIpFFT
---
rlFFT MODULE-IDENTITY
LAST-UPDATED "200406010000Z"
ORGANIZATION "Cisco Small Business"
CONTACT-INFO
"Postal: 170 West Tasman Drive
San Jose , CA 95134-1706
USA
Website: Cisco Small Business Home http://www.cisco.com/smb>;,
Cisco Small Business Support Community <http://www.cisco.com/go/smallbizsupport>"
DESCRIPTION
"The private MIB module definition for switch001 Fast Forwarding Tables."
REVISION "200406010000Z"
DESCRIPTION
"Initial version of this MIB."
::= { switch001 47 }
rlIpFFT OBJECT IDENTIFIER ::= { rlFFT 1 }
rlIpFftMibVersion OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"MIB's version, the current version is 1."
::= { rlIpFFT 1 }
rlIpMaxFftNumber OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum number of IP FFTs."
::= { rlIpFFT 2 }
rlIpFftDynamicSupported OBJECT-TYPE
SYNTAX INTEGER {
supported (1),
unsupported (2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Specifies whether dynamic IP FFTs are supported."
::= { rlIpFFT 3 }
rlIpFftSubnetSupported OBJECT-TYPE
SYNTAX INTEGER {
supported (1),
unsupported (2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Specifies whether subtable per IP subnet is supported."
::= { rlIpFFT 4 }
rlIpFftUnknownAddrMsgUsed OBJECT-TYPE
SYNTAX INTEGER {
used (1),
unused (2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Specifies whether the 3SW uses the unknown address message."
::= { rlIpFFT 5 }
rlIpFftAgingTimeSupported OBJECT-TYPE
SYNTAX INTEGER {
supported (1),
unsupported (2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Specifies whether aging time is supported."
::= { rlIpFFT 6 }
rlIpFftSrcAddrSupported OBJECT-TYPE
SYNTAX INTEGER {
supported (1),
unsupported (2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Specifies whether an IP subtable per station contains source IP address."
::= { rlIpFFT 7 }
rlIpFftAgingTimeout OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The aging timeout in seconds."
::= { rlIpFFT 8 }
rlIpFftRedBoundary OBJECT-TYPE
SYNTAX Percents
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The red boundary in percents."
::= { rlIpFFT 9 }
rlIpFftYellowBoundary OBJECT-TYPE
SYNTAX Percents
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The yellow boundary in percents."
::= { rlIpFFT 10 }
--rlIpFftPollingInterval OBJECT-TYPE
-- SYNTAX INTEGER
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION
-- "The polling interval for dynamic IP FFTs support in seconds."
-- ::= { rlIpFFT 11 }
--
-- The IP FFT Number Routers Table
--
rlIpFftNumTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlIpFftNumEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The (conceptual) table containing routes' numbers of
the IP SFFTs and IP NFFTs. "
::= { rlIpFFT 12 }
rlIpFftNumEntry OBJECT-TYPE
SYNTAX RlIpFftNumEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry (conceptual row) containing the containing routes' numbers
of IP SFFT and IP NFFT "
INDEX { rlIpFftNumIndex }
::= { rlIpFftNumTable 1 }
RlIpFftNumEntry ::= SEQUENCE {
rlIpFftNumIndex INTEGER,
rlIpFftNumStnRoutesNumber INTEGER,
rlIpFftNumSubRoutesNumber INTEGER
}
rlIpFftNumIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of the index of the IP FFT. "
::= { rlIpFftNumEntry 1 }
rlIpFftNumStnRoutesNumber OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of routes that are contained in the IP SFFT. "
::= { rlIpFftNumEntry 2 }
rlIpFftNumSubRoutesNumber OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of routes that are contained in the IP NFFT. "
::= { rlIpFftNumEntry 3 }
--
-- The IP Fast Forwarding Table per station
--
rlIpFftStnTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlIpFftStnEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The (conceptual) table contains IP Fast Forwarding information
per station for IP datagrams. "
::= { rlIpFFT 13 }
rlIpFftStnEntry OBJECT-TYPE
SYNTAX RlIpFftStnEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry (conceptual row) contains the IP fast forwarding
information for IP datagrams from a particular source and
destination addresses."
INDEX { rlIpFftStnIndex, rlIpFftStnMrid, rlIpFftStnDstIpAddress }
::= { rlIpFftStnTable 1 }
RlIpFftStnEntry ::= SEQUENCE {
rlIpFftStnIndex INTEGER,
rlIpFftStnMrid INTEGER,
rlIpFftStnDstIpAddress IpAddress,
rlIpFftStnDstRouteIpMask IpAddress,
rlIpFftStnDstIpAddrType INTEGER,
rlIpFftStnDstMacAddress PhysAddress,
rlIpFftStnSrcMacAddress PhysAddress,
rlIpFftStnOutIfIndex INTEGER,
rlIpFftStnVid INTEGER,
rlIpFftStnTaggedMode INTEGER,
rlIpFftStnAge INTEGER
}
rlIpFftStnIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of the index of the IP FFT. "
::= { rlIpFftStnEntry 1 }
rlIpFftStnMrid OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The router's Instance Identifier in the SFFT. "
::= { rlIpFftStnEntry 2 }
rlIpFftStnDstIpAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IP destination address for which this entry
contains IP forwarding information."
::= { rlIpFftStnEntry 3 }
rlIpFftStnDstRouteIpMask OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IP destination mask for which this entry
contains IP forwarding information."
::= { rlIpFftStnEntry 4 }
rlIpFftStnDstIpAddrType OBJECT-TYPE
SYNTAX INTEGER {
local (1),
remote (2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IP destination address type. "
::= { rlIpFftStnEntry 5 }
rlIpFftStnDstMacAddress OBJECT-TYPE
SYNTAX PhysAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The MAC destination address."
::= { rlIpFftStnEntry 6}
rlIpFftStnSrcMacAddress OBJECT-TYPE
SYNTAX PhysAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The MAC source address."
::= { rlIpFftStnEntry 7 }
rlIpFftStnOutIfIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of ifIndex of output physical port."
::= { rlIpFftStnEntry 8 }
rlIpFftStnVid OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The vid of the output port."
::= { rlIpFftStnEntry 9 }
rlIpFftStnTaggedMode OBJECT-TYPE
SYNTAX INTEGER {
untagged (1),
tagged (2),
basedPortConfig (3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The tagged value of the port. When the Tagged field is not
a part of the FFT table in the ASIC,
the Tagged field gets the BasedPortConfig value "
::= { rlIpFftStnEntry 10 }
rlIpFftStnAge OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The age of the entry in seconds from the inserting."
::= { rlIpFftStnEntry 11 }
--
-- The IP Fast Forwarding Table per subnet
--
rlIpFftSubTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlIpFftSubEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The (conceptual) table containing IP Fast Forwarding information
per subnet for IP datagrams. "
::= { rlIpFFT 14 }
rlIpFftSubEntry OBJECT-TYPE
SYNTAX RlIpFftSubEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry (conceptual row) containing the IP fast forwarding
information for IP datagrams from a particular source and
destination addresses."
INDEX { rlIpFftSubMrid , rlIpFftSubDstIpSubnet, rlIpFftSubDstIpMask }
::= { rlIpFftSubTable 1 }
RlIpFftSubEntry ::= SEQUENCE {
rlIpFftSubMrid INTEGER,
rlIpFftSubDstIpSubnet IpAddress,
rlIpFftSubDstIpMask IpAddress,
rlIpFftSubNextHopSetRefCount INTEGER,
rlIpFftSubNextHopCount INTEGER,
rlIpFftSubNextHopIfindex1 INTEGER,
rlIpFftSubNextHopIpAddr1 IpAddress,
rlIpFftSubNextHopIfindex2 INTEGER,
rlIpFftSubNextHopIpAddr2 IpAddress,
rlIpFftSubNextHopIfindex3 INTEGER,
rlIpFftSubNextHopIpAddr3 IpAddress,
rlIpFftSubNextHopIfindex4 INTEGER,
rlIpFftSubNextHopIpAddr4 IpAddress,
rlIpFftSubNextHopIfindex5 INTEGER,
rlIpFftSubNextHopIpAddr5 IpAddress,
rlIpFftSubNextHopIfindex6 INTEGER,
rlIpFftSubNextHopIpAddr6 IpAddress,
rlIpFftSubNextHopIfindex7 INTEGER,
rlIpFftSubNextHopIpAddr7 IpAddress,
rlIpFftSubNextHopIfindex8 INTEGER,
rlIpFftSubNextHopIpAddr8 IpAddress,
rlIpFftSubAge INTEGER
}
rlIpFftSubMrid OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The router's Instance Identifier in the NFFT. "
::= { rlIpFftSubEntry 1 }
rlIpFftSubDstIpSubnet OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IP destination subnet for which this entry
contains IP forwarding information."
::= { rlIpFftSubEntry 2 }
rlIpFftSubDstIpMask OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IP destination mask for which this entry
contains IP forwarding information."
::= { rlIpFftSubEntry 3 }
rlIpFftSubAge OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The age of the entry in seconds from the inserting."
::= { rlIpFftSubEntry 4 }
rlIpFftSubNextHopSetRefCount OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of NFFT entries that used the given NextHop set (ECMP path). "
::= { rlIpFftSubEntry 5 }
rlIpFftSubNextHopCount OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of used NextHops in the given NextHop set (ECMP path) for the NFFT entry. "
::= { rlIpFftSubEntry 6 }
rlIpFftSubNextHopIfindex1 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The first NextHop Ifindex in the given NextHop set (ECMP path) for the NFFT entry. "
::= { rlIpFftSubEntry 7 }
rlIpFftSubNextHopIpAddr1 OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The first NextHop IP address in the given NextHop set (ECMP path) for the NFFT entry. "
::= { rlIpFftSubEntry 8 }
rlIpFftSubNextHopIfindex2 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The second NextHop Ifindex in the given NextHop set (ECMP path) for the NFFT entry. "
::= { rlIpFftSubEntry 9 }
rlIpFftSubNextHopIpAddr2 OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The second NextHop IP address in the given NextHop set (ECMP path) for the NFFT entry. "
::= { rlIpFftSubEntry 10 }
rlIpFftSubNextHopIfindex3 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The third NextHop Ifindex in the given NextHop set (ECMP path) for the NFFT entry. "
::= { rlIpFftSubEntry 11 }
rlIpFftSubNextHopIpAddr3 OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The third NextHop IP address in the given NextHop set (ECMP path) for the NFFT entry. "
::= { rlIpFftSubEntry 12 }
rlIpFftSubNextHopIfindex4 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The fourth NextHop Ifindex in the given NextHop set (ECMP path) for the NFFT entry. "
::= { rlIpFftSubEntry 13 }
rlIpFftSubNextHopIpAddr4 OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The fourth NextHop IP address in the given NextHop set (ECMP path) for the NFFT entry. "
::= { rlIpFftSubEntry 14 }
rlIpFftSubNextHopIfindex5 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The fifth NextHop Ifindex in the given NextHop set (ECMP path) for the NFFT entry. "
::= { rlIpFftSubEntry 15 }
rlIpFftSubNextHopIpAddr5 OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The fifth NextHop IP address in the given NextHop set (ECMP path) for the NFFT entry. "
::= { rlIpFftSubEntry 16 }
rlIpFftSubNextHopIfindex6 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The six NextHop Ifindex in the given NextHop set (ECMP path) for the NFFT entry. "
::= { rlIpFftSubEntry 17 }
rlIpFftSubNextHopIpAddr6 OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The six NextHop IP address in the given NextHop set (ECMP path) for the NFFT entry. "
::= { rlIpFftSubEntry 18 }
rlIpFftSubNextHopIfindex7 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The seven NextHop Ifindex in the given NextHop set (ECMP path) for the NFFT entry. "
::= { rlIpFftSubEntry 19 }
rlIpFftSubNextHopIpAddr7 OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The seven NextHop IP address in the given NextHop set (ECMP path) for the NFFT entry. "
::= { rlIpFftSubEntry 20 }
rlIpFftSubNextHopIfindex8 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The eight NextHop Ifindex in the given NextHop set (ECMP path) for the NFFT entry. "
::= { rlIpFftSubEntry 21 }
rlIpFftSubNextHopIpAddr8 OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The eight NextHop IP address in the given NextHop set (ECMP path) for the NFFT entry. "
::= { rlIpFftSubEntry 22 }
--
-- The IP FFT Counters Table
--
rlIpFftCountersTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlIpFftCountersEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The (conceptual) table containing IP Counters information
per one IP FFT."
::= { rlIpFFT 15 }
rlIpFftCountersEntry OBJECT-TYPE
SYNTAX RlIpFftCountersEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry (conceptual row) containing the IP Counters
information containing amount of IP datagrams passed
by certain IP FFT."
INDEX { rlIpFftCountersIndex }
::= { rlIpFftCountersTable 1 }
RlIpFftCountersEntry ::= SEQUENCE {
rlIpFftCountersIndex INTEGER,
rlIpFftInReceives INTEGER,
rlIpFftForwDatagrams INTEGER,
rlIpFftInDiscards INTEGER
}
rlIpFftCountersIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of the index of the IP FFT."
::= { rlIpFftCountersEntry 1 }
rlIpFftInReceives OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The amount of received IP datagrams "
::= { rlIpFftCountersEntry 2 }
rlIpFftForwDatagrams OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The amount of forwarded IP datagrams "
::= { rlIpFftCountersEntry 3 }
rlIpFftInDiscards OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The amount of discarded IP datagrams "
::= { rlIpFftCountersEntry 4 }
--
-- The IP NextHop Table (used by NFFT and Remote SFFT)
--
rlIpFftNextHopTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlIpFftNextHopEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The (conceptual) table contains NextHop information
used for routing IP datagrams. "
::= { rlIpFFT 16 }
rlIpFftNextHopEntry OBJECT-TYPE
SYNTAX RlIpFftNextHopEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry (conceptual row) contains the NextHop info
information for routing IP datagrams."
INDEX { rlIpFftNextHopifindex, rlIpFftNextHopIpAddress }
::= { rlIpFftNextHopTable 1 }
RlIpFftNextHopEntry ::= SEQUENCE {
rlIpFftNextHopifindex INTEGER,
rlIpFftNextHopIpAddress IpAddress,
rlIpFftNextHopValid INTEGER,
rlIpFftNextHopType INTEGER,
rlIpFftNextHopReferenceCount INTEGER,
rlIpFftNextHopNetAddress PhysAddress,
rlIpFftNextHopVid INTEGER,
rlIpFftNextHopMacAddress PhysAddress,
rlIpFftNextHopOutIfIndex INTEGER
}
rlIpFftNextHopifindex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of the IP Interface index of the NextHop. "
::= { rlIpFftNextHopEntry 1 }
rlIpFftNextHopIpAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IP address of a NextHop for which an entry contains
IP forwarding information. "
::= { rlIpFftNextHopEntry 2 }
rlIpFftNextHopValid OBJECT-TYPE
SYNTAX INTEGER {
valid (1),
invalid (2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The NextHop Valid bit. When L2 info is missing,
a NextHop has Invalid value. "
::= { rlIpFftNextHopEntry 3 }
rlIpFftNextHopType OBJECT-TYPE
SYNTAX INTEGER {
local (1),
remote (2),
reject (3),
drop (4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The NextHop type. "
::= { rlIpFftNextHopEntry 4 }
rlIpFftNextHopReferenceCount OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"IF LPM is supported:
If ecmp supported:
the field NextHop_ref_count used to save number
of NextHop SETs that use the NextHop.
Otherwise, NextHop_ref_count used to save number of
NFFT entries that use the NextHop.
IF LPM is NOT supported:
NextHop_ref_count used to save number of
Remote SFFT entries that use the NextHop. "
::= { rlIpFftNextHopEntry 5 }
rlIpFftNextHopNetAddress OBJECT-TYPE
SYNTAX PhysAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The NextHop Physical Address."
::= { rlIpFftNextHopEntry 6 }
rlIpFftNextHopVid OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The vid of the output port."
::= { rlIpFftNextHopEntry 7 }
rlIpFftNextHopMacAddress OBJECT-TYPE
SYNTAX PhysAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The MAC destination address."
::= { rlIpFftNextHopEntry 8}
rlIpFftNextHopOutIfIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of ifIndex of output physical port."
::= { rlIpFftNextHopEntry 9 }
--
-- The L2 info Table (used by NextHop and Direct SFFT)
--
rlIpFftL2InfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlIpFftL2InfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The (conceptual) table contains L2 information
used for routing IP datagrams. "
::= { rlIpFFT 17 }
rlIpFftL2InfoEntry OBJECT-TYPE
SYNTAX RlIpFftL2InfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry (conceptual row) contains the L2 info
information for routing IP datagrams."
INDEX { rlIpFftL2InfoIfindex, rlIpFftL2InfoDstMacAddress }
::= { rlIpFftL2InfoTable 1 }
RlIpFftL2InfoEntry ::= SEQUENCE {
rlIpFftL2InfoIfindex INTEGER,
rlIpFftL2InfoDstMacAddress PhysAddress,
rlIpFftL2InfoValid INTEGER,
rlIpFftL2InfoType INTEGER,
rlIpFftL2InfoReferenceCount INTEGER,
rlIpFftL2InfoVid INTEGER,
rlIpFftL2InfoSrcMacAddress PhysAddress,
rlIpFftL2InfoOutIfIndex INTEGER,
rlIpFftL2InfoTaggedMode INTEGER
}
rlIpFftL2InfoIfindex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The VLAN Ifindex of the destination port. "
::= { rlIpFftL2InfoEntry 1 }
rlIpFftL2InfoDstMacAddress OBJECT-TYPE
SYNTAX PhysAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The MAC destination address."
::= { rlIpFftL2InfoEntry 2}
rlIpFftL2InfoValid OBJECT-TYPE
SYNTAX INTEGER {
valid (1),
invalid (2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The L2 info entry valid bit. When L2 info is missing some information,
an L2 info has Invalid value. "
::= { rlIpFftL2InfoEntry 3 }
rlIpFftL2InfoType OBJECT-TYPE
SYNTAX INTEGER {
other (1),
vlan (2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The L2 info type. With Enthernet media l2 info type is vlan.
WIth Tunneling feature, l2 info type will be expanded. "
::= { rlIpFftL2InfoEntry 4 }
rlIpFftL2InfoReferenceCount OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The reference count contains a number of
NextHop entries that use this L2 info."
::= { rlIpFftL2InfoEntry 5 }
rlIpFftL2InfoVid OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The vid of the destination port. "
::= { rlIpFftL2InfoEntry 6 }
rlIpFftL2InfoSrcMacAddress OBJECT-TYPE
SYNTAX PhysAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The MAC source address placed to Ehernet Header of IP forwarded packet."
::= { rlIpFftL2InfoEntry 7}
rlIpFftL2InfoOutIfIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of ifIndex of output physical port the packet is forwarded through."
::= { rlIpFftL2InfoEntry 8 }
rlIpFftL2InfoTaggedMode OBJECT-TYPE
SYNTAX INTEGER {
untagged (1),
tagged (2),
basedPortConfig (3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The tagged value of the port. When the Tagged field is not
a part of the FFT table in the ASIC,
the Tagged field get the BasedPortConfig value."
::= { rlIpFftL2InfoEntry 9 }
---
--- rlIpxFFT
---
rlIpxFFT OBJECT IDENTIFIER ::= { rlFFT 2 }
rlIpxFftMibVersion OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"MIB's version, the current version is 1."
::= { rlIpxFFT 1 }
rlIpxMaxFftNumber OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximun number of IPX FFTs. An IPX FFT gets a number
from 1 until rlIpxMaxFftSetNumber."
::= { rlIpxFFT 2 }
rlIpxFftDynamicSupported OBJECT-TYPE
SYNTAX INTEGER {
supported (1),
unsupported (2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Specifies whether dynamic IPX FFTs are supported."
::= { rlIpxFFT 3 }
rlIpxFftNetworkSupported OBJECT-TYPE
SYNTAX INTEGER {
supported (1),
unsupported (2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Specifies whether subtable per IPX network is supported."
::= { rlIpxFFT 4 }
rlIpxFftUnknownAddrMsgUsed OBJECT-TYPE
SYNTAX INTEGER {
used (1),
unused (2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Specifies whether the 3SW uses the unknown address message."
::= { rlIpxFFT 5 }
rlIpxFftAgingTimeSupported OBJECT-TYPE
SYNTAX INTEGER {
supported (1),
unsupported (2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Specifies whether aging time is supported for subtable per station."
::= { rlIpxFFT 6 }
rlIpxFftSrcAddrSupported OBJECT-TYPE
SYNTAX INTEGER {
supported (1),
unsupported (2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Specifies whether an IPX subtable per station contains source
IPX address."
::= { rlIpxFFT 7 }
rlIpxFftAgingTimeout OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The aging timeout in seconds."
::= { rlIpxFFT 8 }
rlIpxFftRedBoundary OBJECT-TYPE
SYNTAX INTEGER (1..100)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The red boundary in percents."
::= { rlIpxFFT 9 }
rlIpxFftYellowBoundary OBJECT-TYPE
SYNTAX Percents
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The yellow boundary in percents."
::= { rlIpxFFT 10 }
--rlIpxFftPollingInterval OBJECT-TYPE
-- SYNTAX INTEGER
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION
-- "The polling interval for dynamic IPX FFTs support in seconds."
-- ::= { rlIpxFFT 11 }