summaryrefslogtreecommitdiff
path: root/MIBS/dlink/DLINKSW-DHCP-SERVER-MIB
blob: 85349f25c71f8aae41058da9b2da0e02302d90b3 (plain)
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
--  *****************************************************************
--  DLINKSW-DHCP-SERVER-MIB.mib : DHCP Server MIB
-- 
--  Copyright (c) 2013 D-Link Corporation, all rights reserved.
--   
--  *****************************************************************
    DLINKSW-DHCP-SERVER-MIB DEFINITIONS ::= BEGIN

    IMPORTS
        MODULE-IDENTITY,OBJECT-TYPE,IpAddress,Unsigned32,Counter64     
            FROM SNMPv2-SMI
        RowStatus,MacAddress,TruthValue,DateAndTime,DisplayString            
            FROM SNMPv2-TC
        MODULE-COMPLIANCE, OBJECT-GROUP
            FROM SNMPv2-CONF        
        dlinkIndustrialCommon                     
            FROM DLINK-ID-REC-MIB;
     
     
    dlinkSwDhcpServerMIB MODULE-IDENTITY
        LAST-UPDATED "201309030000Z"
        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
            "The MIB module for managing DHCP Server."
            
        REVISION  "201309030000Z"
        DESCRIPTION
            "Initial version of this MIB."
        ::= { dlinkIndustrialCommon 39 }

-- -----------------------------------------------------------------------------
    dDhcpServerMIBNotifications OBJECT IDENTIFIER ::= { dlinkSwDhcpServerMIB 0 }
    dDhcpServerMIBObjects       OBJECT IDENTIFIER ::= { dlinkSwDhcpServerMIB 1 }
    dDhcpServerMIBConformance   OBJECT IDENTIFIER ::= { dlinkSwDhcpServerMIB 2 }
             
-- -----------------------------------------------------------------------------
    dDhcpServerGblCfg              OBJECT IDENTIFIER ::= { dDhcpServerMIBObjects 1}

    dDhcpServiceEnabled OBJECT-TYPE
        SYNTAX          TruthValue
        MAX-ACCESS      read-write
        STATUS          current
        DESCRIPTION
            "This object enables/disables the DHCP server and relay service on 
            the device."
        DEFVAL          { false }    
        ::= { dDhcpServerGblCfg 1 }

    dDhcpServerPingPktNumber OBJECT-TYPE
        SYNTAX          Unsigned32
        MAX-ACCESS      read-write
        STATUS  current
        DESCRIPTION
            "This object specifies the number of PING packets the DHCP server 
            sends to an IP address before assigning this address to a requesting
            client. 
            Setting this object to 0 will disable the PING operation."
        DEFVAL          { 2 }    
        ::= { dDhcpServerGblCfg 2 }

    dDhcpServerPingTimeOut OBJECT-TYPE
        SYNTAX          Unsigned32 
        UNITS           "milliseconds"
        MAX-ACCESS  read-write
        STATUS  current
        DESCRIPTION
            "This object specifies the amount of time in millisecond the
            DHCP server must wait before timing out a ping packet.
            The specified value should be multiple of 100."
        DEFVAL          { 500 }    
        ::= { dDhcpServerGblCfg 3 }
       
    dDhcpSExcludedAddressTable OBJECT-TYPE
        SYNTAX          SEQUENCE OF DDhcpSExcludedAddressEntry
        MAX-ACCESS      not-accessible
        STATUS      current
        DESCRIPTION
            "A list of configurations about a range of IP addresses that
            the DHCP server should not assign to DHCP client."
        ::= { dDhcpServerGblCfg 4 }

    dDhcpSExcludedAddressEntry OBJECT-TYPE
        SYNTAX          DDhcpSExcludedAddressEntry
        MAX-ACCESS      not-accessible
        STATUS          current
        DESCRIPTION
            "An entry contaning information about an IP address range
            that the DHCP server should not assign to DHCP client."
        INDEX { 
            dDhcpSExcludedAddressVrfName,
            dDhcpSExcludedAddressBeginAddr, 
            dDhcpSExcludedAddressEndAddr 
        }
    ::= { dDhcpSExcludedAddressTable 1 }

    DDhcpSExcludedAddressEntry ::=      SEQUENCE {
        dDhcpSExcludedAddressVrfName            DisplayString,
        dDhcpSExcludedAddressBeginAddr          IpAddress,
        dDhcpSExcludedAddressEndAddr            IpAddress,
        dDhcpSExcludedAddressRowStatus          RowStatus
    }

    dDhcpSExcludedAddressVrfName OBJECT-TYPE
        SYNTAX          DisplayString (SIZE(0..32))
        MAX-ACCESS      not-accessible
        STATUS          current
        DESCRIPTION
            "The name of virtual routing and forwarding (VRF). When the VRF is
            not specified (zero length string), the corresponding configuration 
            is used for global address space."
        DEFVAL          { "" }    
        ::= { dDhcpSExcludedAddressEntry 1 }

    dDhcpSExcludedAddressBeginAddr OBJECT-TYPE
        SYNTAX          IpAddress
        MAX-ACCESS      not-accessible
        STATUS          current
        DESCRIPTION
            "The first address of this address range."
        ::= { dDhcpSExcludedAddressEntry 2 }

    dDhcpSExcludedAddressEndAddr OBJECT-TYPE
        SYNTAX          IpAddress
        MAX-ACCESS      not-accessible
        STATUS          current
        DESCRIPTION
            "The last address of this address range."
        ::= { dDhcpSExcludedAddressEntry 3 }

    dDhcpSExcludedAddressRowStatus OBJECT-TYPE
        SYNTAX          RowStatus
        MAX-ACCESS      read-create
        STATUS          current
        DESCRIPTION
            "The status of this conceptual row."
        ::= { dDhcpSExcludedAddressEntry 99 }
          
