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
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
|
NETGEAR-ROUTING6-MIB DEFINITIONS ::= BEGIN
-- Netgear Routing MIB
-- Copyright Netgear Inc (2007) All rights reserved.
-- This SNMP Management Information Specification
-- embodies Netgear Inc's confidential and proprietary
-- intellectual property. Netgear Inc retains all title
-- and ownership in the Specification including any revisions.
-- This Specification is supplied "AS IS", Netgear Inc
-- makes no warranty, either expressed or implied,
-- as to the use, operation, condition, or performance of the
-- Specification.
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE,
Counter32, Unsigned32, Integer32,
Gauge32 FROM SNMPv2-SMI
DisplayString, PhysAddress, TruthValue, TimeStamp,
VariablePointer, RowPointer, RowStatus, MacAddress
FROM SNMPv2-TC
MODULE-COMPLIANCE, OBJECT-GROUP,
NOTIFICATION-GROUP FROM SNMPv2-CONF
Ipv6IfIndex, Ipv6Address, Ipv6AddressPrefix,
Ipv6AddressIfIdentifier,
Ipv6IfIndexOrZero FROM IPV6-TC
lb6m FROM QUANTA-LB6M-REF-MIB;
fastPathRoutingIpv6 MODULE-IDENTITY
LAST-UPDATED "201101260000Z" -- 26 Jan 2011 12:00:00 GMT
ORGANIZATION "Netgear Inc"
CONTACT-INFO ""
DESCRIPTION
"The Netgear Private MIB for FastPath Ipv6 Routing"
-- Revision history.
REVISION
"201101260000Z" -- 26 Jan 2011 12:00:00 GMT
DESCRIPTION
"Postal address updated."
REVISION
"200705230000Z" -- 23 May 2007 12:00:00 GMT
DESCRIPTION
"Netgear branding related changes."
REVISION
"200509211700Z" -- 21 Sept 2005 12:00 PM EST
DESCRIPTION
"Updated for release"
::= { lb6m 30 }
--**************************************************************************************
-- agentIpv6Group
--
--**************************************************************************************
agentIpv6Group OBJECT IDENTIFIER ::= { fastPathRoutingIpv6 1 }
agentIpv6RoutingMode OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Administratively enables/disables ipv6 unicast routing on the switch."
::= { agentIpv6Group 1 }
--**************************************************************************************
-- agentIpv6InterfaceTable
--
--**************************************************************************************
agentIpv6InterfaceTable OBJECT-TYPE
SYNTAX SEQUENCE OF AgentIpv6InterfaceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
""
::= { agentIpv6Group 2 }
agentIpv6InterfaceEntry OBJECT-TYPE
SYNTAX AgentIpv6InterfaceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
""
INDEX { agentIpv6InterfaceIfIndex }
::= { agentIpv6InterfaceTable 1 }
AgentIpv6InterfaceEntry ::= SEQUENCE {
agentIpv6InterfaceIfIndex
Integer32,
agentIpv6InterfaceMtuValue
Unsigned32,
agentIpv6InterfaceDadTransmits
Integer32,
agentIpv6InterfaceLinkLocalOnly
INTEGER,
agentIpv6InterfaceIcmpUnreachables
INTEGER,
agentIpv6InterfaceAutoconfig
INTEGER,
agentIpv6InterfaceDhcpClient
INTEGER,
agentIpv6InterfaceIcmpRedirects
INTEGER
}
agentIpv6InterfaceIfIndex OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IfIndex associated with this instance."
::= { agentIpv6InterfaceEntry 1 }
agentIpv6InterfaceMtuValue OBJECT-TYPE
SYNTAX Unsigned32 (0|1280..1500)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Configures the MTU value for this interface.If it is not yet configured,
retrieving the value of this object results in a zero value.
Setting the value zero to this object effectively un-configures the MTU."
::= { agentIpv6InterfaceEntry 2 }
agentIpv6InterfaceDadTransmits OBJECT-TYPE
SYNTAX Integer32 (0..100)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Configures the dad transmits value for this interface."
::= { agentIpv6InterfaceEntry 3 }
agentIpv6InterfaceLinkLocalOnly OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"When enabled, interface is capable of ipv6 operation without a global address.
In this case, an eui-64 based link-local address is used. "
DEFVAL { disable }
::= { agentIpv6InterfaceEntry 4 }
agentIpv6InterfaceIcmpUnreachables OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If this object is enable, it indicates that ICMPv6 unreachables can be sent on this
interface."
::= { agentIpv6InterfaceEntry 5 }
agentIpv6InterfaceAutoconfig OBJECT-TYPE
SYNTAX INTEGER{
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If this object is enabled, it indicates that the IPv6 address
is automatically generated using IPv6 stateless address auto configuration."
::= { agentIpv6InterfaceEntry 6 }
agentIpv6InterfaceDhcpClient OBJECT-TYPE
SYNTAX INTEGER{
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If this object is enabled, the interface uses DHCPv6 Client
protocol to acquire an IPv6 address."
::= { agentIpv6InterfaceEntry 7 }
agentIpv6InterfaceIcmpRedirects OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable/Disable the sending of ICMPv6 redirect messages
in the redirect scenario where the forwarded packet
is sent out through the same interface on which the
packet was received. "
DEFVAL { enable }
::= { agentIpv6InterfaceEntry 8 }
--**************************************************************************************
-- agentIpv6RouterAdvertisementTable
--
--**************************************************************************************
agentIpv6RouterAdvertisementTable OBJECT-TYPE
SYNTAX SEQUENCE OF AgentIpv6RouterAdvertisementEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"There is no global administrative flag for router advertisement. The global
routing flag (agentIpv6RoutingMode) will be used for this purpose. If routing
is disabled, router advertisement is disabled as well."
::= { agentIpv6Group 3 }
agentIpv6RouterAdvertisementEntry OBJECT-TYPE
SYNTAX AgentIpv6RouterAdvertisementEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
""
INDEX { agentIpv6RouterAdvertisementIfIndex }
::= { agentIpv6RouterAdvertisementTable 1 }
AgentIpv6RouterAdvertisementEntry ::= SEQUENCE {
agentIpv6RouterAdvertisementIfIndex
Integer32,
agentIpv6RouterAdvertisementSuppressMode
INTEGER,
agentIpv6RouterAdvertisementMaxAdvertisementInterval
Integer32,
agentIpv6RouterAdvertisementAdvertisementLifetime
Integer32,
agentIpv6RouterAdvertisementNbrSolicitInterval
Integer32,
agentIpv6RouterAdvertisementReachableTime
Integer32,
agentIpv6RouterAdvertisementManagedFlag
INTEGER,
agentIpv6RouterAdvertisementOtherFlag
INTEGER,
agentIpv6RouterAdvertisementHopLimitUnspecifiedMode
INTEGER
}
agentIpv6RouterAdvertisementIfIndex OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Interface Number to configure Router Advertisement on."
::= { agentIpv6RouterAdvertisementEntry 1 }
agentIpv6RouterAdvertisementSuppressMode OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable or disable router advertisement suppression on the interface."
DEFVAL { disable }
::= { agentIpv6RouterAdvertisementEntry 2 }
agentIpv6RouterAdvertisementMaxAdvertisementInterval OBJECT-TYPE
SYNTAX Integer32 (4..1800)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Maximum time allowed between sending router advertisements
from the interface."
DEFVAL { 600 }
::= { agentIpv6RouterAdvertisementEntry 3 }
agentIpv6RouterAdvertisementAdvertisementLifetime OBJECT-TYPE
SYNTAX Integer32 (4..65520)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Value of lifetime field of router advertisement sent from
the interface.
This value must be greater than or equal to
agentIpv6RouterAdvertisementMaxAdvertisementInterval."
DEFVAL { 1800 }
::= { agentIpv6RouterAdvertisementEntry 4 }
agentIpv6RouterAdvertisementNbrSolicitInterval OBJECT-TYPE
SYNTAX Integer32 (0..3600000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Value of retrans time field of router advertisement sent from
the interface. A value of 0 means this router does not specifiy
the interval."
DEFVAL { 0 }
::= { agentIpv6RouterAdvertisementEntry 5 }
agentIpv6RouterAdvertisementReachableTime OBJECT-TYPE
SYNTAX Integer32 (0..3600000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Value of reachable time field of router advertisement sent from
the interface. A value of 0 means this router does not specifiy
the interval."
DEFVAL { 0 }
::= { agentIpv6RouterAdvertisementEntry 6 }
agentIpv6RouterAdvertisementManagedFlag OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Value of managed config field of router advertisement sent from
the interface."
DEFVAL { disable }
::= { agentIpv6RouterAdvertisementEntry 7 }
agentIpv6RouterAdvertisementOtherFlag OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Value of other config field of router advertisement sent from
the interface."
DEFVAL { disable }
::= { agentIpv6RouterAdvertisementEntry 8 }
agentIpv6RouterAdvertisementHopLimitUnspecifiedMode OBJECT-TYPE
SYNTAX INTEGER{
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object configures the router to send Router Advertisements
on an interface with unspecified (0) Current Hop Limit value.
This will tell the hosts on that link to ignore the Hop Limit
from this Router."
DEFVAL { disable }
::= { agentIpv6RouterAdvertisementEntry 9 }
-- Address Prefix table
-- The IPv6 Address Prefix table contains information on
-- the entity's IPv6 Address Prefixes that are associated
-- with IPv6 interfaces.
agentIpv6AddrPrefixTable OBJECT-TYPE
SYNTAX SEQUENCE OF AgentIpv6AddrPrefixEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The list of IPv6 address prefixes of
IPv6 interfaces."
::= { agentIpv6Group 4 }
agentIpv6AddrPrefixEntry OBJECT-TYPE
SYNTAX AgentIpv6AddrPrefixEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An interface entry containing objects of
a particular IPv6 address prefix."
INDEX { agentIpv6InterfaceIfIndex,
agentIpv6AddrPrefix,
agentIpv6AddrPrefixLength }
::= { agentIpv6AddrPrefixTable 1 }
AgentIpv6AddrPrefixEntry ::= SEQUENCE {
agentIpv6AddrPrefix Ipv6AddressPrefix,
agentIpv6AddrPrefixLength INTEGER,
agentIpv6AddrPrefixOnLinkFlag TruthValue,
agentIpv6AddrPrefixAutonomousFlag TruthValue,
agentIpv6AddrPrefixAdvPreferredLifetime Unsigned32,
agentIpv6AddrPrefixAdvValidLifetime Unsigned32
}
agentIpv6AddrPrefix OBJECT-TYPE
SYNTAX Ipv6AddressPrefix
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The prefix associated with the this interface."
::= { agentIpv6AddrPrefixEntry 1 }
agentIpv6AddrPrefixLength OBJECT-TYPE
SYNTAX INTEGER (0..128)
UNITS "bits"
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The length of the prefix (in bits)."
::= { agentIpv6AddrPrefixEntry 2 }
agentIpv6AddrPrefixOnLinkFlag OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object has the value 'true(1)', if this
prefix can be used for on-link determination
and the value 'false(2)' otherwise."
::= { agentIpv6AddrPrefixEntry 3 }
agentIpv6AddrPrefixAutonomousFlag OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Autonomous address configuration flag. When
true(1), indicates that this prefix can be used
for autonomous address configuration (i.e. can
be used to form a local interface address).
If false(2), it is not used to autoconfigure
a local interface address."
::= { agentIpv6AddrPrefixEntry 4 }
agentIpv6AddrPrefixAdvPreferredLifetime OBJECT-TYPE
SYNTAX Unsigned32
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"It is the length of time in seconds that this
prefix will remain preferred, i.e. time until
deprecation. A value of 4,294,967,295 represents
infinity.
The address generated from a deprecated prefix
should no longer be used as a source address in
new communications, but packets received on such
an interface are processed as expected."
::= { agentIpv6AddrPrefixEntry 5 }
agentIpv6AddrPrefixAdvValidLifetime OBJECT-TYPE
SYNTAX Unsigned32
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"It is the length of time in seconds that this
prefix will remain valid, i.e. time until
invalidation. A value of 4,294,967,295 represents
infinity.
The address generated from an invalidated prefix
should not appear as the destination or source
address of a packet."
::= { agentIpv6AddrPrefixEntry 6 }
-- the IPv6 Address table
-- The IPv6 address table contains this node's IPv6
-- addressing information.
agentIpv6AddrTable OBJECT-TYPE
SYNTAX SEQUENCE OF AgentIpv6AddrEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table of addressing information relevant to
this node's interface addresses."
::= { agentIpv6Group 5 }
agentIpv6AddrEntry OBJECT-TYPE
SYNTAX AgentIpv6AddrEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The addressing information for one of this
node's interface addresses."
INDEX { agentIpv6InterfaceIfIndex, agentIpv6AddrAddress }
::= { agentIpv6AddrTable 1 }
AgentIpv6AddrEntry ::=
SEQUENCE {
agentIpv6AddrAddress Ipv6Address,
agentIpv6AddrPfxLength INTEGER,
agentIpv6AddrEui64Flag TruthValue,
agentIpv6AddrStatus RowStatus
}
agentIpv6AddrAddress OBJECT-TYPE
SYNTAX Ipv6Address
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The IPv6 address to which this entry's addressing
information pertains."
::= { agentIpv6AddrEntry 1 }
agentIpv6AddrPfxLength OBJECT-TYPE
SYNTAX INTEGER(0..128)
UNITS "bits"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The length of the prefix (in bits) associated with
the IPv6 address of this entry."
::= { agentIpv6AddrEntry 2 }
agentIpv6AddrEui64Flag OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object has the value 'true(1)', if this
address uses and eui-64 generated interface identifier and the value
'false(2)' otherwise."
::= { agentIpv6AddrEntry 3 }
agentIpv6AddrStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Creates a new entry in the Address table.
Allowed values are:
createAndGo(4) - Creates an entry in this table, associating the address
with a given interface. The agentIpv6NetMask
object must be set during creation.
destroy(6) - Removes the associated address from the interface."
::= { agentIpv6AddrEntry 4 }
-- IPv6 Static Routing table
agentIpv6StaticRouteTable OBJECT-TYPE
SYNTAX SEQUENCE OF AgentIpv6StaticRouteEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"IPv6 Static Routing table. This table contains
an entry for each valid IPv6 static unicast route
that can be used for packet forwarding
determination."
::= { agentIpv6Group 6 }
agentIpv6StaticRouteEntry OBJECT-TYPE
SYNTAX AgentIpv6StaticRouteEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A routing entry."
INDEX { agentIpv6StaticRouteDest,
agentIpv6StaticRoutePfxLength,
agentIpv6StaticRouteIfIndex,
agentIpv6StaticRouteNextHop }
::= { agentIpv6StaticRouteTable 1 }
AgentIpv6StaticRouteEntry ::= SEQUENCE {
agentIpv6StaticRouteDest Ipv6AddressPrefix,
agentIpv6StaticRoutePfxLength INTEGER,
agentIpv6StaticRouteIfIndex Ipv6IfIndexOrZero,
agentIpv6StaticRouteNextHop Ipv6Address,
agentIpv6StaticRoutePreference INTEGER,
agentIpv6StaticRouteStatus RowStatus
}
agentIpv6StaticRouteDest OBJECT-TYPE
SYNTAX Ipv6AddressPrefix
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The destination IPv6 address of this route.
This object may not take a Multicast address
value."
::= { agentIpv6StaticRouteEntry 1 }
agentIpv6StaticRoutePfxLength OBJECT-TYPE
SYNTAX INTEGER(0..128)
UNITS "bits"
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Indicates the prefix length of the destination
address."
::= { agentIpv6StaticRouteEntry 2 }
agentIpv6StaticRouteIfIndex OBJECT-TYPE
SYNTAX Ipv6IfIndexOrZero
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index value which uniquely identifies the local
interface through which the next hop of this
route should be reached. The interface identified
by a particular value of this index is the same
interface as identified by the same value of
ipv6IfIndex. For routes with global address next hop this
value can be zero."
::= { agentIpv6StaticRouteEntry 3 }
agentIpv6StaticRouteNextHop OBJECT-TYPE
SYNTAX Ipv6Address
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The address of the next
system en route. "
::= { agentIpv6StaticRouteEntry 4 }
agentIpv6StaticRoutePreference OBJECT-TYPE
SYNTAX INTEGER (1..255)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The routing preference metric for this route. A lower
value is more preferred."
DEFVAL { 1 }
::= { agentIpv6StaticRouteEntry 5 }
agentIpv6StaticRouteStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Creates a new entry in the Address table.
Allowed values are:
createAndGo(4) - Creates an entry in this table.
destroy(6) - Removes the associated route from the interface."
::= { agentIpv6StaticRouteEntry 6 }
--**************************************************************************************
-- agentIpv6ServicePortGroup
--
--**************************************************************************************
agentIpv6ServicePortGroup OBJECT IDENTIFIER ::= { agentIpv6Group 7 }
-- IPv6 Service Port Prefix Table
agentIpv6ServicePortPrefixTable OBJECT-TYPE
SYNTAX SEQUENCE OF AgentIpv6ServicePortPrefixEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"IPv6 Service Port Prefix Table. This table contains
an entry for each valid IPv6 prefix configured on the
Service Port."
::= { agentIpv6ServicePortGroup 1 }
agentIpv6ServicePortPrefixEntry OBJECT-TYPE
SYNTAX AgentIpv6ServicePortPrefixEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An IPv6 Service Port Prefix entry."
INDEX { agentIpv6ServicePortPrefixIndex }
::= { agentIpv6ServicePortPrefixTable 1 }
AgentIpv6ServicePortPrefixEntry ::= SEQUENCE {
agentIpv6ServicePortPrefixIndex Unsigned32,
agentIpv6ServicePortPrefix Ipv6Address,
agentIpv6ServicePortPrefixLength Unsigned32
}
agentIpv6ServicePortPrefixIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index of the Ipv6 Prefix Address configured on the
Service Port. Removal of a row will cause index values
to be reassigned."
::= { agentIpv6ServicePortPrefixEntry 1 }
agentIpv6ServicePortPrefix OBJECT-TYPE
SYNTAX Ipv6Address
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Ipv6 Prefix Address configured on the Service Port."
::= { agentIpv6ServicePortPrefixEntry 2 }
agentIpv6ServicePortPrefixLength OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The length of the IPv6 Prefix Address."
::= { agentIpv6ServicePortPrefixEntry 3 }
-- IPv6 Service Port Default Router Table
agentIpv6ServicePortDefaultRouterTable OBJECT-TYPE
SYNTAX SEQUENCE OF AgentIpv6ServicePortDefaultRouterEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"IPv6 Service Port Default Router Table. This table contains
an entry for each valid IPv6 Default Router configured on the
Service Port."
::= { agentIpv6ServicePortGroup 2 }
agentIpv6ServicePortDefaultRouterEntry OBJECT-TYPE
SYNTAX AgentIpv6ServicePortDefaultRouterEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An IPv6 Service Port Default Router entry."
INDEX { agentIpv6ServicePortDefaultRouterIndex }
::= { agentIpv6ServicePortDefaultRouterTable 1 }
AgentIpv6ServicePortDefaultRouterEntry ::= SEQUENCE {
agentIpv6ServicePortDefaultRouterIndex Unsigned32,
agentIpv6ServicePortDefaultRouter Ipv6Address
}
agentIpv6ServicePortDefaultRouterIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index of the IPv6 Default Router Address
configured on the Service Port. Removal of a
row will cause index values to be reassigned."
::= { agentIpv6ServicePortDefaultRouterEntry 1 }
agentIpv6ServicePortDefaultRouter OBJECT-TYPE
SYNTAX Ipv6Address
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Address of the IPv6 Default Router configured
on the Service Port."
::= { agentIpv6ServicePortDefaultRouterEntry 2 }
-- IPv6 Service Port Neighbor Table
agentIpv6ServicePortNbrTable OBJECT-TYPE
SYNTAX SEQUENCE OF AgentIpv6ServicePortNbrEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"IPv6 Service Port Neighbor Table. This table contains
an entry for each valid IPv6 Neighbor configured on the
Service Port."
::= { agentIpv6ServicePortGroup 3 }
agentIpv6ServicePortNbrEntry OBJECT-TYPE
SYNTAX AgentIpv6ServicePortNbrEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An IPv6 Service Port Neighbor entry."
INDEX { agentIpv6ServicePortNbrAddr }
::= { agentIpv6ServicePortNbrTable 1 }
AgentIpv6ServicePortNbrEntry ::= SEQUENCE {
agentIpv6ServicePortNbrAddr Ipv6Address,
agentIpv6ServicePortNbrPhysAddr MacAddress,
agentIpv6ServicePortNbrState INTEGER,
agentIpv6ServicePortNbrUpdated TimeStamp,
agentIpv6ServicePortNbrIsRouter TruthValue,
agentIpv6ServicePortNbrType INTEGER
}
agentIpv6ServicePortNbrAddr OBJECT-TYPE
SYNTAX Ipv6Address
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The Ipv6 Address of a neighbor switch visible to the Service Port."
::= { agentIpv6ServicePortNbrEntry 1 }
agentIpv6ServicePortNbrPhysAddr OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The MacAddress of the neighboring switch."
::= { agentIpv6ServicePortNbrEntry 2 }
agentIpv6ServicePortNbrState OBJECT-TYPE
SYNTAX INTEGER { reachable(1),
stale(2),
delay(3),
probe(4),
unknown(6)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The state of the neighboring switch:
reachable(1) - The neighbor is reachable by this switch.
stale(2) - Information about the neighbor is scheduled for deletion.
delay(3) - No information has been received from neighbor during delay period.
probe(4) - Switch is attempting to probe for this neighbor.
unknown(6) - Unknown status."
::= { agentIpv6ServicePortNbrEntry 3 }
agentIpv6ServicePortNbrUpdated OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The last sysUpTime that this neighbor has been updated."
::= { agentIpv6ServicePortNbrEntry 4 }
agentIpv6ServicePortNbrIsRouter OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Returns true(1) if the neighbor machine is a router,
false(2) otherwise."
::= { agentIpv6ServicePortNbrEntry 5 }
agentIpv6ServicePortNbrType OBJECT-TYPE
SYNTAX INTEGER { other(1), -- none of the following
dynamic(2), -- dynamically resolved
static(3), -- statically configured
local(4) -- local interface
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of the mapping.
The 'dynamic(2)' type indicates that the
IPv6 address to physical addresses mapping has been dynamically
resolved using the IPv6 Neighbor Discovery protocol.
The static(3)' types indicates that the mapping has been
statically configured.
The local(4) indicates that the mapping is provided for an
entity's own interface address."
::= { agentIpv6ServicePortNbrEntry 6 }
-- IPv6 Service Port Static Neighbor Config Table
agentIpv6ServicePortNbrCfgTable OBJECT-TYPE
SYNTAX SEQUENCE OF AgentIpv6ServicePortNbrCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table contains an entry for each static
IPv6 Neighbor on the Service Port."
::= { agentIpv6ServicePortGroup 4 }
agentIpv6ServicePortNbrCfgEntry OBJECT-TYPE
SYNTAX AgentIpv6ServicePortNbrCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry of the static IPv6 Neighbor on the Service Port."
INDEX { agentIpv6ServicePortNbrCfgAddr }
::= { agentIpv6ServicePortNbrCfgTable 1 }
AgentIpv6ServicePortNbrCfgEntry ::= SEQUENCE {
agentIpv6ServicePortNbrCfgAddr Ipv6Address,
agentIpv6ServicePortNbrCfgPhysAddr MacAddress,
agentIpv6ServicePortNbrCfgEntryStatus RowStatus
}
agentIpv6ServicePortNbrCfgAddr OBJECT-TYPE
SYNTAX Ipv6Address
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The Ipv6 Address of a static neighbor on the Service Port."
::= { agentIpv6ServicePortNbrCfgEntry 1 }
agentIpv6ServicePortNbrCfgPhysAddr OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The MAC Address of a static neighbor on the Service Port."
::= { agentIpv6ServicePortNbrCfgEntry 2 }
agentIpv6ServicePortNbrCfgEntryStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Create or delete the static neighbor entry on the Service Port.
The configured static neighbor entry is always active."
::= { agentIpv6ServicePortNbrCfgEntry 3 }
--**************************************************************************************
-- agentIpv6IcmpGroup
--
--**************************************************************************************
agentIpv6IcmpControlGroup OBJECT IDENTIFIER ::= { agentIpv6Group 8 }
agentIpv6IcmpRateLimitInterval OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies the time interval between tokens being placed in the bucket for
ICMP Ratelimit."
::= { agentIpv6IcmpControlGroup 1 }
agentIpv6IcmpRateLimitBurstSize OBJECT-TYPE
SYNTAX Integer32 (1..200)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies the number of tokens to be placed after timeout."
::= { agentIpv6IcmpControlGroup 2 }
--**************************************************************************************
-- agentDhcp6ClientParametersTable
--
--**************************************************************************************
agentDhcp6ClientParametersTable OBJECT-TYPE
SYNTAX SEQUENCE OF AgentDhcp6ClientParametersEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information about the DHCPv6 Client parameters on the interfaces."
::= { agentIpv6Group 9 }
agentDhcp6ClientParametersEntry OBJECT-TYPE
SYNTAX AgentDhcp6ClientParametersEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"DHCPv6 Client information on an interface."
INDEX { agentDhcp6ClientInterfaceIndex }
::= { agentDhcp6ClientParametersTable 1 }
AgentDhcp6ClientParametersEntry ::= SEQUENCE {
agentDhcp6ClientInterfaceIndex Unsigned32,
agentDhcp6ClientPrefix Ipv6AddressPrefix,
agentDhcp6ClientPrefixlength INTEGER,
agentDhcp6ClientState INTEGER,
agentDhcp6ClientServerDUID DisplayString,
agentDhcp6ClientT1Time Unsigned32,
agentDhcp6ClientT2Time Unsigned32,
agentDhcp6ClientIAID Unsigned32,
agentDhcp6ClientPreferredLifeTime Unsigned32,
agentDhcp6ClientValidLifeTime Unsigned32,
agentDhcp6ClientRenewTime Unsigned32,
agentDhcp6ClientExpireTime Unsigned32
}
agentDhcp6ClientInterfaceIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Interface index on which the IPv6 address is leased by the DHCPv6 Server."
::= { agentDhcp6ClientParametersEntry 1 }
agentDhcp6ClientPrefix OBJECT-TYPE
SYNTAX Ipv6AddressPrefix
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IPv6 Prefix leased by the DHCPv6 Server."
::= { agentDhcp6ClientParametersEntry 2 }
agentDhcp6ClientPrefixlength OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Prefix length corresponding to the IPv6 Prefix leased by the DHCPv6 Server."
::= { agentDhcp6ClientParametersEntry 3 }
agentDhcp6ClientState OBJECT-TYPE
SYNTAX INTEGER{
inactive(0),
solicit(1),
request(2),
active(3),
renew(4),
rebind(5),
release(6)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The State of the DHCPv6 Client on this interface."
::= { agentDhcp6ClientParametersEntry 4 }
agentDhcp6ClientServerDUID OBJECT-TYPE
SYNTAX DisplayString (SIZE(1..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The DHCPv6 Unique Identifier of the DHCPv6 Server on this interface."
::= { agentDhcp6ClientParametersEntry 5 }
agentDhcp6ClientT1Time OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The T1 (in seconds) time as indicated by the DHCPv6 Server. T1 value indicates the time interval
after which the address is requested for renewal."
::= { agentDhcp6ClientParametersEntry 6 }
agentDhcp6ClientT2Time OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The T2 (in seconds) time as indicated by the DHCPv6 Server. T2 value indicates the time interval
after which the Client sends Rebind message to the Server incase there are no replies to the Renew messages."
::= { agentDhcp6ClientParametersEntry 7 }
agentDhcp6ClientIAID OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An identifier for an identity association chosen by this Client."
::= { agentDhcp6ClientParametersEntry 8 }
agentDhcp6ClientPreferredLifeTime OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The time (in seconds) that the IPv6 address is leased by the DHCPv6 Server."
::= { agentDhcp6ClientParametersEntry 9 }
agentDhcp6ClientValidLifeTime OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The time (in seconds) that the IPv6 address is leased by the DHCPv6 Server."
::= { agentDhcp6ClientParametersEntry 10 }
agentDhcp6ClientRenewTime OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The time (in seconds) remaining to send a DHCPv6 Renew request to DHCPv6 Server for the leased address."
::= { agentDhcp6ClientParametersEntry 11 }
agentDhcp6ClientExpireTime OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The time (in seconds) when the DHCPv6 leased address expires."
::= { agentDhcp6ClientParametersEntry 12 }
--****************************************************************
-- agentIpv6RoutingTableSummaryGroup
--
--****************************************************************
agentIpv6RoutingTableSummaryGroup OBJECT IDENTIFIER ::= { agentIpv6Group 10 }
agentIpv6ConnectedRoutes OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of connected routes in the IPv6 routing table."
::= { agentIpv6RoutingTableSummaryGroup 1 }
agentIpv6StaticRoutes OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of static routes in the IPv6 routing table."
::= { agentIpv6RoutingTableSummaryGroup 2 }
agentIpv66to4Routes OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of 6to4 routes in the IPv6 routing table."
::= { agentIpv6RoutingTableSummaryGroup 3 }
agentIpv6OspfRoutes OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of OSPFv2 routes in the IPv6 routing table."
::= { agentIpv6RoutingTableSummaryGroup 4 }
agentIpv6OspfIntraRoutes OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of OSPFv2 intra-area routes in the IPv6 routing table."
::= { agentIpv6RoutingTableSummaryGroup 5 }
agentIpv6OspfInterRoutes OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of OSPFv2 inter-area routes in the IPv6 routing table."
::= { agentIpv6RoutingTableSummaryGroup 6 }
agentIpv6OspfExt1Routes OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of OSPFv2 external type 1 routes in the IPv6 routing table."
::= { agentIpv6RoutingTableSummaryGroup 7 }
agentIpv6OspfExt2Routes OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of OSPFv2 external type 2 routes in the IPv6 routing table."
::= { agentIpv6RoutingTableSummaryGroup 8 }
agentIpv6BgpRoutes OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of BGP routes in the IPv6 routing table."
::= { agentIpv6RoutingTableSummaryGroup 9 }
agentIpv6EbgpRoutes OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of external BGP routes in the IPv6 routing table."
::= { agentIpv6RoutingTableSummaryGroup 10 }
agentIpv6IbgpRoutes OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of internal BGP routes in the IPv6 routing table."
::= { agentIpv6RoutingTableSummaryGroup 11 }
agentIpv6LocalBgpRoutes OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of local BGP routes in the IPv6 routing table."
::= { agentIpv6RoutingTableSummaryGroup 12 }
agentIpv6RejectRoutes OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of reject routes in the IPv6 routing table."
::= { agentIpv6RoutingTableSummaryGroup 13 }
agentIpv6TotalRoutes OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of routes in the IPv6 routing table."
::= { agentIpv6RoutingTableSummaryGroup 14 }
agentIpv6BestRoutes OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of IPv6 routes in the forwarding table."
::= { agentIpv6RoutingTableSummaryGroup 15 }
agentIpv6BestRoutesHigh OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The highest number of IPv6 routes in the forwarding table."
::= { agentIpv6RoutingTableSummaryGroup 16 }
agentIpv6AlternateRoutes OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of alternate routes in the IPv6 routing table.
An alternate route is less preferred than the best route and is not used for forwarding."
::= { agentIpv6RoutingTableSummaryGroup 17 }
agentIpv6RouteAdds OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of routes added to the IPv6 routing table."
::= { agentIpv6RoutingTableSummaryGroup 18 }
agentIpv6RouteModifies OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of routes changed in the IPv6 routing table."
::= { agentIpv6RoutingTableSummaryGroup 19 }
agentIpv6RouteDeletes OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of routes removed from the IPv6 routing table."
::= { agentIpv6RoutingTableSummaryGroup 20 }
agentIpv6UnresolvedRouteAdds OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of IPv6 route adds that failed because none of the route's next hops were on a local subnet."
::= { agentIpv6RoutingTableSummaryGroup 21 }
agentIpv6InvalidRouteAdds OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of IPv6 routes adds that failed because the route was invalid."
::= { agentIpv6RoutingTableSummaryGroup 22 }
agentIpv6FailedRouteAdds OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of IPv6 routes adds that failed because of a resource limitation in the routing table"
::= { agentIpv6RoutingTableSummaryGroup 23 }
agentIpv6ReservedLocals OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of IPv6 routing table entries reserved for a local subnet on a routing interface that is down. "
::= { agentIpv6RoutingTableSummaryGroup 24 }
agentIpv6UniqueNextHops OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of distinct next hops used among all IPv6 routes currently in the routing table.
These include local interfaces for local routes and neighbors for indirect routes."
::= { agentIpv6RoutingTableSummaryGroup 25 }
agentIpv6UniqueNextHopsHigh OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The highest count of unique next hops since counters were last cleared."
::= { agentIpv6RoutingTableSummaryGroup 26 }
agentIpv6NextHopGroups OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current number of next hop groups in use by one or more routes.
Each next hop group includes one or more next hops."
::= { agentIpv6RoutingTableSummaryGroup 27 }
agentIpv6NextHopGroupsHigh OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The highest count of next hop groups since counters were last cleared."
::= { agentIpv6RoutingTableSummaryGroup 28 }
agentIpv6EcmpGroups OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of next hop groups with multiple next hops."
::= { agentIpv6RoutingTableSummaryGroup 29 }
agentIpv6EcmpGroupsHigh OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The high water mark of the number of ECMP groups."
::= { agentIpv6RoutingTableSummaryGroup 30 }
agentIpv6EcmpRoutes OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current number of IPv6 routes with multiple next hops."
::= { agentIpv6RoutingTableSummaryGroup 31 }
agentIpv6TruncEcmpRoutes OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of ECMP routes that are currently installed in the forwarding table
with just one next hop. The forwarding table may limit the number of ECMP
routes or the number of ECMP groups. When an ECMP route cannot be installed
because such a limit is reached, the route is installed with a single next hop."
::= { agentIpv6RoutingTableSummaryGroup 32 }
agentIpv6EcmpRetries OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of ECMP routes that have been installed in the forwarding table
after initially being installed with a single next hop."
::= { agentIpv6RoutingTableSummaryGroup 33 }
--****************************************************************
-- agentIpv6EcmpCountTable
--
--************************************************************
agentIpv6EcmpCountTable OBJECT-TYPE
SYNTAX SEQUENCE OF AgentIpv6EcmpCountEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A count of the number of routes with each number of ECMP next hops.
A walk of this table only returns the entries with a non-zero value
for agentIpv6EcmpRouteCount."
::= { agentIpv6Group 11 }
agentIpv6EcmpCountEntry OBJECT-TYPE
SYNTAX AgentIpv6EcmpCountEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Number of IPv6 routes with a given number of next hops."
INDEX { agentIpv6EcmpNextHopCount }
::= { agentIpv6EcmpCountTable 1 }
AgentIpv6EcmpCountEntry ::= SEQUENCE {
agentIpv6EcmpNextHopCount
Unsigned32,
agentIpv6EcmpRouteCount
Gauge32
}
agentIpv6EcmpNextHopCount OBJECT-TYPE
SYNTAX Unsigned32 (0..128)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The number of next hops in a route. From 0 to the maximum number of
next hops in an ECMP route. The maximum varies by platform."
::= { agentIpv6EcmpCountEntry 1 }
agentIpv6EcmpRouteCount OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of IPv6 routes with agentIpv6EcmpNextHopCount next hops."
::= { agentIpv6EcmpCountEntry 2 }
--****************************************************************
-- agentIpv6NetworkPortGroup
--
--****************************************************************
agentIpv6NetworkPortGroup OBJECT IDENTIFIER ::= { agentIpv6Group 12 }
-- IPv6 Network Port Neighbor Table
agentIpv6NetworkPortNbrTable OBJECT-TYPE
SYNTAX SEQUENCE OF AgentIpv6NetworkPortNbrEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"IPv6 Network Port Neighbor Table. This table contains
an entry for each valid IPv6 Neighbor configured on the
Network Port."
::= { agentIpv6NetworkPortGroup 1 }
agentIpv6NetworkPortNbrEntry OBJECT-TYPE
SYNTAX AgentIpv6NetworkPortNbrEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An IPv6 Network Port Neighbor entry."
INDEX { agentIpv6NetworkPortNbrAddr }
::= { agentIpv6NetworkPortNbrTable 1 }
AgentIpv6NetworkPortNbrEntry ::= SEQUENCE {
agentIpv6NetworkPortNbrAddr Ipv6Address,
agentIpv6NetworkPortNbrPhysAddr MacAddress,
agentIpv6NetworkPortNbrState INTEGER,
agentIpv6NetworkPortNbrUpdated TimeStamp,
agentIpv6NetworkPortNbrIsRouter TruthValue,
agentIpv6NetworkPortNbrType INTEGER
}
agentIpv6NetworkPortNbrAddr OBJECT-TYPE
SYNTAX Ipv6Address
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The Ipv6 Address of a neighbor switch visible to the Network Port."
::= { agentIpv6NetworkPortNbrEntry 1 }
agentIpv6NetworkPortNbrPhysAddr OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The MacAddress of the neighboring switch."
::= { agentIpv6NetworkPortNbrEntry 2 }
agentIpv6NetworkPortNbrState OBJECT-TYPE
SYNTAX INTEGER { reachable(1),
stale(2),
delay(3),
probe(4),
unknown(6)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The state of the neighboring switch:
reachable(1) - The neighbor is reachable by this switch.
stale(2) - Information about the neighbor is scheduled for deletion.
delay(3) - No information has been received from neighbor during delay period.
probe(4) - Switch is attempting to probe for this neighbor.
unknown(6) - Unknown status."
::= { agentIpv6NetworkPortNbrEntry 3 }
agentIpv6NetworkPortNbrUpdated OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The last sysUpTime that this neighbor has been updated."
::= { agentIpv6NetworkPortNbrEntry 4 }
agentIpv6NetworkPortNbrIsRouter OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Returns true(1) if the neighbor machine is a router,
false(2) otherwise."
::= { agentIpv6NetworkPortNbrEntry 5 }
agentIpv6NetworkPortNbrType OBJECT-TYPE
SYNTAX INTEGER { other(1), -- none of the following
dynamic(2), -- dynamically resolved
static(3), -- statically configured
local(4) -- local interface
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of the mapping.
The 'dynamic(2)' type indicates that the
IPv6 address to physical addresses mapping has been dynamically
resolved using the IPv6 Neighbor Discovery protocol.
The static(3)' types indicates that the mapping has been
statically configured.
The local(4) indicates that the mapping is provided for an
entity's own interface address."
::= { agentIpv6NetworkPortNbrEntry 6 }
-- IPv6 Network Port Static Neighbor Config Table
agentIpv6NetworkPortNbrCfgTable OBJECT-TYPE
SYNTAX SEQUENCE OF AgentIpv6NetworkPortNbrCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table contains an entry for each static
IPv6 Neighbor on the Network Port."
::= { agentIpv6NetworkPortGroup 2 }
agentIpv6NetworkPortNbrCfgEntry OBJECT-TYPE
SYNTAX AgentIpv6NetworkPortNbrCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry of the static IPv6 Neighbor on the Network Port."
INDEX { agentIpv6NetworkPortNbrCfgAddr }
::= { agentIpv6NetworkPortNbrCfgTable 1 }
AgentIpv6NetworkPortNbrCfgEntry ::= SEQUENCE {
agentIpv6NetworkPortNbrCfgAddr Ipv6Address,
agentIpv6NetworkPortNbrCfgPhysAddr MacAddress,
agentIpv6NetworkPortNbrCfgEntryStatus RowStatus
}
agentIpv6NetworkPortNbrCfgAddr OBJECT-TYPE
SYNTAX Ipv6Address
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The Ipv6 Address of a static neighbor on the Network Port."
::= { agentIpv6NetworkPortNbrCfgEntry 1 }
agentIpv6NetworkPortNbrCfgPhysAddr OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The MAC Address of a static neighbor on the Network Port."
::= { agentIpv6NetworkPortNbrCfgEntry 2 }
agentIpv6NetworkPortNbrCfgEntryStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Create or delete the static neighbor entry on the Network Port.
The configured static neighbor entry is always active."
::= { agentIpv6NetworkPortNbrCfgEntry 3 }
-- IPv6 Static Neighbor Config table
agentIpv6NbrCfgTable OBJECT-TYPE
SYNTAX SEQUENCE OF AgentIpv6NbrCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table contains an entry for each static
IPv6 Neighbor on the Network Port."
::= { agentIpv6Group 13 }
agentIpv6NbrCfgEntry OBJECT-TYPE
SYNTAX AgentIpv6NbrCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry of the static IPv6 Neighbor on the Network Port."
INDEX { agentIpv6IfIndex, agentIpv6NbrCfgAddr }
::= { agentIpv6NbrCfgTable 1 }
AgentIpv6NbrCfgEntry ::= SEQUENCE {
agentIpv6IfIndex Ipv6IfIndex,
agentIpv6NbrCfgAddr Ipv6Address,
agentIpv6NbrCfgPhysAddr MacAddress,
agentIpv6NbrCfgEntryStatus RowStatus
}
agentIpv6IfIndex OBJECT-TYPE
SYNTAX Ipv6IfIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A unique non-zero value identifying
the particular IPv6 interface."
::= { agentIpv6NbrCfgEntry 1 }
agentIpv6NbrCfgAddr OBJECT-TYPE
SYNTAX Ipv6Address
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The Ipv6 Address of a static neighbor on the Routing or Host interface."
::= { agentIpv6NbrCfgEntry 2 }
agentIpv6NbrCfgPhysAddr OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The MAC Address of a static neighbor on the Routing or Host interface."
::= { agentIpv6NbrCfgEntry 3 }
agentIpv6NbrCfgEntryStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Create or delete the static neighbor entry on the Routing or Host interface.
The configured static neighbor entry is always active."
::= { agentIpv6NbrCfgEntry 4 }
--***********************************************************************************
-- IPv6 NUD related parameters
--
--***********************************************************************************
agentIpv6NeighborsDynamicRenew OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enables/disables the periodic NUD (neighbor unreachability detection) to be
run on the existing IPv6 neighbor entries based on the activity of the
entries in the hardware. If the setting is disabled, only those entries that
are actively used in the hardware are triggered for NUD. If the setting is
enabled, all the entries are triggered for NUD irrespective of their usage
in the hardware."
DEFVAL { disable }
::= { agentIpv6Group 14 }
agentIpv6UnresolvedDataRateLimit OBJECT-TYPE
SYNTAX Integer32 (50..1024)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The rate in packets-per-second for the number of IPv6 data packets trapped
to CPU when the packet fails to be forwarded in the hardware due to unresolved
hardware address of the destined IPv6 node."
DEFVAL { 1024 }
::= { agentIpv6Group 15 }
agentIpv6NUDMaxUnicastSolicits OBJECT-TYPE
SYNTAX Integer32 (3..10)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The maximum number of unicast Neighbor Solicitations sent during neighbor
resolution or during NUD (neighbor unreachabililty detection) before
switching to multicast Neighbor Solicitations."
DEFVAL { 3 }
::= { agentIpv6Group 16 }
agentIpv6NUDMaxMulticastSolicits OBJECT-TYPE
SYNTAX Integer32 (3..255)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The maximum number of multicast Neighbor Solicitations sent during neighbor
resolution or during NUD (neighbor unreachabililty detection)."
DEFVAL { 3 }
::= { agentIpv6Group 17 }
agentIpv6NUDBackoffMultiple OBJECT-TYPE
SYNTAX Integer32 (1..5)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The exponential backoff multiple to be used in the calculation of the next
timeout value for Neighbor Solicitation transmission during NUD
(neighbor unreachabililty detection) following the exponential backoff algorithm.
The next timeout value is limited to a maximum value of 60 seconds if the value
with exponential backoff calculation is greater than 60 seconds."
DEFVAL { 1 }
::= { agentIpv6Group 18 }
END
|