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
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
|
-- This file was included in WWP MIB release 04-16-00-0047
--
-- CIENA-CES-DHCPV6-CLIENT-MIB.my
--
CIENA-CES-DHCPV6-CLIENT-MIB DEFINITIONS ::= BEGIN
IMPORTS
Integer32, Counter32, Gauge32, OBJECT-TYPE, MODULE-IDENTITY, Unsigned32
FROM SNMPv2-SMI
DisplayString, RowStatus
FROM SNMPv2-TC
InetAddressType, InetAddress
FROM INET-ADDRESS-MIB
CienaGlobalState, CienaStatsClear
FROM CIENA-TC
cienaCesConfig, cienaCesNotifications
FROM CIENA-SMI;
cienaCesDhcpv6ClientMIB MODULE-IDENTITY
LAST-UPDATED "201606210000Z"
ORGANIZATION "Ciena, Inc"
CONTACT-INFO
" Mib Meister
115 North Sullivan Road
Spokane Valley, WA 99037
USA
Phone: +1 509 242 9000
Email: support@ciena.com"
DESCRIPTION
"The MIB module to manage DHCPv6 client on Ciena CES products."
REVISION "201606210000Z"
DESCRIPTION
"LDRA - updated cienaCesDhcpv6LdraMplsVcName to
allow the VC name length up to 31 characters."
REVISION "201601190000Z"
DESCRIPTION
"LDRA - updated Dhcpv6LdraVsName and Dhcpv6LdraMplsName
to allow the VS name length up to 31 characters."
REVISION "201511020000Z"
DESCRIPTION
"LDRA - added missing DHCP Relay global statistic."
REVISION "201508060000Z"
DESCRIPTION
"LDRA - added support for Q-in-Q VS and MPLS VS relay agents."
REVISION "201310170000Z"
DESCRIPTION
"LDRA - added new global statistics, ability to clear global stats."
REVISION "201309240000Z"
DESCRIPTION
"Added length checks for LDRA IntId, rid values. EnterpriseID can be unsigned 32"
REVISION "201307190000Z"
DESCRIPTION
"Added support for Lightweight DHCPv6 Relay Agent (LDRA). The
functionality is similar to that for the L2 relay agent."
REVISION "201302111900Z"
DESCRIPTION
"The ReconfigureState was included by mistake. It should not
be visible to the SNMP user until the feature is completed."
REVISION "201302110000Z"
DESCRIPTION
"The OptionCodeIndex incorrectly began at 0.
It was changed to begin at 1."
REVISION "201302080000Z"
DESCRIPTION
"The notification cienaCesDhcpv6ClientOptionDisabledNotification,
neither implemented nor released, was removed."
REVISION "201211150000Z"
DESCRIPTION
"Initial creation."
::= { cienaCesConfig 30 }
--
--
-- Node definitions
--
cienaCesDhcpv6ClientMIBObjects OBJECT IDENTIFIER ::= { cienaCesDhcpv6ClientMIB 1 }
cienaCesDhcpv6Client OBJECT IDENTIFIER ::= { cienaCesDhcpv6ClientMIBObjects 1 }
cienaCesDhcpv6RelayAgent OBJECT IDENTIFIER ::= { cienaCesDhcpv6ClientMIBObjects 2 }
cienaCesDhcpv6RelayAgentGlobalAttrs OBJECT IDENTIFIER ::= { cienaCesDhcpv6RelayAgent 1 }
-- Notifications
cienaCesDhcpv6ClientMIBNotificationPrefix OBJECT IDENTIFIER ::= { cienaCesNotifications 30}
cienaCesDhcpv6ClientMIBNotifications OBJECT IDENTIFIER ::= { cienaCesDhcpv6ClientMIBNotificationPrefix 0 }
-- Conformance information
cienaCesDhcpv6ClientMIBConformance OBJECT IDENTIFIER ::= { cienaCesDhcpv6ClientMIB 2 }
cienaCesDhcpv6ClientMIBCompliances OBJECT IDENTIFIER ::= { cienaCesDhcpv6ClientMIBConformance 1 }
cienaCesDhcpv6ClientMIBGroups OBJECT IDENTIFIER ::= { cienaCesDhcpv6ClientMIBConformance 2 }
-- The DHCPv6 client table - global settings
cienaCesDhcpv6AdminState OBJECT-TYPE
SYNTAX CienaGlobalState
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates if the DHCPv6 client is administratively enabled."
::= { cienaCesDhcpv6Client 1 }
cienaCesDhcpv6IfName OBJECT-TYPE
SYNTAX DisplayString(SIZE (0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The interface associated with the DHCPV6 client."
::= { cienaCesDhcpv6Client 2 }
cienaCesDhcpv6RapidCommitState OBJECT-TYPE
SYNTAX CienaGlobalState
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates if rapid commit option is enabled on the DHCPv6 client."
::= { cienaCesDhcpv6Client 3 }
-- cienaCesDhcpv6ReconfigureState OBJECT-TYPE
-- SYNTAX CienaGlobalState
-- MAX-ACCESS read-only
-- STATUS current
-- DESCRIPTION
-- "This object indicates if reconfigure option is enabled on the DHCPv6 client."
-- ::= { cienaCesDhcpv6Client 4 }
cienaCesDhcpv6PrefLifetimeReq OBJECT-TYPE
SYNTAX Integer32(0..2147483647)
UNITS "seconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The requested preferred lifetime for the IPv6 address expressed in seconds."
DEFVAL { 0 }
::= { cienaCesDhcpv6Client 5 }
cienaCesDhcpv6ValidLifetimeReq OBJECT-TYPE
SYNTAX Integer32(0..2147483647)
UNITS "seconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The requested valid lifetime for the IPv6 address expressed in seconds."
DEFVAL { 0 }
::= { cienaCesDhcpv6Client 6 }
--
-- DHCPOption List
--
-- the Multi DHCP client Table
cienaCesDhcpv6ClientOptionTable OBJECT-TYPE
SYNTAX SEQUENCE OF CienaCesDhcpv6ClientOptionEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"List of options supported by the DHCPv6 client."
::= { cienaCesDhcpv6Client 7 }
cienaCesDhcpv6ClientOptionEntry OBJECT-TYPE
SYNTAX CienaCesDhcpv6ClientOptionEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing list of options supported by DHCPv6 client."
INDEX { cienaCesDhcpv6OptionCodeIndex }
::= { cienaCesDhcpv6ClientOptionTable 1 }
CienaCesDhcpv6ClientOptionEntry ::=
SEQUENCE {
cienaCesDhcpv6OptionCodeIndex Integer32,
cienaCesDhcpv6OptionDesc DisplayString,
cienaCesDhcpv6OptionCode Integer32,
cienaCesDhcpv6OptionState CienaGlobalState
}
cienaCesDhcpv6OptionCodeIndex OBJECT-TYPE
SYNTAX Integer32 (1..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Specifies the index used for this entry."
::= { cienaCesDhcpv6ClientOptionEntry 1 }
cienaCesDhcpv6OptionDesc OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Specifies the description for the given DHCPv6 option code."
::= { cienaCesDhcpv6ClientOptionEntry 2 }
cienaCesDhcpv6OptionCode OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Specifies the option code specified by RFC specification."
::= { cienaCesDhcpv6ClientOptionEntry 3 }
cienaCesDhcpv6OptionState OBJECT-TYPE
SYNTAX CienaGlobalState
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Specifies if the given option is enabled/disabled."
::= { cienaCesDhcpv6ClientOptionEntry 4 }
--
-- Per Session Status
--
-- DHCPv6 client Session Table
cienaCesDhcpv6ClientSessTable OBJECT-TYPE
SYNTAX SEQUENCE OF CienaCesDhcpv6ClientSessEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "List of active DHCPv6 client sessions."
::= { cienaCesDhcpv6Client 8 }
cienaCesDhcpv6ClientSessEntry OBJECT-TYPE
SYNTAX CienaCesDhcpv6ClientSessEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry in the cienaCesDhcpv6ClientSessTable."
INDEX { cienaCesDhcpv6ClientSessMgmtIntfIndex }
::= { cienaCesDhcpv6ClientSessTable 1 }
CienaCesDhcpv6ClientSessEntry ::= SEQUENCE {
cienaCesDhcpv6ClientSessMgmtIntfIndex Integer32,
cienaCesDhcpv6ClientSessState INTEGER,
cienaCesDhcpv6ClientSessAutoConfigState INTEGER,
cienaCesDhcpv6ClientSessUpTime Integer32,
cienaCesDhcpv6ClientSessPrefLifetime Integer32,
cienaCesDhcpv6ClientSessValidLifetime Integer32,
cienaCesDhcpv6ClientSessLeaseExpire Integer32,
cienaCesDhcpv6ClientSessClientId DisplayString,
cienaCesDhcpv6ClientSessServerIpAddrType InetAddressType,
cienaCesDhcpv6ClientSessServerIpAddr InetAddress,
cienaCesDhcpv6ClientSessServerId DisplayString,
cienaCesDhcpv6ClientSessT1Time Integer32,
cienaCesDhcpv6ClientSessT2Time Integer32
}
cienaCesDhcpv6ClientSessMgmtIntfIndex OBJECT-TYPE
SYNTAX Integer32 (1..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The mgmt interface index."
::= { cienaCesDhcpv6ClientSessEntry 1 }
cienaCesDhcpv6ClientSessState OBJECT-TYPE
SYNTAX INTEGER
{
disabled(1),
init(2),
bound(3),
renewing(4),
rebinding(5),
solicit(6),
request(7),
reconfigure(8),
unknown(99)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The DHCPv6 client state of this session."
::= { cienaCesDhcpv6ClientSessEntry 2 }
cienaCesDhcpv6ClientSessAutoConfigState OBJECT-TYPE
SYNTAX INTEGER
{
none(1),
stateless(2),
stateful(3),
unknown(99)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The DHCPv6 autoconfiguration state of this session
set by the router advertisement."
::= { cienaCesDhcpv6ClientSessEntry 3 }
cienaCesDhcpv6ClientSessUpTime OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The total length of time that this session has had active
lease(s)."
::= { cienaCesDhcpv6ClientSessEntry 4 }
cienaCesDhcpv6ClientSessPrefLifetime OBJECT-TYPE
SYNTAX Integer32
UNITS "seconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The preferred lifetime in seconds of the current lease."
::= { cienaCesDhcpv6ClientSessEntry 5 }
cienaCesDhcpv6ClientSessValidLifetime OBJECT-TYPE
SYNTAX Integer32
UNITS "seconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The valid lifetime in seconds of the current lease."
::= { cienaCesDhcpv6ClientSessEntry 6 }
cienaCesDhcpv6ClientSessLeaseExpire OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The remaining seconds until the current lease expires."
::= { cienaCesDhcpv6ClientSessEntry 7 }
cienaCesDhcpv6ClientSessClientId OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The full 'client ID' value associated with this lease."
::= { cienaCesDhcpv6ClientSessEntry 8 }
cienaCesDhcpv6ClientSessServerIpAddrType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The IP address type (IPv6) of the server from which this lease was obtained."
::= { cienaCesDhcpv6ClientSessEntry 9 }
cienaCesDhcpv6ClientSessServerIpAddr OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The IP address of the server from which this lease was obtained."
::= { cienaCesDhcpv6ClientSessEntry 10 }
cienaCesDhcpv6ClientSessServerId OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The full 'server ID' value associated with this lease."
::= { cienaCesDhcpv6ClientSessEntry 11 }
cienaCesDhcpv6ClientSessT1Time OBJECT-TYPE
SYNTAX Integer32
UNITS "seconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The lease renewal (T1) time in seconds."
::= { cienaCesDhcpv6ClientSessEntry 12 }
cienaCesDhcpv6ClientSessT2Time OBJECT-TYPE
SYNTAX Integer32
UNITS "seconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The lease rebind (T2) time in seconds."
::= { cienaCesDhcpv6ClientSessEntry 13 }
--
-- DHCPv6 Client Session Statistics
--
--
cienaCesDhcpv6ClientSessStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF CienaCesDhcpv6ClientSessStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The (conceptual) table listing the statistics for DHCPv6 per
interface"
::= { cienaCesDhcpv6Client 9 }
cienaCesDhcpv6ClientSessStatsEntry OBJECT-TYPE
SYNTAX CienaCesDhcpv6ClientSessStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry (conceptual row) in the cienaCesDhcpv6ClientSessStatsTable."
INDEX {cienaCesDhcpv6ClientSessStatsMgmtIntfIndex}
::= { cienaCesDhcpv6ClientSessStatsTable 1 }
CienaCesDhcpv6ClientSessStatsEntry ::= SEQUENCE {
cienaCesDhcpv6ClientSessStatsMgmtIntfIndex Integer32,
cienaCesDhcpv6ClientSessStatsClear CienaStatsClear,
cienaCesDhcpv6ClientSessStatsPktsRx Gauge32,
cienaCesDhcpv6ClientSessStatsReply Gauge32,
cienaCesDhcpv6ClientSessStatsAdvert Gauge32,
cienaCesDhcpv6ClientSessStatsRecfg Gauge32,
cienaCesDhcpv6ClientSessStatsInvalid Gauge32,
cienaCesDhcpv6ClientSessStatsPktsTx Gauge32,
cienaCesDhcpv6ClientSessStatsSolicit Gauge32,
cienaCesDhcpv6ClientSessStatsRequest Gauge32,
cienaCesDhcpv6ClientSessStatsConfirm Gauge32,
cienaCesDhcpv6ClientSessStatsRenew Gauge32,
cienaCesDhcpv6ClientSessStatsRebind Gauge32,
cienaCesDhcpv6ClientSessStatsInfoReq Gauge32,
cienaCesDhcpv6ClientSessStatsRelease Gauge32,
cienaCesDhcpv6ClientSessStatsDecline Gauge32,
cienaCesDhcpv6ClientSessStatsTxFail Gauge32
}
cienaCesDhcpv6ClientSessStatsMgmtIntfIndex OBJECT-TYPE
SYNTAX Integer32 (1..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The mgmt interface index."
::= { cienaCesDhcpv6ClientSessStatsEntry 1 }
cienaCesDhcpv6ClientSessStatsClear OBJECT-TYPE
SYNTAX CienaStatsClear
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object clears the DHCPv6 session statistics."
DEFVAL { 0 }
::= { cienaCesDhcpv6ClientSessStatsEntry 2}
cienaCesDhcpv6ClientSessStatsPktsRx OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of DHCPv6 packets received by the client."
::= { cienaCesDhcpv6ClientSessStatsEntry 3 }
cienaCesDhcpv6ClientSessStatsReply OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of DHCPv6 reply messages received by the client."
::= { cienaCesDhcpv6ClientSessStatsEntry 4 }
cienaCesDhcpv6ClientSessStatsAdvert OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of DHCPv6 advertise messages received by the client."
::= { cienaCesDhcpv6ClientSessStatsEntry 5 }
cienaCesDhcpv6ClientSessStatsRecfg OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of DHCPv6 reconfigure messages received by the client."
::= { cienaCesDhcpv6ClientSessStatsEntry 6 }
cienaCesDhcpv6ClientSessStatsInvalid OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of DHCPv6 invalid messages received by the client."
::= { cienaCesDhcpv6ClientSessStatsEntry 7 }
cienaCesDhcpv6ClientSessStatsPktsTx OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of DHCPv6 messages sent by the client."
::= { cienaCesDhcpv6ClientSessStatsEntry 8 }
cienaCesDhcpv6ClientSessStatsSolicit OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of DHCPv6 solicit messages sent by the client."
::= { cienaCesDhcpv6ClientSessStatsEntry 9 }
cienaCesDhcpv6ClientSessStatsRequest OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of DHCPv6 request messages sent by the client."
::= { cienaCesDhcpv6ClientSessStatsEntry 10 }
cienaCesDhcpv6ClientSessStatsConfirm OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of DHCPv6 confirm messages sent by the client."
::= { cienaCesDhcpv6ClientSessStatsEntry 11 }
cienaCesDhcpv6ClientSessStatsRenew OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of DHCPv6 renew messages sent by the client."
::= { cienaCesDhcpv6ClientSessStatsEntry 12 }
cienaCesDhcpv6ClientSessStatsRebind OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of DHCPv6 rebind messages sent by the client."
::= { cienaCesDhcpv6ClientSessStatsEntry 13 }
cienaCesDhcpv6ClientSessStatsInfoReq OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of DHCPv6 information request messages sent by the client."
::= { cienaCesDhcpv6ClientSessStatsEntry 14 }
cienaCesDhcpv6ClientSessStatsRelease OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of DHCPv6 release messages sent by the client."
::= { cienaCesDhcpv6ClientSessStatsEntry 15 }
cienaCesDhcpv6ClientSessStatsDecline OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of DHCPv6 decline messages sent by the client."
::= { cienaCesDhcpv6ClientSessStatsEntry 16 }
cienaCesDhcpv6ClientSessStatsTxFail OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of DHCPv6 messages the client was unable to send."
::= { cienaCesDhcpv6ClientSessStatsEntry 17 }
--
-- DHCPv6 Relay Agent Functionality
-- LDRA is LightWeight DHCPv6 Relay Agent
--
--- Global Lightweight DHCPv6 Relay Agent (LDRA) fields
cienaCesDhcpv6LdraState OBJECT-TYPE
SYNTAX CienaGlobalState
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies the global state of the Lightweight DHCPv6 Relay Agent."
::= { cienaCesDhcpv6RelayAgentGlobalAttrs 1 }
cienaCesDhcpv6LdraInterfaceId OBJECT-TYPE
SYNTAX INTEGER {
slotAndPort(1),
slotAndPortAndVlan(2),
intidString(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies the type of data to use in the InterfaceID option of LDRA messages."
::= { cienaCesDhcpv6RelayAgentGlobalAttrs 2 }
cienaCesDhcpv6LdraRemoteId OBJECT-TYPE
SYNTAX INTEGER {
macAddress(1),
hostName(2),
ridString(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies the type of data to use in the RemoteID option of LDRA messages."
::= { cienaCesDhcpv6RelayAgentGlobalAttrs 3 }
cienaCesDhcpv6LdraRemoteIdOption OBJECT-TYPE
SYNTAX INTEGER {
on(1),
off(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If on, the RemoteID option will be added to client messages being relayed by LDRA."
::= { cienaCesDhcpv6RelayAgentGlobalAttrs 4 }
cienaCesDhcpv6LdraRemoteIdEnterpriseNo OBJECT-TYPE
SYNTAX Unsigned32 (1..4294967295)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If the RemoteID option is on, this value will be used as the Enterprise Number in the
RemoteID option field. Uses Broadband Forum value 3561 as default"
::= { cienaCesDhcpv6RelayAgentGlobalAttrs 5 }
cienaCesDhcpv6LdraForward OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the number of DHCPv6 packets forwarded rather than relayed.
These are valid DHCPv6 frames that don't have a defined relay."
::= { cienaCesDhcpv6RelayAgentGlobalAttrs 6 }
cienaCesDhcpv6LdraRelayed OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the number of DHCPv6 packets processed by
the LDRA and not dropped."
::= { cienaCesDhcpv6RelayAgentGlobalAttrs 7 }
cienaCesDhcpv6LdraDropped OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the number of DHCPv6 packets processed by the LDRA and dropped.
Inspect the detailed statistics on each relay for more details related to dropped packets."
::= { cienaCesDhcpv6RelayAgentGlobalAttrs 8 }
cienaCesDhcpv6LdraGlobalStatsClear OBJECT-TYPE
SYNTAX CienaStatsClear
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object when set to 'clear(1)', clears the global DHCPv6 LDRA stats."
DEFVAL { 0 }
::= { cienaCesDhcpv6RelayAgentGlobalAttrs 9 }
cienaCesDhcpv6LdraNotForRelay OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the number of DHCPv6 packets passed to the relay,
but were determined to not belong to the relay. The packets are dropped."
::= { cienaCesDhcpv6RelayAgentGlobalAttrs 10 }
--
-- Table to control DHCPv6 LDRA functionality on each L2 VLAN
--
cienaCesDhcpv6LdraStateTable OBJECT-TYPE
SYNTAX SEQUENCE OF CienaCesDhcpV6LdraStateEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table allows changing configuration of DHCPv6 LDRA functionality
for each cienaCesDhcpv6LdraVlan."
::= { cienaCesDhcpv6RelayAgent 2 }
cienaCesDhcpv6LdraStateEntry OBJECT-TYPE
SYNTAX CienaCesDhcpV6LdraStateEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Entry in the table to configure DHCPv6 LDRA functionality."
INDEX { cienaCesDhcpv6LdraVlan }
::= { cienaCesDhcpv6LdraStateTable 1 }
CienaCesDhcpV6LdraStateEntry ::= SEQUENCE {
cienaCesDhcpv6LdraVlan Integer32,
cienaCesDhcpv6LdraAdminState CienaGlobalState,
cienaCesDhcpv6LdraOperState CienaGlobalState,
cienaCesDhcpv6LdraRowStatus RowStatus
}
cienaCesDhcpv6LdraVlan OBJECT-TYPE
SYNTAX Integer32 (1..24576)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object specifies the VLAN on which DHCPv6 LDRA is configured."
::= { cienaCesDhcpv6LdraStateEntry 1 }
cienaCesDhcpv6LdraAdminState OBJECT-TYPE
SYNTAX CienaGlobalState
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object allows the user to disable or enable DHCPv6 LDRA functionality on
the given VLAN specified by cienaCesDhcpv6LdraVlan."
::= { cienaCesDhcpv6LdraStateEntry 2 }
cienaCesDhcpv6LdraOperState OBJECT-TYPE
SYNTAX CienaGlobalState
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object shows the operational status of the DHCPv6 LDRA on given VLAN."
::= { cienaCesDhcpv6LdraStateEntry 3 }
cienaCesDhcpv6LdraRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Set this object to 'Destroy' to terminate DHCPv6 LDRA Relaying
on the VLAN specified by cienaCesDhcpv6LdraVlan.
Set this object to 'CreateAndGo' to enable DHCPv6 LDRA Relaying
on the VLAN specified by cienaCesDhcpv6LdraVlan."
::= { cienaCesDhcpv6LdraStateEntry 4 }
--
-- DHCPv6 LDRA Port Trust Table
--
cienaCesDhcpv6LdraTrustTable OBJECT-TYPE
SYNTAX SEQUENCE OF CienaCesDhcpV6LdraTrustEntry
MAX-ACCESS not-accessible
STATUS deprecated
DESCRIPTION
"This table is used to specify the slot / ports and VLANs
that the DHCPv6 LDRA can trust.
This table has been deprecated in favor of the
cienaCesDhcpv6LdraExtTrustTable which adds a column for port
status."
::= { cienaCesDhcpv6RelayAgent 3 }
cienaCesDhcpv6LdraTrustEntry OBJECT-TYPE
SYNTAX CienaCesDhcpV6LdraTrustEntry
MAX-ACCESS not-accessible
STATUS deprecated
DESCRIPTION
"Each entry in this table is used to specify the slot / port and VLAN to be trusted."
INDEX { cienaCesDhcpv6LdraVlan, cienaCesDhcpv6LdraPort }
::= { cienaCesDhcpv6LdraTrustTable 1 }
CienaCesDhcpV6LdraTrustEntry ::= SEQUENCE {
cienaCesDhcpv6LdraPort Integer32,
cienaCesDhcpv6LdraTrustMode INTEGER
}
cienaCesDhcpv6LdraPort OBJECT-TYPE
SYNTAX Integer32 (1..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object is used as an index in the table and is used to specify the port."
::= { cienaCesDhcpv6LdraTrustEntry 1 }
cienaCesDhcpv6LdraTrustMode OBJECT-TYPE
SYNTAX INTEGER {
client(1),
clientTrust(2),
serverTrust(3),
dualRoleTrust(4),
unTrust(5)
}
MAX-ACCESS read-create
STATUS deprecated
DESCRIPTION
"This object is used to set the port as client trusted, server
trusted or not trusted.
Note that the client(1) mode is deprecated. That value will
never be returned. Setting that value will set the mode to
clientTrust(2) instead."
::= { cienaCesDhcpv6LdraTrustEntry 2 }
--
-- DHCPv6 LDRA VLAN Statistics
--
cienaCesDhcpv6LdraStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF CienaCesDhcpV6LdraStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table to display L2 statistics for each cienaCesDhcpv6LdraVlan."
::= { cienaCesDhcpv6RelayAgent 4 }
cienaCesDhcpv6LdraStatsEntry OBJECT-TYPE
SYNTAX CienaCesDhcpV6LdraStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Entry in the table to display LDRA stats."
INDEX { cienaCesDhcpv6LdraVlan }
::= { cienaCesDhcpv6LdraStatsTable 1 }
CienaCesDhcpV6LdraStatsEntry ::= SEQUENCE {
cienaCesDhcpv6LdraPktsForRelay Counter32,
cienaCesDhcpv6LdraRelayedClient Counter32,
cienaCesDhcpv6LdraRelayedServer Counter32,
cienaCesDhcpv6LdraUntrustedClientPortPktsRx Counter32,
cienaCesDhcpv6LdraUntrustedServerPortPktsRx Counter32,
cienaCesDhcpv6LdraFailedValidationPktDrop Counter32,
cienaCesDhcpv6LdraInvalidConfigPktDrop Counter32,
cienaCesDhcpv6LdraExceededHopCountPktDrop Counter32,
cienaCesDhcpv6LdraExceedMTUPktDrop Counter32,
cienaCesDhcpv6LdraNoTrustedServerPktDrop Counter32,
cienaCesDhcpv6LdraNoTrustedClientPktDrop Counter32,
cienaCesDhcpv6LdraIPv6FragBadExtHdrPktDrop Counter32,
cienaCesDhcpv6LdraGeneralErrors Counter32,
cienaCesDhcpv6LdraStatsClear CienaStatsClear
}
cienaCesDhcpv6LdraPktsForRelay OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the number of packets sent to this relay process."
::= { cienaCesDhcpv6LdraStatsEntry 1 }
cienaCesDhcpv6LdraRelayedClient OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the number of client sourced DHCPv6 packets relayed."
::= { cienaCesDhcpv6LdraStatsEntry 2 }
cienaCesDhcpv6LdraRelayedServer OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the number of server sourced DHCPv6 packets relayed."
::= { cienaCesDhcpv6LdraStatsEntry 3 }
cienaCesDhcpv6LdraUntrustedClientPortPktsRx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the number of client DHCPv6 packets dropped because they were
received on untrusted client ports."
::= { cienaCesDhcpv6LdraStatsEntry 4 }
cienaCesDhcpv6LdraUntrustedServerPortPktsRx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the number of server DHCPv6 packets dropped because they were
received on untrusted server ports."
::= { cienaCesDhcpv6LdraStatsEntry 5 }
cienaCesDhcpv6LdraFailedValidationPktDrop OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the number of DHCPv6 packets dropped due to failed validation."
::= { cienaCesDhcpv6LdraStatsEntry 6 }
cienaCesDhcpv6LdraInvalidConfigPktDrop OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the number of DHCPv6 packets dropped due
to LDRA configuration issues."
::= { cienaCesDhcpv6LdraStatsEntry 7 }
cienaCesDhcpv6LdraExceededHopCountPktDrop OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the number of DHCPv6 packets dropped due to hop count
in the packet exceeding hop count the limit."
::= { cienaCesDhcpv6LdraStatsEntry 8 }
cienaCesDhcpv6LdraExceedMTUPktDrop OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the number of DHCPv6 packets dropped because the new
relay frame size would exceed the MTU."
::= { cienaCesDhcpv6LdraStatsEntry 9 }
cienaCesDhcpv6LdraNoTrustedServerPktDrop OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the number of DHCPv6 packets dropped because there are no server trusted ports configured."
::= { cienaCesDhcpv6LdraStatsEntry 10 }
cienaCesDhcpv6LdraNoTrustedClientPktDrop OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the number of DHCPv6 packets dropped because there are no client trusted ports configured."
::= { cienaCesDhcpv6LdraStatsEntry 11 }
cienaCesDhcpv6LdraIPv6FragBadExtHdrPktDrop OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the number of DHCPv6 packets dropped due to IPv6 packet
extension headers that could not be processed."
::= { cienaCesDhcpv6LdraStatsEntry 12 }
cienaCesDhcpv6LdraGeneralErrors OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the number of DHCPv6 packets dropped due to unclassified errors."
::= { cienaCesDhcpv6LdraStatsEntry 13 }
cienaCesDhcpv6LdraStatsClear OBJECT-TYPE
SYNTAX CienaStatsClear
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object when set to 'true', clears DHCPv6 LDRA stats for given VLAN."
DEFVAL { 0 }
::= { cienaCesDhcpv6LdraStatsEntry 14 }
--
-- DHCPv6 LDRA Interface ID String Table
--
cienaCesDhcpv6LdraIntidStringTable OBJECT-TYPE
SYNTAX SEQUENCE OF CienaCesDhcpV6LdraIntidStringEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table is used to specify CID strings for slot / ports
and VLANs that the DHCP relay agent can specify in Option 82 CID
information."
::= { cienaCesDhcpv6RelayAgent 5 }
cienaCesDhcpv6LdraIntidStringEntry OBJECT-TYPE
SYNTAX CienaCesDhcpV6LdraIntidStringEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry in this table is used to specify an interface id string for slot / port and VLAN combinations."
INDEX { cienaCesDhcpv6LdraVlan, cienaCesDhcpv6LdraIntidStringPort }
::= { cienaCesDhcpv6LdraIntidStringTable 1 }
CienaCesDhcpV6LdraIntidStringEntry ::= SEQUENCE {
cienaCesDhcpv6LdraIntidStringPort Integer32,
cienaCesDhcpv6LdraIntidString DisplayString,
cienaCesDhcpv6LdraIntidStringRowStatus RowStatus
}
cienaCesDhcpv6LdraIntidStringPort OBJECT-TYPE
SYNTAX Integer32 (1..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object is used as an index in the table and is used to specify the port."
::= { cienaCesDhcpv6LdraIntidStringEntry 1 }
cienaCesDhcpv6LdraIntidString OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..64))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is used to get and set the IntID string for the port."
::= { cienaCesDhcpv6LdraIntidStringEntry 2 }
cienaCesDhcpv6LdraIntidStringRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Used to manage the creation and deletion of the conceptual rows in this table.
To create a row in this table set this object to 'createAndGo'.
To delete a row in this table set this object to 'destroy'."
::= { cienaCesDhcpv6LdraIntidStringEntry 3 }
--
-- DHCPv6 LDRA RID String Table
--
cienaCesDhcpv6LdraRidStringTable OBJECT-TYPE
SYNTAX SEQUENCE OF CienaCesDhcpV6LdraRidStringEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table is used to specify RID strings for slot / ports
and VLANs that the DHCP relay agent can specify in Option 82 RID
information."
::= { cienaCesDhcpv6RelayAgent 6 }
cienaCesDhcpv6LdraRidStringEntry OBJECT-TYPE
SYNTAX CienaCesDhcpV6LdraRidStringEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry in this table is used to specify an RID string for
slot / port and VLAN combinations."
INDEX { cienaCesDhcpv6LdraVlan, cienaCesDhcpv6LdraRidStringPort }
::= { cienaCesDhcpv6LdraRidStringTable 1 }
CienaCesDhcpV6LdraRidStringEntry ::= SEQUENCE {
cienaCesDhcpv6LdraRidStringPort Integer32,
cienaCesDhcpv6LdraRidString DisplayString,
cienaCesDhcpv6LdraRidStringRowStatus RowStatus
}
cienaCesDhcpv6LdraRidStringPort OBJECT-TYPE
SYNTAX Integer32 (1..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This MIB object is used as an index in the table and is used to specify the port."
::= { cienaCesDhcpv6LdraRidStringEntry 1 }
cienaCesDhcpv6LdraRidString OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..64))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This MIB object is used to get and set the RID string for the port."
::= { cienaCesDhcpv6LdraRidStringEntry 2 }
cienaCesDhcpv6LdraRidStringRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Used to manage the creation and deletion of the
conceptual rows in this table.
To create a row in this table set this object
to 'createAndGo'.
To delete a row in this table set this object
to 'destroy'."
::= { cienaCesDhcpv6LdraRidStringEntry 3 }
--
-- DHCPv6 LDRA Extended Port Trust Table
--
cienaCesDhcpv6LdraExtTrustTable OBJECT-TYPE
SYNTAX SEQUENCE OF CienaCesDhcpV6LdraExtTrustEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table is used to specify the ports and VLANs that the
DHCPv6 LDRA can trust. This table is the same as
cienaCesDhcpv6LdraTrustTable with the addition of a column for
the port status."
::= { cienaCesDhcpv6RelayAgent 7 }
cienaCesDhcpv6LdraExtTrustEntry OBJECT-TYPE
SYNTAX CienaCesDhcpV6LdraExtTrustEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry in this table is used to specify the port and VLAN to
be trusted."
INDEX { cienaCesDhcpv6LdraVlan, cienaCesDhcpv6LdraPort }
::= { cienaCesDhcpv6LdraExtTrustTable 1 }
CienaCesDhcpV6LdraExtTrustEntry ::= SEQUENCE {
cienaCesDhcpv6LdraExtPortState INTEGER,
cienaCesDhcpv6LdraExtTrustMode INTEGER
}
cienaCesDhcpv6LdraExtPortState OBJECT-TYPE
SYNTAX INTEGER {
active(1),
inactive(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object reports whether the specified port is active or
inactive."
::= { cienaCesDhcpv6LdraExtTrustEntry 1 }
cienaCesDhcpv6LdraExtTrustMode OBJECT-TYPE
SYNTAX INTEGER {
client(1),
clientTrust(2),
serverTrust(3),
dualRoleTrust(4),
unTrust(5)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is used to set the port as client trusted, server
trusted or not trusted.
Note that the client(1) mode is deprecated. That value will
never be returned. Setting that value will set the mode to
clientTrust(2) instead."
::= { cienaCesDhcpv6LdraExtTrustEntry 2 }
--
-- Table to control DHCPv6 LDRA functionality on each L2 VS
--
cienaCesDhcpv6LdraVsStateTable OBJECT-TYPE
SYNTAX SEQUENCE OF CienaCesDhcpV6LdraVsStateEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table allows changing configuration of DHCPv6 LDRA functionality
for each VS."
::= { cienaCesDhcpv6RelayAgent 8 }
cienaCesDhcpv6LdraVsStateEntry OBJECT-TYPE
SYNTAX CienaCesDhcpV6LdraVsStateEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Entry in the table to configure DHCPv6 LDRA functionality."
INDEX { cienaCesDhcpv6LdraVsVlan }
::= { cienaCesDhcpv6LdraVsStateTable 1 }
CienaCesDhcpV6LdraVsStateEntry ::= SEQUENCE {
cienaCesDhcpv6LdraVsVlan Integer32,
cienaCesDhcpv6LdraVsName DisplayString,
cienaCesDhcpv6LdraVsAdminState CienaGlobalState,
cienaCesDhcpv6LdraVsOperState CienaGlobalState,
cienaCesDhcpv6LdraVsRowStatus RowStatus
}
cienaCesDhcpv6LdraVsVlan OBJECT-TYPE
SYNTAX Integer32 (1..24576)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object specifies the VS VLAN on which the DHCPv6 LDRA is configured."
::= { cienaCesDhcpv6LdraVsStateEntry 1 }
cienaCesDhcpv6LdraVsName OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..31))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object shows the name of the VS VLAN on which the DHCPv6 LDRA is configured."
::= { cienaCesDhcpv6LdraVsStateEntry 2 }
cienaCesDhcpv6LdraVsAdminState OBJECT-TYPE
SYNTAX CienaGlobalState
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object allows the user to disable or enable DHCPv6 LDRA functionality on
the given VS VLAN specified by cienaCesDhcpv6LdraVsVlan."
::= { cienaCesDhcpv6LdraVsStateEntry 3 }
cienaCesDhcpv6LdraVsOperState OBJECT-TYPE
SYNTAX CienaGlobalState
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object shows the operational status of the DHCPv6 LDRA on
the given VS VLAN."
::= { cienaCesDhcpv6LdraVsStateEntry 4 }
cienaCesDhcpv6LdraVsRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Set this object to 'Destroy' to terminate DHCPv6 LDRA Relaying
on the VS VLAN specified by cienaCesDhcpv6LdraVsVlan.
Set this object to 'CreateAndGo' to enable DHCPv6 LDRA Relaying
on the VS VLAN specified by cienaCesDhcpv6LdraVsVlan."
::= { cienaCesDhcpv6LdraVsStateEntry 5 }
--
-- DHCPv6 LDRA VS Trust Table
--
cienaCesDhcpv6LdraVsTrustTable OBJECT-TYPE
SYNTAX SEQUENCE OF CienaCesDhcpV6LdraVsTrustEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table is used to specify the VLANs, ports and sub-VLANs
that the DHCPv6 LDRA can trust."
::= { cienaCesDhcpv6RelayAgent 9 }
cienaCesDhcpv6LdraVsTrustEntry OBJECT-TYPE
SYNTAX CienaCesDhcpV6LdraVsTrustEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry in this table is used to specify the VLAN, port and
sub-VLAN to be trusted."
INDEX { cienaCesDhcpv6LdraVsVlan, cienaCesDhcpv6LdraVsPort, cienaCesDhcpv6LdraVsSubVlan }
::= { cienaCesDhcpv6LdraVsTrustTable 1 }
CienaCesDhcpV6LdraVsTrustEntry ::= SEQUENCE {
cienaCesDhcpv6LdraVsPort Integer32,
cienaCesDhcpv6LdraVsSubVlan Integer32,
cienaCesDhcpv6LdraVsPortState INTEGER,
cienaCesDhcpv6LdraVsTrustMode INTEGER
}
cienaCesDhcpv6LdraVsPort OBJECT-TYPE
SYNTAX Integer32 (1..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object is used as an index in the table and is used to specify the VS port."
::= { cienaCesDhcpv6LdraVsTrustEntry 1 }
cienaCesDhcpv6LdraVsSubVlan OBJECT-TYPE
SYNTAX Integer32 (0..24576)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object specifies the sub-VLAN on which the DHCPv6 LDRA
is configured. Note that the special value 0 means that no
sub-VLAN is associated with this particular trust entry."
::= { cienaCesDhcpv6LdraVsTrustEntry 2 }
cienaCesDhcpv6LdraVsPortState OBJECT-TYPE
SYNTAX INTEGER {
active(1),
inactive(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object reports whether the specified port and sub-VLAN is
active or inactive."
::= { cienaCesDhcpv6LdraVsTrustEntry 3 }
cienaCesDhcpv6LdraVsTrustMode OBJECT-TYPE
SYNTAX INTEGER {
client(1),
clientTrust(2),
serverTrust(3),
dualRoleTrust(4),
unTrust(5)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object is used to set the port and sub-VLAN as client
trusted, server trusted or not trusted.
Note that the client(1) mode is deprecated. That value will
never be returned. Setting that value will set the mode to
clientTrust(2) instead."
::= { cienaCesDhcpv6LdraVsTrustEntry 4 }
--
-- DHCPv6 LDRA VS Statistics
--
cienaCesDhcpv6LdraVsStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF CienaCesDhcpV6LdraVsStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table to display VS statistics for each VS LDRA."
::= { cienaCesDhcpv6RelayAgent 10 }
cienaCesDhcpv6LdraVsStatsEntry OBJECT-TYPE
SYNTAX CienaCesDhcpV6LdraVsStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Entry in the table to display VS LDRA statistics."
INDEX { cienaCesDhcpv6LdraVsVlan }
::= { cienaCesDhcpv6LdraVsStatsTable 1 }
CienaCesDhcpV6LdraVsStatsEntry ::= SEQUENCE {
cienaCesDhcpv6LdraVsPktsForRelay Counter32,
cienaCesDhcpv6LdraVsRelayedClient Counter32,
cienaCesDhcpv6LdraVsRelayedServer Counter32,
cienaCesDhcpv6LdraVsUntrustedClientPortPktsRx Counter32,
cienaCesDhcpv6LdraVsUntrustedServerPortPktsRx Counter32,
cienaCesDhcpv6LdraVsFailedValidationPktDrop Counter32,
cienaCesDhcpv6LdraVsInvalidConfigPktDrop Counter32,
cienaCesDhcpv6LdraVsExceededHopCountPktDrop Counter32,
cienaCesDhcpv6LdraVsExceedMTUPktDrop Counter32,
cienaCesDhcpv6LdraVsNoTrustedServerPktDrop Counter32,
cienaCesDhcpv6LdraVsNoTrustedClientPktDrop Counter32,
cienaCesDhcpv6LdraVsIPv6FragBadExtHdrPktDrop Counter32,
cienaCesDhcpv6LdraVsGeneralErrors Counter32,
cienaCesDhcpv6LdraVsStatsClear CienaStatsClear
}
cienaCesDhcpv6LdraVsPktsForRelay OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the number of packets sent to this relay process."
::= { cienaCesDhcpv6LdraVsStatsEntry 1 }
cienaCesDhcpv6LdraVsRelayedClient OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the number of client sourced DHCPv6 packets relayed."
::= { cienaCesDhcpv6LdraVsStatsEntry 2 }
cienaCesDhcpv6LdraVsRelayedServer OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the number of server sourced DHCPv6 packets relayed."
::= { cienaCesDhcpv6LdraVsStatsEntry 3 }
cienaCesDhcpv6LdraVsUntrustedClientPortPktsRx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the number of client DHCPv6 packets dropped because they were
received on untrusted client ports."
::= { cienaCesDhcpv6LdraVsStatsEntry 4 }
cienaCesDhcpv6LdraVsUntrustedServerPortPktsRx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the number of server DHCPv6 packets dropped because they were
received on untrusted server ports."
::= { cienaCesDhcpv6LdraVsStatsEntry 5 }
cienaCesDhcpv6LdraVsFailedValidationPktDrop OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the number of DHCPv6 packets dropped due to failed validation."
::= { cienaCesDhcpv6LdraVsStatsEntry 6 }
cienaCesDhcpv6LdraVsInvalidConfigPktDrop OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the number of DHCPv6 packets dropped due
to LDRA configuration issues."
::= { cienaCesDhcpv6LdraVsStatsEntry 7 }
cienaCesDhcpv6LdraVsExceededHopCountPktDrop OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the number of DHCPv6 packets dropped due to hop count
in the packet exceeding hop count the limit."
::= { cienaCesDhcpv6LdraVsStatsEntry 8 }
cienaCesDhcpv6LdraVsExceedMTUPktDrop OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the number of DHCPv6 packets dropped because the new
relay frame size would exceed the MTU."
::= { cienaCesDhcpv6LdraVsStatsEntry 9 }
cienaCesDhcpv6LdraVsNoTrustedServerPktDrop OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the number of DHCPv6 packets dropped
because there are no server trusted ports configured."
::= { cienaCesDhcpv6LdraVsStatsEntry 10 }
cienaCesDhcpv6LdraVsNoTrustedClientPktDrop OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the number of DHCPv6 packets dropped
because there are no client trusted ports configured."
::= { cienaCesDhcpv6LdraVsStatsEntry 11 }
cienaCesDhcpv6LdraVsIPv6FragBadExtHdrPktDrop OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the number of DHCPv6 packets dropped due to IPv6 packet
extension headers that could not be processed."
::= { cienaCesDhcpv6LdraVsStatsEntry 12 }
cienaCesDhcpv6LdraVsGeneralErrors OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object reports the number of DHCPv6 packets dropped due to unclassified errors."
::= { cienaCesDhcpv6LdraVsStatsEntry 13 }
cienaCesDhcpv6LdraVsStatsClear OBJECT-TYPE
SYNTAX CienaStatsClear
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object when set to 'true', clears DHCPv6 LDRA stats for given VLAN."
DEFVAL { none }
::= { cienaCesDhcpv6LdraVsStatsEntry 14 }
--
-- DHCPv6 LDRA VS Interface ID String Table
--
cienaCesDhcpv6LdraVsIntidStringTable OBJECT-TYPE
SYNTAX SEQUENCE OF CienaCesDhcpV6LdraVsIntidStringEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table is used to specify CID strings for VS ports and VLANs
that the LDRA can specify in Option 82 CID information."
::= { cienaCesDhcpv6RelayAgent 11 }
cienaCesDhcpv6LdraVsIntidStringEntry OBJECT-TYPE
SYNTAX CienaCesDhcpV6LdraVsIntidStringEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry in this table is used to specify an interface ID
string for VS port and VLAN combinations."
INDEX { cienaCesDhcpv6LdraVlan, cienaCesDhcpv6LdraVsPort }
::= { cienaCesDhcpv6LdraVsIntidStringTable 1 }
CienaCesDhcpV6LdraVsIntidStringEntry ::= SEQUENCE {
cienaCesDhcpv6LdraVsIntidString DisplayString,
cienaCesDhcpv6LdraVsIntidStringRowStatus RowStatus
}
cienaCesDhcpv6LdraVsIntidString OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..64))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is used to get and set the IntID string for the port."
::= { cienaCesDhcpv6LdraVsIntidStringEntry 1 }
cienaCesDhcpv6LdraVsIntidStringRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Used to manage the creation and deletion of the conceptual rows in this table.
To create a row in this table set this object to 'createAndGo'.
To delete a row in this table set this object to 'destroy'."
::= { cienaCesDhcpv6LdraVsIntidStringEntry 2 }
--
-- DHCPv6 LDRA VS RID String Table
--
cienaCesDhcpv6LdraVsRidStringTable OBJECT-TYPE
SYNTAX SEQUENCE OF CienaCesDhcpV6LdraVsRidStringEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table is used to specify RID strings for VS ports and VLANs
that the DHCPv6 LDRA can specify in Option 82 RID information."
::= { cienaCesDhcpv6RelayAgent 12 }
cienaCesDhcpv6LdraVsRidStringEntry OBJECT-TYPE
SYNTAX CienaCesDhcpV6LdraVsRidStringEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry in this table is used to specify an RID string for
VS port and VLAN combinations."
INDEX { cienaCesDhcpv6LdraVlan, cienaCesDhcpv6LdraVsPort }
::= { cienaCesDhcpv6LdraVsRidStringTable 1 }
CienaCesDhcpV6LdraVsRidStringEntry ::= SEQUENCE {
cienaCesDhcpv6LdraVsRidString DisplayString,
cienaCesDhcpv6LdraVsRidStringRowStatus RowStatus
}
cienaCesDhcpv6LdraVsRidString OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..64))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This MIB object is used to get and set the RID string for the port."
::= { cienaCesDhcpv6LdraVsRidStringEntry 1 }
cienaCesDhcpv6LdraVsRidStringRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Used to manage the creation and deletion of the
conceptual rows in this table.
To create a row in this table set this object
to 'createAndGo'.
To delete a row in this table set this object
to 'destroy'."
::= { cienaCesDhcpv6LdraVsRidStringEntry 2 }
--
-- Table to control DHCPv6 LDRA functionality on MPLS
--
cienaCesDhcpv6LdraMplsStateTable OBJECT-TYPE
SYNTAX SEQUENCE OF CienaCesDhcpV6LdraMplsStateEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table allows changing configuration of DHCPv6 LDRA functionality
for each MPLS VS."
::= { cienaCesDhcpv6RelayAgent 13 }
cienaCesDhcpv6LdraMplsStateEntry OBJECT-TYPE
SYNTAX CienaCesDhcpV6LdraMplsStateEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Entry in the table to configure DHCPv6 LDRA functionality."
INDEX { cienaCesDhcpv6LdraMplsId }
::= { cienaCesDhcpv6LdraMplsStateTable 1 }
CienaCesDhcpV6LdraMplsStateEntry ::= SEQUENCE {
cienaCesDhcpv6LdraMplsId Unsigned32,
cienaCesDhcpv6LdraMplsName DisplayString,
cienaCesDhcpv6LdraMplsAdminState CienaGlobalState,
cienaCesDhcpv6LdraMplsOperState CienaGlobalState,
cienaCesDhcpv6LdraMplsRowStatus RowStatus
}
cienaCesDhcpv6LdraMplsId OBJECT-TYPE
SYNTAX Unsigned32 (1..1677215)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object specifies the MPLS VS on which DHCPv6 LDRA is configured."
::= { cienaCesDhcpv6LdraMplsStateEntry 1 }
cienaCesDhcpv6LdraMplsName OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..31))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object shows the name of the MPLS VS on which DHCPv6 LDRA
is configured."
::= { cienaCesDhcpv6LdraMplsStateEntry 2 }
cienaCesDhcpv6LdraMplsAdminState OBJECT-TYPE
SYNTAX CienaGlobalState
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object allows the user to disable or enable DHCPv6 LDRA
functionality on the given MPLS VS specified by
cienaCesDhcpv6LdraMplsId."
::= { cienaCesDhcpv6LdraMplsStateEntry 3 }
cienaCesDhcpv6LdraMplsOperState OBJECT-TYPE
SYNTAX CienaGlobalState
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object shows the operational status of the DHCPv6 LDRA on the given MPLS VS."
::= { cienaCesDhcpv6LdraMplsStateEntry 4 }
cienaCesDhcpv6LdraMplsRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Set this object to 'Destroy' to terminate DHCPv6 LDRA Relaying
on the MPLS VS specified by cienaCesDhcpv6LdraMplsId.
Set this object to 'CreateAndGo' to enable DHCPv6 LDRA Relaying
on the MPLS VS specified by cienaCesDhcpv6LdraMplsId."
::= { cienaCesDhcpv6LdraMplsStateEntry 5 }
--
-- DHCPv6 LDRA MPLS Trust Table
--
cienaCesDhcpv6LdraMplsTrustTable OBJECT-TYPE
SYNTAX SEQUENCE OF CienaCesDhcpV6LdraMplsTrustEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table is used to specify the MPLS VSs and interfaces that
the DHCPv6 LDRA can trust."
::= { cienaCesDhcpv6RelayAgent 14 }
cienaCesDhcpv6LdraMplsTrustEntry OBJECT-TYPE
SYNTAX CienaCesDhcpV6LdraMplsTrustEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry in this table is used to specify the MPLS VS and
interface to be trusted."
INDEX { cienaCesDhcpv6LdraMplsId, cienaCesDhcpv6LdraMplsInterface }
::= { cienaCesDhcpv6LdraMplsTrustTable 1 }
CienaCesDhcpV6LdraMplsTrustEntry ::= SEQUENCE {
cienaCesDhcpv6LdraMplsInterface Unsigned32,
cienaCesDhcpv6LdraMplsVcName DisplayString,
cienaCesDhcpv6LdraMplsInterfaceState INTEGER,
cienaCesDhcpv6LdraMplsTrustMode INTEGER
}
cienaCesDhcpv6LdraMplsInterface OBJECT-TYPE
SYNTAX Unsigned32 (1..4294967295)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object is used as an index in the table and is used to
specify the MPLS interface."
::= { cienaCesDhcpv6LdraMplsTrustEntry 1 }
cienaCesDhcpv6LdraMplsVcName OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..31))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object shows the name of the MPLS VC."
::= { cienaCesDhcpv6LdraMplsTrustEntry 2 }
cienaCesDhcpv6LdraMplsInterfaceState OBJECT-TYPE
SYNTAX INTEGER {
active(1),
inactive(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object reports whether the specified interface is active or
inactive."
::= { cienaCesDhcpv6LdraMplsTrustEntry 3 }
cienaCesDhcpv6LdraMplsTrustMode OBJECT-TYPE
SYNTAX INTEGER {
client(1),
clientTrust(2),
serverTrust(3),
dualRoleTrust(4),
unTrust(5)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object is used to set the interface as client trusted,
server trusted or not trusted.
Note that the client(1) mode is deprecated. That value will
never be returned. Setting that value will set the mode to
clientTrust(2) instead."
::= { cienaCesDhcpv6LdraMplsTrustEntry 4 }
--
-- DHCPv6 LDRA MPLS Statistics
--
cienaCesDhcpv6LdraMplsStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF CienaCesDhcpV6LdraMplsStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table to display MPLS statistics for each MPLS LDRA."
::= { cienaCesDhcpv6RelayAgent 15 }
cienaCesDhcpv6LdraMplsStatsEntry OBJECT-TYPE
SYNTAX CienaCesDhcpV6LdraMplsStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Entry in the table to display MPLS LDRA statistics."
INDEX { cienaCesDhcpv6LdraMplsId }
::= { cienaCesDhcpv6LdraMplsStatsTable 1 }
CienaCesDhcpV6LdraMplsStatsEntry ::= SEQUENCE {
cienaCesDhcpv6LdraMplsPktsForRelay Counter32,
cienaCesDhcpv6LdraMplsRelayedClient Counter32,
cienaCesDhcpv6LdraMplsRelayedServer Counter32,
cienaCesDhcpv6LdraMplsUntrustedClientInterfacePktsRx Counter32,
cienaCesDhcpv6LdraMplsUntrustedServerInterfacePktsRx Counter32,
cienaCesDhcpv6LdraMplsFailedValidationPktDrop Counter32,
cienaCesDhcpv6LdraMplsInvalidConfigPktDrop Counter32,
cienaCesDhcpv6LdraMplsExceededHopCountPktDrop Counter32,
cienaCesDhcpv6LdraMplsExceedMTUPktDrop Counter32,
cienaCesDhcpv6LdraMplsNoTrustedServerPktDrop Counter32,
cienaCesDhcpv6LdraMplsNoTrustedClientPktDrop Counter32,
cienaCesDhcpv6LdraMplsIPv6FragBadExtHdrPktDrop Counter32,
cienaCesDhcpv6LdraMplsGeneralErrors Counter32,
cienaCesDhcpv6LdraMplsStatsClear CienaStatsClear
}
cienaCesDhcpv6LdraMplsPktsForRelay OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the number of packets sent to this relay process."
::= { cienaCesDhcpv6LdraMplsStatsEntry 1 }
cienaCesDhcpv6LdraMplsRelayedClient OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the number of client sourced DHCPv6 packets relayed."
::= { cienaCesDhcpv6LdraMplsStatsEntry 2 }
cienaCesDhcpv6LdraMplsRelayedServer OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the number of server sourced DHCPv6 packets relayed."
::= { cienaCesDhcpv6LdraMplsStatsEntry 3 }
cienaCesDhcpv6LdraMplsUntrustedClientInterfacePktsRx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the number of client DHCPv6 packets
dropped because they were received on untrusted client
interfaces."
::= { cienaCesDhcpv6LdraMplsStatsEntry 4 }
cienaCesDhcpv6LdraMplsUntrustedServerInterfacePktsRx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the number of server DHCPv6 packets
dropped because they were received on untrusted server
interfaces."
::= { cienaCesDhcpv6LdraMplsStatsEntry 5 }
cienaCesDhcpv6LdraMplsFailedValidationPktDrop OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the number of DHCPv6 packets dropped due to failed validation."
::= { cienaCesDhcpv6LdraMplsStatsEntry 6 }
cienaCesDhcpv6LdraMplsInvalidConfigPktDrop OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the number of DHCPv6 packets dropped due
to LDRA configuration issues."
::= { cienaCesDhcpv6LdraMplsStatsEntry 7 }
cienaCesDhcpv6LdraMplsExceededHopCountPktDrop OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the number of DHCPv6 packets dropped due to hop count
in the packet exceeding hop count the limit."
::= { cienaCesDhcpv6LdraMplsStatsEntry 8 }
cienaCesDhcpv6LdraMplsExceedMTUPktDrop OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the number of DHCPv6 packets dropped because the new
relay frame size would exceed the MTU."
::= { cienaCesDhcpv6LdraMplsStatsEntry 9 }
cienaCesDhcpv6LdraMplsNoTrustedServerPktDrop OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the number of DHCPv6 packets dropped
because there are no server trusted interfaces configured."
::= { cienaCesDhcpv6LdraMplsStatsEntry 10 }
cienaCesDhcpv6LdraMplsNoTrustedClientPktDrop OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the number of DHCPv6 packets dropped
because there are no client trusted interfaces configured."
::= { cienaCesDhcpv6LdraMplsStatsEntry 11 }
cienaCesDhcpv6LdraMplsIPv6FragBadExtHdrPktDrop OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the number of DHCPv6 packets dropped due to IPv6 packet
extension headers that could not be processed."
::= { cienaCesDhcpv6LdraMplsStatsEntry 12 }
cienaCesDhcpv6LdraMplsGeneralErrors OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the number of DHCPv6 packets dropped due to unclassified errors."
::= { cienaCesDhcpv6LdraMplsStatsEntry 13 }
cienaCesDhcpv6LdraMplsStatsClear OBJECT-TYPE
SYNTAX CienaStatsClear
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object when set to 'true', clears DHCPv6 LDRA stats for given VLAN."
DEFVAL { none }
::= { cienaCesDhcpv6LdraMplsStatsEntry 14 }
--
-- DHCPv6 LDRA MPLS Interface ID String Table
--
cienaCesDhcpv6LdraMplsIntidStringTable OBJECT-TYPE
SYNTAX SEQUENCE OF CienaCesDhcpV6LdraMplsIntidStringEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table is used to specify interface ID strings for MPLS VSs
and interfaces that the DHCPv6 LDRA can specify in Option 82 CID
information."
::= { cienaCesDhcpv6RelayAgent 16 }
cienaCesDhcpv6LdraMplsIntidStringEntry OBJECT-TYPE
SYNTAX CienaCesDhcpV6LdraMplsIntidStringEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry in this table is used to specify an interface ID
string for MPLS VS and interface combinations."
INDEX { cienaCesDhcpv6LdraMplsId, cienaCesDhcpv6LdraMplsInterface }
::= { cienaCesDhcpv6LdraMplsIntidStringTable 1 }
CienaCesDhcpV6LdraMplsIntidStringEntry ::= SEQUENCE {
cienaCesDhcpv6LdraMplsIntidString DisplayString,
cienaCesDhcpv6LdraMplsIntidStringRowStatus RowStatus
}
cienaCesDhcpv6LdraMplsIntidString OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..64))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is used to get and set the IntID string for the
interface."
::= { cienaCesDhcpv6LdraMplsIntidStringEntry 1 }
cienaCesDhcpv6LdraMplsIntidStringRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Used to manage the creation and deletion of the conceptual rows in this table.
To create a row in this table set this object to 'createAndGo'.
To delete a row in this table set this object to 'destroy'."
::= { cienaCesDhcpv6LdraMplsIntidStringEntry 2 }
--
-- DHCPv6 LDRA MPLS RID String Table
--
cienaCesDhcpv6LdraMplsRidStringTable OBJECT-TYPE
SYNTAX SEQUENCE OF CienaCesDhcpV6LdraMplsRidStringEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table is used to specify RID strings for MPLS VSs and
interfaces that the DHCPv6 LDRA can specify in Option 82 RID
information."
::= { cienaCesDhcpv6RelayAgent 17 }
cienaCesDhcpv6LdraMplsRidStringEntry OBJECT-TYPE
SYNTAX CienaCesDhcpV6LdraMplsRidStringEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry in this table is used to specify an RID string for
MPLS VS and interface combinations."
INDEX { cienaCesDhcpv6LdraMplsId, cienaCesDhcpv6LdraMplsInterface }
::= { cienaCesDhcpv6LdraMplsRidStringTable 1 }
CienaCesDhcpV6LdraMplsRidStringEntry ::= SEQUENCE {
cienaCesDhcpv6LdraMplsRidString DisplayString,
cienaCesDhcpv6LdraMplsRidStringRowStatus RowStatus
}
cienaCesDhcpv6LdraMplsRidString OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..64))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This MIB object is used to get and set the RID string for the
interface."
::= { cienaCesDhcpv6LdraMplsRidStringEntry 1 }
cienaCesDhcpv6LdraMplsRidStringRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Used to manage the creation and deletion of the
conceptual rows in this table.
To create a row in this table set this object
to 'createAndGo'.
To delete a row in this table set this object
to 'destroy'."
::= { cienaCesDhcpv6LdraMplsRidStringEntry 2 }
--
-- Notifications
--
-- There are currently no DHCPv6 notifications.
END
--
-- CIENA-CES-DHCPV6-CLIENT-MIB.my
--
|