-- -----------------------------------------------------------------------------
    dDhcpServerClass      OBJECT IDENTIFIER ::= { dDhcpServerMIBObjects 2 }
    
    dDhcpServerUseClassEnabled OBJECT-TYPE
        SYNTAX          TruthValue
        MAX-ACCESS      read-write
        STATUS          current
        DESCRIPTION
            "This object enables/disables the DHCP server to use DHCP classes
            during address allocation or use DHCP classes option to locate the addresses."
        ::= { dDhcpServerClass 1 }
    
    dDhcpSClassTable OBJECT-TYPE
        SYNTAX SEQUENCE OF DDhcpSClassEntry
        MAX-ACCESS not-accessible
        STATUS current
        DESCRIPTION
            "A list of classes for DHCP server. This table is used to create and
            delete DHCP class."
        ::= { dDhcpServerClass 2 }
    
    dDhcpSClassEntry OBJECT-TYPE
        SYNTAX          DDhcpSClassEntry
        MAX-ACCESS      not-accessible
        STATUS          current
        DESCRIPTION
            "An entry in DHCP class table contaning objects for creating
            or deleting a class for the DHCP server or relay."
        INDEX { dDhcpSClassName }
        ::= { dDhcpSClassTable 1 }
    
    DDhcpSClassEntry ::=
        SEQUENCE { 
            dDhcpSClassName             DisplayString,
            dDhcpSClassRowStatus        RowStatus
         }

    dDhcpSClassName OBJECT-TYPE
        SYNTAX          DisplayString 
        MAX-ACCESS      not-accessible
        STATUS          current
        DESCRIPTION
            "This object indicates the class name of the corresponding
            entry."
        ::= { dDhcpSClassEntry 1 }
    
    dDhcpSClassRowStatus OBJECT-TYPE
        SYNTAX          RowStatus
        MAX-ACCESS      read-create
        STATUS current
        DESCRIPTION
            "This object is used to create new rows in this
            table and to delete existing rows."                        
        ::= { dDhcpSClassEntry 99 }

-- -----------------------------------------------------------------------------
    dDhcpSClassOptionTable OBJECT-TYPE
        SYNTAX          SEQUENCE OF DDhcpSClassOptionEntry
        MAX-ACCESS      not-accessible
        STATUS          current
        DESCRIPTION
            "A list of DHCP option configuratoins for DHCP Relay and Server classes."
        ::= { dDhcpServerClass 3 }

    dDhcpSClassOptionEntry OBJECT-TYPE
        SYNTAX          DDhcpSClassOptionEntry
        MAX-ACCESS      not-accessible
        STATUS          current
        DESCRIPTION
            "An entry contains a DHCP option configuration of a DHCP class."
        INDEX  { 
            dDhcpSClassName, 
            dDhcpSClassOptionCode,
            dDhcpSClassOptionPatternValue,
            dDhcpSClassOptionWildcardMatch,
            dDhcpSClassOptionMaskValue
        }
        ::= { dDhcpSClassOptionTable 1 }

    DDhcpSClassOptionEntry ::= 	SEQUENCE {
        dDhcpSClassOptionCode           INTEGER,
        dDhcpSClassOptionPatternValue   OCTET STRING,
        dDhcpSClassOptionWildcardMatch  TruthValue,
        dDhcpSClassOptionMaskValue      OCTET STRING,
        dDhcpSClassOptionRowStatus      RowStatus
    }
    
    dDhcpSClassOptionCode OBJECT-TYPE
        SYNTAX          INTEGER (1..254)
        MAX-ACCESS      not-accessible
        STATUS  current
        DESCRIPTION
            "This object indicates the DHCP option code. The list of supported
            option code is project dependent.
            The following are some common used option codes:
            60: vendor class identifier;
            61: Client identifier;
            77: user class;
            82: Relay agent information option;
            124: vendor-identifying vendor class; 
            125: vendor-identifying vendor-specific information."
        ::= { dDhcpSClassOptionEntry 1 }

    dDhcpSClassOptionPatternValue OBJECT-TYPE
        SYNTAX          OCTET STRING
        MAX-ACCESS      not-accessible
        STATUS          current
        DESCRIPTION
            "This object indicates the pattern of the corresponding DHCP 
            option. Multiple option patterns can be specified for a DHCP
            class."
        ::= { dDhcpSClassOptionEntry 2 }
  
    dDhcpSClassOptionWildcardMatch OBJECT-TYPE
        SYNTAX          TruthValue
        MAX-ACCESS      not-accessible
        STATUS          current
        DESCRIPTION
            "This object indicates whether matching the remaining bits of the
            option.  A value of 'false' means the bit length of 
            dDhcpSClassOptionPatternValue should be the same as bit length of
            the option."
        ::= { dDhcpSClassOptionEntry 3 }

    dDhcpSClassOptionMaskValue OBJECT-TYPE
        SYNTAX          OCTET STRING
        MAX-ACCESS      not-accessible
        STATUS          current
        DESCRIPTION
           "This object indicates the hex bit mask for masking of the 
            dDhcpSClassOptionPatternValue. The masked pattern bits will be 
            matched. 
            The masked pattern of every octet only supports: 
            '00'H - indicates the corresponding octet will not be checked. 
            'FF'H - indicates the corresponding input octet must be same as
                    the value of dDhcpSClassOptionPatternValue.
           If this object is a zero length string means the mask is not 
           specified, all octets specified by dDhcpSClassOptionPatternValue 
           will be checked. 
           "    
        ::= { dDhcpSClassOptionEntry 4 }
        
    dDhcpSClassOptionRowStatus OBJECT-TYPE
        SYNTAX RowStatus
        MAX-ACCESS  read-create
        STATUS current
        DESCRIPTION
           "The status of this conceptual row."
        ::= { dDhcpSClassOptionEntry 99 }

-- -----------------------------------------------------------------------------   
    dDhcpServerPoolMgmt        OBJECT IDENTIFIER ::= { dDhcpServerMIBObjects 3 }
    
    dDhcpSPoolTable OBJECT-TYPE
        SYNTAX SEQUENCE OF DDhcpSPoolEntry
        MAX-ACCESS not-accessible
        STATUS current
        DESCRIPTION
            "This table is used to create and delete DHCP pool."
        ::= { dDhcpServerPoolMgmt 1 }
    
    dDhcpSPoolEntry OBJECT-TYPE
        SYNTAX          DDhcpSPoolEntry
        MAX-ACCESS      not-accessible
        STATUS          current
        DESCRIPTION
            "An entry in DHCP Pool table contaning objects for creating
            or deleting a global pool for the DHCP server or relay."
        INDEX { dDhcpSPoolName }
        ::= { dDhcpSPoolTable 1 }
    
    DDhcpSPoolEntry ::=     SEQUENCE { 
        dDhcpSPoolName             DisplayString,
        dDhcpSPoolRowStatus        RowStatus
    }

    dDhcpSPoolName OBJECT-TYPE
        SYNTAX          DisplayString 
        MAX-ACCESS      not-accessible
        STATUS          current
        DESCRIPTION
            "This object indicates the DHCP pool name of the corresponding
            entry."
        ::= { dDhcpSPoolEntry 1 }
    
    dDhcpSPoolRowStatus OBJECT-TYPE
        SYNTAX          RowStatus
        MAX-ACCESS      read-create
        STATUS current
        DESCRIPTION
            "This object is used to create new rows in this table and to delete
            existing rows."                        
        ::= { dDhcpSPoolEntry 99 }
        
