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
|
-- *****************************************************************
-- DLINKSW-DHCP6-SERVER-MIB.mib : DHCPv6 Server MIB
--
-- Copyright (c) 2013 D-Link Corporation, all rights reserved.
--
-- *****************************************************************
DLINKSW-DHCP6-SERVER-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY,
OBJECT-TYPE,
Integer32,
Unsigned32,
IpAddress
FROM SNMPv2-SMI
DisplayString,
RowStatus,
TruthValue,
DateAndTime
FROM SNMPv2-TC
MODULE-COMPLIANCE,
OBJECT-GROUP
FROM SNMPv2-CONF
InterfaceIndex
FROM IF-MIB
InetAddressPrefixLength, InetAddressIPv6
FROM INET-ADDRESS-MIB
dlinkIndustrialCommon
FROM DLINK-ID-REC-MIB;
dlinkSwDhcp6ServerMIB MODULE-IDENTITY
LAST-UPDATED "201310090000Z"
ORGANIZATION "D-Link Corp."
CONTACT-INFO
" D-Link Corporation
Postal: No. 289, Sinhu 3rd Rd., Neihu District,
Taipei City 114, Taiwan, R.O.C
Tel: +886-2-66000123
E-mail: tsd@dlink.com.tw
"
DESCRIPTION
"This MIB module defines objects for DHCPv6 Server."
REVISION "201301180000Z"
DESCRIPTION
"This is the first version of the MIB file for 'DHCPv6 Server'
functionality.
"
REVISION "201310090000Z"
DESCRIPTION
"modify node dDhcp6SBindExpire syntax to DateAndTime."
::= { dlinkIndustrialCommon 223 }
-- -----------------------------------------------------------------------------
dDhcp6ServerMIBNotifications OBJECT IDENTIFIER ::= { dlinkSwDhcp6ServerMIB 0 }
dDhcp6ServerMIBObjects OBJECT IDENTIFIER ::= { dlinkSwDhcp6ServerMIB 1 }
dDhcp6ServerMIBConformance OBJECT IDENTIFIER ::= { dlinkSwDhcp6ServerMIB 2 }
-- -----------------------------------------------------------------------------
dDhcp6ServGeneral OBJECT IDENTIFIER ::= { dDhcp6ServerMIBObjects 1}
dDhcp6ServiceEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object enables/disables the DHCPv6 server and relay service on
the device."
DEFVAL { false }
::= { dDhcp6ServGeneral 1 }
dDhcp6SCfgChanged OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The configuration changes of DHCPv6 server cannot take effect on-the-fly.
This ojbect indicates whether the DHCPv6 server configuration has changed
since the DHCPv6 service was enabled.
"
::= { dDhcp6ServGeneral 2 }
dDhcp6SExcludedAddressTable OBJECT-TYPE
SYNTAX SEQUENCE OF DDhcp6SExcludedAddressEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of configurations about a range of IPv6 addresses that
the DHCPv6 server should not assign to DHCPv6 client."
::= { dDhcp6ServGeneral 3 }
dDhcp6SExcludedAddressEntry OBJECT-TYPE
SYNTAX DDhcp6SExcludedAddressEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry contans information about an IP address range
that the DHCPv6 server should not assign to DHCPv6 client."
INDEX {
dDhcp6SExcludedAddressBeginAddr,
dDhcp6SExcludedAddressEndAddr
}
::= { dDhcp6SExcludedAddressTable 1 }
DDhcp6SExcludedAddressEntry ::= SEQUENCE {
dDhcp6SExcludedAddressBeginAddr InetAddressIPv6,
dDhcp6SExcludedAddressEndAddr InetAddressIPv6,
dDhcp6SExcludedAddressRowStatus RowStatus
}
dDhcp6SExcludedAddressBeginAddr OBJECT-TYPE
SYNTAX InetAddressIPv6
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object indicates the first IPv6 address of this excluded
address range."
::= { dDhcp6SExcludedAddressEntry 1 }
dDhcp6SExcludedAddressEndAddr OBJECT-TYPE
SYNTAX InetAddressIPv6
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object indicates the last IPv6 address of this excluded
address range."
::= { dDhcp6SExcludedAddressEntry 2 }
dDhcp6SExcludedAddressRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of this conceptual row."
::= { dDhcp6SExcludedAddressEntry 3 }
-- -----------------------------------------------------------------------------
dDhcp6SLocalPoolTable OBJECT-TYPE
SYNTAX SEQUENCE OF DDhcp6SLocalPoolEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of configurations contains information for local IPv6
prefix pools."
::= { dDhcp6ServGeneral 4 }
dDhcp6SLocalPoolEntry OBJECT-TYPE
SYNTAX DDhcp6SLocalPoolEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry contains information about a local IPv6 prefix pool
that will be assigned to DHCPv6 client."
INDEX { dDhcp6SLocalPoolName }
::= { dDhcp6SLocalPoolTable 1 }
DDhcp6SLocalPoolEntry ::= SEQUENCE {
dDhcp6SLocalPoolName DisplayString,
dDhcp6SLocalPoolPrefix InetAddressIPv6,
dDhcp6SLocalPoolPrefixLen InetAddressPrefixLength,
dDhcp6SLocalPoolPrefixAssignLen InetAddressPrefixLength,
dDhcp6SLocalPoolFreeAddrNum Unsigned32,
dDhcp6SLocalPoolInUseAddrNum Unsigned32,
dDhcp6SLocalPoolRowStatus RowStatus
}
dDhcp6SLocalPoolName OBJECT-TYPE
SYNTAX DisplayString (SIZE(1..32))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The name of this local IPv6 prefix pool."
::= { dDhcp6SLocalPoolEntry 1 }
dDhcp6SLocalPoolPrefix OBJECT-TYPE
SYNTAX InetAddressIPv6
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the IPv6 prefix address of the local pool."
::= { dDhcp6SLocalPoolEntry 2 }
dDhcp6SLocalPoolPrefixLen OBJECT-TYPE
SYNTAX InetAddressPrefixLength
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the IPv6 prefix length in bits of the local pool."
::= { dDhcp6SLocalPoolEntry 3 }
dDhcp6SLocalPoolPrefixAssignLen OBJECT-TYPE
SYNTAX InetAddressPrefixLength
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the prefix length in bits to delegate to DHCPv6
client from the pool. The value of dDhcp6SLocalPoolPrefixAssignLen
cannot be less than the value of dDhcp6SLocalPoolPrefixLen.
"
::= { dDhcp6SLocalPoolEntry 4 }
dDhcp6SLocalPoolFreeAddrNum OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the number of prefixes which are available to
be allocated."
::= { dDhcp6SLocalPoolEntry 5 }
dDhcp6SLocalPoolInUseAddrNum OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the number of already allocated prefixes."
::= { dDhcp6SLocalPoolEntry 6 }
dDhcp6SLocalPoolRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of this conceptual row."
::= { dDhcp6SLocalPoolEntry 7 }
-- -----------------------------------------------------------------------------
dDhcp6ServPoolMgmt OBJECT IDENTIFIER ::= { dDhcp6ServerMIBObjects 2}
dDhcp6SPoolTable OBJECT-TYPE
SYNTAX SEQUENCE OF DDhcp6SPoolEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of DHCPv6 pool Information."
::= { dDhcp6ServPoolMgmt 1 }
dDhcp6SPoolEntry OBJECT-TYPE
SYNTAX DDhcp6SPoolEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Defines an entry in the dDhcp6SPoolTable."
INDEX { dDhcp6SPoolName }
::= { dDhcp6SPoolTable 1 }
DDhcp6SPoolEntry ::= SEQUENCE {
dDhcp6SPoolName DisplayString,
dDhcp6SPoolRowStatus RowStatus
}
dDhcp6SPoolName OBJECT-TYPE
SYNTAX DisplayString (SIZE(1..32))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The name of this pool."
::= { dDhcp6SPoolEntry 1 }
dDhcp6SPoolRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The row status variable, used according to installation
and removal conventions for conceptual rows."
::= { dDhcp6SPoolEntry 2 }
-- -----------------------------------------------------------------------------
dDhcp6SPoolDomainNameTable OBJECT-TYPE
SYNTAX SEQUENCE OF DDhcp6SPoolDomainNameEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of domain name information in DHCPv6 pools."
::= { dDhcp6ServPoolMgmt 2 }
dDhcp6SPoolDomainNameEntry OBJECT-TYPE
SYNTAX DDhcp6SPoolDomainNameEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Defines an entry in the dDhcp6SPoolDomainNameTable.
The first instance identifier index value identifies the
dDhcp6SPoolEntry that a domain name (dDhcp6SPoolDomainNameEntry)
belongs to. An entry is removed from this table when its
corresponding dDhcp6SPoolEntry is deleted."
INDEX {
dDhcp6SPoolName,
dDhcp6SPoolDomainNameAdminIndex
}
::= { dDhcp6SPoolDomainNameTable 1 }
DDhcp6SPoolDomainNameEntry ::= SEQUENCE {
dDhcp6SPoolDomainNameAdminIndex Unsigned32,
dDhcp6SPoolDomainName DisplayString,
dhcp6ServerDomainNameRowStatus RowStatus
}
dDhcp6SPoolDomainNameAdminIndex OBJECT-TYPE
SYNTAX Unsigned32 (1..8)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object indicates the order of preference of a domain name
in a DHCPv6 pool. The number of domain name can be specified in a
DHCPv6 pool is project dependent."
::= { dDhcp6SPoolDomainNameEntry 1 }
dDhcp6SPoolDomainName OBJECT-TYPE
SYNTAX DisplayString (SIZE(1..32))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The domain name of the corresponding entry."
::= { dDhcp6SPoolDomainNameEntry 2 }
dhcp6ServerDomainNameRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The row status variable, used according to installation
and removal conventions for conceptual rows."
::= { dDhcp6SPoolDomainNameEntry 3 }
-- -----------------------------------------------------------------------------
dDhcp6SPoolDnsServerTable OBJECT-TYPE
SYNTAX SEQUENCE OF DDhcp6SPoolDnsServerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of DNS server configurations for DHCPv6 pools."
::= { dDhcp6ServPoolMgmt 3 }
dDhcp6SPoolDnsServerEntry OBJECT-TYPE
SYNTAX DDhcp6SPoolDnsServerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry contains DNS server configuration in a DHCPv6 pool.
The first instance identifier index value identifies the
dDhcp6SPoolEntry that a DNS server (dDhcp6SPoolDnsServerEntry)
belongs to. An entry is removed from this table when its
corresponding dDhcp6SPoolEntry is deleted."
INDEX {
dDhcp6SPoolName,
dDhcp6SPoolDnsServerIndex
}
::= { dDhcp6SPoolDnsServerTable 1 }
DDhcp6SPoolDnsServerEntry ::= SEQUENCE {
dDhcp6SPoolDnsServerIndex Unsigned32,
dDhcp6SPoolDnsServerAddr InetAddressIPv6,
dDhcp6SPoolDnsServerRowStatus RowStatus
}
dDhcp6SPoolDnsServerIndex OBJECT-TYPE
SYNTAX Unsigned32 (1..8)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This objects indicates the order of preference of a DNS server in a
DHCPv6 pool."
::= { dDhcp6SPoolDnsServerEntry 1 }
dDhcp6SPoolDnsServerAddr OBJECT-TYPE
SYNTAX InetAddressIPv6
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The IPv6 address of the DNS server."
::= { dDhcp6SPoolDnsServerEntry 2 }
dDhcp6SPoolDnsServerRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of this conceptual row."
::= { dDhcp6SPoolDnsServerEntry 3}
-- -----------------------------------------------------------------------------
dDhcp6SPoolAddrPrefixTable OBJECT-TYPE
SYNTAX SEQUENCE OF DDhcp6SPoolAddrPrefixEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of address prefix information in DHCPv6 pools."
::= { dDhcp6ServPoolMgmt 4 }
dDhcp6SPoolAddrPrefixEntry OBJECT-TYPE
SYNTAX DDhcp6SPoolAddrPrefixEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Defines an entry in the dDhcp6SPoolAddrPrefixTable.
The first instance identifier index value identifies the
dDhcp6SPoolEntry that a address-prefix (dDhcp6SPoolAddrPrefixEntry)
belongs to. An entry is removed from this table when its
corresponding dDhcp6SPoolEntry is deleted. "
INDEX { dDhcp6SPoolName }
::= { dDhcp6SPoolAddrPrefixTable 1 }
DDhcp6SPoolAddrPrefixEntry ::= SEQUENCE {
dDhcp6SPoolAddrPrefixAddr InetAddressIPv6,
dDhcp6SPoolAddrPrefixLength InetAddressPrefixLength,
dDhcp6SPoolAddrPrefixVLtime Unsigned32,
dDhcp6SPoolAddrPrefixPLtime Unsigned32,
dDhcp6SPoolAddrPrefixRowStatus RowStatus
}
dDhcp6SPoolAddrPrefixAddr OBJECT-TYPE
SYNTAX InetAddressIPv6
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates IPv6 address prefix to be assigned to client."
::= { dDhcp6SPoolAddrPrefixEntry 1 }
dDhcp6SPoolAddrPrefixLength OBJECT-TYPE
SYNTAX InetAddressPrefixLength
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the length in bits of the address prefix."
::= { dDhcp6SPoolAddrPrefixEntry 2 }
dDhcp6SPoolAddrPrefixVLtime OBJECT-TYPE
SYNTAX Unsigned32 (60 .. 4294967295)
UNITS "seconds"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The valid lifetime of the address prefix in seconds."
DEFVAL { 2592000 }
::= { dDhcp6SPoolAddrPrefixEntry 3 }
dDhcp6SPoolAddrPrefixPLtime OBJECT-TYPE
SYNTAX Unsigned32 (60 .. 4294967295)
UNITS "seconds"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The preferred lifetime of the address prefix in seconds."
DEFVAL { 604800 }
::= { dDhcp6SPoolAddrPrefixEntry 4 }
dDhcp6SPoolAddrPrefixRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The row status variable, used according to installation
and removal conventions for conceptual rows."
::= { dDhcp6SPoolAddrPrefixEntry 5 }
-- -----------------------------------------------------------------------------
dDhcp6SPoolAddrAssignTable OBJECT-TYPE
SYNTAX SEQUENCE OF DDhcp6SPoolAddrAssignEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of address assignment information in DHCPv6 pools."
::= { dDhcp6ServPoolMgmt 6 }
dDhcp6SPoolAddrAssignEntry OBJECT-TYPE
SYNTAX DDhcp6SPoolAddrAssignEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Defines an entry in the dDhcp6SPoolAddrAssignTable.
The first instance identifier index value identifies the
dDhcp6SPoolEntry that an address-assignment (dDhcp6SPoolAddrAssignEntry)
belongs to. An entry is removed from this table when its
corresponding dDhcp6SPoolEntry is deleted.
"
INDEX {
dDhcp6SPoolName,
dDhcp6SPoolAddrAssignAddr
}
::= { dDhcp6SPoolAddrAssignTable 1 }
DDhcp6SPoolAddrAssignEntry ::= SEQUENCE {
dDhcp6SPoolAddrAssignAddr InetAddressIPv6,
dDhcp6SPoolAddrAssignLength InetAddressPrefixLength,
dDhcp6SPoolAddrAssignClientDuid OCTET STRING,
dDhcp6SPoolAddrAssignSetIaid TruthValue,
dDhcp6SPoolAddrAssignIaid Unsigned32,
dDhcp6SPoolAddrAssignVLtime Unsigned32,
dDhcp6SPoolAddrAssignPLtime Unsigned32,
dDhcp6SPoolAddrAssignRowStatus RowStatus
}
dDhcp6SPoolAddrAssignAddr OBJECT-TYPE
SYNTAX InetAddressIPv6
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the IPv6 address to be assigned to client."
::= { dDhcp6SPoolAddrAssignEntry 1 }
dDhcp6SPoolAddrAssignLength OBJECT-TYPE
SYNTAX InetAddressPrefixLength
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the length in bits of the address."
::= { dDhcp6SPoolAddrAssignEntry 2 }
dDhcp6SPoolAddrAssignClientDuid OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the DHCP unique identifier (DUID) of
the client to get the address."
::= { dDhcp6SPoolAddrAssignEntry 3 }
dDhcp6SPoolAddrAssignSetIaid OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates whether dDhcp6SPoolAddrAssignIaid is set or not."
DEFVAL { false }
::= { dDhcp6SPoolAddrAssignEntry 4 }
dDhcp6SPoolAddrAssignIaid OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the Identity association identifier (IAID) of the
entry. The value of dDhcp6SPoolAddrAssignIaid uniquely identifies a
collection of non-temporary addresses (IA_NA) assigned on the client.
dDhcp6SPoolAddrAssignIaid is only valid when dDhcp6SPoolAddrAssignSetIaid
is 'true'."
::= { dDhcp6SPoolAddrAssignEntry 5 }
dDhcp6SPoolAddrAssignVLtime OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates valid lifetime of the assigned address in seconds.
The valid lifetime should be greater than preferred lifetime."
DEFVAL { 2592000 }
::= { dDhcp6SPoolAddrAssignEntry 6 }
dDhcp6SPoolAddrAssignPLtime OBJECT-TYPE
SYNTAX Unsigned32 (60 .. 4294967295)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates preferred lifetime of the assigned address in seconds.
The valid lifetime should be greater than preferred lifetime."
DEFVAL { 604800 }
::= { dDhcp6SPoolAddrAssignEntry 7 }
dDhcp6SPoolAddrAssignRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The row status variable, used according to installation
and removal conventions for conceptual rows."
::= { dDhcp6SPoolAddrAssignEntry 8 }
-- -----------------------------------------------------------------------------
dDhcp6SPoolPdTable OBJECT-TYPE
SYNTAX SEQUENCE OF DDhcp6SPoolPdEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of prefix delegation information in DHCPv6 pools."
::= { dDhcp6ServPoolMgmt 7 }
dDhcp6SPoolPdEntry OBJECT-TYPE
SYNTAX DDhcp6SPoolPdEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Defines an entry in the dDhcp6SPoolPdTable.
The first instance identifier index value identifies the
dDhcp6SPoolEntry that a prefix delegation (dDhcp6SPoolPdEntry)
belongs to. An entry is removed from this table when its
corresponding dDhcp6SPoolEntry is deleted.
"
INDEX {
dDhcp6SPoolName,
dDhcp6SPoolPdPrefix,
dDhcp6SPoolPdPrefixLength
}
::= { dDhcp6SPoolPdTable 1 }
DDhcp6SPoolPdEntry ::= SEQUENCE {
dDhcp6SPoolPdPrefix InetAddressIPv6,
dDhcp6SPoolPdPrefixLength InetAddressPrefixLength,
dDhcp6SPoolPdClientDuid OCTET STRING,
dDhcp6SPoolPdSetIaid TruthValue,
dDhcp6SPoolPdIaid Unsigned32,
dDhcp6SPoolPdVLtime Unsigned32,
dDhcp6SPoolPdPLtime Unsigned32,
dDhcp6SPoolPdRowStatus RowStatus
}
dDhcp6SPoolPdPrefix OBJECT-TYPE
SYNTAX InetAddressIPv6
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates IPv6 prefix to be delegated to client."
::= { dDhcp6SPoolPdEntry 1 }
dDhcp6SPoolPdPrefixLength OBJECT-TYPE
SYNTAX InetAddressPrefixLength
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the length in bits of the prefix."
::= { dDhcp6SPoolPdEntry 2 }
dDhcp6SPoolPdClientDuid OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the DHCP unique identifier (DUID) of
the client to get the address."
::= { dDhcp6SPoolPdEntry 3 }
dDhcp6SPoolPdSetIaid OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates whether dDhcp6SPoolPdIaid is set or not."
DEFVAL { false }
::= { dDhcp6SPoolPdEntry 4 }
dDhcp6SPoolPdIaid OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the Identity association identifier (IAID) of the
entry. The value of dDhcp6SPoolPdIaid uniquely identifies a
collection of prefixes assigned to the requesting router.
dDhcp6SPoolPdIaid is only valid when dDhcp6SPoolAddrAssignSetIaid
is 'true'."
::= { dDhcp6SPoolPdEntry 5 }
dDhcp6SPoolPdVLtime OBJECT-TYPE
SYNTAX Unsigned32 (60 .. 4294967295)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates valid lifetime of the allocated prefix in seconds.
The valid lifetime should be greater than preferred lifetime."
DEFVAL { 2592000 }
::= { dDhcp6SPoolPdEntry 6 }
dDhcp6SPoolPdPLtime OBJECT-TYPE
SYNTAX Unsigned32 (60 .. 4294967295)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates preferred lifetime of the address in seconds.
The preferred lifetime should be less than valid lifetime."
DEFVAL { 604800 }
::= { dDhcp6SPoolPdEntry 7 }
dDhcp6SPoolPdRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The row status variable, used according to installation
and removal conventions for conceptual rows."
::= { dDhcp6SPoolPdEntry 8 }
-- -----------------------------------------------------------------------------
dDhcp6SPoolPdLocPoolTable OBJECT-TYPE
SYNTAX SEQUENCE OF DDhcp6SPoolPdLocPoolEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of local prefix pool association in DHCPv6 pools."
::= { dDhcp6ServPoolMgmt 8 }
dDhcp6SPoolPdLocPoolEntry OBJECT-TYPE
SYNTAX DDhcp6SPoolPdLocPoolEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Defines an entry in the dDhcp6SPoolPdLocPoolTable.
The first instance identifier index value identifies the
dDhcp6SPoolEntry that a local prefix pool association (dDhcp6SPoolPdLocPoolEntry)
belongs to. An entry is removed from this table when its
corresponding dDhcp6SPoolEntry is deleted.
"
INDEX { dDhcp6SPoolName }
::= { dDhcp6SPoolPdLocPoolTable 1 }
DDhcp6SPoolPdLocPoolEntry ::= SEQUENCE {
dDhcp6SPoolPdLocPoolName DisplayString,
dDhcp6SPoolPdLocPoolVLtime Unsigned32,
dDhcp6SPoolPdLocPoolPLtime Unsigned32,
dDhcp6SPoolPdLocPoolRowStatus RowStatus
}
dDhcp6SPoolPdLocPoolName OBJECT-TYPE
SYNTAX DisplayString (SIZE(1..32))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The name of the associated local IPv6 prefix pool."
::= { dDhcp6SPoolPdLocPoolEntry 1 }
dDhcp6SPoolPdLocPoolVLtime OBJECT-TYPE
SYNTAX Unsigned32 (60 .. 4294967295)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates valid lifetime for the delegated prefix in
seconds. The valid lifetime should be greater than preferred lifetime."
DEFVAL { 2592000 }
::= { dDhcp6SPoolPdLocPoolEntry 2 }
dDhcp6SPoolPdLocPoolPLtime OBJECT-TYPE
SYNTAX Unsigned32 (60 .. 4294967295)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates preferred lifetime for the delegated prefix in
seconds. The preferred lifetime should be less than valid lifetime."
DEFVAL { 604800 }
::= { dDhcp6SPoolPdLocPoolEntry 3 }
dDhcp6SPoolPdLocPoolRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The row status variable, used according to installation
and removal conventions for conceptual rows."
::= { dDhcp6SPoolPdLocPoolEntry 4 }
-- -----------------------------------------------------------------------------
dDhcp6ServIfMgmt OBJECT IDENTIFIER ::= { dDhcp6ServerMIBObjects 3}
dDhcp6ServIfTable OBJECT-TYPE
SYNTAX SEQUENCE OF DDhcp6ServIfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table contains interface-specific DHCPv6 server service
configuration.
An entry is created/removed when DHCPv6 server service is
specified/unspecified.
When DHCPv6 server service is specified on an interface means
DHCPv6 server feature is enabled on that interface.
"
::= { dDhcp6ServIfMgmt 1 }
dDhcp6ServIfEntry OBJECT-TYPE
SYNTAX DDhcp6ServIfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Defines an entry in the dDhcp6ServIfTable."
INDEX { dDhcp6ServIfIndex }
::= { dDhcp6ServIfTable 1 }
DDhcp6ServIfEntry ::= SEQUENCE {
dDhcp6ServIfIndex InterfaceIndex,
dDhcp6ServIfPoolName DisplayString,
dDhcp6ServIfRapidCommit TruthValue,
dDhcp6ServIfAllowHint TruthValue,
dDhcp6ServIfPreference Unsigned32,
dDhcp6ServIfRowStatus RowStatus
}
dDhcp6ServIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The ifIndex value of the interface.
Only VLAN interfaces are valid interfaces."
::= { dDhcp6ServIfEntry 1 }
dDhcp6ServIfPoolName OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..32))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the name of the DHCPv6 pool used to serve
the request received on the interface."
::= { dDhcp6ServIfEntry 2 }
dDhcp6ServIfRapidCommit OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates whether allow proceeding of two-message
exchange."
DEFVAL { false }
::= { dDhcp6ServIfEntry 3 }
dDhcp6ServIfAllowHint OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates whether delegate the prefix based on the
prefix hint by the client. By default, the prefix hint by client is
ignored."
DEFVAL { false }
::= { dDhcp6ServIfEntry 4 }
dDhcp6ServIfPreference OBJECT-TYPE
SYNTAX Unsigned32 (0..255)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the preference value to be advertised by the
server. The larger value indicates the higher priority."
DEFVAL { 0 }
::= { dDhcp6ServIfEntry 5 }
dDhcp6ServIfRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The row status variable, used according to installation
and removal conventions for conceptual rows."
::= { dDhcp6ServIfEntry 6 }
-- -----------------------------------------------------------------------------
dDhcp6ServInfo OBJECT IDENTIFIER ::= { dDhcp6ServerMIBObjects 4}
dDhcp6SBindingTable OBJECT-TYPE
SYNTAX SEQUENCE OF DDhcp6SBindingEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table contains DHCPv6 binding information."
::= { dDhcp6ServInfo 1 }
dDhcp6SBindingEntry OBJECT-TYPE
SYNTAX DDhcp6SBindingEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Defines an entry in the dDhcp6SBindingTable."
INDEX {
dDhcp6SBindIfIndex,
dDhcp6SBindClientDuid,
dDhcp6SBindIaType,
dDhcp6SBindIaId,
dDhcp6SBindAddrOrPrefix,
dDhcp6SBindAddrOrPrefixLen
}
::= { dDhcp6SBindingTable 1 }
DDhcp6SBindingEntry ::= SEQUENCE {
dDhcp6SBindIfIndex InterfaceIndex,
dDhcp6SBindClientDuid OCTET STRING,
dDhcp6SBindIaType INTEGER,
dDhcp6SBindIaId Unsigned32,
dDhcp6SBindAddrOrPrefix InetAddressIPv6,
dDhcp6SBindAddrOrPrefixLen InetAddressPrefixLength,
dDhcp6SBindClientLinkLocalAddr InetAddressIPv6,
dDhcp6SBindIaT1 Unsigned32,
dDhcp6SBindIaT2 Unsigned32,
dDhcp6SBindVLtime Unsigned32,
dDhcp6SBindPLtime Unsigned32,
dDhcp6SBindExpire DateAndTime,
dDhcp6SBindClear INTEGER
}
dDhcp6SBindIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The ifIndex of the VLAN interface on which the binding is located."
::= { dDhcp6SBindingEntry 1 }
dDhcp6SBindClientDuid OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object indicates the DHCP unique identifier (DUID) of
the client."
::= { dDhcp6SBindingEntry 2 }
dDhcp6SBindIaType OBJECT-TYPE
SYNTAX INTEGER {
other(0),
iapd(1),
iana(2)
}
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The type of binding IA (Identity association).
other(0) - The other types not specified here.
iapd(1) - Prefix Delegation
iana(2) - Non-temporary Addresses
"
::= { dDhcp6SBindingEntry 3 }
dDhcp6SBindIaId OBJECT-TYPE
SYNTAX Unsigned32 (60 .. 4294967295)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object indicates the Identity association identifier (IAID) of the
entry. "
::= { dDhcp6SBindingEntry 4 }
dDhcp6SBindAddrOrPrefix OBJECT-TYPE
SYNTAX InetAddressIPv6
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object indicates the IPv6 address or prefix allocated to the client."
::= { dDhcp6SBindingEntry 5 }
dDhcp6SBindAddrOrPrefixLen OBJECT-TYPE
SYNTAX InetAddressPrefixLength
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object indicates the length in bits of the IPv6 address or
prefix allocated/delegated to the client."
::= { dDhcp6SBindingEntry 6 }
dDhcp6SBindClientLinkLocalAddr OBJECT-TYPE
SYNTAX InetAddressIPv6
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the IPv6 link local address or prefix
allocated/delegated to the client."
::= { dDhcp6SBindingEntry 7 }
dDhcp6SBindIaT1 OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates T1 of the IA. At time T1 for an IA, the
client initiates a Renew/Reply message exchange to extend the
lifetimes on any addresses in the IA."
::= { dDhcp6SBindingEntry 8 }
dDhcp6SBindIaT2 OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates T2 of the IA.
At time T2 for an IA, the client initiates a Rebind/Reply message
exchange with any available server."
::= { dDhcp6SBindingEntry 9 }
dDhcp6SBindVLtime OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates valid lifetime for the binding in seconds."
::= { dDhcp6SBindingEntry 10 }
dDhcp6SBindPLtime OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates preferred lifetime for the binding in seconds."
::= { dDhcp6SBindingEntry 11 }
dDhcp6SBindExpire OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the expiration of the binding entry.
The special value of all '00'Hs indicates that the binding will never
be expired (infinite)."
::= { dDhcp6SBindingEntry 12 }
dDhcp6SBindClear OBJECT-TYPE
SYNTAX INTEGER {
clear(1),
noOp(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object is used to clear the binding entry when
set to 'clear'.
No action is taken if this object is set to 'noOp'.
When read, the value 'noOp' is returned."
::= { dDhcp6SBindingEntry 13 }
-- ***************************************************************************
-- Conformance
-- ***************************************************************************
dDhcp6ServerCompliances OBJECT IDENTIFIER ::= { dDhcp6ServerMIBConformance 1 }
dDhcp6ServerCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for entities which implement the
DLINKSW-DHCP6-SERVER-MIB."
MODULE -- this module
MANDATORY-GROUPS {
dDhcp6SGblCfgGroup,
dDhcp6SLocalPoolGroup,
dDhcp6SPoolGroup,
dDhcp6SInterfaceGroup,
dDhcp6SNonTempAddrAssignGroup,
dDhcp6SInfoGroup
}
GROUP dDhcp6SPrefixDelegationGroup
DESCRIPTION
"This group is required only if the Prefix-Delegation feature
is implemented by the agent."
::= { dDhcp6ServerCompliances 1 }
dDhcp6ServerGroups OBJECT IDENTIFIER ::= { dDhcp6ServerMIBConformance 2 }
dDhcp6SGblCfgGroup OBJECT-GROUP
OBJECTS {
dDhcp6ServiceEnabled,
dDhcp6SCfgChanged,
dDhcp6SExcludedAddressRowStatus
}
STATUS current
DESCRIPTION
"A collection of objects providing global configuration about DHCPv6
server."
::= { dDhcp6ServerGroups 1 }
dDhcp6SLocalPoolGroup OBJECT-GROUP
OBJECTS {
dDhcp6SLocalPoolPrefix,
dDhcp6SLocalPoolPrefixLen,
dDhcp6SLocalPoolPrefixAssignLen,
dDhcp6SLocalPoolRowStatus
}
STATUS current
DESCRIPTION
"A collection of objects providing DHCP class configuration."
::= { dDhcp6ServerGroups 2 }
dDhcp6SPoolGroup OBJECT-GROUP
OBJECTS {
dDhcp6SPoolRowStatus,
dDhcp6SPoolDomainName,
dhcp6ServerDomainNameRowStatus,
dDhcp6SPoolDnsServerAddr,
dDhcp6SPoolDnsServerRowStatus
}
STATUS current
DESCRIPTION
"A collection of objects providing DHCP relay agent configuration
of a class or address range of a class under a DHCP pool."
::= { dDhcp6ServerGroups 3 }
dDhcp6SInterfaceGroup OBJECT-GROUP
OBJECTS {
dDhcp6ServIfPoolName,
dDhcp6ServIfRapidCommit,
dDhcp6ServIfAllowHint,
dDhcp6ServIfPreference,
dDhcp6ServIfRowStatus
}
STATUS current
DESCRIPTION
"A collection of objects providing interface-specific configuration
for DHCPv6 Server feature."
::= { dDhcp6ServerGroups 4 }
dDhcp6SNonTempAddrAssignGroup OBJECT-GROUP
OBJECTS {
dDhcp6SPoolAddrPrefixAddr,
dDhcp6SPoolAddrPrefixLength,
dDhcp6SPoolAddrPrefixVLtime,
dDhcp6SPoolAddrPrefixPLtime,
dDhcp6SPoolAddrPrefixRowStatus,
dDhcp6SPoolAddrAssignAddr,
dDhcp6SPoolAddrAssignLength,
dDhcp6SPoolAddrAssignClientDuid,
dDhcp6SPoolAddrAssignSetIaid,
dDhcp6SPoolAddrAssignIaid,
dDhcp6SPoolAddrAssignVLtime,
dDhcp6SPoolAddrAssignPLtime,
dDhcp6SPoolAddrAssignRowStatus
}
STATUS current
DESCRIPTION
"A collection of objects providing non-temporary addresses configuration
for DHCPv6 Server feature."
::= { dDhcp6ServerGroups 5 }
dDhcp6SPrefixDelegationGroup OBJECT-GROUP
OBJECTS {
dDhcp6SPoolPdPrefix,
dDhcp6SPoolPdPrefixLength,
dDhcp6SPoolPdClientDuid,
dDhcp6SPoolPdSetIaid,
dDhcp6SPoolPdIaid,
dDhcp6SPoolPdVLtime,
dDhcp6SPoolPdPLtime,
dDhcp6SPoolPdRowStatus,
dDhcp6SPoolPdLocPoolName,
dDhcp6SPoolPdLocPoolVLtime,
dDhcp6SPoolPdLocPoolPLtime,
dDhcp6SPoolPdLocPoolRowStatus
}
STATUS current
DESCRIPTION
"A collection of objects providing prefix-delegation configuration
for DHCPv6 Server feature."
::= { dDhcp6ServerGroups 6 }
dDhcp6SInfoGroup OBJECT-GROUP
OBJECTS {
dDhcp6SLocalPoolFreeAddrNum,
dDhcp6SLocalPoolInUseAddrNum,
dDhcp6SBindClientLinkLocalAddr,
dDhcp6SBindIaT1,
dDhcp6SBindIaT2,
dDhcp6SBindVLtime,
dDhcp6SBindPLtime,
dDhcp6SBindExpire,
dDhcp6SBindClear
}
STATUS current
DESCRIPTION
"A collection of objects providing dynamic information for DHCPv6
Server feature."
::= { dDhcp6ServerGroups 7 }
END
|