-- -----------------------------------------------------------------------------               
    dDhcpSPoolCfgTable OBJECT-TYPE
        SYNTAX          SEQUENCE OF DDhcpSPoolCfgEntry
        MAX-ACCESS      not-accessible
        STATUS          current
        DESCRIPTION
            "A list of DHCP server pool informations."
        ::= { dDhcpServerPoolMgmt 2 }

    dDhcpSPoolCfgEntry OBJECT-TYPE
        SYNTAX          DDhcpSPoolCfgEntry
        MAX-ACCESS      not-accessible
        STATUS          current
        DESCRIPTION            
            "An entry contaning DHCP server pool information."
        INDEX { dDhcpSPoolName }
        ::= { dDhcpSPoolCfgTable 1 }

    DDhcpSPoolCfgEntry ::=   SEQUENCE {                        
        dDhcpSPoolCfgDomainName         DisplayString,
        dDhcpSPoolCfgNetBIOSNodeType    INTEGER,
        dDhcpSPoolCfgLeaseState         INTEGER,
        dDhcpSPoolCfgLeaseDay           INTEGER,
        dDhcpSPoolCfgLeaseHour          INTEGER,
        dDhcpSPoolCfgLeaseMinute        INTEGER,         
        dDhcpSPoolCfgBootFile           DisplayString,
        dDhcpSPoolCfgNextServer         IpAddress,                      
        dDhcpSPoolCfgVrfName            DisplayString
    }
    
    dDhcpSPoolCfgDomainName OBJECT-TYPE
        SYNTAX          DisplayString (SIZE(0..64))
        MAX-ACCESS      read-create
        STATUS          current
        DESCRIPTION
            "The domain name for the client if the server allocates
            the address for the client from this pool."
        DEFVAL          { "" }
        ::= { dDhcpSPoolCfgEntry 1 }
                      
    dDhcpSPoolCfgNetBIOSNodeType OBJECT-TYPE
        SYNTAX      INTEGER {
            notSpecified(0),
            broadcast(1),
            peertopeer(2),
            mixed(3),
            hybid(4)
        }
        MAX-ACCESS      read-create
        STATUS          current
        DESCRIPTION
            "The NetBIOS node type for a Microsoft DHCP client.
            The value 'notSpecified' indicates NetBIOS node type is not 
            configured for the corresponding entry."
        DEFVAL          { notSpecified }
        ::= { dDhcpSPoolCfgEntry 2 }
        
    dDhcpSPoolCfgLeaseState OBJECT-TYPE
        SYNTAX      INTEGER{
            predefined(1),
            infinite(2)
        }
        MAX-ACCESS      read-create
        STATUS          current
        DESCRIPTION
            "The pool lease state. When configured to 'infinite', the following
            objects: dDhcpSPoolCfgLeaseDay, dDhcpSPoolCfgLeaseHour
            and dDhcpSPoolCfgLeaseMinute will be reverted to default value
            and not be used for lease time."
        DEFVAL          { predefined }     
    ::= { dDhcpSPoolCfgEntry 3 }    
    
    dDhcpSPoolCfgLeaseDay OBJECT-TYPE
       SYNTAX           INTEGER(0..365)
       MAX-ACCESS       read-create
       STATUS           current
       DESCRIPTION
            "This object indicates the number of days for the duration of
            lease."
       DEFVAL          { 1 }  
       ::= { dDhcpSPoolCfgEntry 4 }

    dDhcpSPoolCfgLeaseHour OBJECT-TYPE
        SYNTAX          INTEGER(0..23)
        MAX-ACCESS      read-create
        STATUS      current
        DESCRIPTION
            "This object indicates the number of hours for the duration of
            lease."
        DEFVAL          { 0 }    
        ::= { dDhcpSPoolCfgEntry 5 }

    dDhcpSPoolCfgLeaseMinute OBJECT-TYPE
        SYNTAX          INTEGER(0..59)
        MAX-ACCESS      read-create
        STATUS          current
        DESCRIPTION
            "This object indicates the number of minutes for the duration of
            lease."
        DEFVAL          { 0 }     
        ::= { dDhcpSPoolCfgEntry 6 }
        
    dDhcpSPoolCfgBootFile OBJECT-TYPE
        SYNTAX          DisplayString (SIZE(0..64)) 
        MAX-ACCESS      read-create
        STATUS          current
        DESCRIPTION
            "This object indicates the name of the file that is used as a boot
            image."
        DEFVAL          { "" }
        ::= { dDhcpSPoolCfgEntry 7 }

    dDhcpSPoolCfgNextServer OBJECT-TYPE
        SYNTAX          IpAddress
        MAX-ACCESS      read-create
        STATUS          current
        DESCRIPTION
            "This object indicates the next server to be used in the DHCP
            client boot process. The server is typically a TFTP server.
            A length of zero indicates the next server is unspecified."
        DEFVAL          { ''H }
        ::= { dDhcpSPoolCfgEntry 8 }
              
    dDhcpSPoolCfgVrfName OBJECT-TYPE
        SYNTAX          DisplayString (SIZE(0..32))
        MAX-ACCESS      read-create
        STATUS          current
        DESCRIPTION
            "This object is used to configure the VRF for DHCP pool. The 
            zero length string means the VRF name is not specified."
        DEFVAL          { "" }    
        ::= { dDhcpSPoolCfgEntry 9 }
        
-- -----------------------------------------------------------------------------
    dDhcpSPoolAddrAllocTable OBJECT-TYPE
        SYNTAX          SEQUENCE OF DDhcpSPoolAddrAllocEntry
        MAX-ACCESS      not-accessible
        STATUS          current
        DESCRIPTION
            "A list of information indicates the address allocation for DHCP
            server."    
        ::= { dDhcpServerPoolMgmt 3 }

    dDhcpSPoolAddrAllocEntry OBJECT-TYPE
        SYNTAX          DDhcpSPoolAddrAllocEntry
        MAX-ACCESS      not-accessible
        STATUS          current
        DESCRIPTION
            "An entry contaning the network configuration for DHCP pool."
        INDEX  { 
            dDhcpSPoolName,
            dDhcpSPoolAddrAllocNetwork
        }
        ::= { dDhcpSPoolAddrAllocTable 1 }
      
    DDhcpSPoolAddrAllocEntry ::=  SEQUENCE {         
        dDhcpSPoolAddrAllocNetwork          IpAddress,
        dDhcpSPoolAddrAllocNetworkMask      IpAddress,       
        dDhcpSPoolAddrAllocRowStatus        RowStatus
    }
    
    dDhcpSPoolAddrAllocNetwork OBJECT-TYPE
        SYNTAX          IpAddress
        MAX-ACCESS      not-accessible
        STATUS          current
        DESCRIPTION
             "The network address of the corresponding entry. The number of
             network configuration can be supported in a pool is project
             dependent."
    ::= { dDhcpSPoolAddrAllocEntry 1 }

    dDhcpSPoolAddrAllocNetworkMask OBJECT-TYPE
        SYNTAX          IpAddress
        MAX-ACCESS      read-create
        STATUS          current
        DESCRIPTION
             "The network address mask of the corresponding entry."
    ::= { dDhcpSPoolAddrAllocEntry 2 }                
    
    dDhcpSPoolAddrAllocRowStatus OBJECT-TYPE
        SYNTAX          RowStatus
        MAX-ACCESS      read-create
        STATUS          current
        DESCRIPTION
            "The status of this conceptual row." 
        ::= { dDhcpSPoolAddrAllocEntry 99}
        
-- ----------------------------------------------------------------------------- 
    dDhcpSPoolManualBindTable OBJECT-TYPE
        SYNTAX          SEQUENCE OF DDhcpSPoolManualBindEntry
        MAX-ACCESS      not-accessible
        STATUS          current
        DESCRIPTION
            "A list of information indicates the manual binding information for
            DHCP pool."   
        ::= { dDhcpServerPoolMgmt 4 }

    dDhcpSPoolManualBindEntry OBJECT-TYPE
        SYNTAX          DDhcpSPoolManualBindEntry
        MAX-ACCESS      not-accessible
        STATUS          current
        DESCRIPTION
            "An entry contaning the manual binding information for
            DHCP pool."
        INDEX           { dDhcpSPoolName }
        ::= { dDhcpSPoolManualBindTable 1 }

    DDhcpSPoolManualBindEntry ::=  SEQUENCE {                
        dDhcpSPoolManualBindHostIp          IpAddress,
        dDhcpSPoolManualBindHostIpMask      IpAddress,
        dDhcpSPoolManualBindHAddr           MacAddress,
        dDhcpSPoolManualBindClientId        OCTET STRING,     
        dDhcpSPoolManualBindRowStatus       RowStatus
    }
                  
    dDhcpSPoolManualBindHostIp OBJECT-TYPE
        SYNTAX          IpAddress
        MAX-ACCESS      read-create
        STATUS          current
        DESCRIPTION
            "This object indicates the IP address of the manual binding entry
            in a DHCP address pool. The user cannot configure the manual
            binding entry in the address pool that has been configured with network."
    ::= { dDhcpSPoolManualBindEntry 1 }
    
    dDhcpSPoolManualBindHostIpMask OBJECT-TYPE
        SYNTAX          IpAddress
        MAX-ACCESS      read-create
        STATUS          current
        DESCRIPTION
            "This object indicates the mask the network part of the host address."
        ::= { dDhcpSPoolManualBindEntry 2 }
    
    dDhcpSPoolManualBindHAddr OBJECT-TYPE
        SYNTAX          MacAddress
        MAX-ACCESS      read-create
        STATUS          current
        DESCRIPTION
            "This object indicates the hardware address of the manual binding 
            entry in a DHCP address pool."
        ::= { dDhcpSPoolManualBindEntry 3 }

    dDhcpSPoolManualBindClientId OBJECT-TYPE
        SYNTAX          OCTET STRING 
        MAX-ACCESS      read-create
        STATUS          current
        DESCRIPTION
        "This object indicates DHCP client ID of the manual binding entry
         in a DHCP address pool."
        ::= { dDhcpSPoolManualBindEntry 4 } 
    
    dDhcpSPoolManualBindRowStatus OBJECT-TYPE
        SYNTAX          RowStatus
        MAX-ACCESS      read-create
        STATUS          current
        DESCRIPTION
            "The status of this conceptual row." 
        ::= { dDhcpSPoolManualBindEntry 99}   
             
-- -----------------------------------------------------------------------------         
    dDhcpSPoolClassAddrTable OBJECT-TYPE
        SYNTAX      SEQUENCE OF DDhcpSPoolClassAddrEntry
        MAX-ACCESS  not-accessible
        STATUS      current
        DESCRIPTION
            "A table contains address range configuration of a DHCP pool class."
        ::= { dDhcpServerPoolMgmt 5 }

    dDhcpSPoolClassAddrEntry OBJECT-TYPE
        SYNTAX      DDhcpSPoolClassAddrEntry
        MAX-ACCESS  not-accessible
        STATUS      current
        DESCRIPTION
            "By using DHCP class, DHCP server using option configuration to
            further determine which IP addresses to allocate to clients.
            The first two index elements identify the pool class to which this
            address range belongs.
            "
       INDEX { 
            dDhcpSPoolName, 
            dDhcpSClassName,
            dDhcpSPoolClassAddrBeginAddr,
            dDhcpSPoolClassAddrEndAddr
       }
       ::= { dDhcpSPoolClassAddrTable 1 }

    DDhcpSPoolClassAddrEntry ::=     SEQUENCE {       
        dDhcpSPoolClassAddrBeginAddr    IpAddress,
        dDhcpSPoolClassAddrEndAddr      IpAddress,
        dDhcpSPoolClassAddrRowStatus    RowStatus
    }
      
    dDhcpSPoolClassAddrBeginAddr OBJECT-TYPE
        SYNTAX          IpAddress
        MAX-ACCESS      not-accessible
        STATUS          current
        DESCRIPTION
            "The start address of this class address range.
            A special address 0.0.0.0 indicates there is no address range 
            is configured for this pool class. When a valid address range
            is configured, the entry of 0.0.0.0 will be removed.             
            "
        ::= { dDhcpSPoolClassAddrEntry 1 }

    dDhcpSPoolClassAddrEndAddr OBJECT-TYPE
        SYNTAX          IpAddress
        MAX-ACCESS      not-accessible
        STATUS          current
        DESCRIPTION
            "The end address of this class address range."
        ::= { dDhcpSPoolClassAddrEntry 2 }

    dDhcpSPoolClassAddrRowStatus OBJECT-TYPE
        SYNTAX          RowStatus
        MAX-ACCESS      read-create
        STATUS          current
        DESCRIPTION
            "The status of this conceptual row." 
        ::= { dDhcpSPoolClassAddrEntry 99}

-- -----------------------------------------------------------------------------        
    dDhcpSPoolOptionTable OBJECT-TYPE
        SYNTAX          SEQUENCE OF DDhcpSPoolOptionEntry
        MAX-ACCESS      not-accessible
        STATUS          current
        DESCRIPTION
            "A list of option configurations for DHCP pools."
        ::= { dDhcpServerPoolMgmt 6 }

    dDhcpSPoolOptionEntry OBJECT-TYPE
        SYNTAX          DDhcpSPoolOptionEntry
        MAX-ACCESS      not-accessible
        STATUS          current
        DESCRIPTION
           "An entry contaning a DHCP option configuration of a DHCP class."
        INDEX  { 
            dDhcpSPoolName, 
            dDhcpSPoolOptionCode   
        }
        ::= { dDhcpSPoolOptionTable 1 }

    DDhcpSPoolOptionEntry ::=   SEQUENCE {
        dDhcpSPoolOptionCode            INTEGER,
        dDhcpSPoolOptionType            INTEGER,
        dDhcpSPoolOptionValue           DisplayString,
        dDhcpSPoolOptionRowStatus       RowStatus
    }
       
    dDhcpSPoolOptionCode OBJECT-TYPE
        SYNTAX          INTEGER (2..254)
        MAX-ACCESS      not-accessible
        STATUS  current
        DESCRIPTION
            "This object indicates the code of DHCP option. Some options can be
            configured by other objects (e.g. option 1 which is used to
            configure Subnet Mask can be configured by dDhcpSPoolAddrAllocEntry
            and then should not be configured by this object."
        ::= { dDhcpSPoolOptionEntry 1 }

    dDhcpSPoolOptionType OBJECT-TYPE
        SYNTAX  INTEGER {
            string(1),
            hex(2),
            ip(3)
        }
        MAX-ACCESS      read-create
        STATUS          current
        DESCRIPTION
            "This object indicates the type of dDhcpSPoolOptionValue.
            string(1): The type of option value is character string.               
            hex(2)   : The type of option value is hexadecimal string.  
            ip(3)    : The type of option value is IP list."
    ::= { dDhcpSPoolOptionEntry 2 }
    
    dDhcpSPoolOptionValue OBJECT-TYPE
        SYNTAX          DisplayString
        MAX-ACCESS      read-create
        STATUS          current
        DESCRIPTION
            "This object indicates the value of the corresponding DHCP 
            option."   
        ::= { dDhcpSPoolOptionEntry 3 }  
       
    dDhcpSPoolOptionRowStatus OBJECT-TYPE
        SYNTAX          RowStatus
        MAX-ACCESS      read-create
        STATUS          current
        DESCRIPTION
           "The status of this conceptual row."
        ::= { dDhcpSPoolOptionEntry 99 }        
    
-- -----------------------------------------------------------------------------       
    dDhcpSPoolDefaultRouterTable OBJECT-TYPE
        SYNTAX          SEQUENCE OF DDhcpSPoolDefaultRouterEntry
        MAX-ACCESS      not-accessible
        STATUS          current
        DESCRIPTION
            "A list of default router IP configuration for DHCP client."             
        ::= { dDhcpServerPoolMgmt 7 }

    dDhcpSPoolDefaultRouterEntry OBJECT-TYPE
        SYNTAX          DDhcpSPoolDefaultRouterEntry
        MAX-ACCESS      not-accessible
        STATUS          current
        DESCRIPTION
            "An entry contaning default router configuration."
        INDEX { 
            dDhcpSPoolName, 
            dDhcpSPoolDefaultRouterIndex
        }
        ::= { dDhcpSPoolDefaultRouterTable 1 }

    DDhcpSPoolDefaultRouterEntry ::=    SEQUENCE {
        dDhcpSPoolDefaultRouterIndex        Unsigned32,
        dDhcpSPoolDefaultRouterAddr         IpAddress,
        dDhcpSPoolDefaultRouterRowStatus    RowStatus
    }
   
    dDhcpSPoolDefaultRouterIndex OBJECT-TYPE
        SYNTAX          Unsigned32 (1..8)
        MAX-ACCESS      not-accessible
        STATUS          current
        DESCRIPTION
            "The default router index."
        ::= { dDhcpSPoolDefaultRouterEntry 1 }

    dDhcpSPoolDefaultRouterAddr OBJECT-TYPE
        SYNTAX         IpAddress
        MAX-ACCESS     read-create
        STATUS  current
        DESCRIPTION
           "The address of the default router."
        ::= { dDhcpSPoolDefaultRouterEntry 2 }

    dDhcpSPoolDefaultRouterRowStatus OBJECT-TYPE
        SYNTAX          RowStatus
        MAX-ACCESS      read-create
        STATUS          current
        DESCRIPTION
            "The status of this conceptual row." 
        ::= { dDhcpSPoolDefaultRouterEntry 99}

-- -----------------------------------------------------------------------------       
    dDhcpSPoolDnsServerTable OBJECT-TYPE
        SYNTAX          SEQUENCE OF DDhcpSPoolDnsServerEntry
        MAX-ACCESS      not-accessible
        STATUS          current
        DESCRIPTION
            "A list of DNS server configurations."             
        ::= { dDhcpServerPoolMgmt 8 }

    dDhcpSPoolDnsServerEntry OBJECT-TYPE
        SYNTAX          DDhcpSPoolDnsServerEntry
        MAX-ACCESS      not-accessible
        STATUS          current
        DESCRIPTION
            "An entry containing DNS server configuration for DHCP pool."
        INDEX { 
            dDhcpSPoolName, 
            dDhcpSPoolDnsServerIndex
        }
    ::= { dDhcpSPoolDnsServerTable 1 }

    DDhcpSPoolDnsServerEntry ::=    SEQUENCE {
        dDhcpSPoolDnsServerIndex        Unsigned32,
        dDhcpSPoolDnsServerAddr         IpAddress,
        dDhcpSPoolDnsServerRowStatus    RowStatus
    }
  
    dDhcpSPoolDnsServerIndex OBJECT-TYPE
        SYNTAX          Unsigned32 (1..8)
        MAX-ACCESS      not-accessible
        STATUS          current
        DESCRIPTION
            "The DNS server index."
        ::= { dDhcpSPoolDnsServerEntry 1 }

    dDhcpSPoolDnsServerAddr OBJECT-TYPE
        SYNTAX         IpAddress
        MAX-ACCESS     read-create
        STATUS  current
        DESCRIPTION
           "The address of the DNS server."
        ::= { dDhcpSPoolDnsServerEntry 2 }

    dDhcpSPoolDnsServerRowStatus OBJECT-TYPE
        SYNTAX          RowStatus
        MAX-ACCESS      read-create
        STATUS          current
        DESCRIPTION
            "The status of this conceptual row." 
        ::= { dDhcpSPoolDnsServerEntry 99}              

-- -----------------------------------------------------------------------------       
    dDhcpSPoolWinsServerTable OBJECT-TYPE
        SYNTAX          SEQUENCE OF DDhcpSPoolWinsServerEntry
        MAX-ACCESS      not-accessible
        STATUS          current
        DESCRIPTION
            "A list of WINS (Windows Internet Name Service) server
            configurations."             
        ::= { dDhcpServerPoolMgmt 9 }

    dDhcpSPoolWinsServerEntry OBJECT-TYPE
        SYNTAX          DDhcpSPoolWinsServerEntry
        MAX-ACCESS      not-accessible
        STATUS          current
        DESCRIPTION
            "An entry containing WINS server configuration."
        INDEX { 
            dDhcpSPoolName, 
            dDhcpSPoolWinsServerIndex
        }
        ::= { dDhcpSPoolWinsServerTable 1 }

    DDhcpSPoolWinsServerEntry ::=    SEQUENCE {    
        dDhcpSPoolWinsServerIndex       Unsigned32,
        dDhcpSPoolWinsServerAddr        IpAddress,
        dDhcpSPoolWinsServerRowStatus   RowStatus
    }  

    dDhcpSPoolWinsServerIndex OBJECT-TYPE
        SYNTAX          Unsigned32 (1..8)
        MAX-ACCESS      not-accessible
        STATUS          current
        DESCRIPTION
            "The index of this WINS server."
        ::= { dDhcpSPoolWinsServerEntry 1 }

    dDhcpSPoolWinsServerAddr OBJECT-TYPE
        SYNTAX          IpAddress
        MAX-ACCESS      read-create
        STATUS  current
        DESCRIPTION
           "The address of the WINS server."
        ::= { dDhcpSPoolWinsServerEntry 2 }

    dDhcpSPoolWinsServerRowStatus OBJECT-TYPE
        SYNTAX          RowStatus
        MAX-ACCESS      read-create
        STATUS          current
        DESCRIPTION
            "The status of this conceptual row." 
        ::= { dDhcpSPoolWinsServerEntry 99}              
   
-- -----------------------------------------------------------------------------
    dDhcpServerInfo             OBJECT IDENTIFIER ::= { dDhcpServerMIBObjects 4} 

    dDhcpServerPktStatistics    OBJECT IDENTIFIER ::= { dDhcpServerInfo 1 }
        
    dDhcpServerClearStatistics  OBJECT-TYPE
        SYNTAX      INTEGER{   
            clear(1),
            noOp(2)
        }
        MAX-ACCESS  read-write
        STATUS current
        DESCRIPTION
           "This object is used to reset all DHCP server counters when
            set to 'clear'.
            No action is taken if this object is set to 'noOp'.
            When read, the value 'noOp' is returned."
        DEFVAL      { noOp }
        ::= { dDhcpServerPktStatistics 1 }

    dDhcpServerRecvBootRequest OBJECT-TYPE
        SYNTAX          Counter64
        MAX-ACCESS      read-only
        STATUS          current
        DESCRIPTION
            "The total number of received BootRequest packets."
        ::= { dDhcpServerPktStatistics 2 }
    
    dDhcpServerRecvMalformedPkt OBJECT-TYPE
        SYNTAX          Counter64
        MAX-ACCESS      read-only
        STATUS          current
        DESCRIPTION
            "The total number of received malformed packets."
        ::= { dDhcpServerPktStatistics 3 }
    
    dDhcpServerRecvRenewPkt OBJECT-TYPE
        SYNTAX          Counter64
        MAX-ACCESS      read-only
        STATUS          current
        DESCRIPTION
            "The total number of received packets used to extend leases."
        ::= { dDhcpServerPktStatistics 4 }
    
    dDhcpServerRecvDiscover OBJECT-TYPE
        SYNTAX          Counter64
        MAX-ACCESS      read-only
        STATUS          current
        DESCRIPTION
            "The total number of received DHCPDISCOVER packets."
        ::= { dDhcpServerPktStatistics 5 }
    
    dDhcpServerRecvRequest OBJECT-TYPE
        SYNTAX          Counter64
        MAX-ACCESS      read-only
        STATUS          current
        DESCRIPTION
            "The total number of received DHCPREQUEST packets."
        ::= { dDhcpServerPktStatistics 6 }
    
    dDhcpServerRecvDecline OBJECT-TYPE
        SYNTAX          Counter64
        MAX-ACCESS      read-only
        STATUS          current
        DESCRIPTION
            "The total number of received DHCPDECLINE packets."
        ::= { dDhcpServerPktStatistics 7 }
    
    dDhcpServerRecvRelease OBJECT-TYPE
        SYNTAX          Counter64
        MAX-ACCESS      read-only
        STATUS          current
        DESCRIPTION
            "The total number of received DHCPRELEASE packets."
        ::= { dDhcpServerPktStatistics 8 }
    
    dDhcpServerRecvInform OBJECT-TYPE
        SYNTAX          Counter64
        MAX-ACCESS      read-only
        STATUS          current
        DESCRIPTION
            "The total number of received DHCPRINFORM packets."
        ::= { dDhcpServerPktStatistics 9 }
    
    dDhcpServerSendBootReply OBJECT-TYPE
        SYNTAX          Counter64
        MAX-ACCESS      read-only
        STATUS          current
        DESCRIPTION
            "The total number of sent BootReply packets."
        ::= { dDhcpServerPktStatistics 10 }
    
    dDhcpServerSendOffer OBJECT-TYPE
        SYNTAX          Counter64
        MAX-ACCESS      read-only
        STATUS          current
        DESCRIPTION
            "The total number of sent DHCPOFFER packets."
        ::= { dDhcpServerPktStatistics 11 }
    
    dDhcpServerSendAck OBJECT-TYPE
        SYNTAX          Counter64
        MAX-ACCESS      read-only
        STATUS          current
        DESCRIPTION
            "The total number of sent DHCPACK packets."
        ::= { dDhcpServerPktStatistics 12 }
    
    dDhcpServerSendNak OBJECT-TYPE
        SYNTAX          Counter64
        MAX-ACCESS      read-only
        STATUS          current
        DESCRIPTION
            "The total number of sent DHCPNAK packets."
        ::= { dDhcpServerPktStatistics 13 }

-- -----------------------------------------------------------------------------           
    dDhcpServerBindingTable OBJECT-TYPE
        SYNTAX          SEQUENCE OF DDhcpServerBindingEntry
        MAX-ACCESS      not-accessible
        STATUS      current
        DESCRIPTION
            "A list of information regarding binding information of a pool of
            IP addresses."
        ::= { dDhcpServerInfo 2 }

    dDhcpServerBindingEntry OBJECT-TYPE
        SYNTAX          DDhcpServerBindingEntry
        MAX-ACCESS      not-accessible
        STATUS          current
        DESCRIPTION
            "An address binding entry."
        INDEX { 
            dDhcpSPoolName, 
            dDhcpServerBindingVrfName,
            dDhcpServerBindingIpAddress
        }
        ::= { dDhcpServerBindingTable 1 }

    DDhcpServerBindingEntry ::=        SEQUENCE {        
        dDhcpServerBindingVrfName               DisplayString,
        dDhcpServerBindingIpAddress             IpAddress,
        dDhcpSBindingHwAddrOrClientId           OCTET STRING,       
        dDhcpServerBindingState                 INTEGER,
        dDhcpServerBindingLeaseExpire           DateAndTime,       
        dDhcpServerBindingClear                 INTEGER
    }
    
    dDhcpServerBindingVrfName OBJECT-TYPE
        SYNTAX          DisplayString (SIZE(0..32))
        MAX-ACCESS      not-accessible
        STATUS          current
        DESCRIPTION
            "The name of virtual routing and forwarding(VRF).  
            If this object is a zero length string, the corresponding entry is
            for global routing and forwarding space."
        ::= { dDhcpServerBindingEntry 1 }
        
    dDhcpServerBindingIpAddress OBJECT-TYPE
        SYNTAX          IpAddress
        MAX-ACCESS      not-accessible
        STATUS          current
        DESCRIPTION
             "This object indicates the IP address which has been assigned to a
             specified client."
        ::= { dDhcpServerBindingEntry 2 }
   
    dDhcpSBindingHwAddrOrClientId OBJECT-TYPE  
        SYNTAX          OCTET STRING 
        MAX-ACCESS      read-only
        STATUS          current
        DESCRIPTION
            "This object indicates the hardware address or client identifier
			of the DHCP client. The first octet of this object contains the 
			hardware type of the DHCP client. The remaining octets contain the
			hardware address of the client.
			If the first octet is 0 (zero) indicates the remaining octets
			contain other than a hardware address. For more information about the
			client identifier, please see RFC 2132, DHCP Options and BOOTP
			Vendor Extensions, section 9.14." 
        ::= { dDhcpServerBindingEntry 3 }

    dDhcpServerBindingState OBJECT-TYPE
        SYNTAX  INTEGER {
            manual(1),
            automatic(2),
            offering(3),
            bootp(4)
        }
        MAX-ACCESS      read-only
        STATUS          current
        DESCRIPTION
           "The state of this binding."
        ::= { dDhcpServerBindingEntry 4 }

    dDhcpServerBindingLeaseExpire OBJECT-TYPE
        SYNTAX          DateAndTime
        MAX-ACCESS      read-only
        STATUS  current
        DESCRIPTION
            "This object indicates the expiration of the lease expiration time
            of the binding entry.
            The special value of all '00'Hs indicates that the lease will never
            be expired (infinite)."
        ::= { dDhcpServerBindingEntry 5 }

    dDhcpServerBindingClear OBJECT-TYPE
        SYNTAX  INTEGER {
            noOp(1),
            clear(2)
        }
        MAX-ACCESS      read-write
        STATUS          current
        DESCRIPTION
           "This object is used to clear this entry.
            No action is taken if this object is set to 'noOp'.
            The value of this object when read is always 'noOp'."
    ::= { dDhcpServerBindingEntry 6 }

-- -----------------------------------------------------------------------------
    dDhcpSConflictIpTable OBJECT-TYPE
        SYNTAX      SEQUENCE OF DDhcpSConflictIpEntry
        MAX-ACCESS  not-accessible
        STATUS      current
        DESCRIPTION
            "A list of conflict IP addresses while DHCP Server attempts to assign
            the IP address to client."
        ::= { dDhcpServerInfo 3 }

    dDhcpSConflictIpEntry OBJECT-TYPE
        SYNTAX          DDhcpSConflictIpEntry
        MAX-ACCESS      not-accessible
        STATUS      current
        DESCRIPTION
            "A DHCP address conflict means a duplication of use
            of the same IP address by two hosts."
        INDEX { 
            dDhcpSPoolName,
            dDhcpSConflictIpVrfName,
            dDhcpSConflictIpAddr
        }
        ::= { dDhcpSConflictIpTable 1 }

    DDhcpSConflictIpEntry ::=    SEQUENCE {
        dDhcpSConflictIpVrfName         DisplayString,
        dDhcpSConflictIpAddr            IpAddress,
        dDhcpSConflictIpDetectMethod    INTEGER,
        dDhcpSConflictIpDetectTime      DateAndTime,
        dDhcpSConflictIpClear           INTEGER
    }

    dDhcpSConflictIpVrfName OBJECT-TYPE
        SYNTAX          DisplayString (SIZE(0..32))
        MAX-ACCESS      not-accessible
        STATUS          current
        DESCRIPTION
            "The name of virtual routing and forwarding (VRF).  
            If this object is zero length string, the corresponding entry is
            for global routing and forwarding space."
        ::= { dDhcpSConflictIpEntry 1 }
        
    dDhcpSConflictIpAddr OBJECT-TYPE
        SYNTAX          IpAddress
        MAX-ACCESS      not-accessible
        STATUS          current
        DESCRIPTION
            "This object indicates the IP address which is duplicated and used
            by more than one host."
        ::= { dDhcpSConflictIpEntry 2 }

    dDhcpSConflictIpDetectMethod OBJECT-TYPE
        SYNTAX          INTEGER {
            ping(1),
            gratuitousArp(2)
        }
        MAX-ACCESS      read-only
        STATUS          current
        DESCRIPTION
            "The server detects conflicts using ping. The client detects
            conflicts using gratuitous Address Resolution Protocol (ARP)."
        ::= { dDhcpSConflictIpEntry 3 }

    dDhcpSConflictIpDetectTime OBJECT-TYPE
        SYNTAX          DateAndTime
        MAX-ACCESS      read-only
        STATUS          current
        DESCRIPTION
            "The time at which a DHCP address conflict detected."
        ::= { dDhcpSConflictIpEntry 4 }

    dDhcpSConflictIpClear OBJECT-TYPE
        SYNTAX  INTEGER {
            noOp(1),
            clear(2)
        }
        MAX-ACCESS      read-write
        STATUS  current
        DESCRIPTION
           "This object is used to clear this entry.
            No action is taken if this object is set to 'noOp'.
            The value of this object when read is always 'noOp'."
        ::= { dDhcpSConflictIpEntry 5 }
    
--  ***************************************************************************
--  Conformance
--  ***************************************************************************
    dDhcpServerCompliances OBJECT IDENTIFIER ::= { dDhcpServerMIBConformance 1 }

    dDhcpServerCompliance MODULE-COMPLIANCE
        STATUS current
        DESCRIPTION 
            "The compliance statement for entities which implement the 
             DLINKSW-DHCP-SERVER-MIB."
        MODULE -- this module
        MANDATORY-GROUPS { 
             dDhcpSGblCfgGroup, 
             dDhcpSClassGroup, 
             dDhcpSClassCfgGroup,
             dDhcpSPoolGroup,
             dDhcpSPoolCfgGroup,
             dDhcpSPoolNetworkCfgGroup,
             dDhcpSPoolManualBindingGroup,
             dDhcpSStatisticsGroup,
             dDhcpSGeneralInfoGroup
        }
 
        OBJECT          dDhcpSPoolCfgVrfName
        MIN-ACCESS      read-only
        DESCRIPTION
           "Create/Write access is required only if the agent supports virtual
            routing and forwarding(VRF)."
        ::= { dDhcpServerCompliances 1 }
 
    dDhcpServerGroups OBJECT IDENTIFIER ::= { dDhcpServerMIBConformance 2 }
 
    dDhcpSGblCfgGroup OBJECT-GROUP
        OBJECTS { 
            dDhcpServiceEnabled, 
            dDhcpServerPingTimeOut, 
            dDhcpServerPingPktNumber,
            dDhcpSExcludedAddressRowStatus 
        }
        STATUS current
        DESCRIPTION 
           "A collection of objects providing global configuration about DHCP
           server."
        ::= { dDhcpServerGroups 1 }
 
    dDhcpSClassGroup OBJECT-GROUP
        OBJECTS { 
            dDhcpServerUseClassEnabled, 
            dDhcpSClassRowStatus 
        }
        STATUS current
        DESCRIPTION 
           "A collection of objects providing DHCP class configuration."
        ::= { dDhcpServerGroups 2 }

 
    dDhcpSClassCfgGroup OBJECT-GROUP
        OBJECTS {
            dDhcpSClassOptionRowStatus,
            dDhcpSPoolClassAddrRowStatus
        }
        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."
        ::= { dDhcpServerGroups 3 }
 
    dDhcpSPoolGroup OBJECT-GROUP
        OBJECTS        { dDhcpSPoolRowStatus }
        STATUS          current
        DESCRIPTION 
            "This group is used to create/delete DHCP pools."
        ::= { dDhcpServerGroups 4 }
 
    dDhcpSPoolCfgGroup OBJECT-GROUP
        OBJECTS { 
            dDhcpSPoolCfgDomainName, 
            dDhcpSPoolCfgNetBIOSNodeType, 
            dDhcpSPoolCfgLeaseState, 
            dDhcpSPoolCfgLeaseDay, 
            dDhcpSPoolCfgLeaseHour, 
            dDhcpSPoolCfgLeaseMinute, 
            dDhcpSPoolCfgBootFile, 
            dDhcpSPoolCfgNextServer,
            dDhcpSPoolCfgVrfName,
            dDhcpSPoolOptionType, 
            dDhcpSPoolOptionValue, 
            dDhcpSPoolOptionRowStatus, 
            dDhcpSPoolDefaultRouterAddr, 
            dDhcpSPoolDefaultRouterRowStatus, 
            dDhcpSPoolDnsServerAddr, 
            dDhcpSPoolDnsServerRowStatus, 
            dDhcpSPoolWinsServerAddr, 
            dDhcpSPoolWinsServerRowStatus 
        }
        STATUS current
        DESCRIPTION 
           "A collection of objects providing DHCP pool configuration."
        ::= { dDhcpServerGroups 5 }
 
    dDhcpSPoolNetworkCfgGroup OBJECT-GROUP
        OBJECTS { 
            dDhcpSPoolAddrAllocNetworkMask, 
            dDhcpSPoolAddrAllocRowStatus 
        }
        STATUS current
        DESCRIPTION 
            "A collection of objects providing network configuration for DHCP
            pools."
        ::= { dDhcpServerGroups 6 }
 
    dDhcpSPoolManualBindingGroup OBJECT-GROUP
        OBJECTS { 
            dDhcpSPoolManualBindHostIp, 
            dDhcpSPoolManualBindHostIpMask, 
            dDhcpSPoolManualBindHAddr, 
            dDhcpSPoolManualBindClientId, 
            dDhcpSPoolManualBindRowStatus
        }
        STATUS current
        DESCRIPTION 
             "A collection of objects providing manual binding configuration for DHCP
             pools."
        ::= { dDhcpServerGroups 7 }

    dDhcpSStatisticsGroup OBJECT-GROUP
        OBJECTS { 
            dDhcpServerClearStatistics, 
            dDhcpServerRecvBootRequest, 
            dDhcpServerRecvMalformedPkt, 
            dDhcpServerRecvRenewPkt, 
            dDhcpServerRecvDiscover, 
            dDhcpServerRecvRequest, 
            dDhcpServerRecvDecline, 
            dDhcpServerRecvRelease, 
            dDhcpServerRecvInform, 
            dDhcpServerSendBootReply, 
            dDhcpServerSendOffer, 
            dDhcpServerSendAck, 
            dDhcpServerSendNak 
        }
        STATUS current
        DESCRIPTION 
             "A collection of objects for management of DHCP statistics."
        ::= { dDhcpServerGroups 8 }

    dDhcpSGeneralInfoGroup OBJECT-GROUP
        OBJECTS { 
            dDhcpSBindingHwAddrOrClientId, 
            dDhcpServerBindingState, 
            dDhcpServerBindingLeaseExpire, 
            dDhcpServerBindingClear, 
            dDhcpSConflictIpDetectMethod, 
            dDhcpSConflictIpDetectTime, 
            dDhcpSConflictIpClear 
        }
        STATUS current
        DESCRIPTION 
            "A collection of objects providing general DHCP information, e.g
             binding database, conflict IP address."
        ::= { dDhcpServerGroups 9 }


END